devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Santosh Shilimkar <santosh.shilimkar-l0cyMroinI0@public.gmane.org>
To: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Santosh Shilimkar
	<santosh.shilimkar-l0cyMroinI0@public.gmane.org>,
	Olof Johansson <olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org>,
	Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>,
	Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>
Subject: [PATCH 0/4] ARM: dts: keystone: Add support for K2H and K2E SOCs/EVMs
Date: Tue, 25 Feb 2014 16:50:31 -0500	[thread overview]
Message-ID: <1393365035-20083-1-git-send-email-santosh.shilimkar@ti.com> (raw)

Series adds support for two Keystone2 SOCs called Lammar(K2L) and Edision(K2E)
with respective EVMs. As seen from changes, just device tree updates are needed
to support the SOCs and EVMs which is the goal with DT :)

Kyetsone2 Edision SOC(K2E):
- It is a Quad Cortex A15 based SoC with 1 DSP.
- Standard peripherals such as i2c, spi, uart, timer, etc similar to K2H.
- Additional instances of PCIE and USB
- No wireless hardware accelerators.

Keystone2 Lamarr SOC(K2L):
- It is a dual Cortex A15 core based SoC with 4 DSPs.
- Standard peripherals such as i2c, spi, uart, timer, pcie etc., similar to K2H
- Different set of wireless hardware w.r.t K2H.

Series has been boot tested on K2L and K2E EVMs.

Cc: Olof Johansson <olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org>
Cc: Arnd Bergmann <arnd-r2nGTMty4D4@public.gmane.org>
Cc: Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
Cc: Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>

Murali Karicheri (4):
  ARM: dts: keystone: update for supporting K2L/K2E EVMs
  ARM: dts: keystone: preparatory patch to support K2L and K2E SOCs
  ARM: dts: keystone: add support for K2 Lamarr SoC and EVM
  ARM: dts: keystone: add support for k2 Edison SoC and EVM

 .../devicetree/bindings/arm/keystone/keystone.txt  |   10 +
 arch/arm/boot/dts/k2e-clocks.dtsi                  |   78 ++++
 arch/arm/boot/dts/k2e-evm.dts                      |   60 +++
 arch/arm/boot/dts/k2e.dtsi                         |   80 ++++
 arch/arm/boot/dts/k2hk-clocks.dtsi                 |  426 ++++++++++++++++++++
 arch/arm/boot/dts/k2hk-evm.dts                     |    6 +-
 arch/arm/boot/dts/k2hk.dtsi                        |   46 +++
 arch/arm/boot/dts/k2l-clocks.dtsi                  |  267 ++++++++++++
 arch/arm/boot/dts/k2l-evm.dts                      |   37 ++
 arch/arm/boot/dts/k2l.dtsi                         |   55 +++
 arch/arm/boot/dts/keystone-clocks.dtsi             |  405 -------------------
 arch/arm/boot/dts/keystone.dtsi                    |   31 --
 arch/arm/mach-keystone/keystone.c                  |    3 +
 13 files changed, 1066 insertions(+), 438 deletions(-)
 create mode 100644 arch/arm/boot/dts/k2e-clocks.dtsi
 create mode 100644 arch/arm/boot/dts/k2e-evm.dts
 create mode 100644 arch/arm/boot/dts/k2e.dtsi
 create mode 100644 arch/arm/boot/dts/k2hk-clocks.dtsi
 create mode 100644 arch/arm/boot/dts/k2hk.dtsi
 create mode 100644 arch/arm/boot/dts/k2l-clocks.dtsi
 create mode 100644 arch/arm/boot/dts/k2l-evm.dts
 create mode 100644 arch/arm/boot/dts/k2l.dtsi

Regards,
Santosh
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

             reply	other threads:[~2014-02-25 21:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-25 21:50 Santosh Shilimkar [this message]
     [not found] ` <1393365035-20083-1-git-send-email-santosh.shilimkar-l0cyMroinI0@public.gmane.org>
2014-02-25 21:50   ` [PATCH 1/4] ARM: dts: keystone: update for supporting K2L/K2E EVMs Santosh Shilimkar
     [not found]     ` <1393365035-20083-2-git-send-email-santosh.shilimkar-l0cyMroinI0@public.gmane.org>
2014-03-09  5:39       ` Olof Johansson
2014-03-09 20:01         ` Santosh Shilimkar
     [not found]           ` <531CC888.1080100-l0cyMroinI0@public.gmane.org>
2014-03-11 19:58             ` Olof Johansson
2014-02-25 21:50   ` [PATCH 2/4] ARM: dts: keystone: preparatory patch to support K2L and K2E SOCs Santosh Shilimkar
2014-02-25 21:50   ` [PATCH 3/4] ARM: dts: keystone: add support for K2 Lamarr SoC and EVM Santosh Shilimkar
2014-02-25 21:50   ` [PATCH 4/4] ARM: dts: keystone: add support for k2 Edison " Santosh Shilimkar

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=1393365035-20083-1-git-send-email-santosh.shilimkar@ti.com \
    --to=santosh.shilimkar-l0cymroini0@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
    --cc=olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org \
    --cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    /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;
as well as URLs for NNTP newsgroup(s).