summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2021-02-16 00:48:49 +0100
committerFelix Held <felix-coreboot@felixheld.de>2021-02-16 23:54:54 +0000
commite18a97813b9fccc26435837a77ec90e5711ce1f6 (patch)
treeebee244283918c9163a91f288ef2e2712fa5c051
parent86e9b41ac239513f46046bbe6af6e9344a6699ff (diff)
downloadcoreboot-e18a97813b9fccc26435837a77ec90e5711ce1f6.tar.gz
coreboot-e18a97813b9fccc26435837a77ec90e5711ce1f6.tar.bz2
coreboot-e18a97813b9fccc26435837a77ec90e5711ce1f6.zip
soc/amd/common/*/Kconfig: remove unneeded default n for bool options
n is the default of bool Kconfig options, so no need to have that added to each option. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I8775d84caee6fda95eb7749e96090fe05417e764 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50779 Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/soc/amd/common/Kconfig.common1
-rw-r--r--src/soc/amd/common/block/acpi/Kconfig1
-rw-r--r--src/soc/amd/common/block/acpimmio/Kconfig1
-rw-r--r--src/soc/amd/common/block/alink/Kconfig1
-rw-r--r--src/soc/amd/common/block/aoac/Kconfig1
-rw-r--r--src/soc/amd/common/block/cpu/Kconfig5
-rw-r--r--src/soc/amd/common/block/gpio_banks/Kconfig1
-rw-r--r--src/soc/amd/common/block/graphics/Kconfig1
-rw-r--r--src/soc/amd/common/block/hda/Kconfig1
-rw-r--r--src/soc/amd/common/block/iommu/Kconfig1
-rw-r--r--src/soc/amd/common/block/lpc/Kconfig5
-rw-r--r--src/soc/amd/common/block/pci/Kconfig2
-rw-r--r--src/soc/amd/common/block/pi/Kconfig1
-rw-r--r--src/soc/amd/common/block/psp/Kconfig4
-rw-r--r--src/soc/amd/common/block/s3/Kconfig1
-rw-r--r--src/soc/amd/common/block/sata/Kconfig1
-rw-r--r--src/soc/amd/common/block/smbus/Kconfig1
-rw-r--r--src/soc/amd/common/block/smi/Kconfig1
-rw-r--r--src/soc/amd/common/block/smu/Kconfig1
-rw-r--r--src/soc/amd/common/block/spi/Kconfig2
-rw-r--r--src/soc/amd/common/block/uart/Kconfig2
21 files changed, 0 insertions, 35 deletions
diff --git a/src/soc/amd/common/Kconfig.common b/src/soc/amd/common/Kconfig.common
index a0836a337211..fa1d14acd774 100644
--- a/src/soc/amd/common/Kconfig.common
+++ b/src/soc/amd/common/Kconfig.common
@@ -7,7 +7,6 @@ if SOC_AMD_COMMON
config SOC_AMD_PI
bool
- default n
source "src/soc/amd/common/block/*/Kconfig"
diff --git a/src/soc/amd/common/block/acpi/Kconfig b/src/soc/amd/common/block/acpi/Kconfig
index 21961f792dbe..024b378e68f6 100644
--- a/src/soc/amd/common/block/acpi/Kconfig
+++ b/src/soc/amd/common/block/acpi/Kconfig
@@ -2,6 +2,5 @@ config SOC_AMD_COMMON_BLOCK_ACPI
bool
depends on SOC_AMD_COMMON_BLOCK_ACPIMMIO
select ACPI_AMD_HARDWARE_SLEEP_VALUES
- default n
help
Select this option to use the AcpiMmio ACPI registers.
diff --git a/src/soc/amd/common/block/acpimmio/Kconfig b/src/soc/amd/common/block/acpimmio/Kconfig
index f14cc0c22708..d74a00bcb9a3 100644
--- a/src/soc/amd/common/block/acpimmio/Kconfig
+++ b/src/soc/amd/common/block/acpimmio/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_ACPIMMIO
bool
- default n
help
Select this option to enable hardware blocks in the AcpiMmio
address space (0xfed8xxxx).
diff --git a/src/soc/amd/common/block/alink/Kconfig b/src/soc/amd/common/block/alink/Kconfig
index 75cf66f19432..fb2885845228 100644
--- a/src/soc/amd/common/block/alink/Kconfig
+++ b/src/soc/amd/common/block/alink/Kconfig
@@ -1,5 +1,4 @@
config SOC_AMD_COMMON_BLOCK_ALINK
bool
- default n
help
Select this option to access the FCH A-link configuration registers.
diff --git a/src/soc/amd/common/block/aoac/Kconfig b/src/soc/amd/common/block/aoac/Kconfig
index be9dc671bc48..e779e7b43f5d 100644
--- a/src/soc/amd/common/block/aoac/Kconfig
+++ b/src/soc/amd/common/block/aoac/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_AOAC
bool
- default n
help
Select this option to add the common functions for the AOAC (always
on, always connected) block to the build.
diff --git a/src/soc/amd/common/block/cpu/Kconfig b/src/soc/amd/common/block/cpu/Kconfig
index f418ee7cc5df..851b09175dc2 100644
--- a/src/soc/amd/common/block/cpu/Kconfig
+++ b/src/soc/amd/common/block/cpu/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_CAR
bool
- default n
help
This option allows the SOC to use a standard AMD cache-as-ram (CAR)
implementation. CAR setup is built into bootblock and teardown is
@@ -14,7 +13,6 @@ config SOC_AMD_COMMON_BLOCK_CAR
config SOC_AMD_COMMON_BLOCK_NONCAR
bool
- default n
help
From family 17h on AMD CPUs/APUs don't use cache as RAM (CAR) any
more, since the RAM initialization is already done by the PSP when
@@ -30,7 +28,6 @@ endif # SOC_AMD_COMMON_BLOCK_NONCAR
config SOC_AMD_COMMON_BLOCK_SMM
bool
- default n
help
Add common SMM relocation and handler functionality to the build.
@@ -39,7 +36,6 @@ config SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H
select COLLECT_TIMESTAMPS_NO_TSC # selected use SoC-specific timestamp function
select TSC_SYNC_LFENCE
select UDELAY_TSC
- default n
help
Select this option to add the common functions for getting the TSC
frequency of AMD family 17h and 19h CPUs/APUs and to provide TSC-
@@ -48,7 +44,6 @@ config SOC_AMD_COMMON_BLOCK_TSC_FAM17H_19H
config SOC_AMD_COMMON_BLOCK_UCODE
bool
select SUPPORT_CPU_UCODE_IN_CBFS
- default n
help
Builds in support for loading uCode.
diff --git a/src/soc/amd/common/block/gpio_banks/Kconfig b/src/soc/amd/common/block/gpio_banks/Kconfig
index 115aa2cc5275..1efb1db64372 100644
--- a/src/soc/amd/common/block/gpio_banks/Kconfig
+++ b/src/soc/amd/common/block/gpio_banks/Kconfig
@@ -1,7 +1,6 @@
config SOC_AMD_COMMON_BLOCK_BANKED_GPIOS
bool
depends on SOC_AMD_COMMON_BLOCK_ACPIMMIO
- default n
help
Select this option to use the newer style banks of GPIO signals.
These are at offsets +0x1500, +0x1600, and +0x1700 from the AcpiMmio
diff --git a/src/soc/amd/common/block/graphics/Kconfig b/src/soc/amd/common/block/graphics/Kconfig
index 4cda353c5f2c..c277a0b23f77 100644
--- a/src/soc/amd/common/block/graphics/Kconfig
+++ b/src/soc/amd/common/block/graphics/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_GRAPHICS
bool
- default n
help
Select this option to use AMD common graphics driver support.
diff --git a/src/soc/amd/common/block/hda/Kconfig b/src/soc/amd/common/block/hda/Kconfig
index 775de2fd8ccb..4c83b1c62a91 100644
--- a/src/soc/amd/common/block/hda/Kconfig
+++ b/src/soc/amd/common/block/hda/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_HDA
bool
- default n
help
Select this option to use AMD common High Definition Audio
driver support.
diff --git a/src/soc/amd/common/block/iommu/Kconfig b/src/soc/amd/common/block/iommu/Kconfig
index 4580400a7ccc..521bf8ab5917 100644
--- a/src/soc/amd/common/block/iommu/Kconfig
+++ b/src/soc/amd/common/block/iommu/Kconfig
@@ -1,5 +1,4 @@
config SOC_AMD_COMMON_BLOCK_IOMMU
bool
- default n
help
Select this option to use AMD common IOMMU support.
diff --git a/src/soc/amd/common/block/lpc/Kconfig b/src/soc/amd/common/block/lpc/Kconfig
index 3aaccf344d78..6ea34fba193c 100644
--- a/src/soc/amd/common/block/lpc/Kconfig
+++ b/src/soc/amd/common/block/lpc/Kconfig
@@ -1,18 +1,15 @@
config SOC_AMD_COMMON_BLOCK_LPC
bool
- default n
help
Select this option to use the traditional LPC-ISA bridge at D14F3.
config PROVIDES_ROM_SHARING
bool
- default n
help
Select this option if the LPC bridge supports ROM sharing.
config SOC_AMD_COMMON_BLOCK_HAS_ESPI
bool
- default n
help
Select this option if platform supports eSPI using D14F3 configuration
registers.
@@ -20,7 +17,6 @@ config SOC_AMD_COMMON_BLOCK_HAS_ESPI
config SOC_AMD_COMMON_BLOCK_USE_ESPI
bool
depends on SOC_AMD_COMMON_BLOCK_HAS_ESPI
- default n
help
Select this option if mainboard uses eSPI instead of LPC (if supported
by platform).
@@ -28,4 +24,3 @@ config SOC_AMD_COMMON_BLOCK_USE_ESPI
config SOC_AMD_COMMON_BLOCK_HAS_ESPI_SUB_DECODE
bool
depends on SOC_AMD_COMMON_BLOCK_HAS_ESPI
- default n
diff --git a/src/soc/amd/common/block/pci/Kconfig b/src/soc/amd/common/block/pci/Kconfig
index a59d87eb5486..4af0aa0d6477 100644
--- a/src/soc/amd/common/block/pci/Kconfig
+++ b/src/soc/amd/common/block/pci/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_PCI
bool
- default n
select SOC_AMD_COMMON_BLOCK_PCI_MMCONF
help
This option builds functions used to program PCI interrupt
@@ -8,7 +7,6 @@ config SOC_AMD_COMMON_BLOCK_PCI
config SOC_AMD_COMMON_BLOCK_PCI_MMCONF
bool
- default n
help
Selecting this option adds the AMD-common enable_pci_mmconf function
to the build.
diff --git a/src/soc/amd/common/block/pi/Kconfig b/src/soc/amd/common/block/pi/Kconfig
index cf8c79ae50f8..d2a2a6ad9bba 100644
--- a/src/soc/amd/common/block/pi/Kconfig
+++ b/src/soc/amd/common/block/pi/Kconfig
@@ -1,7 +1,6 @@
config SOC_AMD_COMMON_BLOCK_PI
bool
select HAVE_DEBUG_RAM_SETUP
- default n
help
This option builds functions that interface AMD's AGESA reference
code packaged in the binaryPI form.
diff --git a/src/soc/amd/common/block/psp/Kconfig b/src/soc/amd/common/block/psp/Kconfig
index 85ec9872a986..c5ec56015b46 100644
--- a/src/soc/amd/common/block/psp/Kconfig
+++ b/src/soc/amd/common/block/psp/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_PSP
bool
- default n
help
This option builds in the Platform Security Processor initialization
functions. Do not select this directly in SoC code, select
@@ -8,21 +7,18 @@ config SOC_AMD_COMMON_BLOCK_PSP
config SOC_AMD_COMMON_BLOCK_PSP_GEN1
bool
- default n
select SOC_AMD_COMMON_BLOCK_PSP
help
Used by the PSP in AMD systems before family 17h, e.g. stoneyridge.
config SOC_AMD_COMMON_BLOCK_PSP_GEN2
bool
- default n
select SOC_AMD_COMMON_BLOCK_PSP
help
Used by the PSP in AMD family 17h, 19h and possibly newer CPUs.
config SOC_AMD_PSP_SELECTABLE_SMU_FW
bool
- default n
help
Some PSP implementations allow storing SMU firmware into cbfs and
calling the PSP to load the blobs at the proper time.
diff --git a/src/soc/amd/common/block/s3/Kconfig b/src/soc/amd/common/block/s3/Kconfig
index ebc1695d9bec..797a59864afd 100644
--- a/src/soc/amd/common/block/s3/Kconfig
+++ b/src/soc/amd/common/block/s3/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_S3
bool
- default n
depends on SOC_AMD_COMMON_BLOCK_ACPI
select CACHE_MRC_SETTINGS
select MRC_WRITE_NV_LATE
diff --git a/src/soc/amd/common/block/sata/Kconfig b/src/soc/amd/common/block/sata/Kconfig
index 0c3d5bc0a1b8..25aef1f58939 100644
--- a/src/soc/amd/common/block/sata/Kconfig
+++ b/src/soc/amd/common/block/sata/Kconfig
@@ -1,5 +1,4 @@
config SOC_AMD_COMMON_BLOCK_SATA
bool
- default n
help
Select this option to use AMD common SATA driver support.
diff --git a/src/soc/amd/common/block/smbus/Kconfig b/src/soc/amd/common/block/smbus/Kconfig
index dd54b638ea57..194cf4ff1acb 100644
--- a/src/soc/amd/common/block/smbus/Kconfig
+++ b/src/soc/amd/common/block/smbus/Kconfig
@@ -1,5 +1,4 @@
config SOC_AMD_COMMON_BLOCK_SMBUS
bool
- default n
help
Select this option to add FCH SMBus controller functions to the build.
diff --git a/src/soc/amd/common/block/smi/Kconfig b/src/soc/amd/common/block/smi/Kconfig
index 1b05b14f33e5..b2054371cd7f 100644
--- a/src/soc/amd/common/block/smi/Kconfig
+++ b/src/soc/amd/common/block/smi/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_SMI
bool
- default n
help
Select this option to add the common functions for setting up the SMI
configuration to the build.
diff --git a/src/soc/amd/common/block/smu/Kconfig b/src/soc/amd/common/block/smu/Kconfig
index 60c231fae849..fe2687ad978a 100644
--- a/src/soc/amd/common/block/smu/Kconfig
+++ b/src/soc/amd/common/block/smu/Kconfig
@@ -1,5 +1,4 @@
config SOC_AMD_COMMON_BLOCK_SMU
bool
- default n
help
Select this option to add functions to communicate with the SMU to the build.
diff --git a/src/soc/amd/common/block/spi/Kconfig b/src/soc/amd/common/block/spi/Kconfig
index c8f6d1ecf9bc..fa24f8308c56 100644
--- a/src/soc/amd/common/block/spi/Kconfig
+++ b/src/soc/amd/common/block/spi/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_SPI
bool
- default n
help
Select this option to add FCH SPI controller functions to the build.
This overwrites the structure spi_flash_ops to use FCH SPI code
@@ -8,7 +7,6 @@ config SOC_AMD_COMMON_BLOCK_SPI
config SOC_AMD_COMMON_BLOCK_SPI_DEBUG
bool
- default n
config EFS_SPI_READ_MODE
int
diff --git a/src/soc/amd/common/block/uart/Kconfig b/src/soc/amd/common/block/uart/Kconfig
index c117dccc1a63..438fde057afb 100644
--- a/src/soc/amd/common/block/uart/Kconfig
+++ b/src/soc/amd/common/block/uart/Kconfig
@@ -1,6 +1,5 @@
config SOC_AMD_COMMON_BLOCK_UART
bool
- default n
help
Select this option to add the common functions for setting up the
UART configuration to the build.
@@ -9,7 +8,6 @@ if SOC_AMD_COMMON_BLOCK_UART
config AMD_SOC_CONSOLE_UART
bool "Use integrated AMD SoC UART controller for console"
- default n
select DRIVERS_UART_8250MEM
select DRIVERS_UART_8250MEM_32
select NO_UART_ON_SUPERIO