linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/18] ARM: dts: Better support for Gumstix Overo
@ 2014-01-09 16:47 Florian Vaussard
  2014-01-09 16:47 ` [PATCH 01/18] of: add vendor prefix for Gumstix Florian Vaussard
                   ` (18 more replies)
  0 siblings, 19 replies; 27+ messages in thread
From: Florian Vaussard @ 2014-01-09 16:47 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

This series adds a number of improvements to Gumstix Overo.

Patch 1+2: fix an issue with the vendor prefix (reported long ago by Javier Martinez Canillas)
Patch 3+4: add some missing pinctrl entries
Patch 5: completely turn off the PMIC on power off
Patch 6: enable the on-board Wifi
Patch 7: add the high-speed USB PHY
Patch 8: add specific timings for LAN9221 into a generic file
-> This might interest other people using the same chip, result in doubled bandwith

Patch 9: simplify omap3-tobi by using patch 8
Patch 10: add support for AT24C01 EEPROM used on expansion boards
Patch 11: factorize parts common to all expansion boards
Patch 12: rename omap3-tobi to omap3-overo-tobi
-> I do not know to which extent this might qualify as an API breakage,
   but the new name is far better IMHO

Patch 13 to 17: add new extension boards (Palo43, Gallop43, Alto35, Chestnut43, Summit)
Patch 18: add the HDMI output
-> this patch depends on Tomi Valkeinen's DT binding for OMAPDSS, which is
   not yet merged, so this patch will have to wait


The patches 13 to 17 are based on the hardware schematics and compile-tested, as I
do not have the necessary hardware (anyone willing to send me some boards ? :-)
We are mainly missing the support for the various LCDs, the accelerometer + probably
other small things.

This series is based on Tony's omap-for-v3.14/dt branch + work from Tomi [1] for the patch 18.

Benoit: I guess that I am too late for the 3.14... ?

Regards,

Florian


Florian Vaussard (18):
  of: add vendor prefix for Gumstix
  ARM: dts: omap3-tobi: Use the correct vendor prefix
  ARM: dts: omap3-tobi: Add missing pinctrl
  ARM: dts: omap3-overo: Add missing pinctrl
  ARM: dts: omap3-overo: Use complete poweroff
  ARM: dts: omap3-overo: Enable MMC2
  ARM: dts: omap3-overo: Add HSUSB PHY
  ARM: dts: omap: Add common file for SMSC9221
  ARM: dts: omap3-tobi: Use include file omap-gpmc-smsc9221
  ARM: dts: omap3-tobi: Add AT24C01 EEPROM
  ARM: dts: omap3-tobi: Create a file for common Gumstix peripherals
  ARM: dts: omap3-tobi: Rename to omap3-overo-tobi
  ARM: dts: Add support for the Overo Palo43
  ARM: dts: Add support for the Overo Gallop43
  ARM: dts: Add support for the Overo Alto35
  ARM: dts: Add support for the Overo Chestnut43
  ARM: dts: Add support for the Overo Summit
  ARM: dts: overo: Add support for DVI output

 .../devicetree/bindings/vendor-prefixes.txt        |   1 +
 arch/arm/boot/dts/Makefile                         |   7 +-
 arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi          |  58 ++++++++++
 arch/arm/boot/dts/omap3-overo-alto35.dts           |  52 +++++++++
 arch/arm/boot/dts/omap3-overo-chestnut43.dts       |  76 +++++++++++++
 arch/arm/boot/dts/omap3-overo-common-dvi.dtsi      | 108 ++++++++++++++++++
 arch/arm/boot/dts/omap3-overo-common.dtsi          |  39 +++++++
 arch/arm/boot/dts/omap3-overo-gallop43.dts         |  51 +++++++++
 arch/arm/boot/dts/omap3-overo-palo43.dts           |  52 +++++++++
 arch/arm/boot/dts/omap3-overo-summit.dts           |  30 +++++
 .../dts/{omap3-tobi.dts => omap3-overo-tobi.dts}   |  41 +------
 arch/arm/boot/dts/omap3-overo.dtsi                 | 122 +++++++++++++++++++--
 12 files changed, 594 insertions(+), 43 deletions(-)
 create mode 100644 arch/arm/boot/dts/omap-gpmc-smsc9221.dtsi
 create mode 100644 arch/arm/boot/dts/omap3-overo-alto35.dts
 create mode 100644 arch/arm/boot/dts/omap3-overo-chestnut43.dts
 create mode 100644 arch/arm/boot/dts/omap3-overo-common-dvi.dtsi
 create mode 100644 arch/arm/boot/dts/omap3-overo-common.dtsi
 create mode 100644 arch/arm/boot/dts/omap3-overo-gallop43.dts
 create mode 100644 arch/arm/boot/dts/omap3-overo-palo43.dts
 create mode 100644 arch/arm/boot/dts/omap3-overo-summit.dts
 rename arch/arm/boot/dts/{omap3-tobi.dts => omap3-overo-tobi.dts} (54%)

-- 
1.8.1.2

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

end of thread, other threads:[~2014-01-17 15:48 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-09 16:47 [PATCH 00/18] ARM: dts: Better support for Gumstix Overo Florian Vaussard
2014-01-09 16:47 ` [PATCH 01/18] of: add vendor prefix for Gumstix Florian Vaussard
2014-01-09 16:47 ` [PATCH 02/18] ARM: dts: omap3-tobi: Use the correct vendor prefix Florian Vaussard
2014-01-09 16:47 ` [PATCH 03/18] ARM: dts: omap3-tobi: Add missing pinctrl Florian Vaussard
2014-01-09 16:47 ` [PATCH 04/18] ARM: dts: omap3-overo: " Florian Vaussard
2014-01-09 16:47 ` [PATCH 05/18] ARM: dts: omap3-overo: Use complete poweroff Florian Vaussard
2014-01-09 16:48 ` [PATCH 06/18] ARM: dts: omap3-overo: Enable MMC2 Florian Vaussard
2014-01-09 20:43   ` Javier Martinez Canillas
2014-01-10  7:38     ` Florian Vaussard
2014-01-17 13:22     ` Florian Vaussard
2014-01-17 15:48       ` Javier Martinez Canillas
2014-01-09 16:48 ` [PATCH 07/18] ARM: dts: omap3-overo: Add HSUSB PHY Florian Vaussard
2014-01-09 16:48 ` [PATCH 08/18] ARM: dts: omap: Add common file for SMSC9221 Florian Vaussard
2014-01-09 16:48 ` [PATCH 09/18] ARM: dts: omap3-tobi: Use include file omap-gpmc-smsc9221 Florian Vaussard
2014-01-09 16:48 ` [PATCH 10/18] ARM: dts: omap3-tobi: Add AT24C01 EEPROM Florian Vaussard
2014-01-09 16:48 ` [PATCH 11/18] ARM: dts: omap3-tobi: Create a file for common Gumstix peripherals Florian Vaussard
2014-01-09 16:48 ` [PATCH 12/18] ARM: dts: omap3-tobi: Rename to omap3-overo-tobi Florian Vaussard
2014-01-09 16:48 ` [PATCH 13/18] ARM: dts: Add support for the Overo Palo43 Florian Vaussard
2014-01-09 16:48 ` [PATCH 14/18] ARM: dts: Add support for the Overo Gallop43 Florian Vaussard
2014-01-09 16:48 ` [PATCH 15/18] ARM: dts: Add support for the Overo Alto35 Florian Vaussard
2014-01-09 16:48 ` [PATCH 16/18] ARM: dts: Add support for the Overo Chestnut43 Florian Vaussard
2014-01-09 16:48 ` [PATCH 17/18] ARM: dts: Add support for the Overo Summit Florian Vaussard
2014-01-09 16:48 ` [PATCH 18/18] ARM: dts: overo: Add support for DVI output Florian Vaussard
2014-01-09 17:06 ` [PATCH 00/18] ARM: dts: Better support for Gumstix Overo Benoit Cousson
2014-01-09 18:13   ` Ash Charles
2014-01-09 20:00     ` Florian Vaussard
2014-01-09 19:59   ` Florian Vaussard

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