
Hi Wolfgang,
Please pull
git://git.denx.de/u-boot-avr32.git master
to receive the below changes. This adds support for three new avr32-based boards.
There are a couple of commits that were never posted to the list. They are trivial fixes for compile breakage that turned up after I merged everything together (things like CFG_FLASH_CFI_DRIVER recently being renamed CONFIG_FLASH_CFI_DRIVER and a couple of format warnings.)
Ben Warren (1): Moved initialization of AVR32 Ethernet controllers to board_eth_init()
Haavard Skinnemoen (9): Merge branch 'eth-cleanup' of git://git.denx.de/u-boot-avr32 Merge branch 'hammerhead' of git://git.denx.de/u-boot-avr32 Merge branch 'favr-32' of git://git.denx.de/u-boot-avr32 Merge branch 'mimc200' of git://git.denx.de/u-boot-avr32 MAINTAINERS: Sort avr32 section alphabetically favr-32-ezkit: Fix printf format warnings hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT Merge branch 'next' of git://git.denx.de/u-boot-avr32 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
Hans-Christian Egtvedt (1): avr32: add support for EarthLCD Favr-32 board
Julien May (1): Add support for the hammerhead (AVR32) board
Mark Jackson (1): avr32: Add MIMC200 board
CREDITS | 4 + MAINTAINERS | 15 ++- MAKEALL | 3 + Makefile | 9 + board/atmel/atngw100/Makefile | 2 +- board/atmel/atngw100/atngw100.c | 11 + board/atmel/atstk1000/Makefile | 2 +- board/atmel/atstk1000/atstk1000.c | 11 + board/earthlcd/favr-32-ezkit/Makefile | 42 ++++ board/earthlcd/favr-32-ezkit/config.mk | 4 + board/earthlcd/favr-32-ezkit/favr-32-ezkit.c | 96 ++++++++ board/earthlcd/favr-32-ezkit/flash.c | 230 ++++++++++++++++++++ board/earthlcd/favr-32-ezkit/u-boot.lds | 71 ++++++ board/mimc/mimc200/Makefile | 40 ++++ board/mimc/mimc200/config.mk | 3 + board/mimc/mimc200/mimc200.c | 207 ++++++++++++++++++ .../atstk1000/eth.c => mimc/mimc200/u-boot.lds} | 61 ++++- board/miromico/hammerhead/Makefile | 40 ++++ board/miromico/hammerhead/config.mk | 3 + board/miromico/hammerhead/hammerhead.c | 114 ++++++++++ .../eth.c => miromico/hammerhead/u-boot.lds} | 61 ++++- cpu/at32ap/at32ap700x/sm.h | 2 +- cpu/at32ap/cpu.c | 3 + include/asm-avr32/arch-at32ap700x/clk.h | 1 + include/configs/favr-32-ezkit.h | 201 +++++++++++++++++ include/configs/hammerhead.h | 172 +++++++++++++++ include/configs/mimc200.h | 177 +++++++++++++++ net/eth.c | 8 - 28 files changed, 1556 insertions(+), 37 deletions(-) create mode 100644 board/earthlcd/favr-32-ezkit/Makefile create mode 100644 board/earthlcd/favr-32-ezkit/config.mk create mode 100644 board/earthlcd/favr-32-ezkit/favr-32-ezkit.c create mode 100644 board/earthlcd/favr-32-ezkit/flash.c create mode 100644 board/earthlcd/favr-32-ezkit/u-boot.lds create mode 100644 board/mimc/mimc200/Makefile create mode 100644 board/mimc/mimc200/config.mk create mode 100644 board/mimc/mimc200/mimc200.c rename board/{atmel/atstk1000/eth.c => mimc/mimc200/u-boot.lds} (59%) create mode 100644 board/miromico/hammerhead/Makefile create mode 100644 board/miromico/hammerhead/config.mk create mode 100644 board/miromico/hammerhead/hammerhead.c rename board/{atmel/atngw100/eth.c => miromico/hammerhead/u-boot.lds} (56%) create mode 100644 include/configs/favr-32-ezkit.h create mode 100644 include/configs/hammerhead.h create mode 100644 include/configs/mimc200.h