Fix the following errors:
In file included from src/mainboard/asus/a8v-e_se/cache_as_ram_auto.c:93: src/northbridge/amd/amdk8/raminit.c: In function ‘sdram_set_spd_registers’: src/northbridge/amd/amdk8/raminit.c:2123: error: implicit declaration of function ‘activate_spd_rom’ In file included from src/mainboard/asus/a8v-e_se/cache_as_ram_auto.c:101: src/cpu/amd/model_fxx/init_cpus.c: In function ‘init_cpus’: src/cpu/amd/model_fxx/init_cpus.c:319: error: implicit declaration of function ‘soft_reset’ In file included from src/mainboard/asus/m2v-mx_se/cache_as_ram_auto.c:98: src/northbridge/amd/amdk8/raminit_f.c: In function ‘sdram_set_spd_registers’: src/northbridge/amd/amdk8/raminit_f.c:2848: error: implicit declaration of function ‘activate_spd_rom’ Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4098 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
6dcbe7f540
commit
3f04dade05
|
@ -87,30 +87,10 @@ static inline int spd_read_byte(unsigned device, unsigned address)
|
||||||
return smbus_read_byte(device, address);
|
return smbus_read_byte(device, address);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define K8_4RANK_DIMM_SUPPORT 1
|
|
||||||
|
|
||||||
#include "northbridge/amd/amdk8/amdk8.h"
|
|
||||||
#include "northbridge/amd/amdk8/raminit.c"
|
|
||||||
#include "northbridge/amd/amdk8/coherent_ht.c"
|
|
||||||
#include "northbridge/amd/amdk8/incoherent_ht.c"
|
|
||||||
#include "sdram/generic_sdram.c"
|
|
||||||
#include "cpu/amd/dualcore/dualcore.c"
|
|
||||||
#include "southbridge/via/k8t890/k8t890_early_car.c"
|
|
||||||
#include "cpu/amd/car/copy_and_run.c"
|
|
||||||
#include "cpu/amd/car/post_cache_as_ram.c"
|
|
||||||
#include "cpu/amd/model_fxx/init_cpus.c"
|
|
||||||
#include "cpu/amd/model_fxx/fidvid.c"
|
|
||||||
#include "northbridge/amd/amdk8/resourcemap.c"
|
|
||||||
|
|
||||||
void activate_spd_rom(const struct mem_controller *ctrl)
|
void activate_spd_rom(const struct mem_controller *ctrl)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void hard_reset(void)
|
|
||||||
{
|
|
||||||
print_info("NO HARD RESET. FIX ME!\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
void soft_reset(void)
|
void soft_reset(void)
|
||||||
{
|
{
|
||||||
uint8_t tmp;
|
uint8_t tmp;
|
||||||
|
@ -129,6 +109,26 @@ void soft_reset(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define K8_4RANK_DIMM_SUPPORT 1
|
||||||
|
|
||||||
|
#include "northbridge/amd/amdk8/amdk8.h"
|
||||||
|
#include "northbridge/amd/amdk8/raminit.c"
|
||||||
|
#include "northbridge/amd/amdk8/coherent_ht.c"
|
||||||
|
#include "northbridge/amd/amdk8/incoherent_ht.c"
|
||||||
|
#include "sdram/generic_sdram.c"
|
||||||
|
#include "cpu/amd/dualcore/dualcore.c"
|
||||||
|
#include "southbridge/via/k8t890/k8t890_early_car.c"
|
||||||
|
#include "cpu/amd/car/copy_and_run.c"
|
||||||
|
#include "cpu/amd/car/post_cache_as_ram.c"
|
||||||
|
#include "cpu/amd/model_fxx/init_cpus.c"
|
||||||
|
#include "cpu/amd/model_fxx/fidvid.c"
|
||||||
|
#include "northbridge/amd/amdk8/resourcemap.c"
|
||||||
|
|
||||||
|
void hard_reset(void)
|
||||||
|
{
|
||||||
|
print_info("NO HARD RESET. FIX ME!\n");
|
||||||
|
}
|
||||||
|
|
||||||
unsigned int get_sbdn(unsigned bus)
|
unsigned int get_sbdn(unsigned bus)
|
||||||
{
|
{
|
||||||
device_t dev;
|
device_t dev;
|
||||||
|
|
|
@ -90,6 +90,10 @@ static inline int spd_read_byte(unsigned device, unsigned address)
|
||||||
return smbus_read_byte(device, address);
|
return smbus_read_byte(device, address);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void activate_spd_rom(const struct mem_controller *ctrl)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
#define K8_4RANK_DIMM_SUPPORT 1
|
#define K8_4RANK_DIMM_SUPPORT 1
|
||||||
|
|
||||||
|
|
||||||
|
@ -122,10 +126,6 @@ static void ldtstop_sb(void)
|
||||||
#include "cpu/amd/model_fxx/fidvid.c"
|
#include "cpu/amd/model_fxx/fidvid.c"
|
||||||
#include "northbridge/amd/amdk8/resourcemap.c"
|
#include "northbridge/amd/amdk8/resourcemap.c"
|
||||||
|
|
||||||
void activate_spd_rom(const struct mem_controller *ctrl)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#warning No hard_reset implemented for this board!
|
#warning No hard_reset implemented for this board!
|
||||||
void hard_reset(void)
|
void hard_reset(void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue