blob: faacc69a8d03cff73dc0a9cc786d3da1647b9965 [file] [log] [blame]
David Hendricks09ab8562015-01-16 12:08:38 -08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2014 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.
David Hendricks09ab8562015-01-16 12:08:38 -080014 */
15#include <arch/io.h>
16#include <boardid.h>
17#include <console/console.h>
18#include <gpio.h>
19#include <soc/sdram.h>
20#include <string.h>
21#include <types.h>
22
23static struct rk3288_sdram_params sdram_configs[] = {
24#include "sdram_inf/sdram-lpddr3-samsung-2GB.inc" /* ram_code = 0000 */
Julius Wernerc447f432015-02-18 18:00:07 -080025#include "sdram_inf/sdram-lpddr3-hynix-2GB.inc" /* ram_code = 0001 */
David Hendricks09ab8562015-01-16 12:08:38 -080026#include "sdram_inf/sdram-unused.inc" /* ram_code = 0010 */
27#include "sdram_inf/sdram-unused.inc" /* ram_code = 0011 */
28#include "sdram_inf/sdram-ddr3-samsung-2GB.inc" /* ram_code = 0100 */
Julius Wernerc447f432015-02-18 18:00:07 -080029#include "sdram_inf/sdram-ddr3-hynix-2GB.inc" /* ram_code = 0101 */
30#include "sdram_inf/sdram-ddr3-samsung-2GB.inc" /* ram_code = 0110 */
jinkun.hong5e94e4f2015-03-19 14:51:56 +080031#include "sdram_inf/sdram-lpddr3-elpida-2GB.inc" /* ram_code = 0111 */
Julius Wernerc447f432015-02-18 18:00:07 -080032#include "sdram_inf/sdram-lpddr3-samsung-4GB.inc" /* ram_code = 1000 */
33#include "sdram_inf/sdram-lpddr3-hynix-4GB.inc" /* ram_code = 1001 */
jinkun.hongcbd7de72015-08-20 14:06:31 +080034#include "sdram_inf/sdram-ddr3-nanya-2GB.inc" /* ram_code = 1010 */
jinkun.hong5e94e4f2015-03-19 14:51:56 +080035#include "sdram_inf/sdram-lpddr3-elpida-4GB.inc" /* ram_code = 1011 */
David Hendricks09ab8562015-01-16 12:08:38 -080036#include "sdram_inf/sdram-unused.inc" /* ram_code = 1100 */
ZhengShunQian82a7bc42015-03-06 14:45:03 +080037#include "sdram_inf/sdram-ddr3-hynix-2GB.inc" /* ram_code = 1101 */
Julius Wernerc447f432015-02-18 18:00:07 -080038#include "sdram_inf/sdram-ddr3-samsung-4GB.inc" /* ram_code = 1110 */
39#include "sdram_inf/sdram-ddr3-hynix-4GB.inc" /* ram_code = 1111 */
David Hendricks09ab8562015-01-16 12:08:38 -080040};
41
42const struct rk3288_sdram_params *get_sdram_config()
43{
David Hendricks3be454e2015-01-16 12:15:15 -080044 u32 ramcode;
David Hendricks09ab8562015-01-16 12:08:38 -080045
David Hendricks3be454e2015-01-16 12:15:15 -080046 /* early boards had incorrect config */
47 if (board_id() == 0)
48 return &sdram_configs[0];
49
50 ramcode = ram_code();
David Hendricks09ab8562015-01-16 12:08:38 -080051 if (ramcode >= ARRAY_SIZE(sdram_configs)
52 || sdram_configs[ramcode].dramtype == UNUSED)
53 die("Invalid RAMCODE.");
54 return &sdram_configs[ramcode];
55}