blob: bd9fd4bd27ed587b062d5854a8666d1a902588a8 [file] [log] [blame]
Hans de Goede56333be2015-01-21 16:14:00 +01001/* DRAM parameters for auto dram configuration on sun5i and sun7i */
Hans de Goede6c46c8e2015-01-17 22:31:30 +01002
3#include <common.h>
4#include <asm/arch/dram.h>
5
6static struct dram_para dram_para = {
7 .clock = CONFIG_DRAM_CLK,
8 .type = 3,
9 .rank_num = 1,
10 .density = 0,
11 .io_width = 0,
12 .bus_width = 0,
Hans de Goede6c46c8e2015-01-17 22:31:30 +010013 .zq = CONFIG_DRAM_ZQ,
14 .odt_en = 0,
15 .size = 0,
Siarhei Siamashkad1336472015-02-01 00:27:05 +020016#ifdef CONFIG_DRAM_TIMINGS_VENDOR_MAGIC
17 .cas = 9,
Hans de Goede6c46c8e2015-01-17 22:31:30 +010018 .tpr0 = 0x42d899b7,
19 .tpr1 = 0xa090,
20 .tpr2 = 0x22a00,
Siarhei Siamashkad1336472015-02-01 00:27:05 +020021 .emr2 = 0x10,
22#else
23# include "dram_timings_sun4i.h"
24#endif
Hans de Goede6c46c8e2015-01-17 22:31:30 +010025 .tpr3 = 0,
26 .tpr4 = 0,
27 .tpr5 = 0,
28 .emr1 = CONFIG_DRAM_EMR1,
Hans de Goede6c46c8e2015-01-17 22:31:30 +010029 .emr3 = 0,
30};
31
32unsigned long sunxi_dram_init(void)
33{
34 return dramc_init(&dram_para);
35}