e474070bdd
Signed-off-by: Nils Jacobs <njacobs8@hetnet.nl> Acked-by: Joseph Smith <joe@settoplinux.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5669 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
12 lines
222 B
C
12 lines
222 B
C
#ifndef RAMINIT_H
|
|
#define RAMINIT_H
|
|
|
|
#define DIMM_SOCKETS 2
|
|
|
|
struct mem_controller {
|
|
uint16_t channel0[DIMM_SOCKETS];
|
|
};
|
|
|
|
void sdram_initialize(int controllers, const struct mem_controller *ctrl);
|
|
|
|
#endif /* RAMINIT_H */
|