]> git.ipfire.org Git - people/ms/u-boot.git/commit - README
Add AT32AP CPU and AT32AP7000 SoC support
authorWolfgang Denk <wd@pollux.denx.de>
Tue, 24 Oct 2006 12:27:35 +0000 (14:27 +0200)
committerWolfgang Denk <wd@pollux.denx.de>
Tue, 24 Oct 2006 12:27:35 +0000 (14:27 +0200)
commit72a087e04705c26cad982879ebd06b5281bf825a
tree98f36d7e04f8a8e88f188e50e6a0f45fb9f285e8
parent7b64fef33c66be648826c0ff9758298ef13d0604
Add AT32AP CPU and AT32AP7000 SoC support
Patch by Haavard Skinnemoen, 06 Sep 2006

This patch adds support for the AT32AP CPU family and the AT32AP7000
chip, which is the first chip implementing the AVR32 architecture.

The AT32AP CPU core is a high-performance implementation featuring a
7-stage pipeline, separate instruction- and data caches, and a MMU.
For more information, please see the "AVR32 AP Technical Reference":

http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf

In addition to this, the AT32AP7000 chip comes with a large set of
integrated peripherals, many of which are shared with the AT91 series
of ARM-based microcontrollers from Atmel. Full data sheet is
available here:

http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf

Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24 files changed:
Makefile
README
cpu/at32ap/Makefile [new file with mode: 0644]
cpu/at32ap/at32ap7000/Makefile [new file with mode: 0644]
cpu/at32ap/at32ap7000/devices.c [new file with mode: 0644]
cpu/at32ap/at32ap7000/hebi.c [new file with mode: 0644]
cpu/at32ap/cache.c [new file with mode: 0644]
cpu/at32ap/config.mk [new file with mode: 0644]
cpu/at32ap/cpu.c [new file with mode: 0644]
cpu/at32ap/device.c [new file with mode: 0644]
cpu/at32ap/entry.S [new file with mode: 0644]
cpu/at32ap/exception.c [new file with mode: 0644]
cpu/at32ap/hsdramc.c [new file with mode: 0644]
cpu/at32ap/hsdramc1.h [new file with mode: 0644]
cpu/at32ap/hsmc3.h [new file with mode: 0644]
cpu/at32ap/interrupts.c [new file with mode: 0644]
cpu/at32ap/pio.c [new file with mode: 0644]
cpu/at32ap/pio2.h [new file with mode: 0644]
cpu/at32ap/pm.c [new file with mode: 0644]
cpu/at32ap/sm.h [new file with mode: 0644]
cpu/at32ap/start.S [new file with mode: 0644]
include/asm-avr32/arch-at32ap7000/hmatrix2.h [new file with mode: 0644]
include/asm-avr32/arch-at32ap7000/memory-map.h [new file with mode: 0644]
include/asm-avr32/arch-at32ap7000/platform.h [new file with mode: 0644]