mainboard/[g-p]*: Remove copyright notices
[coreboot.git] / src / mainboard / hp / snb_ivb_laptops / Kconfig
blob52297febad867e6afc1d4b9c620c5bf7f53b8018
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ##
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; version 2 of the License.
8 ##
9 ## This program is distributed in the hope that it will be useful,
10 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ## GNU General Public License for more details.
15 config BOARD_HP_SNB_IVB_LAPTOPS
16         def_bool n
17         select EC_HP_KBC1126
18         select HAVE_ACPI_RESUME
19         select HAVE_ACPI_TABLES
20         select HAVE_CMOS_DEFAULT
21         select HAVE_OPTION_TABLE
22         select NORTHBRIDGE_INTEL_SANDYBRIDGE
23         select SERIRQ_CONTINUOUS_MODE
24         select SYSTEM_TYPE_LAPTOP
25         select USE_NATIVE_RAMINIT
27 if BOARD_HP_SNB_IVB_LAPTOPS
29 config MAINBOARD_DIR
30         string
31         default "hp/snb_ivb_laptops"
33 config VARIANT_DIR
34         string
35         default "2570p"          if BOARD_HP_2570P
36         default "2760p"          if BOARD_HP_2760P
37         default "8460p"          if BOARD_HP_8460P
38         default "8470p"          if BOARD_HP_8470P
39         default "8770w"          if BOARD_HP_8770W
40         default "folio_9470m"    if BOARD_HP_FOLIO_9470M
41         default "revolve_810_g1" if BOARD_HP_REVOLVE_810_G1
43 config MAINBOARD_PART_NUMBER
44         string
45         default "EliteBook 2570p"          if BOARD_HP_2570P
46         default "EliteBook 2760p"          if BOARD_HP_2760P
47         default "EliteBook 8460p"          if BOARD_HP_8460P
48         default "EliteBook 8470p"          if BOARD_HP_8470P
49         default "EliteBook 8770w"          if BOARD_HP_8770W
50         default "EliteBook Folio 9470m"    if BOARD_HP_FOLIO_9470M
51         default "EliteBook Revolve 810 G1" if BOARD_HP_REVOLVE_810_G1
53 config OVERRIDE_DEVICETREE
54         string
55         default "variants/$(CONFIG_VARIANT_DIR)/overridetree.cb"
57 config VGA_BIOS_FILE
58         string
59         default "pci8086,0116.rom" if SOUTHBRIDGE_INTEL_BD82X6X
60         default "pci8086,0166.rom" if SOUTHBRIDGE_INTEL_C216
62 config VGA_BIOS_ID
63         string
64         default "8086,0116" if SOUTHBRIDGE_INTEL_BD82X6X
65         default "8086,0166" if SOUTHBRIDGE_INTEL_C216
67 config MAX_CPUS
68         int
69         default 8
71 config USBDEBUG_HCD_INDEX
72         int
73         default 2 if BOARD_HP_2570P
74         default 1 if BOARD_HP_2760P
75         default 1 if BOARD_HP_8460P
76         default 2 if BOARD_HP_8470P
77         default 2 if BOARD_HP_8770W
78         default 0 if BOARD_HP_FOLIO_9470M
79         default 2 if BOARD_HP_REVOLVE_810_G1 # FIXME: check this
81 endif