linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/12] ARM64: Update support for FSL's LS2085A SoC
@ 2015-10-15  6:47 Bhupesh Sharma
  2015-10-15  6:47 ` [PATCH v3 01/12] arm64: Use generic Layerscape SoC family naming Bhupesh Sharma
                   ` (11 more replies)
  0 siblings, 12 replies; 20+ messages in thread
From: Bhupesh Sharma @ 2015-10-15  6:47 UTC (permalink / raw)
  To: linux-arm-kernel

This is the v3 of the patchset which updates the support for FSL's LS2085A SoC
which is now being renamed to LS2080A (and is based on ARMv8 architecture).

Here is a description of what this patchset tries to achieve:
(v2 can be viewed here: http://www.spinics.net/lists/arm-kernel/msg442910.html)

  - Patch 1:
    Freescale will be a supporting a host of ARMv8 based SoCs which
    will be based on a similar overall SoC architecture. So, this patch
    converts the existing infrastructure to use the generic convention
    ARCH_LAYERSCAPE.
    
    	Changes since v2:
	-----------------
	Minor rewording of Kconfig help text.

  - Patch 2:
    Freescale is renaming the LS2085A SoC to LS2080A - this patch handles the
    same.
    Further details of the LS2080a based platforms can be seen here:
    http://www.freescale.com/products/arm-processors/qoriq-arm-processors/qoriq-ls2080a-40a-multicore-communications-processors:LS2080A?fsrch=1&sr=1&pageNum=1
    
	Changes since v2:
	-----------------
	No changes

  - Patch 3:
    Adds DTS binding documentation for Freescale's LS2080A QDS and RDB boards
    
	Changes since v2:
	-----------------
	No changes

  - Patch 4:
    This patch moves the FSL board specific bindings out of 'powerpc/' folder
    as the same board components can be used for ARM based SoCs as well.
	
	Changes since v2:
	-----------------
	Minor rewording of commit log. Moved 'interrupt' property to
	optional as this is not 'Required' for Qixis FPGA controllers.

  - Patch 5:
    Updates PCIe devicetree binding documentation for LS2080A.
	
	Changes since v2:
	-----------------
	Minor rewording of commit log.

  - Patch 6:
    Updates the GPIO devicetree binding documentation for LS2080A.
	
	Changes since v2:
	-----------------
	Used fsl,qoriq-gpio compatible string for Layerscape SoCs.
    
  - Patch 7:
    Updates the DWC3 USB bindings to provide reference to generic USB
    bindings.
	
	Changes since v2:
	-----------------
	New patch
  
  - Patch 8:
    Updates the support of various peripherals (PMU, SMMU, SATA, PCI, SPI)
    present on FSL LS2080a SoC in the SoC DTSI.
	
	Changes since v2:
	-----------------
	Added device nodes under the /soc node as suggested by Rob.
	Removed WDT node.

  - Patch 9:
    Updates the DTS LS2080a simulator platform to reflect the new
    peripherals added in the DTSI.
	
	Changes since v2:
	-----------------
	Added serial alias

  - Patch 10:
    Remove text about writing to Free Software Foundation
	
	Changes since v2:
	-----------------
	New patch

 - Patch 11:
    Adds new DTS files for LS2080a based QDS and RDB boards.
	
	Changes since v2:
	-----------------
	Added serial alias
 
  - Patch 12:
    Adds build support for LS2080a QDS and RDB board DTS files.
	
	Changes since v2:
	-----------------
	No changes

Rebasing details:
-----------------
- Rebased against linux-next git tree, branch: master

- Rebased against Scott's latest v3 of QorIQ clk fixes, which can be
  viewed here:
  http://linux.freescale.net/patchwork/patch/59805/

Bhupesh Sharma (12):
  arm64: Use generic Layerscape SoC family naming
  arm64: Rename FSL LS2085A SoC support code to LS2080A
  Documentation: DT: Add entry for FSL LS2080A QDS and RDB boards
  Documentation/dts: Move FSL board-specific bindings out of /powerpc
  doc/bindings: Update Layerscape PCIe devicetree binding to be more
    flexible
  doc/bindings: Update GPIO devicetree binding documentation for
    LS2080A
  doc: DTS: Update DWC3 binding to provide reference to generic
    bindings
  dts/ls2080a: Update DTSI to add support of various peripherals
  dts/ls2080a: Update Simulator DTS to add support of various
    peripherals
  dts/ls2080a: Remove text about writing to Free Software Foundation
  dts/ls2080a: Add DTS support for LS2080a QDS & RDB boards
  dts/Makefile: Add build support for LS2080a QDS & RDB board DTS

 Documentation/devicetree/bindings/arm/fsl.txt      |   16 +-
 .../{powerpc/fsl/board.txt => board/fsl-board.txt} |   14 +-
 .../devicetree/bindings/gpio/gpio-mpc8xxx.txt      |    4 +-
 .../devicetree/bindings/pci/layerscape-pci.txt     |   15 +-
 Documentation/devicetree/bindings/usb/dwc3.txt     |    3 +-
 arch/arm64/Kconfig.platforms                       |    6 +-
 arch/arm64/boot/dts/freescale/Makefile             |    2 +-
 arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dts  |  204 ++++++++
 .../{fsl-ls2085a-simu.dts => fsl-ls2080a-rdb.dts}  |  131 ++++-
 .../{fsl-ls2085a-simu.dts => fsl-ls2080a-simu.dts} |   69 ++-
 arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi     |  504 ++++++++++++++++++++
 arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi     |  163 -------
 arch/arm64/configs/defconfig                       |    2 +-
 13 files changed, 929 insertions(+), 204 deletions(-)
 rename Documentation/devicetree/bindings/{powerpc/fsl/board.txt => board/fsl-board.txt} (90%)
 create mode 100644 arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dts
 copy arch/arm64/boot/dts/freescale/{fsl-ls2085a-simu.dts => fsl-ls2080a-rdb.dts} (51%)
 rename arch/arm64/boot/dts/freescale/{fsl-ls2085a-simu.dts => fsl-ls2080a-simu.dts} (74%)
 create mode 100644 arch/arm64/boot/dts/freescale/fsl-ls2080a.dtsi
 delete mode 100644 arch/arm64/boot/dts/freescale/fsl-ls2085a.dtsi

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2015-10-28  3:57 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-15  6:47 [PATCH v3 00/12] ARM64: Update support for FSL's LS2085A SoC Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 01/12] arm64: Use generic Layerscape SoC family naming Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 02/12] arm64: Rename FSL LS2085A SoC support code to LS2080A Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 03/12] Documentation: DT: Add entry for FSL LS2080A QDS and RDB boards Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 04/12] Documentation/dts: Move FSL board-specific bindings out of /powerpc Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 05/12] doc/bindings: Update Layerscape PCIe devicetree binding to be more flexible Bhupesh Sharma
2015-10-15 14:16   ` Arnd Bergmann
2015-10-15 20:11     ` Sharma Bhupesh
2015-10-28  3:57       ` Pratyush Anand
2015-10-15  6:47 ` [PATCH v3 06/12] doc/bindings: Update GPIO devicetree binding documentation for LS2080A Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 07/12] doc: DTS: Update DWC3 binding to provide reference to generic bindings Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 08/12] dts/ls2080a: Update DTSI to add support of various peripherals Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 09/12] dts/ls2080a: Update Simulator DTS " Bhupesh Sharma
2015-10-15 14:18   ` Arnd Bergmann
2015-10-15 20:01     ` Sharma Bhupesh
2015-10-15  6:47 ` [PATCH v3 10/12] dts/ls2080a: Remove text about writing to Free Software Foundation Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 11/12] dts/ls2080a: Add DTS support for LS2080a QDS & RDB boards Bhupesh Sharma
2015-10-15  6:47 ` [PATCH v3 12/12] dts/Makefile: Add build support for LS2080a QDS & RDB board DTS Bhupesh Sharma
2015-10-15 14:19   ` Arnd Bergmann
2015-10-15 19:58     ` Sharma Bhupesh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).