|
@@ -595,6 +595,10 @@ struct usb_gadget_ops {
|
|
|
* only supports HNP on a different root port.
|
|
|
* @b_hnp_enable: OTG device feature flag, indicating that the A-Host
|
|
|
* enabled HNP support.
|
|
|
+ * @hnp_polling_support: OTG device feature flag, indicating if the OTG device
|
|
|
+ * in peripheral mode can support HNP polling.
|
|
|
+ * @host_request_flag: OTG device feature flag, indicating if A-Peripheral
|
|
|
+ * or B-Peripheral wants to take host role.
|
|
|
* @quirk_ep_out_aligned_size: epout requires buffer size to be aligned to
|
|
|
* MaxPacketSize.
|
|
|
* @is_selfpowered: if the gadget is self-powered.
|
|
@@ -642,6 +646,8 @@ struct usb_gadget {
|
|
|
unsigned b_hnp_enable:1;
|
|
|
unsigned a_hnp_support:1;
|
|
|
unsigned a_alt_hnp_support:1;
|
|
|
+ unsigned hnp_polling_support:1;
|
|
|
+ unsigned host_request_flag:1;
|
|
|
unsigned quirk_ep_out_aligned_size:1;
|
|
|
unsigned quirk_altset_not_supp:1;
|
|
|
unsigned quirk_stall_not_supp:1;
|