public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/9]  Support for ATEVK1100 evaluation board
@ 2009-01-23 11:56 Gunnar Rangoy
  2009-01-23 11:56 ` [U-Boot] [PATCH v2 1/9] Fix IP alignement problem Gunnar Rangoy
  0 siblings, 1 reply; 40+ messages in thread
From: Gunnar Rangoy @ 2009-01-23 11:56 UTC (permalink / raw)
  To: u-boot

This is a patch series which adds support for the ATEVK1100 evaluation
board[1], and the AT32UC3A0xxx[2] microcontrollers used on that board.
The patch series is based on avr32/next.

Some of these patches has already been submitted and most of the received 
feedback has been addressed. We would like to thank you for all the received
feedback, and say thay we are sorry for the long delay.

This microcontroller is similar to the AT32AP700x, which is already
supported by U-Boot, and this code is therefore based on that.

Patch 1 makes a change which works around a bug in the compiler.
Patch 2-7 makes changes to other avr32-code in preparation for support of the
new microcontroller.
Patch 8 adds support for the AT32UC3A0xxx microcontrollers.
Patch 9 adds support for the ATEVK1100 evaluation board.

The current revisions of the microcontroller have a bug in the
SDRAM-controller, which makes it unreliable to run code from SDRAM. We
therefore currently don't use SDRAM, but rather SRAM. 

Changes since last time: 
- Merged the two patch-series.
- Config option for searching for phy-address.
- Config option for limiting macb speed to 10 Mbps.
- Changed serial port speed to 115200.
- Some cleanups.

What works:
Loading U-Boot, serial console, loading image over dhcp/tftp, booting
image.

[1] http://www.atmel.com/dyn/Products/tools_card.asp?tool_id=4114
[2] http://www.atmel.com/products/avr32/uc3/uc3_2.asp?family_id=682

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

end of thread, other threads:[~2009-02-23 10:04 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-23 11:56 [U-Boot] [PATCH v2 0/9] Support for ATEVK1100 evaluation board Gunnar Rangoy
2009-01-23 11:56 ` [U-Boot] [PATCH v2 1/9] Fix IP alignement problem Gunnar Rangoy
2009-01-23 11:56   ` [U-Boot] [PATCH v2 2/9] AVR32: Make cacheflush cpu-dependent Gunnar Rangoy
2009-01-23 11:56     ` [U-Boot] [PATCH v2 3/9] AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h Gunnar Rangoy
2009-01-23 11:56       ` [U-Boot] [PATCH v2 4/9] AVR32: Make GPIO implmentation cpu dependent Gunnar Rangoy
2009-01-23 11:56         ` [U-Boot] [PATCH v2 5/9] AVR32: macb - Disable 100mbps if clock is slow Gunnar Rangoy
2009-01-23 11:56           ` [U-Boot] [PATCH v2 6/9] AVR32: macb - Search for PHY id Gunnar Rangoy
2009-01-23 11:56             ` [U-Boot] [PATCH v2 7/9] AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES Gunnar Rangoy
2009-01-23 11:56               ` [U-Boot] [PATCH v2 8/9] AVR32: CPU support for AT32UC3A0xxx CPUs Gunnar Rangoy
2009-01-23 11:56                 ` [U-Boot] [PATCH v2 9/9] AVR32: Board support for ATEVK1100 Gunnar Rangoy
2009-01-23 15:37                   ` Wolfgang Denk
2009-01-26 14:35                     ` Gunnar Rangøy
2009-01-26 19:50                       ` Wolfgang Denk
2009-01-27 11:59                         ` Gunnar Rangøy
2009-01-23 16:00                 ` [U-Boot] [PATCH v2 8/9] AVR32: CPU support for AT32UC3A0xxx CPUs Wolfgang Denk
2009-01-26 15:26                   ` Gunnar Rangøy
2009-01-26 20:03                     ` Wolfgang Denk
2009-01-29 11:32                       ` Olav Morken
2009-01-29 12:05                         ` Haavard Skinnemoen
2009-02-23 10:04               ` [U-Boot] [PATCH v2 7/9] AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES Haavard Skinnemoen
2009-01-29  8:27             ` [U-Boot] [PATCH v2 6/9] AVR32: macb - Search for PHY id Ben Warren
2009-01-29 11:39               ` Olav Morken
2009-01-29 18:03                 ` Ben Warren
2009-01-23 15:38           ` [U-Boot] [PATCH v2 5/9] AVR32: macb - Disable 100mbps if clock is slow Jean-Christophe PLAGNIOL-VILLARD
2009-01-26 14:15             ` Gunnar Rangøy
2009-01-28  6:13               ` Ben Warren
2009-01-28 17:23               ` Jean-Christophe PLAGNIOL-VILLARD
2009-01-28 21:42                 ` Haavard Skinnemoen
2009-01-28 23:13                   ` Jean-Christophe PLAGNIOL-VILLARD
2009-01-28 23:40                     ` Ben Warren
2009-01-28 23:34                       ` Jean-Christophe PLAGNIOL-VILLARD
2009-01-29  6:28                       ` Hans-Christian Egtvedt
2009-01-29 10:06                         ` Olav Morken
2009-01-29 10:17                           ` Haavard Skinnemoen
2009-01-29  9:45                       ` Haavard Skinnemoen
2009-02-23 10:04         ` [U-Boot] [PATCH v2 4/9] AVR32: Make GPIO implmentation cpu dependent Haavard Skinnemoen
2009-02-23 10:04       ` [U-Boot] [PATCH v2 3/9] AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h Haavard Skinnemoen
2009-02-23 10:03     ` [U-Boot] [PATCH v2 2/9] AVR32: Make cacheflush cpu-dependent Haavard Skinnemoen
2009-01-28  6:22   ` [U-Boot] [PATCH v2 1/9] Fix IP alignement problem Ben Warren
2009-01-29  8:26   ` Ben Warren

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