From: b.brezillon@overkiz.com (boris brezillon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] Device Tree support for the at91sam9261ek
Date: Tue, 31 Dec 2013 18:48:29 +0100 [thread overview]
Message-ID: <52C3036D.50503@overkiz.com> (raw)
In-Reply-To: <1388507534-10570-1-git-send-email-jjhiblot@traphandler.com>
Hello Jean-Jacques
On 31/12/2013 17:32, jjhiblot at traphandler.com wrote:
> From: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
>
> Hi Nicolas,
>
> This patch set aims at bringing a basic device tree support for the sam9261.
> It's mostly based on the sam9263 stuff.
> The only new thing here is the smc bus driver. It's a very simple bus driver
> used to configure the EBI from the DT. I haven't documented its DT bindings yet
>
> supported features:
> * dbgu
> * nand
> * lcd
> * ethernet
> * leds
>
Cool, one step forward to the removal of at91 board files ;).
I'll try to review this series before the end of the week.
Best Regards,
Boris
> Jean-Jacques
>
> jean-jacques hiblot (6):
> Basic Device Tree support for the at91sam9261
> at91: dt: sam9261: Added support for the lcd display
> At91: dt: Added smc bus driver
> at91: dt: sam9261: Pinmux DT entries for the SMC/EBI interface
> at91: dt: sam9261: Add an entry in the DT for the SMC/EBI bus driver.
> at91: dt: sam9261: Added DM9000 in the device tree
>
> jean-jacques hiblot (6):
> Basic Device Tree support for the at91sam9261
> at91: dt: sam9261: Added support for the lcd display
> At91: dt: Added smc bus driver
> at91: dt: sam9261: Pinmux DT entries for the SMC/EBI interface
> at91: dt: sam9261: Add an entry in the DT for the SMC/EBI bus driver.
> at91: dt: sam9261: Added DM9000 in the device tree
>
> arch/arm/boot/dts/at91sam9261.dtsi | 575 +++++++++++++++++++++++++++++++
> arch/arm/boot/dts/at91sam9261ek.dts | 159 +++++++++
> arch/arm/mach-at91/at91sam9261.c | 16 +
> arch/arm/mach-at91/at91sam9261_devices.c | 18 +
> drivers/bus/Kconfig | 9 +
> drivers/bus/Makefile | 1 +
> drivers/bus/atmel-smc.c | 182 ++++++++++
> 7 files changed, 960 insertions(+)
> create mode 100644 arch/arm/boot/dts/at91sam9261.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9261ek.dts
> create mode 100644 drivers/bus/atmel-smc.c
>
WARNING: multiple messages have this Message-ID (diff)
From: boris brezillon <b.brezillon@overkiz.com>
To: jjhiblot@traphandler.com, nicolas.ferre@atmel.com
Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 0/6] Device Tree support for the at91sam9261ek
Date: Tue, 31 Dec 2013 18:48:29 +0100 [thread overview]
Message-ID: <52C3036D.50503@overkiz.com> (raw)
In-Reply-To: <1388507534-10570-1-git-send-email-jjhiblot@traphandler.com>
Hello Jean-Jacques
On 31/12/2013 17:32, jjhiblot@traphandler.com wrote:
> From: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
>
> Hi Nicolas,
>
> This patch set aims at bringing a basic device tree support for the sam9261.
> It's mostly based on the sam9263 stuff.
> The only new thing here is the smc bus driver. It's a very simple bus driver
> used to configure the EBI from the DT. I haven't documented its DT bindings yet
>
> supported features:
> * dbgu
> * nand
> * lcd
> * ethernet
> * leds
>
Cool, one step forward to the removal of at91 board files ;).
I'll try to review this series before the end of the week.
Best Regards,
Boris
> Jean-Jacques
>
> jean-jacques hiblot (6):
> Basic Device Tree support for the at91sam9261
> at91: dt: sam9261: Added support for the lcd display
> At91: dt: Added smc bus driver
> at91: dt: sam9261: Pinmux DT entries for the SMC/EBI interface
> at91: dt: sam9261: Add an entry in the DT for the SMC/EBI bus driver.
> at91: dt: sam9261: Added DM9000 in the device tree
>
> jean-jacques hiblot (6):
> Basic Device Tree support for the at91sam9261
> at91: dt: sam9261: Added support for the lcd display
> At91: dt: Added smc bus driver
> at91: dt: sam9261: Pinmux DT entries for the SMC/EBI interface
> at91: dt: sam9261: Add an entry in the DT for the SMC/EBI bus driver.
> at91: dt: sam9261: Added DM9000 in the device tree
>
> arch/arm/boot/dts/at91sam9261.dtsi | 575 +++++++++++++++++++++++++++++++
> arch/arm/boot/dts/at91sam9261ek.dts | 159 +++++++++
> arch/arm/mach-at91/at91sam9261.c | 16 +
> arch/arm/mach-at91/at91sam9261_devices.c | 18 +
> drivers/bus/Kconfig | 9 +
> drivers/bus/Makefile | 1 +
> drivers/bus/atmel-smc.c | 182 ++++++++++
> 7 files changed, 960 insertions(+)
> create mode 100644 arch/arm/boot/dts/at91sam9261.dtsi
> create mode 100644 arch/arm/boot/dts/at91sam9261ek.dts
> create mode 100644 drivers/bus/atmel-smc.c
>
next prev parent reply other threads:[~2013-12-31 17:48 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-31 16:32 [PATCH 0/6] Device Tree support for the at91sam9261ek jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2013-12-31 16:32 ` [PATCH 1/6] Basic Device Tree support for the at91sam9261 jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2014-01-02 23:30 ` boris brezillon
2014-01-02 23:30 ` boris brezillon
2014-01-03 9:52 ` Jean-Jacques Hiblot
2014-01-03 9:52 ` Jean-Jacques Hiblot
2013-12-31 16:32 ` [PATCH 2/6] at91: dt: sam9261: Added support for the lcd display jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2013-12-31 16:32 ` [PATCH 3/6] At91: dt: Added smc bus driver jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2013-12-31 18:03 ` boris brezillon
2013-12-31 18:03 ` boris brezillon
2014-01-03 0:24 ` boris brezillon
2014-01-03 0:24 ` boris brezillon
2014-01-03 9:42 ` Jean-Jacques Hiblot
2014-01-03 9:42 ` Jean-Jacques Hiblot
2014-01-03 10:19 ` boris brezillon
2014-01-03 10:19 ` boris brezillon
2013-12-31 16:32 ` [PATCH 4/6] at91: dt: sam9261: Pinmux DT entries for the SMC/EBI interface jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2013-12-31 16:32 ` [PATCH 5/6] at91: dt: sam9261: Add an entry in the DT for the SMC/EBI bus driver jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2013-12-31 16:32 ` [PATCH 6/6] at91: dt: sam9261: Added DM9000 in the device tree jjhiblot at traphandler.com
2013-12-31 16:32 ` jjhiblot
2013-12-31 19:19 ` Arnd Bergmann
2013-12-31 19:19 ` Arnd Bergmann
2014-01-02 19:31 ` Jean-Jacques Hiblot
2014-01-02 19:31 ` Jean-Jacques Hiblot
2014-01-02 20:00 ` Arnd Bergmann
2014-01-02 20:00 ` Arnd Bergmann
2014-01-06 18:13 ` Jean-Jacques Hiblot
2014-01-06 18:13 ` Jean-Jacques Hiblot
2013-12-31 17:48 ` boris brezillon [this message]
2013-12-31 17:48 ` [PATCH 0/6] Device Tree support for the at91sam9261ek boris brezillon
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=52C3036D.50503@overkiz.com \
--to=b.brezillon@overkiz.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.