6f57b514cb
(does not fix the cmos.layout race yet) Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5660 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
17 lines
458 B
C
17 lines
458 B
C
#ifndef AMDK8_H
|
|
|
|
#define AMDK8_H
|
|
|
|
#if CONFIG_K8_REV_F_SUPPORT == 1
|
|
#include "amdk8_f.h"
|
|
#else
|
|
#include "amdk8_pre_f.h"
|
|
#endif
|
|
|
|
#ifdef __PRE_RAM__
|
|
void showallroutes(int level, device_t dev);
|
|
void setup_resource_map_offset(const unsigned int *register_values, int max, unsigned offset_pci_dev, unsigned offset_io_base);
|
|
void fill_mem_ctrl(int controllers, struct mem_controller *ctrl_a, const uint16_t *spd_addr);
|
|
#endif
|
|
|
|
#endif /* AMDK8_H */
|