public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-atmel/master
@ 2012-07-02 22:14 Andreas Bießmann
  2012-07-05  8:35 ` Albert ARIBAUD
  0 siblings, 1 reply; 21+ messages in thread
From: Andreas Bießmann @ 2012-07-02 22:14 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

The following changes since commit 3e0cac6b5158b22248f57cdf7769bf8d610fec5e:

  EXYNOS: SMDK5250: Enable the pinmux setup (2012-06-25 22:51:36 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

for you to fetch changes up to f3f68232e709a1108b631410087d526cc23dfb55:

  AT91SAM9*: Change kernel address in dataflash to match u-boot's size (2012-07-02 22:15:05 +0200)

----------------------------------------------------------------
Alexandre Belloni (1):
      AT91SAM9*: Change kernel address in dataflash to match u-boot's size

Andreas Bie?mann (1):
      ehci-atmel: fix compiler warning

Bo Shen (3):
      Atmel : usb : add EHCI driver for Atmel SoC
      AT91: at91sam9m10g45ek : Enable EHCI instead OHCI
      ATMEL/PIO: Enable new feature of PIO on Atmel device

esw at bus-elektronik.de (2):
      Fix: brocken boot message at serial line on AT91SAM9263-EK board
      Fix: AT91SAM9263 nor flash usage

 arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
 board/atmel/at91sam9260ek/partition.c     |    6 +-
 board/atmel/at91sam9261ek/partition.c     |    6 +-
 board/atmel/at91sam9263ek/at91sam9263ek.c |    2 +-
 board/atmel/at91sam9263ek/partition.c     |    6 +-
 board/atmel/at91sam9rlek/partition.c      |    6 +-
 drivers/gpio/at91_gpio.c                  |  125 ++++++++++++++++++++++++++++-
 drivers/usb/host/Makefile                 |    1 +
 drivers/usb/host/ehci-atmel.c             |   89 ++++++++++++++++++++
 include/configs/at91sam9260ek.h           |    5 +-
 include/configs/at91sam9261ek.h           |    5 +-
 include/configs/at91sam9263ek.h           |   10 ++-
 include/configs/at91sam9m10g45ek.h        |   20 +----
 include/configs/at91sam9rlek.h            |    3 +-
 14 files changed, 288 insertions(+), 41 deletions(-)
 create mode 100644 drivers/usb/host/ehci-atmel.c

Best regards

Andreas Bie?mann

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [U-Boot] Please pull u-boot-atmel/master
@ 2012-09-01 14:50 Andreas Bießmann
  2012-09-01 15:05 ` Albert ARIBAUD
  2012-09-01 16:00 ` Albert ARIBAUD
  0 siblings, 2 replies; 21+ messages in thread
From: Andreas Bießmann @ 2012-09-01 14:50 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

The following changes since commit d602b7a6b94628004fdefb7932a24185346b030b:

  fsl_esdhc: Remove cache snooping for i.MX (2012-09-01 13:50:35 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

for you to fetch changes up to cc443d073801c8fd57d74954d61120214b960d61:

  at91: 9x5: Enable PMECC for 5series ek board. (2012-09-01 16:43:53 +0200)

----------------------------------------------------------------
Andreas Bie?mann (3):
      at91sam9263ek: fix 'update' script
      at91sam9263ek: remove unnecessary console_init_f
      arm:at91-boards: remove console_init_f where unnecessary

Bo Shen (7):
      ARM : at91sam9x5 : Remove CONFIG_ARCH_CPU_INIT
      arm : at91sam9x5 : fix a small bug for NAND
      Take over the maintainer for sam9g10 and sam9m10g45
      atmel: at91sam9x5: fix name error for spi
      spi: atmel: add WDRBT bit to avoid receive overrun
      arm: sam9g10/sam9m10g45: remove CONFIG_ARCH_CPU_INIT
      atmel: at91sam9x5: add spi flash boot support

Wu, Josh (5):
      at91: atmel_nand: extract HWECC initialization code into one function: atmel_hw_nand_init_param().
      at91: atmel_nand: remove unused variables.
      at91: atmel_nand: Update driver to support Programmable Multibit ECC controller
      at91: 9x5: change SMC config timing that both works for PMECC & non-PMECC.
      at91: 9x5: Enable PMECC for 5series ek board.

Xu, Hong (1):
      AT91: Small fix on AT91 USART initialization code

 MAINTAINERS                                      |    2 +-
 arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c |    4 +-
 board/BuS/eb_cpux9k2/cpux9k2.c                   |    2 -
 board/BuS/vl_ma2sc/vl_ma2sc.c                    |    3 -
 board/atmel/at91sam9261ek/at91sam9261ek.c        |    3 -
 board/atmel/at91sam9263ek/at91sam9263ek.c        |    3 -
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c  |    3 -
 board/atmel/at91sam9rlek/at91sam9rlek.c          |    3 -
 board/atmel/at91sam9x5ek/at91sam9x5ek.c          |   14 +-
 board/calao/sbc35_a9g20/sbc35_a9g20.c            |    3 -
 board/calao/tny_a9260/tny_a9260.c                |    3 -
 board/eukrea/cpuat91/cpuat91.c                   |    2 -
 boards.cfg                                       |    1 +
 doc/README.atmel_pmecc                           |   44 ++
 drivers/mtd/nand/atmel_nand.c                    |  827 ++++++++++++++++++++--
 drivers/mtd/nand/atmel_nand_ecc.h                |  113 +++
 drivers/serial/atmel_usart.c                     |   11 +-
 drivers/spi/atmel_spi.c                          |    3 +
 drivers/spi/atmel_spi.h                          |    1 +
 include/configs/at91sam9261ek.h                  |    2 -
 include/configs/at91sam9263ek.h                  |    2 +-
 include/configs/at91sam9m10g45ek.h               |    1 -
 include/configs/at91sam9x5ek.h                   |   29 +-
 include/nand.h                                   |    2 +-
 24 files changed, 974 insertions(+), 107 deletions(-)
 create mode 100644 doc/README.atmel_pmecc

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [U-Boot] Please pull u-boot-atmel/master
@ 2012-08-07 22:29 Andreas Bießmann
  2012-08-13 23:11 ` Albert ARIBAUD
  2012-08-13 23:13 ` Albert ARIBAUD
  0 siblings, 2 replies; 21+ messages in thread
From: Andreas Bießmann @ 2012-08-07 22:29 UTC (permalink / raw)
  To: u-boot

The following changes since commit 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08:

  DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-05 22:02:40 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

for you to fetch changes up to 17cda15fa6fb3ab2433bed951dad5c4ab30d8cbc:

  at91: Add support for taskit AT91SAM9G20 boards. (2012-08-07 23:47:29 +0200)

----------------------------------------------------------------
Andreas Bie?mann (3):
      doc/git-mailrc: update at91 and avr32
      MAINTAINERS: fix entry of Ilko Iliev
      MAINTAINERS: fix Andreas Bie?mann AVR32 entry

Bo Shen (1):
      arm : Atmel : add at91sam9x5ek board support

Markus Hubig (2):
      Enable the EMAC clock in at91_macb_hw_init().
      at91: Add support for taskit AT91SAM9G20 boards.

 MAINTAINERS                                        |   23 +-
 arch/arm/cpu/arm926ejs/at91/Makefile               |    1 +
 arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c  |    4 +
 arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c   |  232 ++++++++++++++++
 arch/arm/cpu/arm926ejs/at91/clock.c                |   12 +-
 arch/arm/include/asm/arch-at91/at91sam9_matrix.h   |    2 +
 arch/arm/include/asm/arch-at91/at91sam9x5.h        |  170 ++++++++++++
 arch/arm/include/asm/arch-at91/at91sam9x5_matrix.h |   91 ++++++
 arch/arm/include/asm/arch-at91/hardware.h          |    2 +
 board/atmel/at91sam9x5ek/Makefile                  |   52 ++++
 board/atmel/at91sam9x5ek/at91sam9x5ek.c            |  293 ++++++++++++++++++++
 board/atmel/at91sam9x5ek/config.mk                 |    1 +
 board/taskit/stamp9g20/Makefile                    |   53 ++++
 board/taskit/stamp9g20/led.c                       |  138 +++++++++
 board/taskit/stamp9g20/stamp9g20.c                 |  191 +++++++++++++
 boards.cfg                                         |    3 +
 doc/git-mailrc                                     |    5 +-
 drivers/net/macb.c                                 |    4 +-
 include/configs/at91sam9x5ek.h                     |  183 ++++++++++++
 include/configs/stamp9g20.h                        |  266 ++++++++++++++++++
 20 files changed, 1713 insertions(+), 13 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c
 create mode 100644 arch/arm/include/asm/arch-at91/at91sam9x5.h
 create mode 100644 arch/arm/include/asm/arch-at91/at91sam9x5_matrix.h
 create mode 100644 board/atmel/at91sam9x5ek/Makefile
 create mode 100644 board/atmel/at91sam9x5ek/at91sam9x5ek.c
 create mode 100644 board/atmel/at91sam9x5ek/config.mk
 create mode 100644 board/taskit/stamp9g20/Makefile
 create mode 100644 board/taskit/stamp9g20/led.c
 create mode 100644 board/taskit/stamp9g20/stamp9g20.c
 create mode 100644 include/configs/at91sam9x5ek.h
 create mode 100644 include/configs/stamp9g20.h

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [U-Boot] Please pull u-boot-atmel/master
@ 2012-07-05 10:08 Andreas Bießmann
  2012-07-05 11:40 ` Albert ARIBAUD
  0 siblings, 1 reply; 21+ messages in thread
From: Andreas Bießmann @ 2012-07-05 10:08 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

The following changes since commit c45272e25bdf241fbb27638465f16ce2342ed1b6:

  i.MX6 USDHC: Use the ESDHC clock (2012-07-02 19:53:20 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

for you to fetch changes up to dc72466bd1a1c15f31c92f77e0df6f533a658ccc:

  AT91SAM9*: Change kernel address in dataflash to match u-boot's size (2012-07-05 11:38:42 +0200)

----------------------------------------------------------------
Alexandre Belloni (1):
      AT91SAM9*: Change kernel address in dataflash to match u-boot's size

Andreas Bie?mann (1):
      ehci-atmel: fix compiler warning

Bo Shen (3):
      Atmel : usb : add EHCI driver for Atmel SoC
      AT91: at91sam9m10g45ek : Enable EHCI instead OHCI
      ATMEL/PIO: Enable new feature of PIO on Atmel device

esw at bus-elektronik.de (2):
      Fix: broken boot message at serial line on AT91SAM9263-EK board
      Fix: AT91SAM9263 nor flash usage

 arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
 board/atmel/at91sam9260ek/partition.c     |    6 +-
 board/atmel/at91sam9261ek/partition.c     |    6 +-
 board/atmel/at91sam9263ek/at91sam9263ek.c |    2 +-
 board/atmel/at91sam9263ek/partition.c     |    6 +-
 board/atmel/at91sam9rlek/partition.c      |    6 +-
 drivers/gpio/at91_gpio.c                  |  125 ++++++++++++++++++++++++++++-
 drivers/usb/host/Makefile                 |    1 +
 drivers/usb/host/ehci-atmel.c             |   89 ++++++++++++++++++++
 include/configs/at91sam9260ek.h           |    5 +-
 include/configs/at91sam9261ek.h           |    5 +-
 include/configs/at91sam9263ek.h           |   10 ++-
 include/configs/at91sam9m10g45ek.h        |   20 +----
 include/configs/at91sam9rlek.h            |    3 +-
 14 files changed, 288 insertions(+), 41 deletions(-)
 create mode 100644 drivers/usb/host/ehci-atmel.c

^ permalink raw reply	[flat|nested] 21+ messages in thread
* [U-Boot] Please pull u-boot-atmel/master
@ 2011-06-20  6:49 Reinhard Meyer
  2011-06-20 11:48 ` Albert ARIBAUD
  0 siblings, 1 reply; 21+ messages in thread
From: Reinhard Meyer @ 2011-06-20  6:49 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit 0d8bc1c7b3caffd5626b6cf4888bfb5751f24041:
  Fabio Estevam (1):
        mx31pdk: Add DHCP command

are available in the git repository at:

  git://git.denx.de/u-boot-atmel.git master

Eric Benard (4):
      arm926ejs/at91/lowlevel_init.S: fix defines
      cpu9260/9G20: fix board support
      cpuat91: fix board support
      include/asm/arch-at91: update several .h files to ATMEL_xxx name scheme

Jens Scharsig (1):
      update arm/at91rm9200 work with rework rework110202

Reinhard Meyer (3):
      AT91 rework: fix at91sam(9260/9g20/9xe)ek board port to build again:
      AT91 rework: fix TOP9000 files to build again
      ATMEL spi_dataflash driver - fix to build again

Ryan Mallon (1):
      Add support for Bluewater Systems Snapper 9260/9G20 modules

Sergey Lapin (1):
      Build fix/update of AFEB9260

andreas.devel at googlemail.com (2):
      at91_emac: fix compile warning
      macb: fix compile warning

 MAINTAINERS                                      |    5 +
 MAKEALL                                          |    3 -
 Makefile                                         |   45 -----
 arch/arm/cpu/arm920t/at91/reset.c                |    2 +-
 arch/arm/cpu/arm920t/at91/timer.c                |   12 +-
 arch/arm/cpu/arm926ejs/at91/lowlevel_init.S      |   24 ++--
 arch/arm/include/asm/arch-at91/at91_matrix.h     |   10 +-
 arch/arm/include/asm/arch-at91/at91_mc.h         |   12 +-
 arch/arm/include/asm/arch-at91/at91_pio.h        |   14 +-
 arch/arm/include/asm/arch-at91/at91_pmc.h        |   10 +-
 arch/arm/include/asm/arch-at91/at91_rstc.h       |    2 +-
 arch/arm/include/asm/arch-at91/at91_wdt.h        |    2 +-
 arch/arm/include/asm/arch-at91/at91rm9200.h      |  209 ++++++++++++----------
 arch/arm/include/asm/arch-at91/at91sam9260.h     |    1 +
 arch/arm/include/asm/arch-at91/at91sam9261.h     |    1 +
 arch/arm/include/asm/arch-at91/at91sam9263.h     |    1 +
 arch/arm/include/asm/arch-at91/at91sam9_sdramc.h |   30 ++--
 arch/arm/include/asm/arch-at91/at91sam9_smc.h    |   12 +-
 board/BuS/eb_cpux9k2/cpux9k2.c                   |   52 +++---
 board/afeb9260/afeb9260.c                        |  101 ++++++-----
 board/atmel/at91rm9200ek/at91rm9200ek.c          |    4 +-
 board/atmel/at91rm9200ek/led.c                   |   22 ++-
 board/atmel/at91sam9260ek/at91sam9260ek.c        |  127 +++++++------
 board/atmel/at91sam9260ek/config.mk              |    1 -
 board/atmel/at91sam9260ek/led.c                  |    8 +-
 board/bluewater/snapper9260/Makefile             |   53 ++++++
 board/bluewater/snapper9260/snapper9260.c        |  169 +++++++++++++++++
 board/emk/top9000/top9000.c                      |   64 ++++---
 board/eukrea/cpu9260/cpu9260.c                   |   33 ++--
 board/eukrea/cpu9260/led.c                       |    6 +-
 board/eukrea/cpuat91/cpuat91.c                   |    6 +-
 boards.cfg                                       |    9 +
 drivers/net/at91_emac.c                          |   44 +++---
 drivers/net/macb.c                               |    5 +-
 drivers/spi/atmel_dataflash_spi.c                |    3 +-
 include/configs/afeb9260.h                       |   78 +++++----
 include/configs/at91rm9200ek.h                   |    5 +-
 include/configs/at91sam9260ek.h                  |  107 +++++++-----
 include/configs/cpu9260.h                        |   11 +-
 include/configs/eb_cpux9k2.h                     |   23 ++--
 include/configs/snapper9260.h                    |  191 ++++++++++++++++++++
 include/configs/top9000.h                        |   30 ++--
 42 files changed, 996 insertions(+), 551 deletions(-)
 delete mode 100644 board/atmel/at91sam9260ek/config.mk
 create mode 100644 board/bluewater/snapper9260/Makefile
 create mode 100644 board/bluewater/snapper9260/snapper9260.c
 create mode 100644 include/configs/snapper9260.h

Best Regards,
Reinhard

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

end of thread, other threads:[~2012-09-01 16:00 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-02 22:14 [U-Boot] Please pull u-boot-atmel/master Andreas Bießmann
2012-07-05  8:35 ` Albert ARIBAUD
2012-07-05  9:30   ` Andreas Bießmann
2012-07-05  9:36   ` [U-Boot] Please pull u-boot-atmel/master - PLEASE HOLD ON Albert ARIBAUD
2012-07-05  9:44     ` [U-Boot] Please pull u-boot-atmel/master - go ahead Albert ARIBAUD
  -- strict thread matches above, loose matches on Subject: below --
2012-09-01 14:50 [U-Boot] Please pull u-boot-atmel/master Andreas Bießmann
2012-09-01 15:05 ` Albert ARIBAUD
2012-09-01 16:00 ` Albert ARIBAUD
2012-08-07 22:29 Andreas Bießmann
2012-08-13 23:11 ` Albert ARIBAUD
2012-08-13 23:13 ` Albert ARIBAUD
2012-07-05 10:08 Andreas Bießmann
2012-07-05 11:40 ` Albert ARIBAUD
2011-06-20  6:49 Reinhard Meyer
2011-06-20 11:48 ` Albert ARIBAUD
2011-06-20 13:44   ` Wolfgang Denk
2011-06-20 14:06     ` Reinhard Meyer
2011-06-20 16:21     ` Albert ARIBAUD
2011-06-20 19:43       ` Wolfgang Denk
2011-06-20 21:19         ` Albert ARIBAUD
2011-06-20 22:14           ` Wolfgang Denk

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