linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] ARM: dts: sbc-t3x: add support for more boards
@ 2014-01-12 13:22 Dmitry Lifshitz
  2014-01-12 13:22 ` [PATCH 01/12] ARM: dts: sbc-t3x: use omap specific pinctrl defines Dmitry Lifshitz
                   ` (13 more replies)
  0 siblings, 14 replies; 19+ messages in thread
From: Dmitry Lifshitz @ 2014-01-12 13:22 UTC (permalink / raw)
  To: linux-arm-kernel

Add support for CompuLab SBC-T3530 and SBC-T3517 boards:

https://compulab.co.il/products/sbcs/sbc-t3530/
https://compulab.co.il/products/sbcs/sbc-t3517/

along with respective CoMs - CM-T3530 and CM-T3517:

https://compulab.co.il/products/computer-on-modules/cm-t3530/
https://compulab.co.il/products/computer-on-modules/cm-t3517/

The device tree files have the following structure:

omap3-cm-t3x.dtsi
 |
 |<-- omap3-cm-t3x30.dtsi
 |     |
 |     |
 |     |     -----                  -------          ------------
 |     |    | CoM |                | Board |        | Base board |
 |     |     -----                  -------          ------------
 |     |                                            omap3-sb-t35.dtsi
 |     |                                                  |
 |     |<-- omap3-cm-t3730.dts <-- omap3-sbc-t3730.dts -->|
 |     |                                                  |
 |     |<-- omap3-cm-t3530.dts <-- omap3-sbc-t3530.dts -->|
 |                                                        |
 |<-------- omap3-cm-t3517.dts <-- omap3-sbc-t3517.dts -->|


where omap3-cm-t3730.dts, omap3-cm-t3530.dts, omap3-cm-t3517.dts
contain CoMs specific data, while omap3-sbc-t3730.dts, omap3-sbc-t3530.dts,
omap3-sbc-t3517.dts represent eval boards with respective core modules.

This series is based on Tony's omap-for-v3.14/dt branch

Dmitry Lifshitz (11):
  ARM: dts: sbc-t3x: refactor DT support
  ARM: dts: sbc-t3x: disable mmc3
  ARM: dts: sb-t35: fix Ethernet power supply
  ARM: dts: cm-t3x: add gpio-led pinmux
  ARM: dts: cm-t3x30: add twl4030 gpio pullups
  ARM: dts: cm-t3x30: add HS USB Host support
  ARM: dts: sbc-t3730: add pinmux for usb hub reset
  ARM: dts: cm-t3x30: add USB OTG support
  ARM: dts: sbc-t3530: add support for sbc-t3530
  ARM: dts: sbc-t3517: add support for sbc-t3517
  ARM: OMAP2+: make reset pulse for sbc-t3x usb hubs

 arch/arm/boot/dts/Makefile            |    4 +
 arch/arm/boot/dts/omap3-cm-t3517.dts  |  137 +++++++++++++++++++++++++++++++++
 arch/arm/boot/dts/omap3-cm-t3530.dts  |   13 +++
 arch/arm/boot/dts/omap3-cm-t3730.dts  |   40 ----------
 arch/arm/boot/dts/omap3-cm-t3x.dtsi   |  112 +++++++++++++++++++++++++++
 arch/arm/boot/dts/omap3-cm-t3x30.dtsi |   74 +++++++++++++-----
 arch/arm/boot/dts/omap3-sb-t35.dtsi   |   30 +++++++-
 arch/arm/boot/dts/omap3-sbc-t3517.dts |   44 +++++++++++
 arch/arm/boot/dts/omap3-sbc-t3530.dts |   37 +++++++++
 arch/arm/boot/dts/omap3-sbc-t3730.dts |   24 +++---
 arch/arm/mach-omap2/pdata-quirks.c    |   67 ++++++++++++++++-
 11 files changed, 506 insertions(+), 76 deletions(-)
 create mode 100644 arch/arm/boot/dts/omap3-cm-t3517.dts
 create mode 100644 arch/arm/boot/dts/omap3-cm-t3530.dts
 create mode 100644 arch/arm/boot/dts/omap3-cm-t3x.dtsi
 create mode 100644 arch/arm/boot/dts/omap3-sbc-t3517.dts
 create mode 100644 arch/arm/boot/dts/omap3-sbc-t3530.dts

-- 
1.7.5.4

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

end of thread, other threads:[~2014-03-02 17:07 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-12 13:22 [PATCH 00/11] ARM: dts: sbc-t3x: add support for more boards Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 01/12] ARM: dts: sbc-t3x: use omap specific pinctrl defines Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 02/12] ARM: dts: sbc-t3x: refactor DT support Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 03/12] ARM: dts: sbc-t3x: disable mmc3 Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 04/12] ARM: dts: sb-t35: fix Ethernet power supply Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 05/12] ARM: dts: cm-t3x: add gpio-led pinmux Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 06/12] ARM: dts: cm-t3x30: add twl4030 gpio pullups Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 07/12] ARM: dts: cm-t3x30: add HS USB Host support Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 08/12] ARM: dts: sbc-t3730: add pinmux for usb hub reset Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 09/12] ARM: dts: cm-t3x30: add USB OTG support Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 10/12] ARM: dts: sbc-t3530: add support for sbc-t3530 Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 11/12] ARM: dts: sbc-t3517: add support for sbc-t3517 Dmitry Lifshitz
2014-01-12 13:22 ` [PATCH 12/12] ARM: OMAP2+: make reset pulse for sbc-t3x usb hubs Dmitry Lifshitz
2014-01-19  8:48 ` [PATCH 00/12] ARM: dts: sbc-t3x: add support for more boards Dmitry Lifshitz
2014-02-12 12:38 ` [PATCH 00/11] " Igor Grinberg
2014-02-23 12:30   ` Igor Grinberg
2014-02-28 22:12     ` Tony Lindgren
2014-03-02 14:15       ` Igor Grinberg
2014-03-02 17:07         ` Tony Lindgren

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).