Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1351308 > unrolled thread
| Started by | Chanho Min <chanho.min@lge.com> |
|---|---|
| First post | 2016-03-07 05:20 +0100 |
| Last post | 2016-03-07 07:50 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH 0/4] ARM64:SoC add a new platform, LG Electronics's lg1k Chanho Min <chanho.min@lge.com> - 2016-03-07 05:20 +0100
[PATCH 1/4] arm64: add Kconfig entry for LG1K SoC family Chanho Min <chanho.min@lge.com> - 2016-03-07 05:20 +0100
[PATCH 2/4] arm64: defconfig: enable ARCH_LG1K Chanho Min <chanho.min@lge.com> - 2016-03-07 05:20 +0100
Re: [PATCH 0/4] ARM64:SoC add a new platform, LG Electronics's lg1k Arnd Bergmann <arnd@arndb.de> - 2016-03-07 05:40 +0100
RE: [PATCH 0/4] ARM64:SoC add a new platform, LG Electronics's lg1k "Chanho Min" <chanho.min@lge.com> - 2016-03-07 07:50 +0100
| From | Chanho Min <chanho.min@lge.com> |
|---|---|
| Date | 2016-03-07 05:20 +0100 |
| Subject | [PATCH 0/4] ARM64:SoC add a new platform, LG Electronics's lg1k |
| Message-ID | <r9UOd-6ji-5@gated-at.bofh.it> |
This is an initial series for supporting LG Electronics's lg1k SoCs, based on ARM Cortex-A53, mainly used for digital TVs. Chanho Min (4): arm64: add Kconfig entry for LG1K SoC family arm64: defconfig: enable ARCH_LG1K arm64: dts: Add dts files for LG Electronics's lg1312 SoC MAINTAINERS: add myself as ARM/LG1K maintainer MAINTAINERS | 6 + arch/arm64/Kconfig.platforms | 4 + arch/arm64/boot/dts/Makefile | 1 + arch/arm64/boot/dts/lg/Makefile | 5 + arch/arm64/boot/dts/lg/lg1312-ref.dts | 26 +++ arch/arm64/boot/dts/lg/lg1312.dtsi | 346 +++++++++++++++++++++++++++++++++ arch/arm64/configs/defconfig | 1 + 7 files changed, 389 insertions(+) create mode 100644 arch/arm64/boot/dts/lg/Makefile create mode 100644 arch/arm64/boot/dts/lg/lg1312-ref.dts create mode 100644 arch/arm64/boot/dts/lg/lg1312.dtsi -- 1.7.9.5
[toc] | [next] | [standalone]
| From | Chanho Min <chanho.min@lge.com> |
|---|---|
| Date | 2016-03-07 05:20 +0100 |
| Subject | [PATCH 1/4] arm64: add Kconfig entry for LG1K SoC family |
| Message-ID | <r9UOe-6ji-19@gated-at.bofh.it> |
| In reply to | #1351308 |
This patch introduces ARCH_LG1K to enable LG Electronics's LG1K SoC family in Kconfig. Signed-off-by: Chanho Min <chanho.min@lge.com> --- arch/arm64/Kconfig.platforms | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms index 21074f6..b002bba 100644 --- a/arch/arm64/Kconfig.platforms +++ b/arch/arm64/Kconfig.platforms @@ -141,4 +141,8 @@ config ARCH_ZYNQMP help This enables support for Xilinx ZynqMP Family +config ARCH_LG1K + bool "LG Electronics LG1K SoC Family" + help + This enables support for LG Electronics LG1K SoC Family endmenu -- 1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Chanho Min <chanho.min@lge.com> |
|---|---|
| Date | 2016-03-07 05:20 +0100 |
| Subject | [PATCH 2/4] arm64: defconfig: enable ARCH_LG1K |
| Message-ID | <r9UOe-6ji-21@gated-at.bofh.it> |
| In reply to | #1351308 |
Enable building LG1K support in the defconfig. Signed-off-by: Chanho Min <chanho.min@lge.com> --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 86581f7..14dbe27 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -49,6 +49,7 @@ CONFIG_ARCH_UNIPHIER=y CONFIG_ARCH_VEXPRESS=y CONFIG_ARCH_XGENE=y CONFIG_ARCH_ZYNQMP=y +CONFIG_ARCH_LG1K=y CONFIG_PCI=y CONFIG_PCI_MSI=y CONFIG_PCI_IOV=y -- 1.7.9.5
[toc] | [prev] | [next] | [standalone]
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Date | 2016-03-07 05:40 +0100 |
| Message-ID | <r9V7A-6sn-11@gated-at.bofh.it> |
| In reply to | #1351308 |
On Monday 07 March 2016, Chanho Min wrote: > This is an initial series for supporting LG Electronics's lg1k SoCs, > based on ARM Cortex-A53, mainly used for digital TVs. > > Chanho Min (4): > arm64: add Kconfig entry for LG1K SoC family > arm64: defconfig: enable ARCH_LG1K > arm64: dts: Add dts files for LG Electronics's lg1312 SoC > MAINTAINERS: add myself as ARM/LG1K maintainer The patches look ok in principle, but the timing is unfortunate: we are at -rc7 now, just before the merge window, and we need to give this a little extra time for review, so I think we should merge this for 4.7, not 4.6. Arnd
[toc] | [prev] | [next] | [standalone]
| From | "Chanho Min" <chanho.min@lge.com> |
|---|---|
| Date | 2016-03-07 07:50 +0100 |
| Message-ID | <r9X9n-7L8-3@gated-at.bofh.it> |
| In reply to | #1351318 |
> > The patches look ok in principle, but the timing is unfortunate: we are at - > rc7 now, just before the merge window, and we need to give this a little extra > time for review, so I think we should merge this for 4.7, not 4.6. It's ok for me. Chanho
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web