public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/15] ATMEL rework
@ 2011-02-18 12:49 Reinhard Meyer
  2011-02-18 12:49 ` [U-Boot] [PATCH 01/15] AT91: rework at91sam9260.h Reinhard Meyer
                   ` (2 more replies)
  0 siblings, 3 replies; 25+ messages in thread
From: Reinhard Meyer @ 2011-02-18 12:49 UTC (permalink / raw)
  To: u-boot

These are all the reworks on the ATMEL parts done by me so far.
They are now officially posted as patches for commenting.
They are the patches found in u-boot-atmel so far, with minor
whitespace and long line fixes complained about by checkpatch.

The following files are affected:

(Output of git-diff-tree --stat HEAD~15 HEAD~0)

 arch/arm/cpu/arm926ejs/at91/Makefile               |    1 +
 arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |   47 +---
 arch/arm/cpu/arm926ejs/at91/clock.c                |    8 +-
 arch/arm/cpu/arm926ejs/at91/cpu.c                  |   11 +-
 arch/arm/cpu/arm926ejs/at91/eflash.c               |   16 +-
 arch/arm/cpu/arm926ejs/at91/led.c                  |    2 +-
 arch/arm/cpu/arm926ejs/at91/reset.c                |    4 +-
 arch/arm/cpu/arm926ejs/at91/timer.c                |   37 ++--
 arch/arm/include/asm/arch-at91/at91_common.h       |    3 +-
 arch/arm/include/asm/arch-at91/at91_pio.h          |   19 +--
 arch/arm/include/asm/arch-at91/at91_rstc.h         |   25 --
 arch/arm/include/asm/arch-at91/at91sam9260.h       |  252 ++++++++++----------
 .../arm/include/asm/arch-at91/at91sam9260_matrix.h |  102 ++++-----
 arch/arm/include/asm/arch-at91/at91sam9261.h       |  187 ++++++++-------
 arch/arm/include/asm/arch-at91/at91sam9263.h       |  218 ++++++++---------
 arch/arm/include/asm/arch-at91/at91sam9g45.h       |  225 +++++++++---------
 arch/arm/include/asm/arch-at91/gpio.h              |   18 +-
 arch/arm/include/asm/arch-at91/hardware.h          |   96 +++-----
 arch/arm/include/asm/arch-at91/io.h                |   43 ----
 arch/arm/include/asm/arch-at91/memory-map.h        |   36 ---
 drivers/gpio/at91_gpio.c                           |   54 +++--
 drivers/mmc/gen_atmel_mci.c                        |    2 +-
 drivers/net/macb.c                                 |   14 +-
 drivers/rtc/at91sam9_rtt.c                         |   14 +-
 drivers/serial/atmel_usart.c                       |   28 +--
 drivers/spi/atmel_dataflash_spi.c                  |   94 +++++---
 drivers/spi/atmel_spi.c                            |   16 +-
 drivers/usb/host/ohci-at91.c                       |   18 +-
 drivers/watchdog/at91sam9_wdt.c                    |    6 +-
 include/dataflash.h                                |    1 -
 30 files changed, 714 insertions(+), 883 deletions(-)

If no complaints are received, they will be formally accepted and a git-pull
request will be issued to Albert.

Best Regards
Reinhard

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

end of thread, other threads:[~2011-04-17 15:25 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-18 12:49 [U-Boot] [PATCH 0/15] ATMEL rework Reinhard Meyer
2011-02-18 12:49 ` [U-Boot] [PATCH 01/15] AT91: rework at91sam9260.h Reinhard Meyer
2011-02-18 12:50   ` [U-Boot] [PATCH 02/15] AT91: rework at91sam9261.h Reinhard Meyer
2011-02-18 12:50     ` [U-Boot] [PATCH 03/15] AT91: rework at91sam9263.h Reinhard Meyer
2011-02-18 12:50       ` [U-Boot] [PATCH 04/15] AT91: rework at91sam9g45.h Reinhard Meyer
2011-02-18 12:50         ` [U-Boot] [PATCH 05/15] AT91: cleanup hardware.h, remove memory-map.h Reinhard Meyer
2011-02-18 12:25           ` Andreas Bießmann
2011-02-18 12:50             ` Reinhard Meyer
2011-02-18 12:50           ` [U-Boot] [PATCH 06/15] AT91: fix related arch-at91 header files Reinhard Meyer
2011-02-18 12:27             ` Andreas Bießmann
2011-02-18 12:52               ` Reinhard Meyer
2011-02-18 12:50             ` [U-Boot] [PATCH 07/15] AT91: fix related at91 system/driver files Reinhard Meyer
2011-02-18 12:50               ` [U-Boot] [PATCH 08/15] AT91: fix related at91 driver files Reinhard Meyer
2011-02-18 12:50                 ` [U-Boot] [PATCH 09/15] ATMEL: fix related common atmel " Reinhard Meyer
2011-02-18 12:50                   ` [U-Boot] [PATCH 10/15] AT91: cleanup at91sam9260_matrix.h to struct SoC access Reinhard Meyer
2011-02-18 12:50                     ` [U-Boot] [PATCH 11/15] AT91: change includes from asm/arch/io.h to asm/io.h Reinhard Meyer
2011-02-18 12:50                       ` [U-Boot] [PATCH 12/15] ATMEL: fix dataflash (dirty) Reinhard Meyer
2011-02-18 12:33                         ` Andreas Bießmann
2011-02-18 12:56                           ` Reinhard Meyer
2011-02-18 12:50                         ` [U-Boot] [PATCH 13/15] AT91: remove LEGACY from at91_rstc.h Reinhard Meyer
2011-02-18 12:50                           ` [U-Boot] [PATCH 14/15] AT91: fix at91sam_wdt.c to reworked header files Reinhard Meyer
2011-02-18 12:50                             ` [U-Boot] [PATCH 15/15] AT91: fix timer.c - remove reset_timer() Reinhard Meyer
2011-04-17 15:25   ` [U-Boot] [PATCH 01/15] AT91: rework at91sam9260.h Andreas Bießmann
2011-02-19  9:08 ` [U-Boot] [PATCH 0/15] ATMEL rework Remy Bohmer
2011-04-11  9:13 ` Reinhard Meyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox