Home
last modified time | relevance | path

Searched full:graph (Results 1 – 25 of 621) sorted by relevance

12345678910>>...25

/kernel/linux/linux-5.10/tools/power/pm-graph/
DMakefile9 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph
10 install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
11 install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config
13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config
14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
18 install -m 644 config/standby.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
[all …]
/kernel/linux/linux-4.19/tools/power/pm-graph/
DMakefile9 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph
10 install sleepgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
11 install bootgraph.py $(DESTDIR)$(PREFIX)/lib/pm-graph
12 install -d $(DESTDIR)$(PREFIX)/lib/pm-graph/config
13 install -m 644 config/cgskip.txt $(DESTDIR)$(PREFIX)/lib/pm-graph/config
14 install -m 644 config/freeze-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
15 install -m 644 config/freeze.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
16 install -m 644 config/freeze-dev.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
17 install -m 644 config/standby-callgraph.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
18 install -m 644 config/standby.cfg $(DESTDIR)$(PREFIX)/lib/pm-graph/config
[all …]
/kernel/linux/linux-5.10/drivers/media/mc/
Dmc-entity.c228 * Graph traversal
241 static void stack_push(struct media_graph *graph, in stack_push() argument
244 if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) { in stack_push()
248 graph->top++; in stack_push()
249 graph->stack[graph->top].link = entity->links.next; in stack_push()
250 graph->stack[graph->top].entity = entity; in stack_push()
253 static struct media_entity *stack_pop(struct media_graph *graph) in stack_pop() argument
257 entity = graph->stack[graph->top].entity; in stack_pop()
258 graph->top--; in stack_pop()
267 * media_graph_walk_init - Allocate resources for graph walk
[all …]
/kernel/linux/linux-4.19/drivers/media/
Dmedia-entity.c237 * Graph traversal
250 static void stack_push(struct media_graph *graph, in stack_push() argument
253 if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) { in stack_push()
257 graph->top++; in stack_push()
258 graph->stack[graph->top].link = entity->links.next; in stack_push()
259 graph->stack[graph->top].entity = entity; in stack_push()
262 static struct media_entity *stack_pop(struct media_graph *graph) in stack_pop() argument
266 entity = graph->stack[graph->top].entity; in stack_pop()
267 graph->top--; in stack_pop()
276 * media_graph_walk_init - Allocate resources for graph walk
[all …]
/kernel/linux/linux-5.10/drivers/hwtracing/coresight/
Dcoresight-platform.c95 * if the device doesn't have any graph connections in of_coresight_get_ports_legacy()
351 /* ACPI Graph _DSD UUID : "ab02a46b-74c7-45a2-bd68-f7d344ef2153" */
355 /* Coresight ACPI Graph UUID : "3ecbc8b6-1d0e-4fb3-8107-e627f805c6cd" */
408 * acpi_validate_dsd_graph - Make sure the given _DSD graph conforms
409 * to the ACPI _DSD Graph specification.
411 * ACPI Devices Graph property has the following format:
415 * Graph[1],
417 * Graph[N]
420 * And each Graph entry has the following format:
422 * GraphID - Integer, identifying a graph the device belongs to.
[all …]
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/sound/
Daudio-graph-scu-card.txt1 Audio-Graph-SCU-Card:
3 Audio-Graph-SCU-Card is "Audio-Graph-Card" + "ALSA DPCM".
6 see ${LINUX}/Documentation/devicetree/bindings/graph.txt
8 Basically, Audio-Graph-SCU-Card property is same as
9 Simple-Card / Simple-SCU-Card / Audio-Graph-Card.
12 ${LINUX}/Documentation/devicetree/bindings/sound/audio-graph-card.txt
14 Below are same as Simple-Card / Audio-Graph-Card.
35 - compatible : "audio-graph-scu-card";
41 compatible = "audio-graph-scu-card";
77 compatible = "audio-graph-scu-card";
Daudio-graph-card.txt1 Audio Graph Card:
3 Audio Graph Card specifies audio DAI connections of SoC <-> codec.
5 see ${LINUX}/Documentation/devicetree/bindings/graph.txt
7 Basically, Audio Graph Card property is same as Simple Card.
29 - compatible : "audio-graph-card";
38 compatible = "audio-graph-card";
67 compatible = "audio-graph-card";
/kernel/linux/linux-5.10/lib/
Dobjagg.c710 static int objagg_tmp_graph_edge_index(struct objagg_tmp_graph *graph, in objagg_tmp_graph_edge_index() argument
713 return index * graph->nodes_count + parent_index; in objagg_tmp_graph_edge_index()
716 static void objagg_tmp_graph_edge_set(struct objagg_tmp_graph *graph, in objagg_tmp_graph_edge_set() argument
719 int edge_index = objagg_tmp_graph_edge_index(graph, index, in objagg_tmp_graph_edge_set()
722 __set_bit(edge_index, graph->edges); in objagg_tmp_graph_edge_set()
725 static bool objagg_tmp_graph_is_edge(struct objagg_tmp_graph *graph, in objagg_tmp_graph_is_edge() argument
728 int edge_index = objagg_tmp_graph_edge_index(graph, index, in objagg_tmp_graph_is_edge()
731 return test_bit(edge_index, graph->edges); in objagg_tmp_graph_is_edge()
734 static unsigned int objagg_tmp_graph_node_weight(struct objagg_tmp_graph *graph, in objagg_tmp_graph_node_weight() argument
737 struct objagg_tmp_node *node = &graph->nodes[index]; in objagg_tmp_graph_node_weight()
[all …]
/kernel/linux/linux-4.19/include/media/
Dmedia-entity.h32 * enum media_gobj_type - type of a graph object
51 /* Structs to represent the objects that belong to a media graph */
54 * struct media_gobj - Define a graph object.
63 * All objects on the media graph should have this struct embedded
86 * struct media_graph - Media graph traversal state
88 * @stack: Graph traversal stack; the stack contains information
91 * @stack.entity: pointer to &struct media_entity at the graph.
110 * @graph: Media graph walk during pipeline start / stop
114 struct media_graph graph; member
118 * struct media_link - A link object part of a media graph.
[all …]
/kernel/linux/linux-5.10/include/media/
Dmedia-entity.h24 * enum media_gobj_type - type of a graph object
43 /* Structs to represent the objects that belong to a media graph */
46 * struct media_gobj - Define a graph object.
55 * All objects on the media graph should have this struct embedded
78 * struct media_graph - Media graph traversal state
80 * @stack: Graph traversal stack; the stack contains information
83 * @stack.entity: pointer to &struct media_entity at the graph.
102 * @graph: Media graph walk during pipeline start / stop
106 struct media_graph graph; member
110 * struct media_link - A link object part of a media graph.
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/
Daudio-graph-card.txt1 Audio Graph Card:
3 Audio Graph Card specifies audio DAI connections of SoC <-> codec.
5 see ${LINUX}/Documentation/devicetree/bindings/graph.txt
7 Basically, Audio Graph Card property is same as Simple Card.
29 - compatible : "audio-graph-card";
40 compatible = "audio-graph-card";
71 compatible = "audio-graph-card";
143 compatible = "audio-graph-card";
180 compatible = "audio-graph-card";
193 audio-graph-card,prefix = "codec";
[all …]
/kernel/linux/linux-4.19/sound/soc/generic/
DMakefile5 snd-soc-audio-graph-card-objs := audio-graph-card.o
6 snd-soc-audio-graph-scu-card-objs := audio-graph-scu-card.o
11 obj-$(CONFIG_SND_AUDIO_GRAPH_CARD) += snd-soc-audio-graph-card.o
12 obj-$(CONFIG_SND_AUDIO_GRAPH_SCU_CARD) += snd-soc-audio-graph-scu-card.o
/kernel/linux/linux-4.19/drivers/media/v4l2-core/
Dv4l2-mc.c259 struct media_graph *graph) in pipeline_pm_use_count() argument
263 media_graph_walk_start(graph, entity); in pipeline_pm_use_count()
265 while ((entity = media_graph_walk_next(graph))) { in pipeline_pm_use_count()
318 struct media_graph *graph) in pipeline_pm_power() argument
326 media_graph_walk_start(graph, entity); in pipeline_pm_power()
328 while (!ret && (entity = media_graph_walk_next(graph))) in pipeline_pm_power()
335 media_graph_walk_start(graph, first); in pipeline_pm_power()
337 while ((first = media_graph_walk_next(graph)) in pipeline_pm_power()
371 struct media_graph *graph = &link->graph_obj.mdev->pm_count_walk; in v4l2_pipeline_link_notify() local
378 source_use = pipeline_pm_use_count(source, graph); in v4l2_pipeline_link_notify()
[all …]
/kernel/linux/linux-4.19/tools/perf/Documentation/
Dperf-config.txt108 [call-graph]
111 print-type = graph
140 To query the record mode of call graph, do
142 % perf config call-graph.record-mode
146 % perf config report.queue-size call-graph.order report.children
148 To query the config value of sort order of call graph in user config file (i.e. `~/.perfconfig`), do
150 % perf config --user call-graph.sort-order
365 call-graph.*::
367 there're options in control of call-graph.
369 call-graph.record-mode::
[all …]
/kernel/linux/linux-5.10/drivers/iio/adc/
Dsc27xx_adc.c92 * through 2 points in the linear graph. If the voltage is less than 1.2v, we
93 * should use the small-scale graph, and if more than 1.2v, we should use the
94 * big-scale graph.
125 struct sc27xx_adc_linear_graph *graph; in sc27xx_adc_scale_calibration() local
134 graph = &big_scale_graph; in sc27xx_adc_scale_calibration()
138 graph = &small_scale_graph; in sc27xx_adc_scale_calibration()
154 /* Only need to calibrate the adc values in the linear graph. */ in sc27xx_adc_scale_calibration()
155 graph->adc0 = sc27xx_adc_get_calib_data(calib_data, calib_graph->adc0); in sc27xx_adc_scale_calibration()
156 graph->adc1 = sc27xx_adc_get_calib_data(calib_data >> 8, in sc27xx_adc_scale_calibration()
271 static int sc27xx_adc_to_volt(struct sc27xx_adc_linear_graph *graph, in sc27xx_adc_to_volt() argument
[all …]
/kernel/linux/linux-5.10/tools/perf/Documentation/
Dperf-config.txt112 [call-graph]
115 print-type = graph
148 To query the record mode of call graph, do
150 % perf config call-graph.record-mode
154 % perf config report.queue-size call-graph.order report.children
156 To query the config value of sort order of call graph in user config file (i.e. `~/.perfconfig`), do
158 % perf config --user call-graph.sort-order
412 call-graph.*::
414 -g/--call-graph options).
416 call-graph.record-mode::
[all …]
/kernel/linux/linux-5.10/Documentation/userspace-api/media/mediactl/
Dmedia-ioc-g-topology.rst13 MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
42 the graph elements that are desired, putting the pointers to them at the
47 desired arrays with the media graph elements.
60 - Version of the media graph topology. When the graph is created,
61 this field starts with zero. Every time a graph element is added
66 - Number of entities in the graph
81 - Number of interfaces in the graph
96 - Total number of pads in the graph
110 - Total number of data and interface links in the graph
290 smaller than the actual number of elements inside the graph. This
Dmedia-controller-model.rst10 hardware devices and Linux Kernel interfaces are modelled as graph
11 objects on an oriented graph. The object types that constitute the graph
20 - An **interface** is a graph representation of a Linux Kernel
22 controls one or more entities in the graph.
/kernel/linux/linux-4.19/Documentation/media/uapi/mediactl/
Dmedia-ioc-g-topology.rst12 MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
42 the graph elements that are desired, putting the pointers to them at the
47 desired arrays with the media graph elements.
60 - Version of the media graph topology. When the graph is created,
61 this field starts with zero. Every time a graph element is added
66 - Number of entities in the graph
81 - Number of interfaces in the graph
96 - Total number of pads in the graph
110 - Total number of data and interface links in the graph
295 smaller than the actual number of elements inside the graph. This
Dmedia-controller-model.rst10 hardware devices and Linux Kernel interfaces are modelled as graph
11 objects on an oriented graph. The object types that constitute the graph
20 - An **interface** is a graph representation of a Linux Kernel
22 controls one or more entities in the graph.
/kernel/linux/linux-4.19/Documentation/media/kapi/
Dmc-core.rst16 modelled as an oriented graph of building blocks called entities connected
135 Graph traversal
138 The media framework provides APIs to iterate over entities in a graph.
153 Drivers might also need to iterate over all entities in a graph that can be
155 framework provides a depth-first graph traversal API for that purpose.
160 supported by the graph traversal API. To prevent infinite loops, the graph
164 Drivers initiate a graph traversal by calling
167 The graph structure, provided by the caller, is initialized to start graph
173 When the graph traversal is complete the function will return ``NULL``.
175 Graph traversal can be interrupted at any moment. No cleanup function call
[all …]
/kernel/linux/linux-5.10/tools/perf/util/
Dcallchain.h20 #define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
22 # define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
31 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
32 HELP_PAD "threshold:\tminimum call graph inclusion threshold (<percent>)\n" \
33 HELP_PAD "print_limit:\tmaximum number of call graph entry (<number>)\n" \
34 HELP_PAD "order:\t\tcall graph order (caller|callee)\n" \
35 HELP_PAD "sort_key:\tcall graph sort key (function|address)\n" \
36 HELP_PAD "branch:\t\tinclude last branch info to call graph (branch)\n" \
37 HELP_PAD "value:\t\tcall graph value (percent|period|count)\n"
/kernel/linux/linux-4.19/tools/perf/util/
Dcallchain.h15 #define CALLCHAIN_HELP "setup and enables call-graph (stack chain/backtrace):\n\n"
17 # define RECORD_MODE_HELP HELP_PAD "record_mode:\tcall graph recording mode (fp|dwarf|lbr)\n"
26 HELP_PAD "print_type:\tcall graph printing style (graph|flat|fractal|folded|none)\n" \
27 HELP_PAD "threshold:\tminimum call graph inclusion threshold (<percent>)\n" \
28 HELP_PAD "print_limit:\tmaximum number of call graph entry (<number>)\n" \
29 HELP_PAD "order:\t\tcall graph order (caller|callee)\n" \
30 HELP_PAD "sort_key:\tcall graph sort key (function|address)\n" \
31 HELP_PAD "branch:\t\tinclude last branch info to call graph (branch)\n" \
32 HELP_PAD "value:\t\tcall graph value (percent|period|count)\n"
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/runtime/debug/interface/
Dia_css_debug_pipe.h26 * @brief Internal debug support for constructing a pipe graph.
33 * @brief Internal debug support for constructing a pipe graph.
40 * @brief Internal debug support for constructing a pipe graph.
51 * @brief Internal debug support for constructing a pipe graph.
60 * @brief Internal debug support for constructing a pipe graph.
/kernel/linux/linux-5.10/Documentation/driver-api/media/
Dmc-core.rst18 modelled as an oriented graph of building blocks called entities connected
137 Graph traversal
140 The media framework provides APIs to iterate over entities in a graph.
155 Drivers might also need to iterate over all entities in a graph that can be
157 framework provides a depth-first graph traversal API for that purpose.
162 supported by the graph traversal API. To prevent infinite loops, the graph
166 Drivers initiate a graph traversal by calling
169 The graph structure, provided by the caller, is initialized to start graph
175 When the graph traversal is complete the function will return ``NULL``.
177 Graph traversal can be interrupted at any moment. No cleanup function call
[all …]

12345678910>>...25