ASRock E350M1: Configure SB800 GPP ports to support onboard pcie nic
[coreboot.git] / src / southbridge / amd / sb600 / Kconfig
index ec7c6714d4c786e37fe245bc7b4de7ef69f7e189..9b164b3758a80ad4fd6f29e7912ab39c9e9b4126 100644 (file)
 config SOUTHBRIDGE_AMD_SB600
        bool
        select IOAPIC
+       select HAVE_USBDEBUG
+       select TINY_BOOTBLOCK
+
+if SOUTHBRIDGE_AMD_SB600
+config BOOTBLOCK_SOUTHBRIDGE_INIT
+       string
+       default "southbridge/amd/sb600/bootblock.c"
+
+config EHCI_BAR
+       hex
+       default 0xfef00000
+
+config EHCI_DEBUG_OFFSET
+       hex
+       default 0xe0
+
+config USBDEBUG_DEFAULT_PORT
+       int
+       default 0
+
+choice
+       prompt "SATA Mode"
+       default SATA_MODE_IDE
+       help
+         Select the mode in which SATA should be driven. IDE or AHCI.
+         The default is IDE.
+
+       config SATA_MODE_IDE
+       bool "IDE"
+
+       config SATA_MODE_AHCI
+       bool "AHCI"
+endchoice
+
+config SATA_MODE
+       int
+       default 1 if SATA_MODE_IDE
+       default 0 if SATA_MODE_AHCI
+
+endif