AMD K8 fam10: Always have SB_HT_CHAIN_ON_BUS0
Change-Id: I65fad1cfba95f0ee1ed3f7f7a57d874144da1e40 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/8561 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <edward.ocallaghan@koparo.com> Reviewed-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
This commit is contained in:
parent
7748ee5ee1
commit
3690727955
|
@ -64,9 +64,6 @@ config SB_HT_CHAIN_UNITID_OFFSET_ONLY
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config SB_HT_CHAIN_ON_BUS0
|
|
||||||
def_bool y
|
|
||||||
|
|
||||||
config HT_CHAIN_DISTRIBUTE
|
config HT_CHAIN_DISTRIBUTE
|
||||||
def_bool n
|
def_bool n
|
||||||
|
|
||||||
|
|
|
@ -216,7 +216,7 @@ static u32 amdfam10_scan_chain(device_t dev, u32 nodeid, struct bus *link, bool
|
||||||
* so we set the subordinate bus number to 0xff for the moment.
|
* so we set the subordinate bus number to 0xff for the moment.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!CONFIG_SB_HT_CHAIN_ON_BUS0 || !is_sblink)
|
if (!is_sblink)
|
||||||
max++;
|
max++;
|
||||||
|
|
||||||
/* One node can have 8 link and segn is the same. */
|
/* One node can have 8 link and segn is the same. */
|
||||||
|
@ -280,9 +280,6 @@ static void relocate_sb_ht_chain(void)
|
||||||
struct bus *link, *prev = NULL;
|
struct bus *link, *prev = NULL;
|
||||||
u8 sblink;
|
u8 sblink;
|
||||||
|
|
||||||
if (!CONFIG_SB_HT_CHAIN_ON_BUS0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
dev = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
|
dev = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
|
||||||
sblink = (pci_read_config32(dev, 0x64)>>8) & 7;
|
sblink = (pci_read_config32(dev, 0x64)>>8) & 7;
|
||||||
link = dev->link_list;
|
link = dev->link_list;
|
||||||
|
|
|
@ -64,9 +64,6 @@ config SB_HT_CHAIN_UNITID_OFFSET_ONLY
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config SB_HT_CHAIN_ON_BUS0
|
|
||||||
def_bool y
|
|
||||||
|
|
||||||
config HT_CHAIN_DISTRIBUTE
|
config HT_CHAIN_DISTRIBUTE
|
||||||
def_bool n
|
def_bool n
|
||||||
|
|
||||||
|
|
|
@ -179,7 +179,7 @@ static u32 amdk8_scan_chain(device_t dev, u32 nodeid, struct bus *link, bool is_
|
||||||
* so we set the subordinate bus number to 0xff for the moment.
|
* so we set the subordinate bus number to 0xff for the moment.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!CONFIG_SB_HT_CHAIN_ON_BUS0 || !is_sblink)
|
if (!is_sblink)
|
||||||
max++;
|
max++;
|
||||||
|
|
||||||
/* Second chain will be on 0x40, third 0x80, forth 0xc0. */
|
/* Second chain will be on 0x40, third 0x80, forth 0xc0. */
|
||||||
|
@ -249,9 +249,6 @@ static void relocate_sb_ht_chain(void)
|
||||||
struct bus *link, *prev = NULL;
|
struct bus *link, *prev = NULL;
|
||||||
u8 sblink;
|
u8 sblink;
|
||||||
|
|
||||||
if (!CONFIG_SB_HT_CHAIN_ON_BUS0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
dev = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
|
dev = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
|
||||||
sblink = (pci_read_config32(dev, 0x64)>>8) & 3;
|
sblink = (pci_read_config32(dev, 0x64)>>8) & 3;
|
||||||
link = dev->link_list;
|
link = dev->link_list;
|
||||||
|
|
Loading…
Reference in New Issue