]> git.ipfire.org Git - people/ms/u-boot.git/commit - Makefile
lpc32xx: add support for board work_92105
authorAlbert ARIBAUD \(3ADEV\) <albert.aribaud@3adev.fr>
Tue, 31 Mar 2015 09:40:51 +0000 (11:40 +0200)
committerAlbert ARIBAUD <albert.u.boot@aribaud.net>
Fri, 10 Apr 2015 12:23:39 +0000 (14:23 +0200)
commit412ae53aadb53cd63e754d638bafe6e426aeafee
tree0bbf46fef21d002cc1a37b8f478e4b7a26c200d4
parent8c80eb3b533c73a4b4a505fbaf925cdaafe0b5d2
lpc32xx: add support for board work_92105

Work_92105 from Work Microwave is an LPC3250-
based board with the following features:
- 64MB or 128MB SDR DRAM
- 1 GB SLC NAND, managed through MLC controller.
- Ethernet
- Ethernet + PHY SMSC8710
- I2C:
  - EEPROM (24M01-compatible)
  - RTC (DS1374-compatible)
  - Temperature sensor (DS620)
  - DACs (2 x MAX518)
- SPI (through SSP interface)
  - Port expander MAX6957
- LCD display (HD44780-compatible), controlled
  through the port expander and DACs

This board has SPL support, and uses the LPC32XX boot
image format.

Signed-off-by: Albert ARIBAUD (3ADEV) <albert.aribaud@3adev.fr>
22 files changed:
Makefile
arch/arm/Kconfig
arch/arm/cpu/arm926ejs/lpc32xx/Makefile
arch/arm/cpu/arm926ejs/lpc32xx/clk.c
arch/arm/cpu/arm926ejs/lpc32xx/cpu.c
arch/arm/cpu/arm926ejs/lpc32xx/dram.c [new file with mode: 0644]
arch/arm/cpu/arm926ejs/lpc32xx/lowlevel_init.S [new file with mode: 0644]
arch/arm/include/asm/arch-lpc32xx/clk.h
arch/arm/include/asm/arch-lpc32xx/cpu.h
arch/arm/include/asm/arch-lpc32xx/emc.h
arch/arm/include/asm/arch-lpc32xx/mux.h [new file with mode: 0644]
arch/arm/include/asm/arch-lpc32xx/sys_proto.h
board/work-microwave/work_92105/Kconfig [new file with mode: 0644]
board/work-microwave/work_92105/MAINTAINERS [new file with mode: 0644]
board/work-microwave/work_92105/Makefile [new file with mode: 0644]
board/work-microwave/work_92105/README [new file with mode: 0644]
board/work-microwave/work_92105/work_92105.c [new file with mode: 0644]
board/work-microwave/work_92105/work_92105_display.c [new file with mode: 0644]
board/work-microwave/work_92105/work_92105_display.h [new file with mode: 0644]
board/work-microwave/work_92105/work_92105_spl.c [new file with mode: 0644]
configs/work_92105_defconfig [new file with mode: 0644]
include/configs/work_92105.h [new file with mode: 0644]