| /linux/sound/soc/qcom/qdsp6/ |
| A D | q6apm.c | 50 if (graph) { in q6apm_get_audioreach_graph() 60 graph = kzalloc(sizeof(*graph), GFP_KERNEL); in q6apm_get_audioreach_graph() 61 if (!graph) in q6apm_get_audioreach_graph() 68 graph->graph = audioreach_alloc_graph_pkt(apm, info); in q6apm_get_audioreach_graph() 69 if (IS_ERR(graph->graph)) { in q6apm_get_audioreach_graph() 70 void *err = graph->graph; in q6apm_get_audioreach_graph() 80 kfree(graph->graph); in q6apm_get_audioreach_graph() 89 q6apm_send_cmd_sync(apm, graph->graph, 0); in q6apm_get_audioreach_graph() 141 graph = idr_remove(&apm->graph_idr, graph->id); in q6apm_put_audioreach_graph() 144 kfree(graph->graph); in q6apm_put_audioreach_graph() [all …]
|
| A D | q6apm.h | 88 void *graph; member 114 int q6apm_graph_close(struct q6apm_graph *graph); 115 int q6apm_graph_prepare(struct q6apm_graph *graph); 116 int q6apm_graph_start(struct q6apm_graph *graph); 117 int q6apm_graph_stop(struct q6apm_graph *graph); 118 int q6apm_graph_flush(struct q6apm_graph *graph); 121 int q6apm_graph_media_format_pcm(struct q6apm_graph *graph, 124 int q6apm_graph_media_format_shmem(struct q6apm_graph *graph, 128 int q6apm_read(struct q6apm_graph *graph); 133 int q6apm_map_memory_regions(struct q6apm_graph *graph, [all …]
|
| A D | q6apm-lpass-dais.c | 156 if (dai_data->graph[dai->id]) { in q6apm_lpass_dai_shutdown() 158 dai_data->graph[dai->id] = NULL; in q6apm_lpass_dai_shutdown() 166 struct q6apm_graph *graph; in q6apm_lpass_dai_prepare() local 186 if (IS_ERR(graph)) { in q6apm_lpass_dai_prepare() 188 rc = PTR_ERR(graph); in q6apm_lpass_dai_prepare() 191 dai_data->graph[graph_id] = graph; in q6apm_lpass_dai_prepare() 217 dai_data->graph[dai->id] = NULL; in q6apm_lpass_dai_prepare() 224 struct q6apm_graph *graph; in q6apm_lpass_dai_startup() local 229 if (IS_ERR(graph)) { in q6apm_lpass_dai_startup() 231 return PTR_ERR(graph); in q6apm_lpass_dai_startup() [all …]
|
| A D | q6apm-dai.c | 75 struct q6apm_graph *graph; member 147 q6apm_read(prtd->graph); in event_handler() 232 if (!prtd || !prtd->graph) { in q6apm_dai_prepare() 246 q6apm_graph_stop(prtd->graph); in q6apm_dai_prepare() 287 q6apm_read(prtd->graph); in q6apm_dai_prepare() 353 if (IS_ERR(prtd->graph)) { in q6apm_dai_open() 355 ret = PTR_ERR(prtd->graph); in q6apm_dai_open() 418 prtd->graph = NULL; in q6apm_dai_close() 497 if (IS_ERR(prtd->graph)) { in q6apm_dai_compr_open() 498 ret = PTR_ERR(prtd->graph); in q6apm_dai_compr_open() [all …]
|
| A D | audioreach.c | 602 return audioreach_send_cmd_sync(graph->dev, NULL, &graph->result, &graph->lock, in audioreach_graph_send_cmd_sync() 603 graph->port, &graph->cmd_wait, pkt, rsp_opcode); in audioreach_graph_send_cmd_sync() 922 0, graph->port->id, iid); in audioreach_compr_set_param() 1287 mutex_lock(&graph->lock); in audioreach_graph_free_buf() 1288 port = &graph->rx_data; in audioreach_graph_free_buf() 1293 port = &graph->tx_data; in audioreach_graph_free_buf() 1297 mutex_unlock(&graph->lock); in audioreach_graph_free_buf() 1313 data = &graph->rx_data; in audioreach_map_memory_regions() 1315 data = &graph->tx_data; in audioreach_map_memory_regions() 1331 graph->port->id); in audioreach_map_memory_regions() [all …]
|
| /linux/tools/power/pm-graph/ |
| A D | Makefile | 36 $(INSTALL) -d $(DESTDIR)$(LIBDIR)/pm-graph 37 $(INSTALL) sleepgraph.py $(DESTDIR)$(LIBDIR)/pm-graph 38 $(INSTALL) bootgraph.py $(DESTDIR)$(LIBDIR)/pm-graph 39 $(INSTALL) -d $(DESTDIR)$(LIBDIR)/pm-graph/config 67 rm -f $(DESTDIR)$(LIBDIR)/pm-graph/config/* 69 rmdir $(DESTDIR)$(LIBDIR)/pm-graph/config; \ 71 rm -f $(DESTDIR)$(LIBDIR)/pm-graph/__pycache__/* 73 rmdir $(DESTDIR)$(LIBDIR)/pm-graph/__pycache__; \ 75 rm -f $(DESTDIR)$(LIBDIR)/pm-graph/* 76 if [ -d $(DESTDIR)$(LIBDIR)/pm-graph ] ; then \ [all …]
|
| A D | install_latest_from_github.sh | 16 rm -rf pm-graph 22 git clone http://github.com/intel/pm-graph.git $OUT/pm-graph 29 cd $OUT/pm-graph
|
| /linux/lib/ |
| A D | objagg.c | 789 graph = kzalloc(sizeof(*graph), GFP_KERNEL); in objagg_tmp_graph_create() 790 if (!graph) in objagg_tmp_graph_create() 793 graph->nodes = kcalloc(nodes_count, sizeof(*graph->nodes), GFP_KERNEL); in objagg_tmp_graph_create() 794 if (!graph->nodes) in objagg_tmp_graph_create() 799 if (!graph->edges) in objagg_tmp_graph_create() 825 return graph; in objagg_tmp_graph_create() 828 kfree(graph->nodes); in objagg_tmp_graph_create() 830 kfree(graph); in objagg_tmp_graph_create() 837 kfree(graph->nodes); in objagg_tmp_graph_destroy() 838 kfree(graph); in objagg_tmp_graph_destroy() [all …]
|
| /linux/sound/soc/generic/ |
| A D | Makefile | 4 snd-soc-audio-graph-card-y := audio-graph-card.o 5 snd-soc-audio-graph-card2-y := audio-graph-card2.o 6 snd-soc-audio-graph-card2-custom-sample-y := audio-graph-card2-custom-sample.o 11 obj-$(CONFIG_SND_AUDIO_GRAPH_CARD) += snd-soc-audio-graph-card.o 12 obj-$(CONFIG_SND_AUDIO_GRAPH_CARD2) += snd-soc-audio-graph-card2.o 13 obj-$(CONFIG_SND_AUDIO_GRAPH_CARD2_CUSTOM_SAMPLE) += snd-soc-audio-graph-card2-custom-sample.o
|
| /linux/drivers/media/v4l2-core/ |
| A D | v4l2-mc.c | 458 struct media_graph *graph) in pipeline_pm_use_count() argument 462 media_graph_walk_start(graph, entity); in pipeline_pm_use_count() 464 while ((entity = media_graph_walk_next(graph))) { in pipeline_pm_use_count() 517 struct media_graph *graph) in pipeline_pm_power() argument 525 media_graph_walk_start(graph, entity); in pipeline_pm_power() 534 media_graph_walk_start(graph, first); in pipeline_pm_power() 536 while ((first = media_graph_walk_next(graph)) in pipeline_pm_power() 590 sink_use = pipeline_pm_use_count(sink, graph); in v4l2_pipeline_link_notify() 595 pipeline_pm_power(source, -sink_use, graph); in v4l2_pipeline_link_notify() 596 pipeline_pm_power(sink, -source_use, graph); in v4l2_pipeline_link_notify() [all …]
|
| /linux/drivers/media/mc/ |
| A D | mc-entity.c | 299 graph->top++; in stack_push() 300 graph->stack[graph->top].link = entity->links.next; in stack_push() 301 graph->stack[graph->top].entity = entity; in stack_push() 308 entity = graph->stack[graph->top].entity; in stack_pop() 309 graph->top--; in stack_pop() 352 graph->stack[graph->top].entity = NULL; in media_graph_walk_start() 369 link_top(graph) = link_top(graph)->next; in media_graph_walk_iter() 375 link_top(graph) = link_top(graph)->next; in media_graph_walk_iter() 388 link_top(graph) = link_top(graph)->next; in media_graph_walk_iter() 396 link_top(graph) = link_top(graph)->next; in media_graph_walk_iter() [all …]
|
| /linux/Documentation/devicetree/bindings/sound/ |
| A D | audio-graph-card.yaml | 4 $id: http://devicetree.org/schemas/sound/audio-graph-card.yaml# 13 - $ref: /schemas/sound/audio-graph.yaml# 18 - audio-graph-card 19 - audio-graph-scu-card 29 compatible = "audio-graph-card";
|
| /linux/Documentation/devicetree/bindings/media/ |
| A D | renesas,isp.yaml | 41 $ref: /schemas/graph.yaml#/properties/ports 45 $ref: /schemas/graph.yaml#/properties/port 51 $ref: /schemas/graph.yaml#/properties/port 56 $ref: /schemas/graph.yaml#/properties/port 61 $ref: /schemas/graph.yaml#/properties/port 66 $ref: /schemas/graph.yaml#/properties/port 71 $ref: /schemas/graph.yaml#/properties/port 76 $ref: /schemas/graph.yaml#/properties/port 81 $ref: /schemas/graph.yaml#/properties/port 86 $ref: /schemas/graph.yaml#/properties/port
|
| A D | renesas,vin.yaml | 79 $ref: /schemas/graph.yaml#/$defs/port-base 124 $ref: /schemas/graph.yaml#/properties/ports 128 $ref: /schemas/graph.yaml#/$defs/port-base 166 $ref: /schemas/graph.yaml#/properties/port 173 $ref: /schemas/graph.yaml#/properties/endpoint 177 $ref: /schemas/graph.yaml#/properties/endpoint 181 $ref: /schemas/graph.yaml#/properties/endpoint 185 $ref: /schemas/graph.yaml#/properties/endpoint 199 $ref: /schemas/graph.yaml#/properties/port 206 $ref: /schemas/graph.yaml#/properties/endpoint [all …]
|
| /linux/drivers/hwtracing/coresight/ |
| A D | coresight-platform.c | 457 if (graph->package.count < 2) in acpi_validate_dsd_graph() 460 rev = &graph->package.elements[0]; in acpi_validate_dsd_graph() 461 nr_graphs = &graph->package.elements[1]; in acpi_validate_dsd_graph() 477 if (graph->package.count != (n + 2)) in acpi_validate_dsd_graph() 561 const union acpi_object *graph_list, *graph; in acpi_get_coresight_graph() local 571 graph = &graph_list->package.elements[i]; in acpi_get_coresight_graph() 572 if (!is_acpi_coresight_graph(graph)) in acpi_get_coresight_graph() 574 if (acpi_validate_coresight_graph(graph)) in acpi_get_coresight_graph() 575 return graph; in acpi_get_coresight_graph() 667 const union acpi_object *graph; in acpi_coresight_parse_graph() local [all …]
|
| /linux/arch/sh/kernel/ |
| A D | dumpstack.c | 57 struct thread_info *tinfo, int *graph) in print_ftrace_graph_addr() argument 69 ret_stack = ftrace_graph_get_ret_stack(task, *graph); in print_ftrace_graph_addr() 77 (*graph)++; in print_ftrace_graph_addr() 83 struct thread_info *tinfo, int *graph) in print_ftrace_graph_addr() argument 93 int graph = 0; in stack_reader_dump() local 105 context, &graph); in stack_reader_dump()
|
| /linux/Documentation/devicetree/bindings/media/i2c/ |
| A D | techwell,tw9900.yaml | 35 $ref: /schemas/graph.yaml#/properties/ports 39 $ref: /schemas/graph.yaml#/properties/port 44 $ref: /schemas/graph.yaml#/properties/endpoint 48 $ref: /schemas/graph.yaml#/properties/endpoint 52 $ref: /schemas/graph.yaml#/properties/endpoint 56 $ref: /schemas/graph.yaml#/properties/endpoint 70 $ref: /schemas/graph.yaml#/properties/port
|
| A D | adv7180.yaml | 47 $ref: /schemas/graph.yaml#/$defs/port-base 89 $ref: /schemas/graph.yaml#/properties/ports 92 $ref: /schemas/graph.yaml#/properties/port 97 $ref: /schemas/graph.yaml#/properties/port 114 $ref: /schemas/graph.yaml#/properties/ports 117 $ref: /schemas/graph.yaml#/properties/port 122 $ref: /schemas/graph.yaml#/properties/port
|
| A D | maxim,max96712.yaml | 37 $ref: /schemas/graph.yaml#/properties/ports 41 $ref: /schemas/graph.yaml#/properties/port 45 $ref: /schemas/graph.yaml#/properties/port 49 $ref: /schemas/graph.yaml#/properties/port 53 $ref: /schemas/graph.yaml#/properties/port 57 $ref: /schemas/graph.yaml#/$defs/port-base
|
| /linux/Documentation/devicetree/bindings/usb/ |
| A D | usb-switch.yaml | 29 $ref: /schemas/graph.yaml#/properties/port 35 $ref: /schemas/graph.yaml#/properties/ports 38 $ref: /schemas/graph.yaml#/properties/port 43 $ref: /schemas/graph.yaml#/$defs/port-base 50 $ref: /schemas/graph.yaml#/$defs/endpoint-base
|
| A D | ti,hd3ss3220.yaml | 29 $ref: /schemas/graph.yaml#/properties/ports 30 description: OF graph bindings (specified in bindings/graph.txt) that model 35 $ref: /schemas/graph.yaml#/properties/port 39 $ref: /schemas/graph.yaml#/properties/port
|
| /linux/Documentation/devicetree/bindings/display/msm/ |
| A D | mdp4.yaml | 42 $ref: /schemas/graph.yaml#/properties/ports 45 $ref: /schemas/graph.yaml#/properties/port 49 $ref: /schemas/graph.yaml#/properties/port 53 $ref: /schemas/graph.yaml#/properties/port 57 $ref: /schemas/graph.yaml#/properties/port
|
| /linux/tools/perf/tests/attr/ |
| A D | README | 47 perf record -g kill (test-record-graph-default) 48 perf record -g kill (test-record-graph-default-aarch64) 49 perf record --call-graph dwarf kill (test-record-graph-dwarf) 50 perf record --call-graph fp kill (test-record-graph-fp) 51 perf record --call-graph fp kill (test-record-graph-fp-aarch64)
|
| /linux/kernel/trace/ |
| A D | trace_irqsoff.c | 40 static void stop_irqsoff_tracer(struct trace_array *tr, int graph); 41 static int start_irqsoff_tracer(struct trace_array *tr, int graph); 459 static int register_irqsoff_function(struct trace_array *tr, int graph, int set) in register_irqsoff_function() argument 467 if (graph) in register_irqsoff_function() 478 static void unregister_irqsoff_function(struct trace_array *tr, int graph) in unregister_irqsoff_function() argument 483 if (graph) in unregister_irqsoff_function() 507 static void unregister_irqsoff_function(struct trace_array *tr, int graph) { } in unregister_irqsoff_function() argument 529 static int start_irqsoff_tracer(struct trace_array *tr, int graph) in start_irqsoff_tracer() argument 533 ret = register_irqsoff_function(tr, graph, 0); in start_irqsoff_tracer() 543 static void stop_irqsoff_tracer(struct trace_array *tr, int graph) in stop_irqsoff_tracer() argument [all …]
|
| /linux/Documentation/devicetree/bindings/display/bridge/ |
| A D | sil,sii9022.yaml | 47 audio-graph-card bindings. See their binding documents on how to describe 51 Documentation/devicetree/bindings/sound/audio-graph-card.yaml 52 Note: In case of the audio-graph-card binding the used port index should 80 $ref: /schemas/graph.yaml#/properties/ports 84 $ref: /schemas/graph.yaml#/properties/port 88 $ref: /schemas/graph.yaml#/properties/port 92 $ref: /schemas/graph.yaml#/properties/port
|