| /openbmc/u-boot/include/ |
| H A D | reset.h | 116 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 D | clk.h | 116 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 D | usb.h | 700 int (*bulk)(struct udevice *bus, struct usb_device *udev, member
|
| /openbmc/u-boot/drivers/reset/ |
| H A D | reset-uclass.c | 81 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 D | sandbox-reset-test.c | 14 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 D | clk-uclass.c | 106 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 D | clk_sandbox_test.c | 13 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 D | clk-arria10.c | 191 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 D | thunar-media-tags-plugin_0.4.0.bb | 1 SUMMARY = "Adds ID3/OGG tag support to the Thunar bulk rename dialog"
|
| /openbmc/docs/designs/management-console/ |
| H A D | Authorities_List_Management.md | 17 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 D | mtk-power-domain.c | 346 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 D | target-s390x.rst | 20 z/VM; virtio devices (especially using virtio-ccw) make up the bulk of
|
| /openbmc/u-boot/drivers/usb/emul/ |
| H A D | usb-emul-uclass.c | 238 if (!ops->bulk) in usb_emul_bulk() 244 return ops->bulk(emul, udev, pipe, buffer, length); in usb_emul_bulk()
|
| H A D | sandbox_flash.c | 407 .bulk = sandbox_flash_bulk,
|
| /openbmc/u-boot/drivers/usb/host/ |
| H A D | usb-sandbox.c | 140 .bulk = sandbox_submit_bulk,
|
| H A D | usb-uclass.c | 74 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 D | dev-smartcard-reader.c | 291 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 D | rdma.txt | 65 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 D | README.android-fastboot-protocol | 13 * Two bulk endpoints (in, out) are required
|
| /openbmc/u-boot/drivers/usb/musb-new/ |
| H A D | musb_uboot.c | 360 .bulk = musb_submit_bulk_msg,
|
| /openbmc/openbmc/poky/meta/conf/distro/include/ |
| H A D | cve-extra-exclusions.inc | 61 # 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 D | usb.rst | 116 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 D | resources.rst | 161 is simply a single HTML file comprised of the bulk of the Yocto
|
| /openbmc/openbmc/meta-ampere/meta-mitchell/conf/templates/default/ |
| H A D | local.conf.sample | 49 # 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 D | local.conf.sample | 49 # This option specifies where the bulk of the building work should be done and
|