Re: [PATCH v3 02/14] phy: qcom: add Qualcomm QUSB2 USB PHY driver

2024-03-20 Thread Caleb Connolly
Hi Sumit, >> +static inline void qusb2_write_mask(void __iomem *base, u32 offset, u32 val, >> + u32 mask) >> +{ >> + u32 reg; >> + >> + reg = readl(base + offset); >> + reg &= ~mask; >> + reg |= val & mask; >> + writel(reg, base +

Re: [PATCH v3 02/14] phy: qcom: add Qualcomm QUSB2 USB PHY driver

2024-03-19 Thread Sumit Garg
On Tue, 19 Mar 2024 at 17:52, Caleb Connolly wrote: > > From: Bhupesh Sharma > > The Snapdragon 845 and several other Qualcomm SoCs feature this > USB high-speed phy. Add a driver for it based on the Linux driver, with > support for the SDM845, and the QCM2290 and SM6115 SoCs which will gain >

[PATCH v3 02/14] phy: qcom: add Qualcomm QUSB2 USB PHY driver

2024-03-19 Thread Caleb Connolly
From: Bhupesh Sharma The Snapdragon 845 and several other Qualcomm SoCs feature this USB high-speed phy. Add a driver for it based on the Linux driver, with support for the SDM845, and the QCM2290 and SM6115 SoCs which will gain support in U-Boot in future patches. Signed-off-by: Bhupesh Sharma