/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/ |
H A D | bcmutils.h | 684 /* modulo inc/dec - assumes x E [0, bound - 1] */ 685 #define MODDEC(x, bound) MUX((x) == 0, (bound) - 1, (x) - 1) 686 #define MODINC(x, bound) MUX((x) == (bound) - 1, 0, (x) + 1) 688 /* modulo inc/dec, bound = 2^k */ 689 #define MODDEC_POW2(x, bound) (((x) - 1) & ((bound) - 1)) 690 #define MODINC_POW2(x, bound) (((x) + 1) & ((bound) [all...] |
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | dhd_proto.h | 132 extern bool dhd_prot_process_msgbuf_txcpl(dhd_pub_t *dhd, uint bound, int ringtype); 133 extern bool dhd_prot_process_msgbuf_rxcpl(dhd_pub_t *dhd, uint bound, int ringtype); 134 extern bool dhd_prot_process_msgbuf_infocpl(dhd_pub_t *dhd, uint bound);
|
H A D | dhd_msgbuf.c | 170 * callback (see dhd_prot_d2h_sync_none) may be bound. 837 * bound that simply returns the msg_type. 1075 * need to try to sync. This noop sync handler will be bound when the dongle 1241 * need to try to sync. This noop sync handler will be bound when the dongle 5187 dhd_prot_process_msgbuf_infocpl(dhd_pub_t *dhd, uint bound) in dhd_prot_process_msgbuf_infocpl() argument 5240 /* After batch processing, check RX bound */ in dhd_prot_process_msgbuf_infocpl() 5242 if (n >= bound) { in dhd_prot_process_msgbuf_infocpl() 5459 /* if num_items > bound, then anyway we will reschedule and in dhd_prot_process_edl_complete() 5462 * num_items <= bound, and if DPC executes and updates the wr index in dhd_prot_process_edl_complete() 5485 DHD_INFO(("%s: EDL bound hi in dhd_prot_process_edl_complete() 5520 dhd_prot_process_msgbuf_rxcpl(dhd_pub_t *dhd, uint bound, int ringtype) dhd_prot_process_msgbuf_rxcpl() argument 5796 dhd_prot_process_msgbuf_txcpl(dhd_pub_t *dhd, uint bound, int ringtype) dhd_prot_process_msgbuf_txcpl() argument [all...] |
/device/soc/rockchip/common/sdk_linux/include/media/ |
H A D | v4l2-async.h | 101 * @bound: a subdevice driver has successfully probed one of the subdevices 107 int (*bound)(struct v4l2_async_notifier *notifier, struct v4l2_subdev *subdev, struct v4l2_async_subdev *asd); member
|
/device/soc/rockchip/common/sdk_linux/drivers/media/v4l2-core/ |
H A D | v4l2-async.c | 28 if (!n->ops || !n->ops->bound) { in v4l2_async_notifier_call_bound() 32 return n->ops->bound(n, subdev, asd); in v4l2_async_notifier_call_bound() 256 * sub-devices have been bound; v4l2_device is also available then. 858 * Complete failed. Unbind the sub-devices bound through registering in v4l2_async_register_subdev()
|
/device/soc/rockchip/common/vendor/drivers/phy/ |
H A D | phy-rockchip-csi2-dphy.c | 322 /* The .bound() notifier callback when a match is found */
375 .bound = rockchip_csi2_dphy_notifier_bound,
|
H A D | phy-rockchip-mipi-rx.c | 1502 /* The .bound() notifier callback when a match is found */
1554 .bound = rockchip_mipidphy_notifier_bound,
|
/device/soc/rockchip/rk3588/kernel/drivers/phy/rockchip/ |
H A D | phy-rockchip-csi2-dphy.c | 314 /* The .bound() notifier callback when a match is found */ 381 .bound = rockchip_csi2_dphy_notifier_bound,
|
H A D | phy-rockchip-mipi-rx.c | 1534 /* The .bound() notifier callback when a match is found */ 1599 .bound = rockchip_mipidphy_notifier_bound,
|
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/cif/ |
H A D | mipi-csi2.c | 547 /* The .bound() notifier callback when a match is found */
603 .bound = csi2_notifier_bound,
|
H A D | dev.c | 1240 .bound = subdev_notifier_bound,
|
/device/soc/rockchip/common/vendor/drivers/media/platform/rockchip/isp/ |
H A D | dev.c | 579 .bound = subdev_notifier_bound,
|
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/cif/ |
H A D | mipi-csi2.c | 550 /* The .bound() notifier callback when a match is found */ 623 .bound = csi2_notifier_bound,
|
H A D | dev.c | 1341 .bound = subdev_notifier_bound,
|
/device/soc/rockchip/rk3588/kernel/drivers/media/platform/rockchip/isp/ |
H A D | dev.c | 555 .bound = subdev_notifier_bound,
|