public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/8] ARM: keystone2: Enable OF_CONTROL and DM
@ 2015-09-19  9:30 Lokesh Vutla
  2015-09-19  9:30 ` [U-Boot] [PATCH 1/8] ARM: keystone2: Fix serial port init Lokesh Vutla
                   ` (8 more replies)
  0 siblings, 9 replies; 19+ messages in thread
From: Lokesh Vutla @ 2015-09-19  9:30 UTC (permalink / raw)
  To: u-boot

This patch series enables OF_CONTROL and DM for all keystone platforms.
In order to add support for OF_CONTROL all the keystone2 specific DT
files are imported from Linux kernel. For now only DM_SERIAL is enabled
on all keystone2 platforms, moving forward all other drivers are
converted to DM and will be enabled in defconfig.

Build targets used:
UART boot: u-boot-dtb.bin
NAND boot: MLO
SPI boot: u-boot-spl.gph

Above three bootmodes are verified on the following platforms:
K2HK-evm, K2L-evm, K2E-evm.

This patch series is based on top of keystone serial driver posted previously:
https://www.mail-archive.com/u-boot%40lists.denx.de/msg186443.html

Lokesh Vutla (8):
  ARM: keystone2: Fix serial port init
  ARM: keystone2: spl: Fix stack allocation with CONFIG_SYS_MALLOC_F_LEN
  ARM: dts: Keystone2: Import generic dt files from Linux Kernel
  ARM: dts: keystone2: Do not use LPAE addresses in U-Boot
  ARM: dts: k2hk: Enable OF_CONTROL and DM
  ARM: dts: k2l: Enable OF_CONTROL and DM
  ARM: dts: k2e: Enable OF_CONTROL and DM
  ARM: keystone2: Use dtb images by default

 arch/arm/dts/Makefile                |   4 +
 arch/arm/dts/k2e-clocks.dtsi         |  77 +++++++
 arch/arm/dts/k2e-evm.dts             | 154 +++++++++++++
 arch/arm/dts/k2e-netcp.dtsi          | 206 +++++++++++++++++
 arch/arm/dts/k2e.dtsi                | 147 ++++++++++++
 arch/arm/dts/k2hk-clocks.dtsi        | 425 +++++++++++++++++++++++++++++++++++
 arch/arm/dts/k2hk-evm.dts            | 182 +++++++++++++++
 arch/arm/dts/k2hk-netcp.dtsi         | 208 +++++++++++++++++
 arch/arm/dts/k2hk.dtsi               | 114 ++++++++++
 arch/arm/dts/k2l-clocks.dtsi         | 266 ++++++++++++++++++++++
 arch/arm/dts/k2l-evm.dts             | 131 +++++++++++
 arch/arm/dts/k2l-netcp.dtsi          | 189 ++++++++++++++++
 arch/arm/dts/k2l.dtsi                | 108 +++++++++
 arch/arm/dts/keystone-clocks.dtsi    | 414 ++++++++++++++++++++++++++++++++++
 arch/arm/dts/keystone.dtsi           | 327 +++++++++++++++++++++++++++
 arch/arm/mach-keystone/config.mk     |   4 +-
 arch/arm/mach-keystone/init.c        |   2 +
 board/ti/ks2_evm/README              |  14 +-
 configs/k2e_evm_defconfig            |   5 +
 configs/k2hk_evm_defconfig           |   5 +
 configs/k2l_evm_defconfig            |   5 +
 include/configs/ti_armv7_keystone2.h |  13 +-
 22 files changed, 2990 insertions(+), 10 deletions(-)
 create mode 100644 arch/arm/dts/k2e-clocks.dtsi
 create mode 100644 arch/arm/dts/k2e-evm.dts
 create mode 100644 arch/arm/dts/k2e-netcp.dtsi
 create mode 100644 arch/arm/dts/k2e.dtsi
 create mode 100644 arch/arm/dts/k2hk-clocks.dtsi
 create mode 100644 arch/arm/dts/k2hk-evm.dts
 create mode 100644 arch/arm/dts/k2hk-netcp.dtsi
 create mode 100644 arch/arm/dts/k2hk.dtsi
 create mode 100644 arch/arm/dts/k2l-clocks.dtsi
 create mode 100644 arch/arm/dts/k2l-evm.dts
 create mode 100644 arch/arm/dts/k2l-netcp.dtsi
 create mode 100644 arch/arm/dts/k2l.dtsi
 create mode 100644 arch/arm/dts/keystone-clocks.dtsi
 create mode 100644 arch/arm/dts/keystone.dtsi

-- 
2.1.4

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

end of thread, other threads:[~2015-10-22 21:21 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-19  9:30 [U-Boot] [PATCH 0/8] ARM: keystone2: Enable OF_CONTROL and DM Lokesh Vutla
2015-09-19  9:30 ` [U-Boot] [PATCH 1/8] ARM: keystone2: Fix serial port init Lokesh Vutla
2015-10-22 21:20   ` [U-Boot] [U-Boot,1/8] " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 2/8] ARM: keystone2: spl: Fix stack allocation with CONFIG_SYS_MALLOC_F_LEN Lokesh Vutla
2015-10-22 21:20   ` [U-Boot] [U-Boot, " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 3/8] ARM: dts: Keystone2: Import generic dt files from Linux Kernel Lokesh Vutla
2015-10-22 21:20   ` [U-Boot] [U-Boot, " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 4/8] ARM: dts: keystone2: Do not use LPAE addresses in U-Boot Lokesh Vutla
2015-10-22 21:20   ` [U-Boot] [U-Boot, " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 5/8] ARM: dts: k2hk: Enable OF_CONTROL and DM Lokesh Vutla
2015-10-22 21:20   ` [U-Boot] [U-Boot,5/8] " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 6/8] ARM: dts: k2l: " Lokesh Vutla
2015-10-22 21:21   ` [U-Boot] [U-Boot,6/8] " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 7/8] ARM: dts: k2e: " Lokesh Vutla
2015-10-22 21:21   ` [U-Boot] [U-Boot,7/8] " Tom Rini
2015-09-19  9:30 ` [U-Boot] [PATCH 8/8] ARM: keystone2: Use dtb images by default Lokesh Vutla
2015-10-22 21:21   ` [U-Boot] [U-Boot, " Tom Rini
2015-10-22  9:37 ` [U-Boot] [PATCH 0/8] ARM: keystone2: Enable OF_CONTROL and DM Lokesh Vutla
2015-10-22 11:23   ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox