Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1550728
| From | Jaehoon Chung <jh80.chung@samsung.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH V2 0/5] PCI: exynos: use the PHY generic framework |
| Date | 2017-01-04 13:40 +0100 |
| Message-ID | <sVT1f-4FT-13@gated-at.bofh.it> (permalink) |
| References | <sVT1f-4FT-23@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
This patchset is for using PHY generic framework. Current pci-exyons doesn't use the phy framework since there haven't been on PHY subsystem when Exynos5440 had been upstremed. The not using PHY framework make the difficult to upstream the other Exynos SoCs. Before upstreaming the other Exynos SoCs, it's goal what make to use the PHY framework. This patchset has the below modifications: 1) Introduces the phy-pcie-pcie 2) Handles Phy controller from PHY framework for pci-exynos 3) Modifies the dt-binding of pci-exynos - The using the getting configuration space address from ranges is old. - Deprecated the old way. 4) Maintains the backward compatibility NOTE: These patches based on below patches: http://patchwork.ozlabs.org/patch/706998/ http://patchwork.ozlabs.org/patch/706997/ http://patchwork.ozlabs.org/patch/706995/ http://patchwork.ozlabs.org/patch/706994/ http://patchwork.ozlabs.org/patch/703530/ - This patch should be conflicted. so fixes the manually. http://patchwork.ozlabs.org/patch/708414/ Changelog on V2: - Keep current codes for backward compatibility - Fixes some typos - Split the patches for removing the dependency - Removes the unnecessary codes - Change the patch's sequence - Based on latest PCI git repository.(next branch) Jaehoon Chung (5): Documetation: samsung-phy: add the exynos-pcie-phy binding phy: phy-exynos-pcie: Add support for Exynos PCIe phy Documetation: binding: modify the exynos5440 pcie binding PCI: exynos: support the using PHY generic framework ARM: dts: exynos5440: support the phy-pcie node for pcie .../bindings/pci/samsung,exynos5440-pcie.txt | 29 +++ .../devicetree/bindings/phy/samsung-phy.txt | 17 ++ arch/arm/boot/dts/exynos5440.dtsi | 34 ++- drivers/pci/host/pci-exynos.c | 61 ++++- drivers/phy/Kconfig | 9 + drivers/phy/Makefile | 1 + drivers/phy/phy-exynos-pcie.c | 280 +++++++++++++++++++++ 7 files changed, 408 insertions(+), 23 deletions(-) create mode 100644 drivers/phy/phy-exynos-pcie.c -- 2.10.2
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH V2 0/5] PCI: exynos: use the PHY generic framework Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-04 13:40 +0100
[PATCH V2 5/5] ARM: dts: exynos5440: support the phy-pcie node for pcie Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-04 13:40 +0100
Re: [PATCH V2 5/5] ARM: dts: exynos5440: support the phy-pcie node for pcie Krzysztof Kozlowski <krzk@kernel.org> - 2017-01-04 19:10 +0100
Re: [PATCH V2 5/5] ARM: dts: exynos5440: support the phy-pcie node for pcie "Jingoo Han" <jingoohan1@gmail.com> - 2017-01-04 19:10 +0100
Re: [PATCH V2 5/5] ARM: dts: exynos5440: support the phy-pcie node for pcie Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-05 03:30 +0100
Re: [PATCH V2 5/5] ARM: dts: exynos5440: support the phy-pcie node for pcie "pankaj.dubey" <pankaj.dubey@samsung.com> - 2017-01-05 10:10 +0100
[PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-04 13:40 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Krzysztof Kozlowski <krzk@kernel.org> - 2017-01-04 19:00 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-05 03:30 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy "Jingoo Han" <jingoohan1@gmail.com> - 2017-01-04 21:30 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy "pankaj.dubey" <pankaj.dubey@samsung.com> - 2017-01-05 07:20 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Alim Akhtar <alim.akhtar@samsung.com> - 2017-01-09 14:40 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Vivek Gautam <vivek.gautam@codeaurora.org> - 2017-01-10 07:10 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-10 07:20 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Kishon Vijay Abraham I <kishon@ti.com> - 2017-01-16 09:40 +0100
Re: [PATCH V2 2/5] phy: phy-exynos-pcie: Add support for Exynos PCIe phy Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-16 12:10 +0100
[PATCH V2 1/5] Documetation: samsung-phy: add the exynos-pcie-phy binding Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-04 13:40 +0100
Re: [PATCH V2 1/5] Documetation: samsung-phy: add the exynos-pcie-phy binding Rob Herring <robh@kernel.org> - 2017-01-04 16:20 +0100
Re: [PATCH V2 1/5] Documetation: samsung-phy: add the exynos-pcie-phy binding Alim Akhtar <alim.akhtar@samsung.com> - 2017-01-05 05:30 +0100
Re: [PATCH V2 1/5] Documetation: samsung-phy: add the exynos-pcie-phy binding "pankaj.dubey" <pankaj.dubey@samsung.com> - 2017-01-05 07:10 +0100
[PATCH V2 4/5] PCI: exynos: support the using PHY generic framework Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-04 13:40 +0100
Re: [PATCH V2 4/5] PCI: exynos: support the using PHY generic framework Krzysztof Kozlowski <krzk@kernel.org> - 2017-01-04 19:00 +0100
Re: [PATCH V2 4/5] PCI: exynos: support the using PHY generic framework Jaehoon Chung <jh80.chung@samsung.com> - 2017-01-05 03:40 +0100
Re: [PATCH V2 4/5] PCI: exynos: support the using PHY generic framework "Jingoo Han" <jingoohan1@gmail.com> - 2017-01-04 21:00 +0100
Re: [PATCH V2 4/5] PCI: exynos: support the using PHY generic framework "pankaj.dubey" <pankaj.dubey@samsung.com> - 2017-01-05 10:10 +0100
Re: [PATCH V2 4/5] PCI: exynos: support the using PHY generic framework Alim Akhtar <alim.akhtar@samsung.com> - 2017-01-09 14:50 +0100
Re: [PATCH V2 0/5] PCI: exynos: use the PHY generic framework Bjorn Helgaas <helgaas@kernel.org> - 2017-01-12 22:10 +0100
csiph-web