* [U-Boot] [GIT PULL] Please pull u-boot-mpc83xx: new 8321 tuge1, GPIO support, fixes
@ 2012-01-10 2:20 Kim Phillips
2012-01-13 19:10 ` Wolfgang Denk
0 siblings, 1 reply; 2+ messages in thread
From: Kim Phillips @ 2012-01-10 2:20 UTC (permalink / raw)
To: u-boot
Dear Wolfgang Denk,
Please pull 8321-based tuge1 board support, GPIO support for the
mpc8313erdb, and other fixes:
The following changes since commit 9a420986cccc9bd2c37affd931d627b3c3e72952:
ARM: highbank: enable networking and pxe (2012-01-05 20:10:38 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-mpc83xx.git master
Holger Brunck (3):
powerpc/83xx/km: remove obsolete defines for tuda1
powerpc/83xx/km: merge tuxa and tuda1 boards to tuxx1
powerpc/83xx/km: add support for 8321 based tuge1 board
Joe Hershberger (4):
gpio: Modify common gpio.h to more closely match Linux
gpio: Replace ARM gpio.h with the common API in include/asm-generic
mpc83xx: Add a GPIO driver for the MPC83XX family
mpc8313erdb: Enable GPIO support on the MPC8313E RDB
Marco Schmid (1):
powerpc/83xx/km: update SDRAM parameters for km8321 boards
Scott Wood (1):
mpc8313erdb: fix mtdparts address
MAINTAINERS | 6 +-
arch/arm/cpu/armv7/omap-common/gpio.c | 35 +++--
arch/arm/include/asm/gpio.h | 38 +-----
arch/powerpc/include/asm/arch-mpc83xx/gpio.h | 38 +++++
arch/powerpc/include/asm/gpio.h | 2 +
board/freescale/mpc8313erdb/mpc8313erdb.c | 15 ++
boards.cfg | 4 +-
drivers/gpio/Makefile | 1 +
drivers/gpio/da8xx_gpio.c | 77 ++++++-----
drivers/gpio/mpc83xx_gpio.c | 199 ++++++++++++++++++++++++++
drivers/gpio/mvgpio.c | 74 +++++-----
drivers/gpio/mxc_gpio.c | 42 +++---
drivers/gpio/mxs_gpio.c | 42 +++---
drivers/gpio/s5p_gpio.c | 47 ++++---
drivers/gpio/tegra2_gpio.c | 165 +++++++++++----------
include/asm-generic/gpio.h | 41 ++++--
include/configs/MPC8313ERDB.h | 11 +-
include/configs/km/km8321-common.h | 24 ++--
include/configs/tuxa1.h | 123 ----------------
include/configs/{tuda1.h => tuxx1.h} | 43 ++++---
20 files changed, 590 insertions(+), 437 deletions(-)
create mode 100644 arch/powerpc/include/asm/arch-mpc83xx/gpio.h
create mode 100644 arch/powerpc/include/asm/gpio.h
create mode 100644 drivers/gpio/mpc83xx_gpio.c
delete mode 100644 include/configs/tuxa1.h
rename include/configs/{tuda1.h => tuxx1.h} (77%)
Thanks,
Kim
^ permalink raw reply [flat|nested] 2+ messages in thread
* [U-Boot] [GIT PULL] Please pull u-boot-mpc83xx: new 8321 tuge1, GPIO support, fixes
2012-01-10 2:20 [U-Boot] [GIT PULL] Please pull u-boot-mpc83xx: new 8321 tuge1, GPIO support, fixes Kim Phillips
@ 2012-01-13 19:10 ` Wolfgang Denk
0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Denk @ 2012-01-13 19:10 UTC (permalink / raw)
To: u-boot
Dear Kim Phillips,
In message <20120109202052.ae28ccb964402aa7afab52f1@freescale.com> you wrote:
>
> Please pull 8321-based tuge1 board support, GPIO support for the
> mpc8313erdb, and other fixes:
>
> The following changes since commit 9a420986cccc9bd2c37affd931d627b3c3e72952:
>
> ARM: highbank: enable networking and pxe (2012-01-05 20:10:38 +0100)
>
> are available in the git repository at:
> git://git.denx.de/u-boot-mpc83xx.git master
>
> Holger Brunck (3):
> powerpc/83xx/km: remove obsolete defines for tuda1
> powerpc/83xx/km: merge tuxa and tuda1 boards to tuxx1
> powerpc/83xx/km: add support for 8321 based tuge1 board
>
> Joe Hershberger (4):
> gpio: Modify common gpio.h to more closely match Linux
> gpio: Replace ARM gpio.h with the common API in include/asm-generic
> mpc83xx: Add a GPIO driver for the MPC83XX family
> mpc8313erdb: Enable GPIO support on the MPC8313E RDB
>
> Marco Schmid (1):
> powerpc/83xx/km: update SDRAM parameters for km8321 boards
>
> Scott Wood (1):
> mpc8313erdb: fix mtdparts address
>
> MAINTAINERS | 6 +-
> arch/arm/cpu/armv7/omap-common/gpio.c | 35 +++--
> arch/arm/include/asm/gpio.h | 38 +-----
> arch/powerpc/include/asm/arch-mpc83xx/gpio.h | 38 +++++
> arch/powerpc/include/asm/gpio.h | 2 +
> board/freescale/mpc8313erdb/mpc8313erdb.c | 15 ++
> boards.cfg | 4 +-
> drivers/gpio/Makefile | 1 +
> drivers/gpio/da8xx_gpio.c | 77 ++++++-----
> drivers/gpio/mpc83xx_gpio.c | 199 ++++++++++++++++++++++++++
> drivers/gpio/mvgpio.c | 74 +++++-----
> drivers/gpio/mxc_gpio.c | 42 +++---
> drivers/gpio/mxs_gpio.c | 42 +++---
> drivers/gpio/s5p_gpio.c | 47 ++++---
> drivers/gpio/tegra2_gpio.c | 165 +++++++++++----------
> include/asm-generic/gpio.h | 41 ++++--
> include/configs/MPC8313ERDB.h | 11 +-
> include/configs/km/km8321-common.h | 24 ++--
> include/configs/tuxa1.h | 123 ----------------
> include/configs/{tuda1.h => tuxx1.h} | 43 ++++---
> 20 files changed, 590 insertions(+), 437 deletions(-)
> create mode 100644 arch/powerpc/include/asm/arch-mpc83xx/gpio.h
> create mode 100644 arch/powerpc/include/asm/gpio.h
> create mode 100644 drivers/gpio/mpc83xx_gpio.c
> delete mode 100644 include/configs/tuxa1.h
> rename include/configs/{tuda1.h => tuxx1.h} (77%)
Applied, thanks.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"May your future be limited only by your dreams."
- Christa McAuliffe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-13 19:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-10 2:20 [U-Boot] [GIT PULL] Please pull u-boot-mpc83xx: new 8321 tuge1, GPIO support, fixes Kim Phillips
2012-01-13 19:10 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox