public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-12-01 21:50 Andreas Bießmann
  2013-12-02 15:51 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-12-01 21:50 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull u-boot-atmel/master into u-boot-arm/master.
This PR supersedes http://patchwork.ozlabs.org/patch/291044/

The following changes since commit 56eb3da43fab5990a4b7bc118b76c7cae2ceb140:

  arm, am335x: update for the siemens boards (2013-11-12 09:53:59 -0500)

are available in the git repository at:

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

for you to fetch changes up to d07e2b598a690d6eb75019b379fc4933affe3d2c:

  arm: atmel: eb_cpux9k2: config clean up (2013-12-01 22:38:53 +0100)

----------------------------------------------------------------
Andreas Bie?mann (6):
      video: remove AT91 legacy API from bus_vcxk
      i2c: switch from AT91 legacy to ATMEL legacy
      at91sam9m10g45ek: remove unused CONFIG_AT91_LEGACY
      snapper9260: remove unused AT91_LEGACY
      net: remove unused CONFIG_AT91_LEGACY
      at91: remove all occourances of CONFIG_AT91_LEGACY

Bo Shen (8):
      arm: atmel: sama5d3: correct the ID for DBGU and PIT
      arm: at91: pm9261: remove undefined bit in mckr
      arm: atmel: sama5d3: correct the error define of DIV
      arm: atmel: sama5d3: the offset of MULA is 18
      arm: atmel: sama5d3: early enable PIO peripherals
      arm: atmel: add ddr2 initialization function
      arm: atmel: sama5d3: spl boot from fat fs SD card
      arm: atmel: sam9m10g45ek: let CONFIG_SYS_NO_FLASH at proper position

Heiko Schocher (1):
      arm926ejs, at91: add common phy_reset function

Jens Scharsig (BuS Elektronik) (1):
      arm: atmel: eb_cpux9k2: config clean up

Wu, Josh (1):
      ARM: at91: sama5d3: add support for sama5d36 chip

 arch/arm/cpu/Makefile                           |    1 +
 arch/arm/cpu/armv7/Makefile                     |    2 +-
 arch/arm/cpu/armv7/at91/sama5d3_devices.c       |    6 +-
 arch/arm/cpu/armv7/at91/timer.c                 |    2 +-
 arch/arm/cpu/at91-common/Makefile               |   12 +++
 arch/arm/cpu/at91-common/mpddrc.c               |  124 +++++++++++++++++++++++
 arch/arm/cpu/at91-common/phy.c                  |   57 +++++++++++
 arch/arm/cpu/at91-common/spl.c                  |   90 ++++++++++++++++
 arch/arm/cpu/at91-common/u-boot-spl.lds         |   50 +++++++++
 arch/arm/include/asm/arch-at91/at91_common.h    |    5 +
 arch/arm/include/asm/arch-at91/at91_pio.h       |   33 ------
 arch/arm/include/asm/arch-at91/at91_pit.h       |   16 ---
 arch/arm/include/asm/arch-at91/at91_pmc.h       |   59 ++---------
 arch/arm/include/asm/arch-at91/at91_spi.h       |    2 +-
 arch/arm/include/asm/arch-at91/at91_wdt.h       |   21 ----
 arch/arm/include/asm/arch-at91/at91cap9.h       |   69 -------------
 arch/arm/include/asm/arch-at91/at91sam9_smc.h   |   60 -----------
 arch/arm/include/asm/arch-at91/atmel_mpddrc.h   |  115 +++++++++++++++++++++
 arch/arm/include/asm/arch-at91/sama5d3.h        |    3 +
 arch/arm/include/asm/arch-at91/spl.h            |   20 ++++
 board/BuS/vl_ma2sc/vl_ma2sc.c                   |   18 +---
 board/afeb9260/afeb9260.c                       |   18 +---
 board/atmel/at91sam9260ek/at91sam9260ek.c       |   19 +---
 board/atmel/at91sam9263ek/at91sam9263ek.c       |   19 +---
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c |   19 +---
 board/atmel/sama5d3xek/sama5d3xek.c             |   91 +++++++++++++++++
 board/bluewater/snapper9260/snapper9260.c       |   16 +--
 board/calao/sbc35_a9g20/sbc35_a9g20.c           |   19 +---
 board/eukrea/cpu9260/cpu9260.c                  |   18 +---
 board/taskit/stamp9g20/stamp9g20.c              |   31 +-----
 doc/README.at91-soc                             |    7 ++
 drivers/i2c/soft_i2c.c                          |    2 +-
 drivers/net/at91_emac.c                         |    9 --
 drivers/video/bus_vcxk.c                        |   15 ---
 include/configs/afeb9260.h                      |    2 +-
 include/configs/at91sam9260ek.h                 |    1 +
 include/configs/at91sam9263ek.h                 |    1 +
 include/configs/at91sam9m10g45ek.h              |    9 +-
 include/configs/cpu9260.h                       |    1 +
 include/configs/eb_cpux9k2.h                    |    4 -
 include/configs/pm9261.h                        |    6 +-
 include/configs/sama5d3xek.h                    |   34 +++++++
 include/configs/sbc35_a9g20.h                   |    1 +
 include/configs/snapper9260.h                   |    2 +-
 include/configs/stamp9g20.h                     |    1 +
 include/configs/vl_ma2sc.h                      |    1 +
 include/i2c.h                                   |    2 +-
 47 files changed, 655 insertions(+), 458 deletions(-)
 create mode 100644 arch/arm/cpu/at91-common/Makefile
 create mode 100644 arch/arm/cpu/at91-common/mpddrc.c
 create mode 100644 arch/arm/cpu/at91-common/phy.c
 create mode 100644 arch/arm/cpu/at91-common/spl.c
 create mode 100644 arch/arm/cpu/at91-common/u-boot-spl.lds
 create mode 100644 arch/arm/include/asm/arch-at91/atmel_mpddrc.h
 create mode 100644 arch/arm/include/asm/arch-at91/spl.h

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2014-10-10 20:00 Andreas Bießmann
  2014-10-11 22:58 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2014-10-10 20:00 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull these changes into u-boot-arm/master. They are two generic board
conversions which are trivial and a fix for gigabit ethernet on sama5d3xek.

The following changes since commit ebf8644a113a36b163c2e06fe1e081c73f563c3a:

  Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' (2014-10-10 08:56:01 +0200)

are available in the git repository at:


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

for you to fetch changes up to d0b3723034aa865b8618428739efe1d98b1a2e2b:

  arm, at91: add generic board support for the taurus and corvus board (2014-10-10 21:51:19 +0200)

----------------------------------------------------------------
Andreas Bie?mann (2):
      macb: simplify gmac initialisation
      sama5d3xek: run PHY's config

Bo Shen (1):
      ARM: atmel: switch at91sam9263ek to generic board

Heiko Schocher (1):
      arm, at91: add generic board support for the taurus and corvus board

 board/atmel/sama5d3xek/sama5d3xek.c |   29 ++++++++++++++++++++---------
 drivers/net/macb.c                  |   25 ++++++++-----------------
 include/configs/at91sam9263ek.h     |    2 ++
 include/configs/corvus.h            |    2 ++
 include/configs/taurus.h            |    2 ++
 5 files changed, 34 insertions(+), 26 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2014-09-19  6:32 Andreas Bießmann
  2014-09-21 14:56 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2014-09-19  6:32 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following changes into u-boot-arm/master.

The following changes since commit 9170818a4e004af7893fa0113f6e5b4afafded55:

  kconfiglib: change SPDX-License-Identifier to ISC (2014-09-17 21:03:18 -0400)

are available in the git repository at:

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

for you to fetch changes up to 015b18c642d9b0f92d1b35f6d6ed73a6a0b29675:

  ARM: at91sam9rlek: convert to generic board support (2014-09-19 00:11:24 +0200)

----------------------------------------------------------------
Bo Shen (7):
      ARM: atmel: sama5d3xek: add nor flash init function
      ARM: atmel: sama5d3xek: enable NOR flash support
      ARM: atmel: sama5d3: add timings register
      ARM: atmel: use pcr to enable or disable peripheral clock
      ARM: atmel: add pcr related definition
      USB: ohci-at91: use pcr to enable or disable clock
      USB: ehci-atmel: use pcr to enable or disable clock

Boris BREZILLON (1):
      mtd: atmel_nand: Disable subpage NAND write when using Atmel PMECC

Wu, Josh (3):
      mtd: atmel-nand: use pmecc_readl(b)/pmecc_writel to access the pmecc register
      ARM: at91sam9n12ek: convert to generic board support
      ARM: at91sam9rlek: convert to generic board support

 arch/arm/cpu/armv7/at91/clock.c              |   24 +++++++++--
 arch/arm/include/asm/arch-at91/at91_pmc.h    |    6 ++-
 arch/arm/include/asm/arch-at91/clk.h         |    1 +
 arch/arm/include/asm/arch-at91/sama5d3.h     |    1 +
 arch/arm/include/asm/arch-at91/sama5d3_smc.h |    3 +-
 board/atmel/sama5d3xek/sama5d3xek.c          |   58 ++++++++++++++++++++++++++
 drivers/mtd/nand/atmel_nand.c                |   22 +++++-----
 drivers/mtd/nand/atmel_nand_ecc.h            |    3 ++
 drivers/usb/host/ehci-atmel.c                |    8 ++++
 drivers/usb/host/ohci-at91.c                 |    8 ++--
 include/configs/at91sam9n12ek.h              |    1 +
 include/configs/at91sam9rlek.h               |    2 +
 include/configs/sama5d3xek.h                 |   13 +++++-
 13 files changed, 129 insertions(+), 21 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2014-06-14 16:19 Andreas Bießmann
  2014-06-24 19:16 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2014-06-14 16:19 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull these changes from u-boot-atmel/master into
u-boot-arm/master.

This request contains one avr32 related patch which is required to get the
macb change compile clean. Therefore this one is included here rather than
going through u-boot-avr32.

The following changes since commit 0a26e1d6c394aacbf1153977b7348d1dff85db3f:

  arm: fix a double-definition error of _start symbol (2014-06-09 10:36: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 6dbeb893c4a7668d0098318d6668ccf59bfbfdea:

  arm: ethernut5: convert to generic board (2014-06-14 18:13:15 +0200)

----------------------------------------------------------------
Andreas Bie?mann (2):
      avr32: migrate cache functions
      macb: make checkpatch clean

Tim Schendekehl (1):
      arm: ethernut5: convert to generic board

Wu, Josh (3):
      net: macb: enable dcache in macb
      video: atmel_hlcdfb: enable dcache support
      ARMv7: at91: enable ICache and DCache.

 arch/arm/cpu/armv7/at91/cpu.c                      |    2 +
 arch/avr32/cpu/cache.c                             |   20 ++--
 .../avr32/include/asm/arch-at32ap700x/cacheflush.h |    2 -
 arch/avr32/include/asm/dma-mapping.h               |    6 +-
 arch/avr32/lib/board.c                             |    4 +-
 drivers/net/macb.c                                 |  113 +++++++++++++++-----
 drivers/video/atmel_hlcdfb.c                       |    6 ++
 include/configs/ethernut5.h                        |    2 +
 8 files changed, 110 insertions(+), 45 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2014-05-26 22:16 Andreas Bießmann
  2014-05-30 17:45 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2014-05-26 22:16 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following changes from u-boot-atmel/master into
u-boot-arm/master.

The following changes since commit 49692c5f517d8e44ed9db0de778728fe7d2a300c:

  net/designware: Make DMA burst length configurable and reduce by default (2014-05-25 17:23:58 +0200)

are available in the git repository at:

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

for you to fetch changes up to 9637a1bb896efe392a58dd2772e2c3fcb646409d:

  ARM: at91sam9m10g45ek: add mmc environment configuration support (2014-05-27 00:10:55 +0200)

----------------------------------------------------------------
Andreas Bie?mann (4):
      corvus: remove unneeded CONFIG_AT91_LEGACY
      mkimage: add atmelimage
      arm:at91: enable ROM loadable atmel image
      sama5d3xek: enable PMECC header generation

Bo Shen (6):
      ARM: atmel: switch to main crystal osc for SPL boot
      ARM: atmel: enable SPL on sama5d3_xplained board
      ARM: atmel: sama5d3xek: convert to generic board
      ARM: atmel: sama5d3_xplained: convert to generic board
      ARM: atmel: at91sam9m10g45ek: convert to generic board
      ARM: atmel: at91sam9x5ek: convert to generic board

Wu, Josh (8):
      gpio: at91: add sanity check for the NULL pointer
      mmc: atmel_mci: fix print incorrect buffer content for debug
      ARM: at91: remove AT91X40 macro since it is not use any more
      ARM: at91sam9x5: define the AT91FAMILY and ARM926EJS in SoC header
      at91: remove redundant AT91FAMILY definition in board config file
      ARM: at91: remove redundant ARM926EJS definition in board config files
      ARM: at91sam9m10g45ek: enable mci0 support
      ARM: at91sam9m10g45ek: add mmc environment configuration support

 .../cpu/arm926ejs/at91/at91sam9m10g45_devices.c    |   17 +
 arch/arm/cpu/armv7/at91/config.mk                  |   10 +
 arch/arm/cpu/at91-common/spl.c                     |   39 +++
 arch/arm/include/asm/arch-at91/at91_pmc.h          |    4 +
 arch/arm/include/asm/arch-at91/at91sam9x5.h        |    3 +
 arch/arm/include/asm/arch-at91/hardware.h          |    2 -
 board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c    |   10 +
 board/atmel/sama5d3_xplained/sama5d3_xplained.c    |   87 +++++
 boards.cfg                                         |    1 +
 common/image.c                                     |    1 +
 doc/README.atmel_pmecc                             |   21 ++
 drivers/gpio/at91_gpio.c                           |    3 +-
 drivers/mmc/gen_atmel_mci.c                        |    5 +-
 include/configs/at91sam9m10g45ek.h                 |   37 ++-
 include/configs/at91sam9n12ek.h                    |    3 -
 include/configs/at91sam9x5ek.h                     |    3 +-
 include/configs/corvus.h                           |    3 -
 include/configs/cpu9260.h                          |    1 -
 include/configs/ethernut5.h                        |    2 -
 include/configs/sama5d3_xplained.h                 |   53 ++-
 include/configs/sama5d3xek.h                       |    4 +-
 include/configs/vl_ma2sc.h                         |    2 -
 include/image.h                                    |    1 +
 spl/Makefile                                       |   11 +
 tools/Makefile                                     |    3 +
 tools/atmel_pmecc_params.c                         |   51 +++
 tools/atmelimage.c                                 |  342 ++++++++++++++++++++
 tools/imagetool.c                                  |    2 +
 tools/imagetool.h                                  |    1 +
 29 files changed, 701 insertions(+), 21 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/at91/config.mk
 create mode 100644 tools/atmel_pmecc_params.c
 create mode 100644 tools/atmelimage.c

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2014-03-09 18:50 Andreas Bießmann
  2014-03-10  8:09 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2014-03-09 18:50 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following changes from u-boot-atmel/master into
u-boot-arm/master.

The following changes since commit de4fdfc1f22d70c23be5443dafacb8163023f9b1:

  Merge branch 'u-boot-tegra/master' into 'u-boot-arm/master' (2014-03-07 14:32:42 +0100)

are available in the git repository at:


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

for you to fetch changes up to 27019e4a949fc3be2e895ac20839c4d4d119f902:

  arm: atmel: sama5d3: add nand spl boot support (2014-03-09 19:19:13 +0100)

----------------------------------------------------------------
Andreas Henriksson (2):
      at91sam9263ek: add mmc support
      at91 gpio: fix typo in compatibility macro

Bo Shen (4):
      ARM: atmel: add sama5d3 Xplained board support
      arm: atmel: sama5d3: add spi spl boot support
      mtd: nand: atmel: prepare for nand spl boot support
      arm: atmel: sama5d3: add nand spl boot support

 arch/arm/cpu/arm926ejs/at91/at91sam9263_devices.c |   25 +++
 arch/arm/cpu/at91-common/spl.c                    |    4 +
 arch/arm/include/asm/arch-at91/gpio.h             |    2 +-
 arch/arm/include/asm/arch-at91/spl.h              |    4 +
 board/atmel/at91sam9263ek/at91sam9263ek.c         |   10 +
 board/atmel/sama5d3_xplained/Makefile             |   15 ++
 board/atmel/sama5d3_xplained/sama5d3_xplained.c   |  130 +++++++++++++
 board/atmel/sama5d3xek/sama5d3xek.c               |    4 +
 boards.cfg                                        |    2 +
 drivers/mtd/nand/atmel_nand.c                     |  208 +++++++++++++++++++++
 include/configs/at91sam9263ek.h                   |   13 ++
 include/configs/sama5d3_xplained.h                |  203 ++++++++++++++++++++
 include/configs/sama5d3xek.h                      |   23 +++
 include/nand.h                                    |    6 +
 14 files changed, 648 insertions(+), 1 deletion(-)
 create mode 100644 board/atmel/sama5d3_xplained/Makefile
 create mode 100644 board/atmel/sama5d3_xplained/sama5d3_xplained.c
 create mode 100644 include/configs/sama5d3_xplained.h

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-12-17 16:25 Andreas Bießmann
  2013-12-18 16:47 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-12-17 16:25 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following fix ups from u-boot-atmel/master into
u-boot-arm/master.

The following changes since commit d2c7074b9593d822e2359a09c21747248fdf5fac:

  ARM: OMAP5: clocks: Update MPU settings for OPP_NOM (2013-12-12 17:43:39 -0500)

are available in the git repository at:

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

for you to fetch changes up to d51a2a2d63d83207b56a7aef7a191d081058d6ae:

  arm: atmel: at91sam9x5: move CONFIG_SYS_NO_FLASH to proper position (2013-12-17 17:21:18 +0100)

----------------------------------------------------------------
Bo Shen (3):
      arm: atmel: at91sam9x5: cleanup cs configure for spi
      arm: atmel: at91sam9x5: cleanup unneeded undef
      arm: atmel: at91sam9x5: move CONFIG_SYS_NO_FLASH to proper position

 board/atmel/at91sam9x5ek/at91sam9x5ek.c |    1 -
 include/configs/at91sam9x5ek.h          |   13 +++----------
 2 files changed, 3 insertions(+), 11 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-12-09 12:42 Andreas Bießmann
  2013-12-09 17:56 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-12-09 12:42 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following changes from u-boot-atmel/master into
u-boot-arm/master.

The following changes since commit 47ed5dd031d7d2c587e6afd386e79ccec1a1b7f7:

  arm: keep all sections in ELF file (2013-12-07 06:53:58 +0100)

are available in the git repository at:

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

for you to fetch changes up to 1dcdd86205708d3ab9f0dc3a2d6b5fa12b16fde4:

  arm: at91: support for the Calao USB-A9263 board (based on AT91SAM9263) (2013-12-09 13:21:54 +0100)

----------------------------------------------------------------
Andreas Bie?mann (4):
      at91: add new gpio pin definitions
      at91: redefine legacy GPIO PIN_BASE
      at91: nand: switch atmel_nand to generic GPIO API
      at91: switch coloured LED to gpio API

Heiko Schocher (2):
      arm, at91: add Siemens board taurus and axm
      arm, at91: add siemens corvus board

Mateusz Kulikowski (1):
      arm: at91: support for the Calao USB-A9263 board (based on AT91SAM9263)

 arch/arm/cpu/arm926ejs/at91/led.c     |   16 ++-
 arch/arm/include/asm/arch-at91/gpio.h |   26 ++++-
 board/BuS/vl_ma2sc/vl_ma2sc.c         |    5 +-
 board/calao/usb_a9263/Makefile        |   14 +++
 board/calao/usb_a9263/usb_a9263.c     |  148 +++++++++++++++++++++++++
 board/egnite/ethernut5/ethernut5.c    |    3 +-
 board/esd/meesc/meesc.c               |    5 +-
 board/esd/otc570/otc570.c             |    5 +-
 board/eukrea/cpu9260/cpu9260.c        |    5 +-
 board/ronetix/pm9261/led.c            |   14 +--
 board/ronetix/pm9261/pm9261.c         |    5 +-
 board/ronetix/pm9263/led.c            |   10 +-
 board/ronetix/pm9263/pm9263.c         |    5 +-
 board/ronetix/pm9g45/pm9g45.c         |    5 +-
 board/siemens/corvus/Makefile         |   18 +++
 board/siemens/corvus/board.c          |  195 +++++++++++++++++++++++++++++++++
 board/siemens/taurus/Makefile         |   18 +++
 board/siemens/taurus/taurus.c         |  160 +++++++++++++++++++++++++++
 boards.cfg                            |    4 +
 drivers/gpio/at91_gpio.c              |    4 +-
 drivers/mtd/nand/atmel_nand.c         |    8 +-
 include/configs/at91sam9n12ek.h       |    4 +-
 include/configs/corvus.h              |  165 ++++++++++++++++++++++++++++
 include/configs/cpu9260.h             |    4 +-
 include/configs/ethernut5.h           |    2 +-
 include/configs/meesc.h               |    4 +-
 include/configs/otc570.h              |    4 +-
 include/configs/pm9261.h              |   10 +-
 include/configs/pm9263.h              |    8 +-
 include/configs/pm9g45.h              |    8 +-
 include/configs/taurus.h              |  160 +++++++++++++++++++++++++++
 include/configs/usb_a9263.h           |  169 ++++++++++++++++++++++++++++
 include/configs/vl_ma2sc.h            |    4 +-
 33 files changed, 1145 insertions(+), 70 deletions(-)
 create mode 100644 board/calao/usb_a9263/Makefile
 create mode 100644 board/calao/usb_a9263/usb_a9263.c
 create mode 100644 board/siemens/corvus/Makefile
 create mode 100644 board/siemens/corvus/board.c
 create mode 100644 board/siemens/taurus/Makefile
 create mode 100644 board/siemens/taurus/taurus.c
 create mode 100644 include/configs/corvus.h
 create mode 100644 include/configs/taurus.h
 create mode 100644 include/configs/usb_a9263.h

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-11-13 21:24 Andreas Bießmann
  2013-11-22  6:35 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-11-13 21:24 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following changes into u-boot-arm/master.

The following changes since commit 56eb3da43fab5990a4b7bc118b76c7cae2ceb140:

  arm, am335x: update for the siemens boards (2013-11-12 09:53:59 -0500)

are available in the git repository at:

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

for you to fetch changes up to 618bbbb2e9546aa602c97d55963e133c7e1a85ec:

  ARM: at91: sama5d3: add support for sama5d36 chip (2013-11-13 22:18:18 +0100)

----------------------------------------------------------------
Andreas Bie?mann (6):
      video: remove AT91 legacy API from bus_vcxk
      i2c: switch from AT91 legacy to ATMEL legacy
      at91sam9m10g45ek: remove unused CONFIG_AT91_LEGACY
      snapper9260: remove unused AT91_LEGACY
      net: remove unused CONFIG_AT91_LEGACY
      at91: remove all occourances of CONFIG_AT91_LEGACY

Wu, Josh (1):
      ARM: at91: sama5d3: add support for sama5d36 chip

 arch/arm/cpu/armv7/at91/sama5d3_devices.c     |    4 +-
 arch/arm/include/asm/arch-at91/at91_pio.h     |   33 ------------
 arch/arm/include/asm/arch-at91/at91_pit.h     |   16 ------
 arch/arm/include/asm/arch-at91/at91_pmc.h     |   51 ++----------------
 arch/arm/include/asm/arch-at91/at91_spi.h     |    2 +-
 arch/arm/include/asm/arch-at91/at91_wdt.h     |   21 --------
 arch/arm/include/asm/arch-at91/at91cap9.h     |   69 -------------------------
 arch/arm/include/asm/arch-at91/at91sam9_smc.h |   60 ---------------------
 arch/arm/include/asm/arch-at91/sama5d3.h      |    3 ++
 doc/README.at91-soc                           |    7 +++
 drivers/i2c/soft_i2c.c                        |    2 +-
 drivers/net/at91_emac.c                       |    9 ----
 drivers/video/bus_vcxk.c                      |   15 ------
 include/configs/at91sam9m10g45ek.h            |    1 -
 include/configs/snapper9260.h                 |    1 -
 include/i2c.h                                 |    2 +-
 16 files changed, 21 insertions(+), 275 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-11-04 19:43 Andreas Bießmann
  2013-11-05 21:30 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-11-04 19:43 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull u-boot-atmel/master into u-boot-arm/master.

The following changes since commit 304db0b38cfb04cfdb05a740d5ef27da06ea98ea:

  arm: Remove IXP425 boards pdnb3 and scpu (2013-10-17 09:28:08 +0200)

are available in the git repository at:

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

for you to fetch changes up to c12f941bece9ed79efccfe9e4a9fd977da6975f9:

  at91: add defines for reset type (2013-11-04 20:32:39 +0100)

----------------------------------------------------------------
Bo Shen (3):
      net: macb: get DMA bus width from design config register
      arm: atmel: at91sam9n12ek: add usb host support
      arm: atmel: get rid of too many ifdeffery

Jens Scharsig (BuS Elektronik) (1):
      ARM: ATMEL: eb_cpux9k2: fix TEXT_BASE for ramboot target

Roger Meier (1):
      at91: add defines for reset type

 arch/arm/include/asm/arch-at91/at91_pmc.h  |    2 ++
 arch/arm/include/asm/arch-at91/at91_rstc.h |    7 +++++++
 board/atmel/at91sam9n12ek/at91sam9n12ek.c  |   11 +++++++++++
 drivers/net/macb.c                         |   20 +++++++++++++++++++-
 drivers/net/macb.h                         |   11 +++++++++++
 drivers/usb/host/ohci-at91.c               |   19 ++++++++++---------
 include/configs/afeb9260.h                 |    1 +
 include/configs/at91rm9200ek.h             |    1 +
 include/configs/at91sam9260ek.h            |    1 +
 include/configs/at91sam9261ek.h            |    1 +
 include/configs/at91sam9263ek.h            |    1 +
 include/configs/at91sam9n12ek.h            |   13 +++++++++++++
 include/configs/at91sam9x5ek.h             |    3 ++-
 include/configs/cpu9260.h                  |    1 +
 include/configs/cpuat91.h                  |    1 +
 include/configs/eb_cpux9k2.h               |    4 +++-
 include/configs/ethernut5.h                |    1 +
 include/configs/meesc.h                    |    1 +
 include/configs/otc570.h                   |    1 +
 include/configs/pm9261.h                   |    1 +
 include/configs/pm9263.h                   |    1 +
 include/configs/pm9g45.h                   |    1 +
 include/configs/sama5d3xek.h               |    1 +
 include/configs/sbc35_a9g20.h              |    1 +
 include/configs/snapper9260.h              |    1 +
 include/configs/stamp9g20.h                |    1 +
 include/configs/top9000.h                  |    1 +
 include/configs/vl_ma2sc.h                 |    1 +
 28 files changed, 97 insertions(+), 12 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-09-19  8:31 Andreas Bießmann
  2013-09-21 10:38 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-09-19  8:31 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull the following fix into u-boot-arm/master for 2013.10 release.

The following changes since commit 771f74c3d31a265bae103b2b407286ec03a4589b:

  arm: dma_alloc_coherent: malloc() -> memalign() (2013-09-14 12:08:00 +0200)

are available in the git repository at:

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

for you to fetch changes up to db824479e64811959494e1f919c31d97fea9dc48:

  arm: atmel: cpux9k2: increase malloc space to fix crash on start u-boot (2013-09-19 10:26:48 +0200)

----------------------------------------------------------------
Jens Scharsig (BuS Elektronik) (1):
      arm: atmel: cpux9k2: increase malloc space to fix crash on start u-boot

 include/configs/eb_cpux9k2.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-09-04 15:15 Andreas Bießmann
  2013-09-05 10:16 ` Albert ARIBAUD
  0 siblings, 1 reply; 30+ messages in thread
From: Andreas Bießmann @ 2013-09-04 15:15 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

please pull these two fixes into u-boot-arm/master for 2013.10 release.

The following changes since commit 4eef93da262048eb1118e726b3ec5b8ebd3c6c91:

  Merge branch 'u-boot-atmel/master' into 'u-boot-arm/master' (2013-09-04 11:50:25 +0200)

are available in the git repository at:


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

for you to fetch changes up to 27871e6b519ccd933bd91c879241995c272fef3b:

  ARM: atmel: sama5d3: drop unused CONFIG_NET_MULTI (2013-09-04 17:07:30 +0200)

----------------------------------------------------------------
Bo Shen (1):
      ARM: atmel: sama5d3: drop unused CONFIG_NET_MULTI

Wu, Josh (1):
      mtd: atmel_nand: pmecc: fix bug fail to correct bit error in 1024-bytes sector

 drivers/mtd/nand/atmel_nand.c |    3 ++-
 include/configs/sama5d3xek.h  |    1 -
 2 files changed, 2 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master
@ 2013-08-22 15:04 Andreas Bießmann
  2013-09-03  2:54 ` Bo Shen
                   ` (2 more replies)
  0 siblings, 3 replies; 30+ messages in thread
From: Andreas Bießmann @ 2013-08-22 15:04 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

The following changes since commit 9ed887caecb9ecb0c68773a1870d143b9f28d3da:

  Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-08-17 18:24:13 +0200)

are available in the git repository at:


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

for you to fetch changes up to bc6958988726977b4089da1b13f6467e8e28efd2:

  arm: atmel: cpux9k2: board update and enhancement (2013-08-22 16:52:40 +0200)

----------------------------------------------------------------
Bo Shen (10):
      net: macb: fix the following building warning
      arm: atmel: add gmac support for sama5d3xek board
      arm: atmel: add nand trimffs subcommand for at91sam9n12 and at91sam9x5
      arm: sama5d3: fix smc cs related registers offset
      arm: sama5d3: remove unused define
      arm: atmel: sama5d3: fix typo error for CONFIG_ENV_IS_NOWHERE
      arm: atmel: remove the config.mk file
      gpio: atmel: fix code to use pointer for pio port
      gpio: atmel: add gpio common API support
      gpio: atmel: add copyright and remove error header info

Jens Scharsig (BuS Elektronik) (1):
      arm: atmel: cpux9k2: board update and enhancement

Wu, Josh (5):
      ARM: at91: atmel_nand: pmecc driver will select the galois table by sector size
      ARM: at91: sama5d3: remove unused definition about PMECC alpha table offset
      linux/compat.h: move dev_err, dev_info and dev_dbg from usb driver to compat.h
      mtd: atmel_nand: alloc memory instead of use static array for pmecc data
      ARM: at91: atmel_nand: add code to check the ONFI parameter ECC requirement

 arch/arm/cpu/armv7/at91/sama5d3_devices.c    |   24 +++
 arch/arm/include/asm/arch-at91/at91_common.h |    1 +
 arch/arm/include/asm/arch-at91/at91sam9x5.h  |    6 +
 arch/arm/include/asm/arch-at91/sama5d3.h     |    2 -
 arch/arm/include/asm/arch-at91/sama5d3_smc.h |    2 +-
 board/atmel/at91sam9m10g45ek/config.mk       |    1 -
 board/atmel/at91sam9x5ek/config.mk           |    1 -
 board/atmel/sama5d3xek/sama5d3xek.c          |   20 ++
 doc/README.atmel_pmecc                       |   14 --
 drivers/gpio/at91_gpio.c                     |  295 ++++++++++++++++----------
 drivers/mtd/nand/atmel_nand.c                |  198 ++++++++++++++++-
 drivers/net/macb.c                           |   12 +-
 drivers/usb/musb-new/linux-compat.h          |   16 --
 include/configs/at91sam9m10g45ek.h           |    2 +
 include/configs/at91sam9n12ek.h              |    3 +
 include/configs/at91sam9x5ek.h               |    5 +-
 include/configs/eb_cpux9k2.h                 |   62 +++---
 include/configs/sama5d3xek.h                 |   10 +-
 include/linux/compat.h                       |    8 +
 19 files changed, 486 insertions(+), 196 deletions(-)
 delete mode 100644 board/atmel/at91sam9m10g45ek/config.mk
 delete mode 100644 board/atmel/at91sam9x5ek/config.mk

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

end of thread, other threads:[~2014-10-11 22:58 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-01 21:50 [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master Andreas Bießmann
2013-12-02 15:51 ` Albert ARIBAUD
  -- strict thread matches above, loose matches on Subject: below --
2014-10-10 20:00 Andreas Bießmann
2014-10-11 22:58 ` Albert ARIBAUD
2014-09-19  6:32 Andreas Bießmann
2014-09-21 14:56 ` Albert ARIBAUD
2014-06-14 16:19 Andreas Bießmann
2014-06-24 19:16 ` Albert ARIBAUD
2014-05-26 22:16 Andreas Bießmann
2014-05-30 17:45 ` Albert ARIBAUD
2014-03-09 18:50 Andreas Bießmann
2014-03-10  8:09 ` Albert ARIBAUD
2013-12-17 16:25 Andreas Bießmann
2013-12-18 16:47 ` Albert ARIBAUD
2013-12-09 12:42 Andreas Bießmann
2013-12-09 17:56 ` Albert ARIBAUD
2013-11-13 21:24 Andreas Bießmann
2013-11-22  6:35 ` Albert ARIBAUD
2013-11-04 19:43 Andreas Bießmann
2013-11-05 21:30 ` Albert ARIBAUD
2013-09-19  8:31 Andreas Bießmann
2013-09-21 10:38 ` Albert ARIBAUD
2013-09-04 15:15 Andreas Bießmann
2013-09-05 10:16 ` Albert ARIBAUD
2013-08-22 15:04 Andreas Bießmann
2013-09-03  2:54 ` Bo Shen
2013-09-04  9:40 ` Andreas Bießmann
2013-09-04 11:10   ` Albert ARIBAUD
2013-09-04 11:49     ` Andreas Bießmann
2013-09-04 10:30 ` Albert ARIBAUD

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