linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: bcousson@baylibre.com (Benoit Cousson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/18] ARM: dts: Better support for Gumstix Overo
Date: Thu, 09 Jan 2014 18:06:52 +0100	[thread overview]
Message-ID: <52CED72C.5050703@baylibre.com> (raw)
In-Reply-To: <1389286092-27087-1-git-send-email-florian.vaussard@epfl.ch>

Hi Florian,

On 09/01/2014 17:47, Florian Vaussard wrote:
> Hello,
>
> This series adds a number of improvements to Gumstix Overo.

Thanks for that nice series.

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

Yeah, I think so, even my 3.14 branch is too late for 3.14 :-)

Thanks,
Benoit

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


-- 
Beno?t Cousson
BayLibre
Embedded Linux Technology Lab
www.baylibre.com

  parent reply	other threads:[~2014-01-09 17:06 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Benoit Cousson [this message]
2014-01-09 18:13   ` [PATCH 00/18] ARM: dts: Better support for Gumstix Overo Ash Charles
2014-01-09 20:00     ` Florian Vaussard
2014-01-09 19:59   ` Florian Vaussard

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=52CED72C.5050703@baylibre.com \
    --to=bcousson@baylibre.com \
    --cc=linux-arm-kernel@lists.infradead.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).