amdfam10 boards: Use defaults for get_pci1234()
All these boards use the same default initialiser. As this is initialized late after device enumeration, it can't really be used to alter platform configuration. Change-Id: I30fc0298081df0442ec4e9a527340b93a3cd6106 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/30648 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
@@ -110,6 +110,18 @@ void get_pci1234(void)
|
||||
}
|
||||
}
|
||||
|
||||
void get_default_pci1234(int mb_hc_possible)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < mb_hc_possible; i++) {
|
||||
sysconf.pci1234[i] = 0x0000ffc;
|
||||
sysconf.hcdn[i] = 0x20202020;
|
||||
}
|
||||
sysconf.hc_possible_num = mb_hc_possible;
|
||||
get_pci1234();
|
||||
}
|
||||
|
||||
static void amd_bs_sysconf(void *arg)
|
||||
{
|
||||
/* Prepare sysconf structures, which are used to generate IRQ,
|
||||
|
Reference in New Issue
Block a user