Home
last modified time | relevance | path

Searched full:consumer (Results 1 – 25 of 1787) sorted by relevance

12345678910>>...72

/Linux-v5.10/virt/lib/
Dirqbypass.c91 struct irq_bypass_consumer *consumer; in irq_bypass_register_producer() local
111 list_for_each_entry(consumer, &consumers, node) { in irq_bypass_register_producer()
112 if (consumer->token == producer->token) { in irq_bypass_register_producer()
113 ret = __connect(producer, consumer); in irq_bypass_register_producer()
137 * and disconnect it from any connected IRQ consumer.
142 struct irq_bypass_consumer *consumer; in irq_bypass_unregister_producer() local
158 list_for_each_entry(consumer, &consumers, node) { in irq_bypass_unregister_producer()
159 if (consumer->token == producer->token) { in irq_bypass_unregister_producer()
160 __disconnect(producer, consumer); in irq_bypass_unregister_producer()
177 * irq_bypass_register_consumer - register IRQ bypass consumer
[all …]
/Linux-v5.10/Documentation/ABI/testing/
Dsysfs-class-devlink7 denoted as ... above, is of the form <supplier>--<consumer>
8 where <supplier> is the supplier device name and <consumer> is
9 the consumer device name.
16 automatically removed by the driver core when the consumer and
21 - 'consumer unbind'
25 'consumer unbind' means the device link will be removed when
26 the consumer's driver is unbound from the consumer device.
32 when as long as the supplier and consumer devices themselves
35 What: /sys/class/devlink/.../consumer
39 This file is a symlink to the consumer device's sysfs directory.
[all …]
Dsysfs-devices-consumer1 What: /sys/devices/.../consumer:<consumer>
5 The /sys/devices/.../consumer:<consumer> are symlinks to device
6 links where this device is the supplier. <consumer> denotes the
7 name of the consumer in that device link. There can be zero or
/Linux-v5.10/drivers/pps/
Dkc.c3 * PPS kernel consumer API
23 /* state variables to bind kernel consumer */
25 /* PPS API (RFC 2783): current source and mode for kernel consumer */
27 static int pps_kc_hardpps_mode; /* mode bits for kernel consumer */
29 /* pps_kc_bind - control PPS kernel consumer binding
31 * @bind_args: kernel consumer bind parameters
33 * This function is used to bind or unbind PPS kernel consumer according to
38 /* Check if another consumer is already bound */ in pps_kc_bind()
47 " consumer\n"); in pps_kc_bind()
50 dev_err(pps->dev, "selected kernel consumer" in pps_kc_bind()
[all …]
/Linux-v5.10/Documentation/driver-api/iio/
Dhw-consumer.rst2 HW consumer
5 case the buffers between IIO provider and IIO consumer are handled by hardware.
6 The Industrial I/O HW consumer offers a way to bond these IIO devices without
8 :file:`drivers/iio/buffer/hw-consumer.c`
11 * struct iio_hw_consumer — Hardware consumer structure
12 * :c:func:`iio_hw_consumer_alloc` — Allocate IIO hardware consumer
13 * :c:func:`iio_hw_consumer_free` — Free IIO hardware consumer
14 * :c:func:`iio_hw_consumer_enable` — Enable IIO hardware consumer
15 * :c:func:`iio_hw_consumer_disable` — Disable IIO hardware consumer
18 HW consumer setup
[all …]
/Linux-v5.10/Documentation/power/regulator/
Doverview.rst39 - Consumer
43 Static: consumer does not change its supply voltage or
48 Dynamic: consumer needs to change its supply voltage or
59 Regulator -+-> Switch-1 -+-> Switch-2 --> [Consumer A]
61 | +-> [Consumer B], [Consumer C]
63 +-> [Consumer D], [Consumer E]
69 - Domain 3: Consumer A.
78 Regulator-1 -+-> Regulator-2 -+-> [Consumer A]
80 +-> [Consumer B]
84 - Domain 1: Regulator-2, Consumer B.
[all …]
Dconsumer.rst2 Regulator Consumer Driver Interface
5 This text describes the regulator interface for consumer device drivers.
9 1. Consumer Regulator Access (static & dynamic drivers)
12 A consumer driver can get access to its supply regulator by calling ::
16 The consumer passes in its struct device pointer and power supply ID. The core
19 regulator that supplies this consumer.
21 To release the regulator the consumer driver should call ::
25 Consumers can be supplied by more than one regulator e.g. codec consumer with
39 A consumer can enable its power supply by calling::
45 This may happen if the consumer shares the regulator or the regulator has been
[all …]
Dmachine.rst10 Regulator-1 -+-> Regulator-2 --> [Consumer A @ 1.8 - 2.0V]
12 +-> [Consumer B @ 3.3V]
20 const char *dev_name; /* consumer dev_name() */
21 const char *supply; /* consumer supply - e.g. "vcc" */
27 REGULATOR_SUPPLY("Vcc", "consumer B"),
31 REGULATOR_SUPPLY("Vcc", "consumer A"),
34 This maps Regulator-1 to the 'Vcc' supply for Consumer B and maps Regulator-2
35 to the 'Vcc' supply for Consumer A.
59 with the core so that Regulator-1 is also enabled when Consumer A enables its
/Linux-v5.10/net/xdp/
Dxsk_queue.h18 /* Hinder the adjacent cache prefetcher to prefetch the consumer
22 u32 consumer ____cacheline_aligned_in_smp;
50 * ring, the kernel is the producer and user space is the consumer. For
51 * the Tx and fill rings, the kernel is the consumer and user space is
54 * producer consumer
56 * if (LOAD ->consumer) { LOAD ->producer
60 * STORE ->producer STORE ->consumer
66 * the producer pointer. If this barrier was missing, the consumer
68 * before the producer has written the new data. The consumer would in
71 * (C) protects the consumer from speculatively loading the data before
[all …]
/Linux-v5.10/Documentation/driver-api/
Ddevice_link.rst29 "supplier" device and its "consumer" devices, and it guarantees driver
30 presence on the supplier. The consumer devices are not probed before the
42 whenever and for as long as the consumer is runtime resumed.
49 :c:func:`device_initialize()` has been called for the consumer.
60 represents a driver presence dependency, yet is added from the consumer's
63 consumer in the first place. The onus is thus on the consumer to check
65 non-presence. [Note that it is valid to create a link from the consumer's
66 ``->probe`` callback while the supplier is still probing, but the consumer must
68 the case, for instance, if the consumer has just acquired some resources that
72 is added in the ``->probe`` callback of the supplier or consumer driver, it is
[all …]
Dregulator.rst40 Consumer
49 regulator and all consumer devices. The configuration of the regulator
58 Consumer driver interface
61 This offers a similar API to the kernel clock framework. Consumer
79 regulators. Consumer devices use the :c:func:`regulator_enable()` and
86 cause the supply provided by the regulator to be disabled. Consumer
92 Some consumer devices may need to be able to dynamically configure their
160 .. kernel-doc:: include/linux/regulator/consumer.h
/Linux-v5.10/Documentation/core-api/
Dcircular-buffers.rst15 (2) Memory barriers for when the producer and the consumer of objects in the
19 producer and just one consumer. It is possible to handle multiple producers by
31 - The consumer.
44 (2) A 'tail' index - the point at which the consumer finds the next item in
115 but the consumer may still be depleting the buffer on another CPU and
118 To the consumer it will show an upper bound as the producer may be busy
121 (2) CIRC_CNT*() are intended to be used in the consumer. To the consumer they
122 will return a lower bound as the consumer controls the tail index, but the
126 To the producer it will show an upper bound as the consumer may be busy
130 producer and consumer become visible cannot be guaranteed as they are
[all …]
/Linux-v5.10/drivers/staging/iio/Documentation/
Dinkernel.txt20 consumer_dev_name allows identification of the consumer device.
21 This are then used to find the channel mapping from the consumer device (see
24 Finally consumer_channel is a string identifying the channel to the consumer.
37 to associate a given channel with the consumer requesting it.
39 Acting as an IIO consumer (consumer.h)
41 The consumer first has to obtain an iio_channel structure from the core
55 with a given consumer. This is useful for generic drivers such as
57 consumer driver. To do this, use iio_channel_get_all.
/Linux-v5.10/kernel/trace/
Dring_buffer_benchmark.c34 static struct task_struct *consumer; variable
55 MODULE_PARM_DESC(consumer_nice, "nice prio for consumer");
61 MODULE_PARM_DESC(consumer_fifo, "use fifo for consumer: 0 - disabled, 1 - low prio, 2 - fifo");
267 if (consumer && !(cnt % wakeup_interval)) in ring_buffer_producer()
268 wake_up_process(consumer); in ring_buffer_producer()
286 if (consumer) { in ring_buffer_producer()
293 wake_up_process(consumer); in ring_buffer_producer()
307 trace_printk("Running Consumer at SCHED_FIFO %s\n", in ring_buffer_producer()
310 trace_printk("Running Consumer at nice: %d\n", in ring_buffer_producer()
406 if (consumer) { in ring_buffer_producer_thread()
[all …]
/Linux-v5.10/arch/arm/mach-sti/
DKconfig3 bool "STMicroelectronics Consumer Electronics SOCs"
30 bool "STiH415 STMicroelectronics Consumer Electronics family"
33 This enables support for STMicroelectronics Digital Consumer
39 bool "STiH416 STMicroelectronics Consumer Electronics family"
42 This enables support for STMicroelectronics Digital Consumer
48 bool "STiH407 STMicroelectronics Consumer Electronics family"
52 This enables support for STMicroelectronics Digital Consumer
/Linux-v5.10/drivers/gpio/
Dgpiolib-devres.c12 #include <linux/gpio/consumer.h>
48 * @dev: GPIO consumer
49 * @con_id: function within the GPIO consumer
66 * @dev: GPIO consumer
67 * @con_id: function within the GPIO consumer
84 * @dev: GPIO consumer
85 * @con_id: function within the GPIO consumer
86 * @idx: index of the GPIO to obtain in the consumer
137 * @index: index of the GPIO to obtain for the consumer
189 * @dev: GPIO consumer
[all …]
/Linux-v5.10/include/linux/
Dirqbypass.h27 * callbacks. Match tokens must be unique per producer/consumer, 1:N pairings
34 * @token: opaque token to match between producer and consumer (non-NULL)
36 * @add_consumer: Connect the IRQ producer to an IRQ consumer (optional)
37 * @del_consumer: Disconnect the IRQ producer from an IRQ consumer (optional)
58 * struct irq_bypass_consumer - IRQ bypass consumer definition
60 * @token: opaque token to match between producer and consumer (non-NULL)
61 * @add_producer: Connect the IRQ consumer to an IRQ producer
62 * @del_producer: Disconnect the IRQ consumer from an IRQ producer
66 * The IRQ bypass consumer structure represents an interrupt sink for
Dclk.h80 * @id: clock consumer ID
277 * @dev: device for clock "consumer"
278 * @id: clock consumer ID
282 * uses @dev and @id to determine the clock consumer, and thereby
294 * @dev: device for clock "consumer"
296 * @clks: the clk_bulk_data table of consumer
305 * clock consumer, and thereby the clock producer.
317 * @dev: device for clock "consumer"
318 * @clks: pointer to the clk_bulk_data table of consumer
337 * @dev: device for clock "consumer"
[all …]
/Linux-v5.10/drivers/iio/buffer/
Dindustrialio-hw-consumer.c13 #include <linux/iio/consumer.h>
14 #include <linux/iio/hw-consumer.h>
18 * struct iio_hw_consumer - IIO hw consumer block
78 * iio_hw_consumer_alloc() - Allocate IIO hardware consumer
79 * @dev: Pointer to consumer device.
126 * iio_hw_consumer_free() - Free IIO hardware consumer
127 * @hwc: hw consumer to free.
147 * @dev: Pointer to consumer device.
176 * iio_hw_consumer_enable() - Enable IIO hardware consumer
202 * iio_hw_consumer_disable() - Disable IIO hardware consumer
[all …]
/Linux-v5.10/Documentation/infiniband/
Dcore_locking.rst62 example, a consumer may safely call ib_poll_cq() on multiple CPUs
71 allowed for a low-level driver to call a consumer's completion event
85 consumer CQ event callback:
89 /* ... */ consumer CQ event callback:
108 semaphores that could cause deadlock if a consumer calls back into
111 An upper level protocol consumer may begin using an IB device as
113 device. A consumer must finish all cleanup and free all resources
116 A consumer is permitted to sleep in its add and remove methods.
/Linux-v5.10/tools/testing/selftests/bpf/benchs/
Dbench_rename.c21 fprintf(stderr, "benchmark doesn't support multi-consumer!\n"); in validate()
109 static void *consumer(void *input) in consumer() function
119 .consumer_thread = consumer,
130 .consumer_thread = consumer,
141 .consumer_thread = consumer,
152 .consumer_thread = consumer,
163 .consumer_thread = consumer,
174 .consumer_thread = consumer,
/Linux-v5.10/include/linux/iio/
Dconsumer.h3 * Industrial I/O in kernel consumer interface
18 * struct iio_channel - everything needed for a consumer to use a channel
21 * @data: Data about the channel used by consumer.
31 * @dev: Pointer to consumer device. Device name must match
33 * with which the desired provider to consumer mapping
35 * @consumer_channel: Unique name to identify the channel on the consumer
37 * the consumer. E.g. 'battery_voltage'
50 * @dev: Pointer to consumer device. Device name must match
52 * with which the desired provider to consumer mapping
54 * @consumer_channel: Unique name to identify the channel on the consumer
[all …]
/Linux-v5.10/Documentation/devicetree/bindings/net/
Dmdio-mux-multiplexer.txt1 Properties for an MDIO bus multiplexer consumer device
3 This is a special case of MDIO mux when MDIO mux is defined as a consumer
13 each child node of mdio bus multiplexer consumer device represent a mdio
21 In below example the Mux producer and consumer are separate nodes.
38 mdio-mux-1 { // Mux consumer
61 mdio-mux-2 { // Mux consumer
/Linux-v5.10/tools/lib/bpf/
Dxsk.c90 __u64 consumer; member
173 off->rx.consumer = off_v1.rx.consumer; in xsk_mmap_offsets_v1()
175 off->rx.flags = off_v1.rx.consumer + sizeof(__u32); in xsk_mmap_offsets_v1()
178 off->tx.consumer = off_v1.tx.consumer; in xsk_mmap_offsets_v1()
180 off->tx.flags = off_v1.tx.consumer + sizeof(__u32); in xsk_mmap_offsets_v1()
183 off->fr.consumer = off_v1.fr.consumer; in xsk_mmap_offsets_v1()
185 off->fr.flags = off_v1.fr.consumer + sizeof(__u32); in xsk_mmap_offsets_v1()
188 off->cr.consumer = off_v1.cr.consumer; in xsk_mmap_offsets_v1()
190 off->cr.flags = off_v1.cr.consumer + sizeof(__u32); in xsk_mmap_offsets_v1()
247 fill->consumer = map + off.fr.consumer; in xsk_create_umem_rings()
[all …]
/Linux-v5.10/drivers/base/
Dcore.c124 * its consumer etc). Return 1 if that is the case or 0 otherwise.
142 if (link->consumer == target) in device_is_dependent()
145 ret = device_is_dependent(link->consumer, target); in device_is_dependent()
153 struct device *consumer, in device_link_init_status() argument
158 switch (consumer->links.status) { in device_link_init_status()
161 * A consumer driver can create a link to a supplier in device_link_init_status()
175 switch (consumer->links.status) { in device_link_init_status()
214 device_reorder_to_tail(link->consumer, NULL); in device_reorder_to_tail()
258 output = "consumer probing"; in status_show()
284 output = "consumer unbind"; in auto_remove_on_show()
[all …]

12345678910>>...72