Home
last modified time | relevance | path

Searched refs:bulk (Results 1 – 25 of 72) sorted by relevance

123

/openbmc/u-boot/include/
H A Dreset.h116 int reset_get_bulk(struct udevice *dev, struct reset_ctl_bulk *bulk);
182 int reset_assert_bulk(struct reset_ctl_bulk *bulk);
209 int reset_deassert_bulk(struct reset_ctl_bulk *bulk);
245 static inline int reset_release_bulk(struct reset_ctl_bulk *bulk) in reset_release_bulk() argument
247 return reset_release_all(bulk->resets, bulk->count); in reset_release_bulk()
257 struct reset_ctl_bulk *bulk) in reset_get_bulk() argument
278 static inline int reset_assert_bulk(struct reset_ctl_bulk *bulk) in reset_assert_bulk() argument
288 static inline int reset_deassert_bulk(struct reset_ctl_bulk *bulk) in reset_deassert_bulk() argument
303 static inline int reset_release_bulk(struct reset_ctl_bulk *bulk) in reset_release_bulk() argument
H A Dclk.h116 int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk);
156 static inline int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) in clk_get_bulk() argument
201 static inline int clk_release_bulk(struct clk_bulk *bulk) in clk_release_bulk() argument
203 return clk_release_all(bulk->clks, bulk->count); in clk_release_bulk()
277 int clk_enable_bulk(struct clk_bulk *bulk);
295 int clk_disable_bulk(struct clk_bulk *bulk);
H A Dusb.h700 int (*bulk)(struct udevice *bus, struct usb_device *udev, member
/openbmc/u-boot/drivers/reset/
H A Dreset-uclass.c81 int reset_get_bulk(struct udevice *dev, struct reset_ctl_bulk *bulk) in reset_get_bulk() argument
85 bulk->count = 0; in reset_get_bulk()
91 bulk->resets = devm_kcalloc(dev, count, sizeof(struct reset_ctl), in reset_get_bulk()
93 if (!bulk->resets) in reset_get_bulk()
97 ret = reset_get_by_index(dev, i, &bulk->resets[i]); in reset_get_bulk()
101 ++bulk->count; in reset_get_bulk()
107 err = reset_release_all(bulk->resets, bulk->count); in reset_get_bulk()
160 int reset_assert_bulk(struct reset_ctl_bulk *bulk) in reset_assert_bulk() argument
164 for (i = 0; i < bulk->count; i++) { in reset_assert_bulk()
165 ret = reset_assert(&bulk->resets[i]); in reset_assert_bulk()
[all …]
H A Dsandbox-reset-test.c14 struct reset_ctl_bulk bulk; member
28 return reset_get_bulk(dev, &sbrt->bulk); in sandbox_reset_test_get_bulk()
42 return reset_assert_bulk(&sbrt->bulk); in sandbox_reset_test_assert_bulk()
56 return reset_deassert_bulk(&sbrt->bulk); in sandbox_reset_test_deassert_bulk()
70 return reset_release_bulk(&sbrt->bulk); in sandbox_reset_test_release_bulk()
/openbmc/u-boot/drivers/clk/
H A Dclk-uclass.c106 int clk_get_bulk(struct udevice *dev, struct clk_bulk *bulk) in clk_get_bulk() argument
110 bulk->count = 0; in clk_get_bulk()
116 bulk->clks = devm_kcalloc(dev, count, sizeof(struct clk), GFP_KERNEL); in clk_get_bulk()
117 if (!bulk->clks) in clk_get_bulk()
121 ret = clk_get_by_index(dev, i, &bulk->clks[i]); in clk_get_bulk()
125 ++bulk->count; in clk_get_bulk()
131 err = clk_release_all(bulk->clks, bulk->count); in clk_get_bulk()
379 int clk_enable_bulk(struct clk_bulk *bulk) in clk_enable_bulk() argument
383 for (i = 0; i < bulk->count; i++) { in clk_enable_bulk()
384 ret = clk_enable(&bulk->clks[i]); in clk_enable_bulk()
[all …]
H A Dclk_sandbox_test.c13 struct clk_bulk bulk; member
41 return clk_get_bulk(dev, &sbct->bulk); in sandbox_clk_test_get_bulk()
78 return clk_enable_bulk(&sbct->bulk); in sandbox_clk_test_enable_bulk()
95 return clk_disable_bulk(&sbct->bulk); in sandbox_clk_test_disable_bulk()
116 return clk_release_bulk(&sbct->bulk); in sandbox_clk_test_release_bulk()
/openbmc/u-boot/drivers/clk/altera/
H A Dclk-arria10.c191 struct clk_bulk *bulk = &plat->clks; in socfpga_a10_handoff_workaround() local
214 bulk->count = 1; in socfpga_a10_handoff_workaround()
215 bulk->clks = devm_kcalloc(dev, bulk->count, in socfpga_a10_handoff_workaround()
217 if (!bulk->clks) in socfpga_a10_handoff_workaround()
220 ret = clk_request(dev, &bulk->clks[0]); in socfpga_a10_handoff_workaround()
222 free(bulk->clks); in socfpga_a10_handoff_workaround()
/openbmc/openbmc/meta-openembedded/meta-xfce/recipes-thunar-plugins/media-tags/
H A Dthunar-media-tags-plugin_0.4.0.bb1 SUMMARY = "Adds ID3/OGG tag support to the Thunar bulk rename dialog"
/openbmc/docs/designs/management-console/
H A DAuthorities_List_Management.md17 use case requires bulk replacement (see the ReplaceAll interface below)
38 the list via a bulk installation
96 Enhance existing unit tests in phosphor-certificates-manager to test bulk
/openbmc/u-boot/drivers/power/domain/
H A Dmtk-power-domain.c346 struct clk_bulk bulk; in mtk_power_domain_probe() local
373 err = clk_get_bulk(dev, &bulk); in mtk_power_domain_probe()
377 return clk_enable_bulk(&bulk); in mtk_power_domain_probe()
/openbmc/qemu/docs/system/
H A Dtarget-s390x.rst20 z/VM; virtio devices (especially using virtio-ccw) make up the bulk of
/openbmc/u-boot/drivers/usb/emul/
H A Dusb-emul-uclass.c238 if (!ops->bulk) in usb_emul_bulk()
244 return ops->bulk(emul, udev, pipe, buffer, length); in usb_emul_bulk()
H A Dsandbox_flash.c407 .bulk = sandbox_flash_bulk,
/openbmc/u-boot/drivers/usb/host/
H A Dusb-sandbox.c140 .bulk = sandbox_submit_bulk,
H A Dusb-uclass.c74 if (!ops->bulk) in submit_bulk_msg()
77 return ops->bulk(bus, udev, pipe, buffer, length); in submit_bulk_msg()
/openbmc/qemu/hw/usb/
H A Ddev-smartcard-reader.c291 USBEndpoint *bulk; member
755 usb_wakeup(s->bulk, 0); in ccid_write_slot_status()
776 usb_wakeup(s->bulk, 0); in ccid_write_parameters()
801 usb_wakeup(s->bulk, 0); in ccid_write_data_block()
1323 s->bulk = usb_ep_get(dev, USB_TOKEN_IN, CCID_BULK_IN_EP); in ccid_realize()
/openbmc/qemu/docs/
H A Drdma.txt65 bulk-phase round of the migration and can be enabled for extremely
74 On the other hand, this will also significantly speed up the bulk round
81 may extend the initial bulk iteration time by many seconds,
117 EFFECTS of memory registration on bulk phase round:
132 the bulk round and does not need to be re-registered during the successive
/openbmc/u-boot/doc/
H A DREADME.android-fastboot-protocol13 * Two bulk endpoints (in, out) are required
/openbmc/u-boot/drivers/usb/musb-new/
H A Dmusb_uboot.c360 .bulk = musb_submit_bulk_msg,
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Dcve-extra-exclusions.inc61 # ensure the bulk of the major kernel CVEs are fixed and we don't dive into each individual issue
/openbmc/qemu/docs/system/devices/
H A Dusb.rst116 bulk-only transport protocol used by 99% of USB sticks. This
149 same USB bulk-only transport protocol interface as ``usb-storage``, but
/openbmc/openbmc/poky/documentation/ref-manual/
H A Dresources.rst161 is simply a single HTML file comprised of the bulk of the Yocto
/openbmc/openbmc/meta-ampere/meta-mitchell/conf/templates/default/
H A Dlocal.conf.sample49 # This option specifies where the bulk of the building work should be done and
/openbmc/openbmc/meta-ampere/meta-jefferson/conf/templates/default/
H A Dlocal.conf.sample49 # This option specifies where the bulk of the building work should be done and

123