blob: 2a91772152921a6bc4ab577629804e481969df2f [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. */
Kyösti Mälkkie258b9a2016-11-18 19:59:23 +020023void read_spd(spd_raw_data *spd, u8 addr, bool id_only);
24void mainboard_get_spd(spd_raw_data *spd, bool id_only);
Vladimir Serbinenko7686a562014-05-18 11:05:56 +020025
26#endif /* RAMINIT_H */