1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28#include <common.h>
29#include <asm/io.h>
30#include <asm/arch/mem.h>
31#include <asm/arch/sys_proto.h>
32#include <command.h>
33
34
35
36
37
38unsigned int boot_flash_base;
39unsigned int boot_flash_off;
40unsigned int boot_flash_sec;
41unsigned int boot_flash_type;
42volatile unsigned int boot_flash_env_addr;
43
44struct gpmc *gpmc_cfg;
45
46#if defined(CONFIG_CMD_NAND)
47static const u32 gpmc_m_nand[GPMC_MAX_REG] = {
48 M_NAND_GPMC_CONFIG1,
49 M_NAND_GPMC_CONFIG2,
50 M_NAND_GPMC_CONFIG3,
51 M_NAND_GPMC_CONFIG4,
52 M_NAND_GPMC_CONFIG5,
53 M_NAND_GPMC_CONFIG6, 0
54};
55
56#if defined(CONFIG_ENV_IS_IN_NAND)
57#define GPMC_CS 0
58#else
59#define GPMC_CS 1
60#endif
61
62#endif
63
64#if defined(CONFIG_CMD_ONENAND)
65static const u32 gpmc_onenand[GPMC_MAX_REG] = {
66 ONENAND_GPMC_CONFIG1,
67 ONENAND_GPMC_CONFIG2,
68 ONENAND_GPMC_CONFIG3,
69 ONENAND_GPMC_CONFIG4,
70 ONENAND_GPMC_CONFIG5,
71 ONENAND_GPMC_CONFIG6, 0
72};
73
74#if defined(CONFIG_ENV_IS_IN_ONENAND)
75#define GPMC_CS 0
76#else
77#define GPMC_CS 1
78#endif
79
80#endif
81
82
83
84
85
86
87u32 mem_ok(u32 cs)
88{
89 u32 val1, val2, addr;
90 u32 pattern = 0x12345678;
91
92 addr = OMAP34XX_SDRC_CS0 + get_sdr_cs_offset(cs);
93
94 writel(0x0, addr + 0x400);
95 writel(pattern, addr);
96 writel(0x0, addr + 4);
97 val1 = readl(addr + 0x400);
98 val2 = readl(addr);
99
100 if ((val1 != 0) || (val2 != pattern))
101 return 0;
102 else
103 return 1;
104}
105
106void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
107 u32 size)
108{
109 writel(0, &cs->config7);
110 sdelay(1000);
111
112 writel(gpmc_config[0], &cs->config1);
113 writel(gpmc_config[1], &cs->config2);
114 writel(gpmc_config[2], &cs->config3);
115 writel(gpmc_config[3], &cs->config4);
116 writel(gpmc_config[4], &cs->config5);
117 writel(gpmc_config[5], &cs->config6);
118
119 writel((((size & 0xF) << 8) | ((base >> 24) & 0x3F) |
120 (1 << 6)), &cs->config7);
121 sdelay(2000);
122}
123
124
125
126
127
128
129void gpmc_init(void)
130{
131
132 gpmc_cfg = (struct gpmc *)GPMC_BASE;
133#if defined(CONFIG_CMD_NAND) || defined(CONFIG_CMD_ONENAND)
134 const u32 *gpmc_config = NULL;
135 u32 base = 0;
136 u32 size = 0;
137#if defined(CONFIG_ENV_IS_IN_NAND) || defined(CONFIG_ENV_IS_IN_ONENAND)
138 u32 f_off = CONFIG_SYS_MONITOR_LEN;
139 u32 f_sec = 0;
140#endif
141#endif
142 u32 config = 0;
143
144
145 writel(0, &gpmc_cfg->irqenable);
146 writel(0, &gpmc_cfg->timeout_control);
147
148 config = readl(&gpmc_cfg->config);
149 config &= (~0xf00);
150 writel(config, &gpmc_cfg->config);
151
152
153
154
155
156 writel(0, &gpmc_cfg->cs[0].config7);
157 sdelay(1000);
158
159#if defined(CONFIG_CMD_NAND)
160 gpmc_config = gpmc_m_nand;
161
162 base = PISMO1_NAND_BASE;
163 size = PISMO1_NAND_SIZE;
164 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
165#if defined(CONFIG_ENV_IS_IN_NAND)
166 f_off = SMNAND_ENV_OFFSET;
167 f_sec = (128 << 10);
168
169 boot_flash_base = base;
170 boot_flash_off = f_off;
171 boot_flash_sec = f_sec;
172 boot_flash_env_addr = f_off;
173#endif
174#endif
175
176#if defined(CONFIG_CMD_ONENAND)
177 gpmc_config = gpmc_onenand;
178 base = PISMO1_ONEN_BASE;
179 size = PISMO1_ONEN_SIZE;
180 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
181#if defined(CONFIG_ENV_IS_IN_ONENAND)
182 f_off = ONENAND_ENV_OFFSET;
183 f_sec = (128 << 10);
184
185 boot_flash_base = base;
186 boot_flash_off = f_off;
187 boot_flash_sec = f_sec;
188 boot_flash_env_addr = f_off;
189#endif
190#endif
191}
192