
On Sat, Aug 26, 2017 at 9:39 PM, Simon Glass sjg@chromium.org wrote:
On 15 August 2017 at 23:42, Bin Meng bmeng.cn@gmail.com wrote:
This adds support to Intel Cherry Hill board, a board based on Intel Braswell SoC. The following devices are validated:
- serial port as the serial console
- on-board Realtek 8169 ethernet controller
- SATA AHCI controller
- EMMC/SDHC controller
- USB 3.0 xHCI controller
- PCIe x1 slot with a graphics card
- ICH SPI controller with an 8MB Macronix SPI flash
- Integrated graphics device as the video console
Signed-off-by: Bin Meng bmeng.cn@gmail.com
arch/x86/dts/Makefile | 1 + arch/x86/dts/cherryhill.dts | 215 +++++++++++++ board/intel/Kconfig | 10 + board/intel/cherryhill/Kconfig | 25 ++ board/intel/cherryhill/MAINTAINERS | 6 + board/intel/cherryhill/Makefile | 7 + board/intel/cherryhill/cherryhill.c | 596 ++++++++++++++++++++++++++++++++++++ board/intel/cherryhill/start.S | 9 + configs/cherryhill_defconfig | 36 +++ doc/README.x86 | 30 ++ include/configs/cherryhill.h | 22 ++ 11 files changed, 957 insertions(+) create mode 100644 arch/x86/dts/cherryhill.dts create mode 100644 board/intel/cherryhill/Kconfig create mode 100644 board/intel/cherryhill/MAINTAINERS create mode 100644 board/intel/cherryhill/Makefile create mode 100644 board/intel/cherryhill/cherryhill.c create mode 100644 board/intel/cherryhill/start.S create mode 100644 configs/cherryhill_defconfig create mode 100644 include/configs/cherryhill.h
Reviewed-by: Simon Glass sjg@chromium.org
applied to u-boot-x86, thanks!