]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/sunxi/dram_sun4i_auto.c
sunxi: video: Force h/vsync active high when using ext. vga dac on some boards
[people/ms/u-boot.git] / board / sunxi / dram_sun4i_auto.c
CommitLineData
09f95102
HG
1#include <common.h>
2#include <asm/arch/dram.h>
3
4static struct dram_para dram_para = {
8ffc487c 5 .clock = CONFIG_DRAM_CLK,
09f95102
HG
6 .type = 3,
7 .rank_num = 1,
8ffc487c
HG
8 .density = 0,
9 .io_width = 0,
10 .bus_width = 0,
09f95102 11 .cas = 6,
8ffc487c 12 .zq = CONFIG_DRAM_ZQ,
09f95102 13 .odt_en = 0,
8ffc487c 14 .size = 0,
09f95102
HG
15 .tpr0 = 0x30926692,
16 .tpr1 = 0x1090,
17 .tpr2 = 0x1a0c8,
18 .tpr3 = 0,
19 .tpr4 = 0,
20 .tpr5 = 0,
8ffc487c 21 .emr1 = CONFIG_DRAM_EMR1,
09f95102
HG
22 .emr2 = 0,
23 .emr3 = 0,
24};
25
26unsigned long sunxi_dram_init(void)
27{
28 return dramc_init(&dram_para);
29}