diff options
author | Stefan Reinauer <stepan@openbios.org> | 2003-07-17 22:51:30 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2003-07-17 22:51:30 +0000 |
commit | 438a3e423e66e563474828901c2aa93f5131c9ff (patch) | |
tree | 2852372be32070b55d94772387f85538023c8568 /src/mainboard/amd | |
parent | 07d72dcfa2d92ad0cc6db19a683ac800ba843fff (diff) |
moved generate_row from coherent_ht.c to board specific auto.c files
due to different routing defaults of different boards.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@979 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/amd')
-rw-r--r-- | src/mainboard/amd/solo/auto.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mainboard/amd/solo/auto.c b/src/mainboard/amd/solo/auto.c index befce49a8c..848cddfc5b 100644 --- a/src/mainboard/amd/solo/auto.c +++ b/src/mainboard/amd/solo/auto.c @@ -17,6 +17,14 @@ static void memreset(const struct mem_controller *ctrl) { } +static unsigned int generate_row(uint8_t node, uint8_t row, uint8_t maxnodes) +{ + /* since the AMD Solo is a UP only machine, we can + * always return the default row entry value + */ + return 0x00010101; /* default row entry */ +} + #include "northbridge/amd/amdk8/raminit.c" #include "northbridge/amd/amdk8/coherent_ht.c" #include "sdram/generic_sdram.c" |