aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2013-06-11 16:30:48 +0300
committerStefan Reinauer <stefan.reinauer@coreboot.org>2013-06-13 01:08:12 +0200
commit59d0d159f4710779043e34618a20dccff2af51dd (patch)
tree4b7f8e5a7887407f4a75acdb0a1bdab917f699c8 /src/southbridge
parent22dcdd914cf36ce657f5e72c975a96d577400a69 (diff)
AMD: Kconfig cleanup
Change-Id: I21182eae1d389790c330f27e6a830d91c3ee4eb6 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/3433 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marc.jones@se-eng.com>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/amd/agesa/hudson/Kconfig11
-rw-r--r--src/southbridge/amd/sb800/Kconfig10
2 files changed, 10 insertions, 11 deletions
diff --git a/src/southbridge/amd/agesa/hudson/Kconfig b/src/southbridge/amd/agesa/hudson/Kconfig
index 3e585639c8..7aa3405997 100644
--- a/src/southbridge/amd/agesa/hudson/Kconfig
+++ b/src/southbridge/amd/agesa/hudson/Kconfig
@@ -22,26 +22,23 @@ config SOUTHBRIDGE_AMD_AGESA_HUDSON
select IOAPIC
select HAVE_USBDEBUG
+if SOUTHBRIDGE_AMD_AGESA_HUDSON
+
config BOOTBLOCK_SOUTHBRIDGE_INIT
string
default "southbridge/amd/agesa/hudson/bootblock.c"
- depends on SOUTHBRIDGE_AMD_AGESA_HUDSON
config SOUTHBRIDGE_AMD_HUDSON_SKIP_ISA_DMA_INIT
bool
default n
- depends on SOUTHBRIDGE_AMD_AGESA_HUDSON
config EHCI_BAR
hex
- default 0xfef00000 if SOUTHBRIDGE_AMD_AGESA_HUDSON
+ default 0xfef00000
config EHCI_DEBUG_OFFSET
hex
- default 0xe0 if SOUTHBRIDGE_AMD_AGESA_HUDSON
-
-
-if SOUTHBRIDGE_AMD_AGESA_HUDSON
+ default 0xe0
config HUDSON_XHCI_FWM
bool "Add xhci firmware"
diff --git a/src/southbridge/amd/sb800/Kconfig b/src/southbridge/amd/sb800/Kconfig
index 4d0e7f6a18..4708f1fa7c 100644
--- a/src/southbridge/amd/sb800/Kconfig
+++ b/src/southbridge/amd/sb800/Kconfig
@@ -23,20 +23,22 @@ config SOUTHBRIDGE_AMD_SB800
select HAVE_USBDEBUG
select HAVE_HARD_RESET
+if SOUTHBRIDGE_AMD_SB800
+
config BOOTBLOCK_SOUTHBRIDGE_INIT
string
default "southbridge/amd/sb800/bootblock.c"
- depends on SOUTHBRIDGE_AMD_SB800
config SOUTHBRIDGE_AMD_SB800_SKIP_ISA_DMA_INIT
bool
default n
- depends on SOUTHBRIDGE_AMD_SB800
config EHCI_BAR
hex
- default 0xfef00000 if SOUTHBRIDGE_AMD_SB800
+ default 0xfef00000
config EHCI_DEBUG_OFFSET
hex
- default 0xe0 if SOUTHBRIDGE_AMD_SB800
+ default 0xe0
+
+endif # SOUTHBRIDGE_AMD_SB800