]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-uniphier/dram/umc-pro4.c
740247a8d852509eccbe9366ac49e722fe9d4121
[u-boot] / arch / arm / mach-uniphier / dram / umc-pro4.c
1 /*
2  * Copyright (C) 2011-2014 Panasonic Corporation
3  * Copyright (C) 2015-2016 Socionext Inc.
4  *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #include <common.h>
10 #include <linux/errno.h>
11 #include <linux/io.h>
12 #include <linux/sizes.h>
13 #include <asm/processor.h>
14
15 #include "../init.h"
16 #include "ddrphy-init.h"
17 #include "umc-regs.h"
18
19 #define DRAM_CH_NR      2
20
21 enum dram_size {
22         DRAM_SZ_128M,
23         DRAM_SZ_256M,
24         DRAM_SZ_512M,
25         DRAM_SZ_NR,
26 };
27
28 static u32 umc_spcctla[DRAM_SZ_NR] = {0x002b0617, 0x003f0617, 0x00770617};
29
30 static void umc_start_ssif(void __iomem *ssif_base)
31 {
32         writel(0x00000000, ssif_base + 0x0000b004);
33         writel(0xffffffff, ssif_base + 0x0000c004);
34         writel(0x000fffcf, ssif_base + 0x0000c008);
35         writel(0x00000001, ssif_base + 0x0000b000);
36         writel(0x00000001, ssif_base + 0x0000c000);
37
38         writel(0x03010100, ssif_base + UMC_HDMCHSEL);
39         writel(0x03010101, ssif_base + UMC_MDMCHSEL);
40         writel(0x03010100, ssif_base + UMC_DVCCHSEL);
41         writel(0x03010100, ssif_base + UMC_DMDCHSEL);
42
43         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_FETCH);
44         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_COMQUE0);
45         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_COMWC0);
46         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_COMRC0);
47         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_COMQUE1);
48         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_COMWC1);
49         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_COMRC1);
50         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_WC);
51         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_RC);
52         writel(0x00000000, ssif_base + UMC_CLKEN_SSIF_DST);
53         writel(0x00000000, ssif_base + 0x0000c044);             /* DCGIV_SSIF_REG */
54
55         writel(0x00000001, ssif_base + UMC_CPURST);
56         writel(0x00000001, ssif_base + UMC_IDSRST);
57         writel(0x00000001, ssif_base + UMC_IXMRST);
58         writel(0x00000001, ssif_base + UMC_HDMRST);
59         writel(0x00000001, ssif_base + UMC_MDMRST);
60         writel(0x00000001, ssif_base + UMC_HDDRST);
61         writel(0x00000001, ssif_base + UMC_MDDRST);
62         writel(0x00000001, ssif_base + UMC_SIORST);
63         writel(0x00000001, ssif_base + UMC_GIORST);
64         writel(0x00000001, ssif_base + UMC_HD2RST);
65         writel(0x00000001, ssif_base + UMC_VIORST);
66         writel(0x00000001, ssif_base + UMC_DVCRST);
67         writel(0x00000001, ssif_base + UMC_RGLRST);
68         writel(0x00000001, ssif_base + UMC_VPERST);
69         writel(0x00000001, ssif_base + UMC_AIORST);
70         writel(0x00000001, ssif_base + UMC_DMDRST);
71 }
72
73 static int umc_dramcont_init(void __iomem *dc_base, void __iomem *ca_base,
74                              int freq, unsigned long size, bool ddr3plus)
75 {
76         enum dram_size size_e;
77
78         if (freq != 1600) {
79                 pr_err("Unsupported DDR frequency %d MHz\n", freq);
80                 return -EINVAL;
81         }
82
83         if (ddr3plus) {
84                 pr_err("DDR3+ is not supported\n");
85                 return -EINVAL;
86         }
87
88         switch (size) {
89         case SZ_128M:
90                 size_e = DRAM_SZ_128M;
91                 break;
92         case SZ_256M:
93                 size_e = DRAM_SZ_256M;
94                 break;
95         case SZ_512M:
96                 size_e = DRAM_SZ_512M;
97                 break;
98         default:
99                 pr_err("unsupported DRAM size 0x%08lx (per 16bit)\n", size);
100                 return -EINVAL;
101         }
102
103         writel(0x66bb0f17, dc_base + UMC_CMDCTLA);
104         writel(0x18c6aa44, dc_base + UMC_CMDCTLB);
105         writel(umc_spcctla[size_e], dc_base + UMC_SPCCTLA);
106         writel(0x00ff0008, dc_base + UMC_SPCCTLB);
107         writel(0x000c00ae, dc_base + UMC_RDATACTL_D0);
108         writel(0x000c00ae, dc_base + UMC_RDATACTL_D1);
109         writel(0x04060802, dc_base + UMC_WDATACTL_D0);
110         writel(0x04060802, dc_base + UMC_WDATACTL_D1);
111         writel(0x04a02000, dc_base + UMC_DATASET);
112         writel(0x00000000, ca_base + 0x2300);
113         writel(0x00400020, dc_base + UMC_DCCGCTL);
114         writel(0x0000000f, dc_base + 0x7000);
115         writel(0x0000000f, dc_base + 0x8000);
116         writel(0x000000c3, dc_base + 0x8004);
117         writel(0x00000071, dc_base + 0x8008);
118         writel(0x00000004, dc_base + UMC_FLOWCTLG);
119         writel(0x00000000, dc_base + 0x0060);
120         writel(0x80000201, ca_base + 0xc20);
121         writel(0x0801e01e, dc_base + UMC_FLOWCTLA);
122         writel(0x00200000, dc_base + UMC_FLOWCTLB);
123         writel(0x00004444, dc_base + UMC_FLOWCTLC);
124         writel(0x200a0a00, dc_base + UMC_SPCSETB);
125         writel(0x00010000, dc_base + UMC_SPCSETD);
126         writel(0x80000020, dc_base + UMC_DFICUPDCTLA);
127
128         return 0;
129 }
130
131 static int umc_ch_init(void __iomem *dc_base, void __iomem *ca_base,
132                        int freq, unsigned long size, unsigned int width,
133                        bool ddr3plus)
134 {
135         void __iomem *phy_base = dc_base + 0x00001000;
136         int nr_phy = width / 16;
137         int phy, ret;
138
139         writel(UMC_INITSET_INIT1EN, dc_base + UMC_INITSET);
140         while (readl(dc_base + UMC_INITSTAT) & UMC_INITSTAT_INIT1ST)
141                 cpu_relax();
142
143         for (phy = 0; phy < nr_phy; phy++) {
144                 writel(0x00000100 | ((1 << (phy + 1)) - 1),
145                        dc_base + UMC_DIOCTLA);
146
147                 ret = uniphier_ld4_ddrphy_init(phy_base, freq, ddr3plus);
148                 if (ret)
149                         return ret;
150
151                 ddrphy_prepare_training(phy_base, phy);
152                 ret = ddrphy_training(phy_base);
153                 if (ret)
154                         return ret;
155
156                 phy_base += 0x00001000;
157         }
158
159         return umc_dramcont_init(dc_base, ca_base, freq, size / (width / 16),
160                                  ddr3plus);
161 }
162
163 int uniphier_pro4_umc_init(const struct uniphier_board_data *bd)
164 {
165         void __iomem *umc_base = (void __iomem *)0x5b800000;
166         void __iomem *ca_base = umc_base + 0x00001000;
167         void __iomem *dc_base = umc_base + 0x00400000;
168         void __iomem *ssif_base = umc_base;
169         int ch, ret;
170
171         for (ch = 0; ch < DRAM_CH_NR; ch++) {
172                 ret = umc_ch_init(dc_base, ca_base, bd->dram_freq,
173                                   bd->dram_ch[ch].size,
174                                   bd->dram_ch[ch].width,
175                                   !!(bd->flags & UNIPHIER_BD_DDR3PLUS));
176                 if (ret) {
177                         pr_err("failed to initialize UMC ch%d\n", ch);
178                         return ret;
179                 }
180
181                 ca_base += 0x00001000;
182                 dc_base += 0x00200000;
183         }
184
185         umc_start_ssif(ssif_base);
186
187         return 0;
188 }