blob: 8f8d0573132b86c581005bc6ec144706c9d9ac4e [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.
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020014 */
15
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010016#ifndef RAMINIT_NATIVE_H
17#define RAMINIT_NATIVE_H
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020018
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +010019#include "sandybridge.h"
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020020#include <device/dram/ddr3.h>
21
22/* The order is ch0dimmA, ch0dimmB, ch1dimmA, ch1dimmB. */
23void init_dram_ddr3(spd_raw_data *spds, int mobile, int min_tck, int s3resume);
24void read_spd(spd_raw_data *spd, u8 addr);
Vladimir Serbinenkofa1d6882014-10-19 02:50:45 +020025void mainboard_get_spd(spd_raw_data *spd);
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020026
27#endif /* RAMINIT_H */