blob: 597d481d2078058c789a5c108d2a06397cc36c25 [file] [log] [blame]
Michał Żygowski72f06ca2020-04-13 21:42:24 +02001if BOARD_DELL_OPTIPLEX_9010
2
3config BOARD_SPECIFIC_OPTIONS
4 def_bool y
5 select BOARD_ROMSIZE_KB_12288
6 select HAVE_ACPI_RESUME
7 select HAVE_ACPI_TABLES
8 select INTEL_INT15
9 select NORTHBRIDGE_INTEL_SANDYBRIDGE
10 select SERIRQ_CONTINUOUS_MODE
11 select SOUTHBRIDGE_INTEL_C216
12 select USE_NATIVE_RAMINIT
13 select MAINBOARD_HAS_LPC_TPM
14 select MAINBOARD_HAS_TPM1
15 select MAINBOARD_USES_IFD_GBE_REGION
16 select SUPERIO_SMSC_SCH5545
17 select MAINBOARD_HAS_LIBGFXINIT
18 select INTEL_GMA_HAVE_VBT
19 select HAVE_OPTION_TABLE
20 select HAVE_CMOS_DEFAULT
21 select PCIEXP_L1_SUB_STATE
22
23config MAINBOARD_DIR
24 string
Patrick Georgi3588d7b2020-06-17 17:47:40 +020025 default "dell/optiplex_9010"
Michał Żygowski72f06ca2020-04-13 21:42:24 +020026
27config MAINBOARD_PART_NUMBER
28 string
29 default "OptiPlex 9010"
30
Michał Żygowski72f06ca2020-04-13 21:42:24 +020031config DRAM_RESET_GATE_GPIO
32 int
33 default 60
34
Michał Żygowski72f06ca2020-04-13 21:42:24 +020035config USBDEBUG_HCD_INDEX
36 int
37 default 2
38
39config CBFS_SIZE
40 hex
41 default 0x600000
42
43config INCLUDE_SMSC_SCH5545_EC_FW
44 bool "Include SMSC SCH5545 EC firmware binary"
45 default n
46 help
47 This option allows to add the SMSC SCH5545 Environmental Controller
48 firmware binary. The firmware must be loaded after each power failure
49 in order to properly initialize the fan control, because EC loses its
50 configuration when power is cut off. Otherwise the fans will keep
51 running at full speed after power failure.
52
53config SMSC_SCH5545_EC_FW_FILE
54 string "File path to the SMSC SCH5545 EC firmware binary"
55 depends on INCLUDE_SMSC_SCH5545_EC_FW
56
57endif