]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
x86: Add support for Intel Minnowboard Max
authorSimon Glass <sjg@chromium.org>
Wed, 28 Jan 2015 05:13:47 +0000 (22:13 -0700)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 10:59:10 +0000 (12:59 +0200)
commit7fed10d234fa9c71945558a94f85c3b4d1eb7ac6
treeb7681a0632311b88e58b5d6839ce9d6b941acd4e
parentc2a4db2b8735e9bbaa0deb0c12bcbd64cfc4edc3
x86: Add support for Intel Minnowboard Max

This is a relatively low-cost x86 board in a small form factor. The main
peripherals are uSD, USB, HDMI, Ethernet and SATA. It uses an Atom 3800
series CPU. So far only the dual core 2GB variant is supported.

This uses the existing FSP support. Binary blobs are required to make this
board work. The microcode update is included as a patch (all 3000 lines of
it).

Change-Id: I0088c47fe87cf08ae635b343d32c332269062156
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
23 files changed:
arch/x86/Kconfig
arch/x86/cpu/Makefile
arch/x86/cpu/baytrail/Kconfig [new file with mode: 0644]
arch/x86/cpu/baytrail/Makefile [new file with mode: 0644]
arch/x86/cpu/baytrail/early_uart.c [new file with mode: 0644]
arch/x86/cpu/baytrail/fsp_configs.c [new file with mode: 0644]
arch/x86/cpu/baytrail/pci.c [new file with mode: 0644]
arch/x86/cpu/baytrail/valleyview.c [new file with mode: 0644]
arch/x86/dts/Makefile
arch/x86/dts/microcode/m0130673322.dtsi [new file with mode: 0644]
arch/x86/dts/minnowmax.dts [new file with mode: 0644]
arch/x86/dts/serial.dtsi
arch/x86/include/asm/arch-baytrail/fsp/azalia.h [new file with mode: 0644]
arch/x86/include/asm/arch-baytrail/fsp/fsp_vpd.h [new file with mode: 0644]
arch/x86/include/asm/arch-baytrail/gpio.h [new file with mode: 0644]
board/intel/minnowmax/Kconfig [new file with mode: 0644]
board/intel/minnowmax/MAINTAINERS [new file with mode: 0644]
board/intel/minnowmax/Makefile [new file with mode: 0644]
board/intel/minnowmax/minnowmax.c [new file with mode: 0644]
board/intel/minnowmax/start.S [new file with mode: 0644]
configs/minnowmax_defconfig [new file with mode: 0644]
doc/README.x86
include/configs/minnowmax.h [new file with mode: 0644]