blob: e64940965447d10d110ba445b844fe3d4085456a [file] [log] [blame]
Dirk Behme595d37b2008-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 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020012 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme595d37b2008-12-14 09:47:14 +010013 */
14
15#include <common.h>
16#include <asm/io.h>
17#include <asm/arch/mem.h>
18#include <asm/arch/sys_proto.h>
19#include <command.h>
20
Dirk Behmea4becd62009-08-08 09:30:22 +020021struct gpmc *gpmc_cfg;
22
Dirk Behme595d37b2008-12-14 09:47:14 +010023#if defined(CONFIG_CMD_NAND)
Stefan Roesedf3d2222013-06-14 10:55:00 +020024#if defined(GPMC_NAND_ECC_SP_x8_LAYOUT) || defined(GPMC_NAND_ECC_LP_x8_LAYOUT)
25static const u32 gpmc_m_nand[GPMC_MAX_REG] = {
26 SMNAND_GPMC_CONFIG1,
27 SMNAND_GPMC_CONFIG2,
28 SMNAND_GPMC_CONFIG3,
29 SMNAND_GPMC_CONFIG4,
30 SMNAND_GPMC_CONFIG5,
31 SMNAND_GPMC_CONFIG6,
32 0,
33};
34#else
Nishanth Menon3d0377f2009-10-13 12:49:55 -040035static const u32 gpmc_m_nand[GPMC_MAX_REG] = {
Dirk Behme595d37b2008-12-14 09:47:14 +010036 M_NAND_GPMC_CONFIG1,
37 M_NAND_GPMC_CONFIG2,
38 M_NAND_GPMC_CONFIG3,
39 M_NAND_GPMC_CONFIG4,
40 M_NAND_GPMC_CONFIG5,
41 M_NAND_GPMC_CONFIG6, 0
42};
Stefan Roesedf3d2222013-06-14 10:55:00 +020043#endif
Robert P. J. Day3bb3c292012-11-13 07:57:54 +000044#endif /* CONFIG_CMD_NAND */
Dirk Behme595d37b2008-12-14 09:47:14 +010045
46#if defined(CONFIG_CMD_ONENAND)
Nishanth Menon3d0377f2009-10-13 12:49:55 -040047static const u32 gpmc_onenand[GPMC_MAX_REG] = {
Dirk Behme595d37b2008-12-14 09:47:14 +010048 ONENAND_GPMC_CONFIG1,
49 ONENAND_GPMC_CONFIG2,
50 ONENAND_GPMC_CONFIG3,
51 ONENAND_GPMC_CONFIG4,
52 ONENAND_GPMC_CONFIG5,
53 ONENAND_GPMC_CONFIG6, 0
54};
Robert P. J. Day3bb3c292012-11-13 07:57:54 +000055#endif /* CONFIG_CMD_ONENAND */
Dirk Behme595d37b2008-12-14 09:47:14 +010056
Dirk Behme595d37b2008-12-14 09:47:14 +010057/********************************************************
58 * mem_ok() - test used to see if timings are correct
59 * for a part. Helps in guessing which part
60 * we are currently using.
61 *******************************************************/
62u32 mem_ok(u32 cs)
63{
64 u32 val1, val2, addr;
65 u32 pattern = 0x12345678;
66
67 addr = OMAP34XX_SDRC_CS0 + get_sdr_cs_offset(cs);
68
69 writel(0x0, addr + 0x400); /* clear pos A */
70 writel(pattern, addr); /* pattern to pos B */
71 writel(0x0, addr + 4); /* remove pattern off the bus */
72 val1 = readl(addr + 0x400); /* get pos A value */
73 val2 = readl(addr); /* get val2 */
Tom Rinic8a003a2011-11-18 12:48:01 +000074 writel(0x0, addr + 0x400); /* clear pos A */
Dirk Behme595d37b2008-12-14 09:47:14 +010075
76 if ((val1 != 0) || (val2 != pattern)) /* see if pos A val changed */
77 return 0;
78 else
79 return 1;
80}
81
Nishanth Menon3d0377f2009-10-13 12:49:55 -040082void enable_gpmc_cs_config(const u32 *gpmc_config, struct gpmc_cs *cs, u32 base,
Dirk Behme595d37b2008-12-14 09:47:14 +010083 u32 size)
84{
Matthias Ludwige06da3d2009-05-19 09:09:31 +020085 writel(0, &cs->config7);
Dirk Behme595d37b2008-12-14 09:47:14 +010086 sdelay(1000);
87 /* Delay for settling */
Matthias Ludwige06da3d2009-05-19 09:09:31 +020088 writel(gpmc_config[0], &cs->config1);
89 writel(gpmc_config[1], &cs->config2);
90 writel(gpmc_config[2], &cs->config3);
91 writel(gpmc_config[3], &cs->config4);
92 writel(gpmc_config[4], &cs->config5);
93 writel(gpmc_config[5], &cs->config6);
Tom Rini51b2be52011-11-18 12:47:58 +000094
95 /*
96 * Enable the config. size is the CS size and goes in
97 * bits 11:8. We set bit 6 to enable this CS and the base
98 * address goes into bits 5:0.
99 */
100 writel((size << 8) | (GPMC_CS_ENABLE << 6) |
101 ((base >> 24) & GPMC_BASEADDR_MASK),
102 &cs->config7);
Dirk Behme595d37b2008-12-14 09:47:14 +0100103 sdelay(2000);
104}
105
106/*****************************************************
107 * gpmc_init(): init gpmc bus
108 * Init GPMC for x16, MuxMode (SDRAM in x32).
109 * This code can only be executed from SRAM or SDRAM.
110 *****************************************************/
111void gpmc_init(void)
112{
113 /* putting a blanket check on GPMC based on ZeBu for now */
Dirk Behmea4becd62009-08-08 09:30:22 +0200114 gpmc_cfg = (struct gpmc *)GPMC_BASE;
Nishanth Menonf95e4c92009-10-13 12:47:39 -0400115#if defined(CONFIG_CMD_NAND) || defined(CONFIG_CMD_ONENAND)
Nishanth Menon3d0377f2009-10-13 12:49:55 -0400116 const u32 *gpmc_config = NULL;
Dirk Behme595d37b2008-12-14 09:47:14 +0100117 u32 base = 0;
118 u32 size = 0;
Nishanth Menonf95e4c92009-10-13 12:47:39 -0400119#endif
Dirk Behme595d37b2008-12-14 09:47:14 +0100120 u32 config = 0;
121
122 /* global settings */
Dirk Behmea4becd62009-08-08 09:30:22 +0200123 writel(0, &gpmc_cfg->irqenable); /* isr's sources masked */
124 writel(0, &gpmc_cfg->timeout_control);/* timeout disable */
Dirk Behme595d37b2008-12-14 09:47:14 +0100125
Dirk Behmea4becd62009-08-08 09:30:22 +0200126 config = readl(&gpmc_cfg->config);
Dirk Behme595d37b2008-12-14 09:47:14 +0100127 config &= (~0xf00);
Dirk Behmea4becd62009-08-08 09:30:22 +0200128 writel(config, &gpmc_cfg->config);
Dirk Behme595d37b2008-12-14 09:47:14 +0100129
130 /*
131 * Disable the GPMC0 config set by ROM code
132 * It conflicts with our MPDB (both at 0x08000000)
133 */
Dirk Behmea4becd62009-08-08 09:30:22 +0200134 writel(0, &gpmc_cfg->cs[0].config7);
Dirk Behme595d37b2008-12-14 09:47:14 +0100135 sdelay(1000);
136
137#if defined(CONFIG_CMD_NAND) /* CS 0 */
138 gpmc_config = gpmc_m_nand;
Matthias Ludwige06da3d2009-05-19 09:09:31 +0200139
Dirk Behme595d37b2008-12-14 09:47:14 +0100140 base = PISMO1_NAND_BASE;
141 size = PISMO1_NAND_SIZE;
Dirk Behmea4becd62009-08-08 09:30:22 +0200142 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
Dirk Behme595d37b2008-12-14 09:47:14 +0100143#endif
144
145#if defined(CONFIG_CMD_ONENAND)
146 gpmc_config = gpmc_onenand;
Dirk Behme595d37b2008-12-14 09:47:14 +0100147 base = PISMO1_ONEN_BASE;
148 size = PISMO1_ONEN_SIZE;
Dirk Behmea4becd62009-08-08 09:30:22 +0200149 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[0], base, size);
Dirk Behme595d37b2008-12-14 09:47:14 +0100150#endif
151}