blob: bd914b0ee559ea15adeee62ea084af849269b9c5 [file] [log] [blame]
Dirk Behme5ed3e862008-12-14 09:47:14 +01001/*
2 * (C) Copyright 2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * Author :
6 * Manikandan Pillai <mani.pillai@ti.com>
7 *
8 * Initial Code from:
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Syed Mohammed Khasim <khasim@ti.com>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
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 * Only One NAND allowed on board at a time.
36 * The GPMC CS Base for the same
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
Dirk Behme89411352009-08-08 09:30:22 +020044struct gpmc *gpmc_cfg;
45
Dirk Behme5ed3e862008-12-14 09:47:14 +010046#if defined(CONFIG_CMD_NAND)
Nishanth Menonf8a812a2009-10-13 12:49:55 -040047static const u32 gpmc_m_nand[GPMC_MAX_REG] = {
Dirk Behme5ed3e862008-12-14 09:47:14 +010048 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
Dirk Behme5ed3e862008-12-14 09:47:14 +010056#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)
Nishanth Menonf8a812a2009-10-13 12:49:55 -040065static const u32 gpmc_onenand[GPMC_MAX_REG] = {
Dirk Behme5ed3e862008-12-14 09:47:14 +010066 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
Dirk Behme5ed3e862008-12-14 09:47:14 +010074#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
Dirk Behme5ed3e862008-12-14 09:47:14 +010082/********************************************************
83 * mem_ok() - test used to see if timings are correct
84 * for a part. Helps in guessing which part
85 * we are currently using.
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); /* clear pos A */
95 writel(pattern, addr); /* pattern to pos B */
96 writel(0x0, addr + 4); /* remove pattern off the bus */
97 val1 = readl(addr + 0x400); /* get pos A value */
98 val2 = readl(addr); /* get val2 */
99
100 if ((val1 != 0) || (val2 != pattern)) /* see if pos A val changed */
101 return 0;
102 else
103 return 1;
104}
105
Nishanth Menonf8a812a2009-10-13 12:49:55 -0400106void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
Dirk Behme5ed3e862008-12-14 09:47:14 +0100107 u32 size)
108{
Matthias Ludwig187af952009-05-19 09:09:31 +0200109 writel(0, &cs->config7);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100110 sdelay(1000);
111 /* Delay for settling */
Matthias Ludwig187af952009-05-19 09:09:31 +0200112 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);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100118 /* Enable the config */
119 writel((((size & 0xF) << 8) | ((base >> 24) & 0x3F) |
Matthias Ludwig187af952009-05-19 09:09:31 +0200120 (1 << 6)), &cs->config7);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100121 sdelay(2000);
122}
123
124/*****************************************************
125 * gpmc_init(): init gpmc bus
126 * Init GPMC for x16, MuxMode (SDRAM in x32).
127 * This code can only be executed from SRAM or SDRAM.
128 *****************************************************/
129void gpmc_init(void)
130{
131 /* putting a blanket check on GPMC based on ZeBu for now */
Dirk Behme89411352009-08-08 09:30:22 +0200132 gpmc_cfg = (struct gpmc *)GPMC_BASE;
Nishanth Menon4e0539d2009-10-13 12:47:39 -0400133#if defined(CONFIG_CMD_NAND) || defined(CONFIG_CMD_ONENAND)
Nishanth Menonf8a812a2009-10-13 12:49:55 -0400134 const u32 *gpmc_config = NULL;
Dirk Behme5ed3e862008-12-14 09:47:14 +0100135 u32 base = 0;
136 u32 size = 0;
Nishanth Menon4e0539d2009-10-13 12:47:39 -0400137#if defined(CONFIG_ENV_IS_IN_NAND) || defined(CONFIG_ENV_IS_IN_ONENAND)
Dirk Behme5ed3e862008-12-14 09:47:14 +0100138 u32 f_off = CONFIG_SYS_MONITOR_LEN;
139 u32 f_sec = 0;
Nishanth Menon4e0539d2009-10-13 12:47:39 -0400140#endif
141#endif
Dirk Behme5ed3e862008-12-14 09:47:14 +0100142 u32 config = 0;
143
144 /* global settings */
Dirk Behme89411352009-08-08 09:30:22 +0200145 writel(0, &gpmc_cfg->irqenable); /* isr's sources masked */
146 writel(0, &gpmc_cfg->timeout_control);/* timeout disable */
Dirk Behme5ed3e862008-12-14 09:47:14 +0100147
Dirk Behme89411352009-08-08 09:30:22 +0200148 config = readl(&gpmc_cfg->config);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100149 config &= (~0xf00);
Dirk Behme89411352009-08-08 09:30:22 +0200150 writel(config, &gpmc_cfg->config);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100151
152 /*
153 * Disable the GPMC0 config set by ROM code
154 * It conflicts with our MPDB (both at 0x08000000)
155 */
Dirk Behme89411352009-08-08 09:30:22 +0200156 writel(0, &gpmc_cfg->cs[0].config7);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100157 sdelay(1000);
158
159#if defined(CONFIG_CMD_NAND) /* CS 0 */
160 gpmc_config = gpmc_m_nand;
Matthias Ludwig187af952009-05-19 09:09:31 +0200161
Dirk Behme5ed3e862008-12-14 09:47:14 +0100162 base = PISMO1_NAND_BASE;
163 size = PISMO1_NAND_SIZE;
Dirk Behme89411352009-08-08 09:30:22 +0200164 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100165#if defined(CONFIG_ENV_IS_IN_NAND)
166 f_off = SMNAND_ENV_OFFSET;
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -0400167 f_sec = (128 << 10); /* 128 KiB */
Dirk Behme5ed3e862008-12-14 09:47:14 +0100168 /* env setup */
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;
Dirk Behme5ed3e862008-12-14 09:47:14 +0100178 base = PISMO1_ONEN_BASE;
179 size = PISMO1_ONEN_SIZE;
Dirk Behme89411352009-08-08 09:30:22 +0200180 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
Dirk Behme5ed3e862008-12-14 09:47:14 +0100181#if defined(CONFIG_ENV_IS_IN_ONENAND)
182 f_off = ONENAND_ENV_OFFSET;
Sandeep Paulraj9c44ddc2009-09-09 11:50:40 -0400183 f_sec = (128 << 10); /* 128 KiB */
Dirk Behme5ed3e862008-12-14 09:47:14 +0100184 /* env setup */
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}