diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-02-17 00:16:25 -0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-02-21 13:42:52 +0800 |
commit | a2e3b05e16c96ccc5929d60457938cd96912d758 (patch) | |
tree | 507b98f4bdf64a0130bee108d6e9aff15b62dddd /board/intel/cougarcanyon2/Kconfig | |
parent | 87077e97d1a72286871d03a6f06903245b9caacd (diff) | |
download | talos-obmc-uboot-a2e3b05e16c96ccc5929d60457938cd96912d758.tar.gz talos-obmc-uboot-a2e3b05e16c96ccc5929d60457938cd96912d758.zip |
x86: Add Intel Cougar Canyon 2 board
This adds basic support to Intel Cougar Canyon 2 board, a board
based on Chief River platform with an Ivy Bridge processor and
a Panther Point chipset.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/intel/cougarcanyon2/Kconfig')
-rw-r--r-- | board/intel/cougarcanyon2/Kconfig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/board/intel/cougarcanyon2/Kconfig b/board/intel/cougarcanyon2/Kconfig new file mode 100644 index 0000000000..95a617b725 --- /dev/null +++ b/board/intel/cougarcanyon2/Kconfig @@ -0,0 +1,25 @@ +if TARGET_COUGARCANYON2 + +config SYS_BOARD + default "cougarcanyon2" + +config SYS_VENDOR + default "intel" + +config SYS_SOC + default "ivybridge" + +config SYS_CONFIG_NAME + default "cougarcanyon2" + +config SYS_TEXT_BASE + default 0xffe00000 + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + select X86_RESET_VECTOR + select NORTHBRIDGE_INTEL_IVYBRIDGE + select HAVE_FSP + select BOARD_ROMSIZE_KB_2048 + +endif |