1if TARGET_CHROMEBOX_PANTHER 2 3config SYS_BOARD 4 default "chromebox_panther" 5 6config SYS_VENDOR 7 default "google" 8 9config SYS_SOC 10 default "ivybridge" 11 12config SYS_CONFIG_NAME 13 default "chromebox_panther" 14 15config SYS_TEXT_BASE 16 default 0xfff00000 17 18# Panther actually uses haswell, not ivybridge, so this is just a placeholder 19config BOARD_SPECIFIC_OPTIONS # dummy 20 def_bool y 21 select X86_RESET_VECTOR 22 select CPU_INTEL_SOCKET_RPGA989 23 select NORTHBRIDGE_INTEL_IVYBRIDGE 24 select SOUTHBRIDGE_INTEL_C216 25 select HAVE_ACPI_RESUME 26 select MARK_GRAPHICS_MEM_WRCOMB 27 select BOARD_ROMSIZE_KB_8192 28 29config SYS_CAR_ADDR 30 hex 31 default 0xff7e0000 32 33config SYS_CAR_SIZE 34 hex 35 default 0x20000 36 37endif 38