]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
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)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:39:37 +0000 (14:39 +0200)
commit3541deee9975874a5400cbf3c151c9046d988fcd
tree79326dac8aa472c696d64ba0cc1ae56080c1da0a
parent00709c4a5cb100896a88f24eea3f1b1101f7db24
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]