drivers/usb/mtu3/mtu3_dr.h
Source file repositories/reference/linux-study-clean/drivers/usb/mtu3/mtu3_dr.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/usb/mtu3/mtu3_dr.h- Extension
.h- Size
- 2901 bytes
- Lines
- 126
- Domain
- Driver Families
- Bucket
- drivers/usb
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
function ssusb_host_initfunction ssusb_host_exitfunction ssusb_host_resumefunction ssusb_host_suspendfunction ssusb_wakeup_setfunction ssusb_gadget_initfunction ssusb_gadget_exitfunction ssusb_gadget_resumefunction ssusb_gadget_ip_sleep_checkfunction ssusb_otg_switch_initfunction ssusb_otg_switch_exitfunction ssusb_set_force_mode
Annotated Snippet
#ifndef _MTU3_DR_H_
#define _MTU3_DR_H_
#if IS_ENABLED(CONFIG_USB_MTU3_HOST) || IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE)
int ssusb_host_init(struct ssusb_mtk *ssusb, struct device_node *parent_dn);
void ssusb_host_exit(struct ssusb_mtk *ssusb);
int ssusb_wakeup_of_property_parse(struct ssusb_mtk *ssusb,
struct device_node *dn);
int ssusb_host_resume(struct ssusb_mtk *ssusb, bool p0_skipped);
int ssusb_host_suspend(struct ssusb_mtk *ssusb);
void ssusb_wakeup_set(struct ssusb_mtk *ssusb, bool enable);
#else
static inline int ssusb_host_init(struct ssusb_mtk *ssusb,
struct device_node *parent_dn)
{
return 0;
}
static inline void ssusb_host_exit(struct ssusb_mtk *ssusb)
{}
static inline int ssusb_wakeup_of_property_parse(
struct ssusb_mtk *ssusb, struct device_node *dn)
{
return 0;
}
static inline int ssusb_host_resume(struct ssusb_mtk *ssusb, bool p0_skipped)
{
return 0;
}
static inline int ssusb_host_suspend(struct ssusb_mtk *ssusb)
{
return 0;
}
static inline void ssusb_wakeup_set(struct ssusb_mtk *ssusb, bool enable)
{}
#endif
#if IS_ENABLED(CONFIG_USB_MTU3_GADGET) || IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE)
int ssusb_gadget_init(struct ssusb_mtk *ssusb);
void ssusb_gadget_exit(struct ssusb_mtk *ssusb);
int ssusb_gadget_suspend(struct ssusb_mtk *ssusb, pm_message_t msg);
int ssusb_gadget_resume(struct ssusb_mtk *ssusb, pm_message_t msg);
bool ssusb_gadget_ip_sleep_check(struct ssusb_mtk *ssusb);
#else
static inline int ssusb_gadget_init(struct ssusb_mtk *ssusb)
{
return 0;
}
static inline void ssusb_gadget_exit(struct ssusb_mtk *ssusb)
{}
static inline int
ssusb_gadget_suspend(struct ssusb_mtk *ssusb, pm_message_t msg)
{
return 0;
}
static inline int
ssusb_gadget_resume(struct ssusb_mtk *ssusb, pm_message_t msg)
{
return 0;
}
static inline bool ssusb_gadget_ip_sleep_check(struct ssusb_mtk *ssusb)
{
return true;
}
#endif
#if IS_ENABLED(CONFIG_USB_MTU3_DUAL_ROLE)
int ssusb_otg_switch_init(struct ssusb_mtk *ssusb);
void ssusb_otg_switch_exit(struct ssusb_mtk *ssusb);
void ssusb_mode_switch(struct ssusb_mtk *ssusb, int to_host);
int ssusb_set_vbus(struct otg_switch_mtk *otg_sx, int is_on);
void ssusb_set_force_mode(struct ssusb_mtk *ssusb,
enum mtu3_dr_force_mode mode);
Annotation
- Detected declarations: `function ssusb_host_init`, `function ssusb_host_exit`, `function ssusb_host_resume`, `function ssusb_host_suspend`, `function ssusb_wakeup_set`, `function ssusb_gadget_init`, `function ssusb_gadget_exit`, `function ssusb_gadget_resume`, `function ssusb_gadget_ip_sleep_check`, `function ssusb_otg_switch_init`.
- Atlas domain: Driver Families / drivers/usb.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.