/linux-6.6.21/drivers/regulator/ |
D | devres.c | 178 struct regulator_bulk_data *consumers; member 186 regulator_bulk_free(devres->num_consumers, devres->consumers); in devm_regulator_bulk_release() 190 struct regulator_bulk_data *consumers, in _devm_regulator_bulk_get() argument 201 ret = _regulator_bulk_get(dev, num_consumers, consumers, get_type); in _devm_regulator_bulk_get() 203 devres->consumers = consumers; in _devm_regulator_bulk_get() 229 struct regulator_bulk_data *consumers) in devm_regulator_bulk_get() argument 231 return _devm_regulator_bulk_get(dev, num_consumers, consumers, NORMAL_GET); in devm_regulator_bulk_get() 252 struct regulator_bulk_data *consumers) in devm_regulator_bulk_get_exclusive() argument 254 return _devm_regulator_bulk_get(dev, num_consumers, consumers, EXCLUSIVE_GET); in devm_regulator_bulk_get_exclusive() 298 return match->consumers == target; in devm_regulator_bulk_match() [all …]
|
D | of_regulator.c | 744 struct regulator_bulk_data **consumers) in of_regulator_bulk_get_all() argument 752 *consumers = NULL; in of_regulator_bulk_get_all() 763 if (!*consumers) { in of_regulator_bulk_get_all() 774 (*consumers)[n].consumer = tmp; in of_regulator_bulk_get_all() 779 if (*consumers) in of_regulator_bulk_get_all() 783 *consumers = kmalloc_array(num_consumers, in of_regulator_bulk_get_all() 786 if (!*consumers) in of_regulator_bulk_get_all() 792 regulator_put(consumers[n]->consumer); in of_regulator_bulk_get_all()
|
D | core.c | 4860 struct regulator_bulk_data *consumers, enum regulator_get_type get_type) in _regulator_bulk_get() argument 4866 consumers[i].consumer = NULL; in _regulator_bulk_get() 4869 consumers[i].consumer = _regulator_get(dev, in _regulator_bulk_get() 4870 consumers[i].supply, get_type); in _regulator_bulk_get() 4871 if (IS_ERR(consumers[i].consumer)) { in _regulator_bulk_get() 4872 ret = dev_err_probe(dev, PTR_ERR(consumers[i].consumer), in _regulator_bulk_get() 4874 consumers[i].supply); in _regulator_bulk_get() 4875 consumers[i].consumer = NULL; in _regulator_bulk_get() 4879 if (consumers[i].init_load_uA > 0) { in _regulator_bulk_get() 4880 ret = regulator_set_load(consumers[i].consumer, in _regulator_bulk_get() [all …]
|
/linux-6.6.21/include/linux/regulator/ |
D | consumer.h | 246 struct regulator_bulk_data *consumers); 248 struct regulator_bulk_data **consumers); 250 struct regulator_bulk_data *consumers); 251 void devm_regulator_bulk_put(struct regulator_bulk_data *consumers); 253 struct regulator_bulk_data *consumers); 259 struct regulator_bulk_data *consumers); 263 struct regulator_bulk_data *consumers); 265 struct regulator_bulk_data *consumers); 267 struct regulator_bulk_data *consumers); 322 void regulator_bulk_set_supply_names(struct regulator_bulk_data *consumers, [all …]
|
/linux-6.6.21/virt/lib/ |
D | irqbypass.c | 26 static LIST_HEAD(consumers); 107 list_for_each_entry(consumer, &consumers, node) { in irq_bypass_register_producer() 154 list_for_each_entry(consumer, &consumers, node) { in irq_bypass_unregister_producer() 196 list_for_each_entry(tmp, &consumers, node) { in irq_bypass_register_consumer() 212 list_add(&consumer->node, &consumers); in irq_bypass_register_consumer() 246 list_for_each_entry(tmp, &consumers, node) { in irq_bypass_unregister_consumer()
|
/linux-6.6.21/drivers/soc/microchip/ |
D | mpfs-sys-controller.c | 33 struct kref consumers; member 89 container_of(kref, struct mpfs_sys_controller, consumers); in mpfs_sys_controller_delete() 99 kref_put(&sys_controller->consumers, mpfs_sys_controller_delete); in mpfs_sys_controller_put() 137 kref_init(&sys_controller->consumers); in mpfs_sys_controller_probe() 185 if (!kref_get_unless_zero(&sys_controller->consumers)) in mpfs_sys_controller_get()
|
/linux-6.6.21/Documentation/power/regulator/ |
D | consumer.rst | 60 This may not disable the supply if it's shared with other consumers. The 69 consumers will be powered off. 137 Some consumers can further save system power by changing the operating mode of 138 their supply regulator to be more efficient when the consumers operating state 151 on all its consumers) and change operating mode (if necessary and permitted) 158 Most consumers will use indirect operating mode control since they have no 160 consumers. 172 Direct mode will only be used by consumers that *know* about the regulator and 173 are not sharing the regulator with other consumers. 179 Regulators can notify consumers of external events. Events could be received by [all …]
|
D | design.rst | 32 different consumers. 37 very easy to handle and so that consumers will work with shared
|
/linux-6.6.21/Documentation/driver-api/hte/ |
D | tegra-hte.rst | 21 below. The GPIO GTE code supports both kernel and userspace consumers. The 22 kernel space consumers can directly talk to HTE subsystem while userspace 23 consumers timestamp requests go through GPIOLIB CDEV framework to HTE 30 For userspace consumers, GPIO_V2_LINE_FLAG_EVENT_CLOCK_HTE flag must be 40 one-to-one mapping with IRQ GTE provider, consumers can simply specify the IRQ
|
D | hte.rst | 21 engine (HTE) framework. Both consumers and providers must include 30 The HTE framework APIs for the consumers 43 consumers and the providers. It expresses timestamp data in nanoseconds in
|
/linux-6.6.21/Documentation/devicetree/bindings/interconnect/ |
D | interconnect.txt | 5 providers/consumers properties. 16 consumers, such as in the case where two network-on-chip fabrics interface 37 = interconnect consumers = 39 The interconnect consumers are device nodes which dynamically express their
|
/linux-6.6.21/Documentation/driver-api/driver-model/ |
D | driver.rst | 191 devices of the device have successfully probed. The list of consumers of the 197 attempt at calling sync_state(), if all the consumers of the device at that 199 away. If there are no consumers of the device during the first attempt, that 200 too is considered as "all consumers of the device have probed" and sync_state() 204 still consumers that haven't probed successfully, the sync_state() call is 205 postponed and reattempted in the future only when one or more consumers of the 207 there are one or more consumers of the device that haven't probed yet, then 214 consumers of the device have probed. Once all the consumers of the device have 216 match the aggregated software state requested by all the consumers. Hence the 221 resources like IOMMUs. For example, IOMMUs with multiple consumers (devices [all …]
|
/linux-6.6.21/drivers/firmware/ |
D | raspberrypi.c | 33 struct kref consumers; member 255 consumers); in rpi_firmware_delete() 263 kref_put(&fw->consumers, rpi_firmware_delete); in rpi_firmware_put() 299 kref_init(&fw->consumers); in rpi_firmware_probe() 366 if (!kref_get_unless_zero(&fw->consumers)) in rpi_firmware_get()
|
/linux-6.6.21/drivers/platform/x86/intel/int3472/ |
D | tps68470.c | 120 *clk_pdata = devm_kzalloc(dev, struct_size(*clk_pdata, consumers, n_consumers), in skl_int3472_fill_clk_pdata() 136 (*clk_pdata)->consumers[i].consumer_dev_name = sensor_name; in skl_int3472_fill_clk_pdata() 192 cells[0].pdata_size = struct_size(clk_pdata, consumers, n_consumers); in skl_int3472_tps68470_probe()
|
/linux-6.6.21/Documentation/driver-api/ |
D | interconnect.rst | 72 Interconnect consumers are the entities which make use of the data paths exposed 73 by the providers. The consumers send requests to providers requesting various 74 throughput, latency and priority. Usually the consumers are device drivers, that 87 Interconnect consumers 90 Interconnect consumers are the clients which use the interconnect APIs to
|
D | reset.rst | 19 consumers. 63 When requesting reset controls, consumers can use symbolic names for their 98 Note that since multiple consumers may be using a shared reset control, there 111 In general, these resets can not be shared between multiple consumers, since 118 All further calls to this function have no effect until all consumers have 181 Reset consumers can control a reset line using an opaque reset control handle, 184 Given the reset control, consumers can call reset_control_assert() and
|
D | regulator.rst | 68 When requesting regulators consumers use symbolic names for their 83 Note that since multiple consumers may be using a regulator and machine 126 consumers on a given system and what the valid operating parameters are 144 consumers are rated for. 151 static consumers.
|
/linux-6.6.21/Documentation/infiniband/ |
D | core_locking.rst | 29 consumers: 60 consumers are not required to perform any serialization. However, 96 Upper level protocol consumers may not sleep in a callback. 102 consumers when it calls ib_register_device(), all initialization
|
/linux-6.6.21/tools/testing/selftests/bpf/ |
D | bench.c | 480 pthread_t *consumers; member 598 state.consumers = calloc(env.consumer_cnt, sizeof(*state.consumers)); in setup_benchmark() 601 if (!state.producers || !state.consumers || !state.results) in setup_benchmark() 610 err = pthread_create(&state.consumers[i], NULL, in setup_benchmark() 618 set_thread_affinity(state.consumers[i], in setup_benchmark()
|
/linux-6.6.21/Documentation/devicetree/bindings/regulator/ |
D | vctrl.txt | 7 - regulator-min-microvolt : smallest voltage consumers may set 8 - regulator-max-microvolt : largest voltage consumers may set
|
/linux-6.6.21/Documentation/crypto/ |
D | intro.rst | 25 - consumers requesting cryptographic services 28 called by consumers using the kernel crypto API 30 This specification is intended for consumers of the kernel crypto API as
|
/linux-6.6.21/Documentation/devicetree/bindings/phy/ |
D | qcom,usb-8x16-phy.txt | 16 Definition: See clock-bindings.txt section "consumers". List of 43 Definition: See reset.txt section "consumers". PHY reset specifier.
|
/linux-6.6.21/include/linux/ |
D | fwnode.h | 46 struct list_head consumers; member 194 INIT_LIST_HEAD(&fwnode->consumers); in fwnode_init()
|
/linux-6.6.21/include/linux/platform_data/ |
D | tps68470.h | 37 struct tps68470_clk_consumer consumers[]; member
|
/linux-6.6.21/Documentation/devicetree/bindings/arm/ |
D | secure.txt | 4 "Normal" and "Secure". Most devicetree consumers (including the Linux 6 world or the Secure world. However some devicetree consumers are 30 world consumers (like kernels that run entirely in Secure) to simply
|