From: Lokesh Vutla <a0131933@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/8] ARM: keystone2: Enable OF_CONTROL and DM
Date: Thu, 22 Oct 2015 15:07:55 +0530 [thread overview]
Message-ID: <5628AE73.1030004@ti.com> (raw)
In-Reply-To: <1442655023-15966-1-git-send-email-lokeshvutla@ti.com>
Hi Tom,
On Saturday 19 September 2015 03:00 PM, Lokesh Vutla wrote:
> 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
Gentle ping.
Thanks and regards,
Lokesh
>
> 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
>
next prev parent reply other threads:[~2015-10-22 9:37 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
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 ` Lokesh Vutla [this message]
2015-10-22 11:23 ` [U-Boot] [PATCH 0/8] ARM: keystone2: Enable OF_CONTROL and DM Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5628AE73.1030004@ti.com \
--to=a0131933@ti.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox