src/: Replace GPL boilerplate with SPDX headers
[coreboot.git] / src / ec / hp / kbc1126 / Kconfig
blob0b11dce041e366969f9b5d7633590d0279339eaf
1 ##
2 ## This file is part of the coreboot project.
3 ##
4 ##
5 ## SPDX-License-Identifier: GPL-2.0-only
7 config EC_HP_KBC1126
8         bool
9         help
10           Interface to SMSC KBC1126 embedded controller in HP laptops.
12 if EC_HP_KBC1126
14 comment "Please select the following otherwise your laptop cannot be powered on."
16 config KBC1126_FIRMWARE
17         bool "Add firmware images for KBC1126 EC"
18         depends on EC_HP_KBC1126
19         default n
20         help
21           Select this option to add the two firmware blobs for KBC1126.
22           You need these two blobs to power on your machine.
24 config KBC1126_FW1
25         string "KBC1126 firmware #1 path and filename"
26         depends on KBC1126_FIRMWARE
27         default "fw1.bin"
28         help
29           The path and filename of the file to use as KBC1126 firmware #1.
30           You can use util/kbc1126/kbc1126_ec_dump to dump it from the
31           vendor firmware.
33 config KBC1126_FW1_OFFSET
34         string "Offset of KBC1126 firmware #1"
35         depends on KBC1126_FIRMWARE
36         default "0xfffe8000"
38 config KBC1126_FW2
39         string "KBC1126 filename #2 path and filename"
40         depends on KBC1126_FIRMWARE
41         default "fw2.bin"
42         help
43           The path and filename of the file to use as KBC1126 firmware #2.
44           You can use util/kbc1126/kbc1126_ec_dump to dump it from the
45           vendor firmware.
47 config KBC1126_FW2_OFFSET
48         string "Offset of KBC1126 firmware #2"
49         depends on KBC1126_FIRMWARE
50         default "0xfffd0000"
52 endif