Message ID | 20220520064920.27313-1-jianjun.wang@mediatek.com (mailing list archive) |
---|---|
Headers | show |
Series | phy: mediatek: Add PCIe PHY driver | expand |
Hello Maintainers, Gentle ping for this patch series, if there is anything I can do to get these patches merged, please let me know. Thanks. On Fri, 2022-05-20 at 14:49 +0800, Jianjun Wang wrote: > These series patches add support for PCIe PHY driver on MediaTek > chipsets. > > Changes in v9: > 1. Check if the return value is -ENOMEM when reading efuse data > fails. > > Changes in v8: > 1. Use "device_property_present()" to increase human readability; > 2. Use "GPL" as recommended in commit bf7fbeeae6db ("module: Cure > the MODULE_LICENSE "GPL" vs. "GPL v2" bogosity"). > > Changes in v7: > 1. Add bitfield.h header to fix the build error on non-arm64 > platforms. > > Changes in v6: > 1. Remove unnecessary header files; > 2. Use FILELD_PREP in bitfield.h to set value. > > Changes in v5: > 1. Fix typo in kerneldoc: "eFues" => "eFuse". > > Changes in v4: > 1. Fix no return when calling dev_err_probe. > > Changes in v3: > 1. Add introductions for structure members; > 2. Add SoC dependent data; > 3. Dynamically allocate efuse data; > 4. Check return value if it's an -EPROBE_DEFER. > > Changes in v2: > 1. Add specific compatible name; > 2. Read NVMEM data at probe time; > 3. Fix typos. > > Jianjun Wang (2): > dt-bindings: phy: mediatek: Add YAML schema for PCIe PHY > phy: mediatek: Add PCIe PHY driver > > .../bindings/phy/mediatek,pcie-phy.yaml | 75 +++++ > drivers/phy/mediatek/Kconfig | 11 + > drivers/phy/mediatek/Makefile | 1 + > drivers/phy/mediatek/phy-mtk-pcie.c | 267 > ++++++++++++++++++ > 4 files changed, 354 insertions(+) > create mode 100644 > Documentation/devicetree/bindings/phy/mediatek,pcie-phy.yaml > create mode 100644 drivers/phy/mediatek/phy-mtk-pcie.c >
On 01-06-22, 10:21, Jianjun Wang wrote: > Hello Maintainers, > > Gentle ping for this patch series, if there is anything I can do to get > these patches merged, please let me know. Patience my friend patience. This was received very late in cycle and I will review after merge window closes.. > > Thanks. > > On Fri, 2022-05-20 at 14:49 +0800, Jianjun Wang wrote: > > These series patches add support for PCIe PHY driver on MediaTek > > chipsets. > > > > Changes in v9: > > 1. Check if the return value is -ENOMEM when reading efuse data > > fails. > > > > Changes in v8: > > 1. Use "device_property_present()" to increase human readability; > > 2. Use "GPL" as recommended in commit bf7fbeeae6db ("module: Cure > > the MODULE_LICENSE "GPL" vs. "GPL v2" bogosity"). > > > > Changes in v7: > > 1. Add bitfield.h header to fix the build error on non-arm64 > > platforms. > > > > Changes in v6: > > 1. Remove unnecessary header files; > > 2. Use FILELD_PREP in bitfield.h to set value. > > > > Changes in v5: > > 1. Fix typo in kerneldoc: "eFues" => "eFuse". > > > > Changes in v4: > > 1. Fix no return when calling dev_err_probe. > > > > Changes in v3: > > 1. Add introductions for structure members; > > 2. Add SoC dependent data; > > 3. Dynamically allocate efuse data; > > 4. Check return value if it's an -EPROBE_DEFER. > > > > Changes in v2: > > 1. Add specific compatible name; > > 2. Read NVMEM data at probe time; > > 3. Fix typos. > > > > Jianjun Wang (2): > > dt-bindings: phy: mediatek: Add YAML schema for PCIe PHY > > phy: mediatek: Add PCIe PHY driver > > > > .../bindings/phy/mediatek,pcie-phy.yaml | 75 +++++ > > drivers/phy/mediatek/Kconfig | 11 + > > drivers/phy/mediatek/Makefile | 1 + > > drivers/phy/mediatek/phy-mtk-pcie.c | 267 > > ++++++++++++++++++ > > 4 files changed, 354 insertions(+) > > create mode 100644 > > Documentation/devicetree/bindings/phy/mediatek,pcie-phy.yaml > > create mode 100644 drivers/phy/mediatek/phy-mtk-pcie.c > >
Hi Vinod, Sorry to disturb you, would you mind taking a look at this patch? Thanks. On Wed, 2022-06-01 at 11:02 +0530, Vinod Koul wrote: > On 01-06-22, 10:21, Jianjun Wang wrote: > > Hello Maintainers, > > > > Gentle ping for this patch series, if there is anything I can do to > > get > > these patches merged, please let me know. > > Patience my friend patience. This was received very late in cycle and > I > will review after merge window closes.. > > > > > > Thanks. > > > > On Fri, 2022-05-20 at 14:49 +0800, Jianjun Wang wrote: > > > These series patches add support for PCIe PHY driver on MediaTek > > > chipsets. > > > > > > Changes in v9: > > > 1. Check if the return value is -ENOMEM when reading efuse data > > > fails. > > > > > > Changes in v8: > > > 1. Use "device_property_present()" to increase human readability; > > > 2. Use "GPL" as recommended in commit bf7fbeeae6db ("module: Cure > > > the MODULE_LICENSE "GPL" vs. "GPL v2" bogosity"). > > > > > > Changes in v7: > > > 1. Add bitfield.h header to fix the build error on non-arm64 > > > platforms. > > > > > > Changes in v6: > > > 1. Remove unnecessary header files; > > > 2. Use FILELD_PREP in bitfield.h to set value. > > > > > > Changes in v5: > > > 1. Fix typo in kerneldoc: "eFues" => "eFuse". > > > > > > Changes in v4: > > > 1. Fix no return when calling dev_err_probe. > > > > > > Changes in v3: > > > 1. Add introductions for structure members; > > > 2. Add SoC dependent data; > > > 3. Dynamically allocate efuse data; > > > 4. Check return value if it's an -EPROBE_DEFER. > > > > > > Changes in v2: > > > 1. Add specific compatible name; > > > 2. Read NVMEM data at probe time; > > > 3. Fix typos. > > > > > > Jianjun Wang (2): > > > dt-bindings: phy: mediatek: Add YAML schema for PCIe PHY > > > phy: mediatek: Add PCIe PHY driver > > > > > > .../bindings/phy/mediatek,pcie-phy.yaml | 75 +++++ > > > drivers/phy/mediatek/Kconfig | 11 + > > > drivers/phy/mediatek/Makefile | 1 + > > > drivers/phy/mediatek/phy-mtk-pcie.c | 267 > > > ++++++++++++++++++ > > > 4 files changed, 354 insertions(+) > > > create mode 100644 > > > Documentation/devicetree/bindings/phy/mediatek,pcie-phy.yaml > > > create mode 100644 drivers/phy/mediatek/phy-mtk-pcie.c > > > > >