mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 0/5] BCM2835/Raspberry-Pi support
Date: Mon, 15 Oct 2012 14:43:49 +0200	[thread overview]
Message-ID: <20121015124349.GX13639@game.jcrosoft.org> (raw)
In-Reply-To: <20121015065640.GF27665@pengutronix.de>

On 08:56 Mon 15 Oct     , Sascha Hauer wrote:
> 
> Jean-Christophe,
> 
> Since you reviewed this series can I assume you give your Acked-by once
> you are happy with it?
I'm happy with it except one point that I just check with the mainline kernel
the DT

the timer as example is "brcm,bcm2835-system-timer" not "brcm,bcm2835-cs"

for gpio it's the right one

as we can agree to dt must be in sync

Best Regards,
J.
> 
> Sascha
> 
> On Sat, Oct 13, 2012 at 04:00:11PM +0200, Carlo Caione wrote:
> > The set is the same as before except for patch 05/05
> > 
> > Carlo Caione (5):
> >   BCM2835: add clocksource driver
> >   BCM2835: add gpio driver
> >   ARM1176: add support
> >   BCM2835: add support (arch)
> >   Raspberry-Pi: add support (board)
> > 
> >  arch/arm/Kconfig                                   |   9 ++
> >  arch/arm/Makefile                                  |   2 +
> >  arch/arm/boards/raspberry-pi/Makefile              |   1 +
> >  arch/arm/boards/raspberry-pi/config.h              |   4 +
> >  .../arm/boards/raspberry-pi/env/init/bootargs-base |   8 +
> >  arch/arm/boards/raspberry-pi/env/init/hostname     |   8 +
> >  arch/arm/boards/raspberry-pi/rpi.c                 |  49 ++++++
> >  arch/arm/configs/rpi_defconfig                     |  40 +++++
> >  arch/arm/cpu/Kconfig                               |   5 +
> >  arch/arm/mach-bcm2835/Kconfig                      |  18 +++
> >  arch/arm/mach-bcm2835/Makefile                     |   2 +
> >  arch/arm/mach-bcm2835/clock.c                      |  39 +++++
> >  arch/arm/mach-bcm2835/core.c                       | 105 +++++++++++++
> >  arch/arm/mach-bcm2835/include/mach/clkdev.h        |   7 +
> >  arch/arm/mach-bcm2835/include/mach/clock.h         |   8 +
> >  arch/arm/mach-bcm2835/include/mach/core.h          |  27 ++++
> >  arch/arm/mach-bcm2835/include/mach/gpio.h          |   1 +
> >  arch/arm/mach-bcm2835/include/mach/platform.h      |  53 +++++++
> >  arch/arm/mach-bcm2835/include/mach/wd.h            |  50 +++++++
> >  drivers/clocksource/Kconfig                        |   4 +
> >  drivers/clocksource/Makefile                       |   1 +
> >  drivers/clocksource/bcm2835.c                      |  95 ++++++++++++
> >  drivers/gpio/Kconfig                               |   4 +
> >  drivers/gpio/Makefile                              |   1 +
> >  drivers/gpio/gpio-bcm2835.c                        | 165 +++++++++++++++++++++
> >  25 files changed, 706 insertions(+)
> >  create mode 100644 arch/arm/boards/raspberry-pi/Makefile
> >  create mode 100644 arch/arm/boards/raspberry-pi/config.h
> >  create mode 100644 arch/arm/boards/raspberry-pi/env/init/bootargs-base
> >  create mode 100644 arch/arm/boards/raspberry-pi/env/init/hostname
> >  create mode 100644 arch/arm/boards/raspberry-pi/rpi.c
> >  create mode 100644 arch/arm/configs/rpi_defconfig
> >  create mode 100644 arch/arm/mach-bcm2835/Kconfig
> >  create mode 100644 arch/arm/mach-bcm2835/Makefile
> >  create mode 100644 arch/arm/mach-bcm2835/clock.c
> >  create mode 100644 arch/arm/mach-bcm2835/core.c
> >  create mode 100644 arch/arm/mach-bcm2835/include/mach/clkdev.h
> >  create mode 100644 arch/arm/mach-bcm2835/include/mach/clock.h
> >  create mode 100644 arch/arm/mach-bcm2835/include/mach/core.h
> >  create mode 100644 arch/arm/mach-bcm2835/include/mach/gpio.h
> >  create mode 100644 arch/arm/mach-bcm2835/include/mach/platform.h
> >  create mode 100644 arch/arm/mach-bcm2835/include/mach/wd.h
> >  create mode 100644 drivers/clocksource/bcm2835.c
> >  create mode 100644 drivers/gpio/gpio-bcm2835.c
> > 
> > -- 
> > 1.7.12.3
> > 
> > 
> > _______________________________________________
> > barebox mailing list
> > barebox@lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/barebox
> > 
> 
> -- 
> Pengutronix e.K.                           |                             |
> Industrial Linux Solutions                 | http://www.pengutronix.de/  |
> Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  reply	other threads:[~2012-10-15 12:46 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-13 14:00 Carlo Caione
2012-10-13 14:00 ` [PATCH 1/5] BCM2835: add clocksource driver Carlo Caione
2012-10-13 14:00 ` [PATCH 2/5] BCM2835: add gpio driver Carlo Caione
2012-10-13 14:00 ` [PATCH 3/5] ARM1176: add support Carlo Caione
2012-10-13 14:00 ` [PATCH 4/5] BCM2835: add support (arch) Carlo Caione
2012-10-13 14:00 ` [PATCH 5/5] Raspberry-Pi: add support (board) Carlo Caione
2012-10-15  6:56 ` [PATCH 0/5] BCM2835/Raspberry-Pi support Sascha Hauer
2012-10-15 12:43   ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-10-15 14:20     ` Carlo Caione
2012-10-16 18:04 Carlo Caione
2012-10-18 19:42 Carlo Caione
2012-10-21  8:51 ` Sascha Hauer

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=20121015124349.GX13639@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@lists.infradead.org \
    --cc=s.hauer@pengutronix.de \
    /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