xref: /aosp_15_r20/external/coreboot/src/soc/intel/common/block/systemagent/Kconfig (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1## SPDX-License-Identifier: GPL-2.0-only
2
3config SOC_INTEL_COMMON_BLOCK_SA
4	bool
5	select SOC_INTEL_COMMON_BASECODE
6	help
7	  Intel Processor common System Agent support
8
9if SOC_INTEL_COMMON_BLOCK_SA
10
11config DOMAIN_RESOURCE_32BIT_LIMIT
12	default 0xe0000000
13
14config ECAM_MMCONF_BASE_ADDRESS
15	default 0xe0000000
16
17config ECAM_MMCONF_BUS_NUMBER
18	default 256
19
20config SA_ENABLE_IMR
21	bool
22	default n
23	help
24	  This option allows you to add the isolated memory ranges (IMRs).
25
26config SA_ENABLE_DPR
27	bool
28	default n
29	help
30	  This option allows you to add the DMA Protected Range (DPR).
31
32config ACPI_BERT_SIZE
33	hex
34	default 0x10000 if ACPI_BERT
35	default 0x0
36	help
37	  Specify the amount of DRAM reserved for gathering the data used to
38	  generate the ACPI table.
39
40config HAVE_PAM0_REGISTER
41	bool
42	default y
43	help
44	  Specify if the SOC has a PAM0 register
45
46endif
47