From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Date: Sun, 31 Jan 2010 12:53:37 -0600 Subject: [U-Boot] [PATCH 1/3] ARM: Add support for EP93xx SoCs In-Reply-To: <20100124165629.GU18402@darwin> References: <20100124165629.GU18402@darwin> Message-ID: <4B65D1B1.9080001@windriver.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Matthias Kaehlcke wrote: > Add support for the Cirrus EP93xx platform > > Signed-off-by: Matthias Kaehlcke > --- > cpu/arm920t/ep93xx/Makefile | 56 ++++ > cpu/arm920t/ep93xx/cpu.c | 51 +++ > cpu/arm920t/ep93xx/led.c | 101 ++++++ > cpu/arm920t/ep93xx/lowlevel_init.S | 65 ++++ > cpu/arm920t/ep93xx/speed.c | 110 +++++++ > cpu/arm920t/ep93xx/timer.c | 168 ++++++++++ > cpu/arm920t/ep93xx/u-boot.lds | 59 ++++ > include/asm-arm/arch-ep93xx/ep93xx.h | 595 ++++++++++++++++++++++++++++++++++ > include/common.h | 3 +- > 9 files changed, 1207 insertions(+), 1 deletions(-) > create mode 100644 cpu/arm920t/ep93xx/Makefile > create mode 100644 cpu/arm920t/ep93xx/cpu.c > create mode 100644 cpu/arm920t/ep93xx/led.c > create mode 100644 cpu/arm920t/ep93xx/lowlevel_init.S > create mode 100644 cpu/arm920t/ep93xx/speed.c > create mode 100644 cpu/arm920t/ep93xx/timer.c > create mode 100644 cpu/arm920t/ep93xx/u-boot.lds > create mode 100644 include/asm-arm/arch-ep93xx/ep93xx.h This looks good. Ack-ed. Tom