blob: e1003ad136b094dfce950584047cde97c9d817c8 [file] [log] [blame]
Vladimir Serbinenko7686a562014-05-18 11:05:56 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#ifndef RAMINIT_H
21#define RAMINIT_H
22
23#include <device/dram/ddr3.h>
24
25/* The order is ch0dimmA, ch0dimmB, ch1dimmA, ch1dimmB. */
26void init_dram_ddr3(spd_raw_data *spds, int mobile, int min_tck, int s3resume);
27void read_spd(spd_raw_data *spd, u8 addr);
Vladimir Serbinenkofa1d6882014-10-19 02:50:45 +020028void mainboard_get_spd(spd_raw_data *spd);
29void rcba_config(void);
30void pch_enable_lpc(void);
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020031
32#endif /* RAMINIT_H */