blob: 534bc447a34ab0419b6c9cb89e96567bb3a90a77 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */
#ifndef RAMINIT_H
#define RAMINIT_H
/* The 440BX supports up to four (single- or double-sided) DIMMs. */
#define DIMM_SOCKETS 4
void enable_spd(void);
void disable_spd(void);
void sdram_initialize(void);
void mainboard_enable_serial(void);
/* Debug */
#if CONFIG(DEBUG_RAM_SETUP)
void dump_spd_registers(void);
void dump_pci_device(unsigned int dev);
#else
#define dump_spd_registers()
#endif
#endif /* RAMINIT_H */