drivers/phy/samsung/phy-samsung-usb2.h
Source file repositories/reference/linux-study-clean/drivers/phy/samsung/phy-samsung-usb2.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/phy/samsung/phy-samsung-usb2.h- Extension
.h- Size
- 1882 bytes
- Lines
- 72
- Domain
- Driver Families
- Bucket
- drivers/phy
- 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
linux/clk.hlinux/phy/phy.hlinux/device.hlinux/regmap.hlinux/spinlock.hlinux/regulator/consumer.h
Detected Declarations
struct samsung_usb2_phy_driverstruct samsung_usb2_phy_instancestruct samsung_usb2_phy_configstruct samsung_usb2_phy_instancestruct samsung_usb2_phy_driverstruct samsung_usb2_common_phystruct samsung_usb2_phy_config
Annotated Snippet
struct samsung_usb2_phy_instance {
const struct samsung_usb2_common_phy *cfg;
struct phy *phy;
struct samsung_usb2_phy_driver *drv;
int int_cnt;
int ext_cnt;
};
struct samsung_usb2_phy_driver {
const struct samsung_usb2_phy_config *cfg;
struct clk *clk;
struct clk *ref_clk;
struct regulator *vbus;
unsigned long ref_rate;
u32 ref_reg_val;
struct device *dev;
void __iomem *reg_phy;
struct regmap *reg_pmu;
struct regmap *reg_sys;
spinlock_t lock;
struct samsung_usb2_phy_instance instances[];
};
struct samsung_usb2_common_phy {
int (*power_on)(struct samsung_usb2_phy_instance *);
int (*power_off)(struct samsung_usb2_phy_instance *);
unsigned int id;
char *label;
};
struct samsung_usb2_phy_config {
const struct samsung_usb2_common_phy *phys;
int (*rate_to_clk)(unsigned long, u32 *);
unsigned int num_phys;
bool has_mode_switch;
bool has_refclk_sel;
};
extern const struct samsung_usb2_phy_config exynos3250_usb2_phy_config;
extern const struct samsung_usb2_phy_config exynos4210_usb2_phy_config;
extern const struct samsung_usb2_phy_config exynos4x12_usb2_phy_config;
extern const struct samsung_usb2_phy_config exynos5250_usb2_phy_config;
extern const struct samsung_usb2_phy_config exynos5420_usb2_phy_config;
extern const struct samsung_usb2_phy_config s5pv210_usb2_phy_config;
#endif
Annotation
- Immediate include surface: `linux/clk.h`, `linux/phy/phy.h`, `linux/device.h`, `linux/regmap.h`, `linux/spinlock.h`, `linux/regulator/consumer.h`.
- Detected declarations: `struct samsung_usb2_phy_driver`, `struct samsung_usb2_phy_instance`, `struct samsung_usb2_phy_config`, `struct samsung_usb2_phy_instance`, `struct samsung_usb2_phy_driver`, `struct samsung_usb2_common_phy`, `struct samsung_usb2_phy_config`.
- Atlas domain: Driver Families / drivers/phy.
- 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.