blob: 19197482aa42352b215eb5c262463970fe365653 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Steve Sakoman27952012010-07-15 16:19:16 -04002/*
3 * (C) Copyright 2010
4 * Texas Instruments, <www.ti.com>
5 *
pekon guptaa0a37182014-05-08 21:43:47 +05306 * Author :
7 * Mansoor Ahamed <mansoor.ahamed@ti.com>
8 *
9 * Initial Code from:
10 * Manikandan Pillai <mani.pillai@ti.com>
11 * Richard Woodruff <r-woodruff2@ti.com>
12 * Syed Mohammed Khasim <khasim@ti.com>
Steve Sakoman27952012010-07-15 16:19:16 -040013 */
14
pekon guptaa0a37182014-05-08 21:43:47 +053015#include <common.h>
16#include <asm/io.h>
Steve Sakoman27952012010-07-15 16:19:16 -040017#include <asm/arch/cpu.h>
Moses Christopher050531d2021-06-11 16:13:34 +000018#if IS_ENABLED(CONFIG_TARGET_AM335X_GUARDIAN)
19#include <asm/arch/mem-guardian.h>
20#else
pekon guptaa0a37182014-05-08 21:43:47 +053021#include <asm/arch/mem.h>
Moses Christopher050531d2021-06-11 16:13:34 +000022#endif
Steve Sakoman27952012010-07-15 16:19:16 -040023#include <asm/arch/sys_proto.h>
pekon guptaa0a37182014-05-08 21:43:47 +053024#include <command.h>
25#include <linux/mtd/omap_gpmc.h>
Ladislav Michl22d6ac42016-07-12 20:28:17 +020026#include <jffs2/load_kernel.h>
Steve Sakoman27952012010-07-15 16:19:16 -040027
Ladislav Michl0568dd02016-07-12 20:28:16 +020028const struct gpmc *gpmc_cfg = (struct gpmc *)GPMC_BASE;
Steve Sakoman27952012010-07-15 16:19:16 -040029
Ladislav Michl22d6ac42016-07-12 20:28:17 +020030#if defined(CONFIG_NOR)
31char gpmc_cs0_flash = MTD_DEV_TYPE_NOR;
Miquel Raynal88718be2019-10-03 19:50:03 +020032#elif defined(CONFIG_MTD_RAW_NAND) || defined(CONFIG_CMD_NAND)
Ladislav Michl22d6ac42016-07-12 20:28:17 +020033char gpmc_cs0_flash = MTD_DEV_TYPE_NAND;
34#elif defined(CONFIG_CMD_ONENAND)
35char gpmc_cs0_flash = MTD_DEV_TYPE_ONENAND;
36#else
37char gpmc_cs0_flash = -1;
38#endif
39
pekon guptaa0a37182014-05-08 21:43:47 +053040#if defined(CONFIG_OMAP34XX)
41/********************************************************
42 * mem_ok() - test used to see if timings are correct
43 * for a part. Helps in guessing which part
44 * we are currently using.
45 *******************************************************/
46u32 mem_ok(u32 cs)
47{
48 u32 val1, val2, addr;
49 u32 pattern = 0x12345678;
50
51 addr = OMAP34XX_SDRC_CS0 + get_sdr_cs_offset(cs);
52
53 writel(0x0, addr + 0x400); /* clear pos A */
54 writel(pattern, addr); /* pattern to pos B */
55 writel(0x0, addr + 4); /* remove pattern off the bus */
56 val1 = readl(addr + 0x400); /* get pos A value */
57 val2 = readl(addr); /* get val2 */
58 writel(0x0, addr + 0x400); /* clear pos A */
59
60 if ((val1 != 0) || (val2 != pattern)) /* see if pos A val changed */
61 return 0;
62 else
63 return 1;
64}
65#endif
66
Ladislav Michl0568dd02016-07-12 20:28:16 +020067void enable_gpmc_cs_config(const u32 *gpmc_config, const struct gpmc_cs *cs,
68 u32 base, u32 size)
pekon guptaa0a37182014-05-08 21:43:47 +053069{
70 writel(0, &cs->config7);
71 sdelay(1000);
72 /* Delay for settling */
73 writel(gpmc_config[0], &cs->config1);
74 writel(gpmc_config[1], &cs->config2);
75 writel(gpmc_config[2], &cs->config3);
76 writel(gpmc_config[3], &cs->config4);
77 writel(gpmc_config[4], &cs->config5);
78 writel(gpmc_config[5], &cs->config6);
79 /* Enable the config */
80 writel((((size & 0xF) << 8) | ((base >> 24) & 0x3F) |
81 (1 << 6)), &cs->config7);
82 sdelay(2000);
83}
84
Ladislav Michl22d6ac42016-07-12 20:28:17 +020085void set_gpmc_cs0(int flash_type)
86{
87 const u32 *gpmc_regs;
88 u32 base, size;
89#if defined(CONFIG_NOR)
90 const u32 gpmc_regs_nor[GPMC_MAX_REG] = {
91 STNOR_GPMC_CONFIG1,
92 STNOR_GPMC_CONFIG2,
93 STNOR_GPMC_CONFIG3,
94 STNOR_GPMC_CONFIG4,
95 STNOR_GPMC_CONFIG5,
96 STNOR_GPMC_CONFIG6,
97 STNOR_GPMC_CONFIG7
98 };
99#endif
Miquel Raynal88718be2019-10-03 19:50:03 +0200100#if defined(CONFIG_MTD_RAW_NAND) || defined(CONFIG_CMD_NAND)
Ladislav Michl22d6ac42016-07-12 20:28:17 +0200101 const u32 gpmc_regs_nand[GPMC_MAX_REG] = {
102 M_NAND_GPMC_CONFIG1,
103 M_NAND_GPMC_CONFIG2,
104 M_NAND_GPMC_CONFIG3,
105 M_NAND_GPMC_CONFIG4,
106 M_NAND_GPMC_CONFIG5,
107 M_NAND_GPMC_CONFIG6,
108 0
109 };
110#endif
111#if defined(CONFIG_CMD_ONENAND)
112 const u32 gpmc_regs_onenand[GPMC_MAX_REG] = {
113 ONENAND_GPMC_CONFIG1,
114 ONENAND_GPMC_CONFIG2,
115 ONENAND_GPMC_CONFIG3,
116 ONENAND_GPMC_CONFIG4,
117 ONENAND_GPMC_CONFIG5,
118 ONENAND_GPMC_CONFIG6,
119 0
120 };
121#endif
122
123 switch (flash_type) {
124#if defined(CONFIG_NOR)
125 case MTD_DEV_TYPE_NOR:
126 gpmc_regs = gpmc_regs_nor;
Tom Rini65cc0e22022-11-16 13:10:41 -0500127 base = CFG_SYS_FLASH_BASE;
128 size = (CFG_SYS_FLASH_SIZE > 0x08000000) ? GPMC_SIZE_256M :
129 ((CFG_SYS_FLASH_SIZE > 0x04000000) ? GPMC_SIZE_128M :
130 ((CFG_SYS_FLASH_SIZE > 0x02000000) ? GPMC_SIZE_64M :
131 ((CFG_SYS_FLASH_SIZE > 0x01000000) ? GPMC_SIZE_32M :
Ladislav Michl22d6ac42016-07-12 20:28:17 +0200132 GPMC_SIZE_16M)));
133 break;
134#endif
Miquel Raynal88718be2019-10-03 19:50:03 +0200135#if defined(CONFIG_MTD_RAW_NAND) || defined(CONFIG_CMD_NAND)
Ladislav Michl22d6ac42016-07-12 20:28:17 +0200136 case MTD_DEV_TYPE_NAND:
137 gpmc_regs = gpmc_regs_nand;
Tom Rini4e590942022-11-12 17:36:51 -0500138 base = CFG_SYS_NAND_BASE;
Ladislav Michl22d6ac42016-07-12 20:28:17 +0200139 size = GPMC_SIZE_16M;
140 break;
141#endif
142#if defined(CONFIG_CMD_ONENAND)
143 case MTD_DEV_TYPE_ONENAND:
144 gpmc_regs = gpmc_regs_onenand;
Tom Rini65cc0e22022-11-16 13:10:41 -0500145 base = CFG_SYS_ONENAND_BASE;
Ladislav Michl22d6ac42016-07-12 20:28:17 +0200146 size = GPMC_SIZE_128M;
147 break;
148#endif
149 default:
150 /* disable the GPMC0 config set by ROM code */
151 writel(0, &gpmc_cfg->cs[0].config7);
152 sdelay(1000);
153 return;
154 }
155
156 /* enable chip-select specific configurations */
157 enable_gpmc_cs_config(gpmc_regs, &gpmc_cfg->cs[0], base, size);
158}
159
Steve Sakoman27952012010-07-15 16:19:16 -0400160/*****************************************************
161 * gpmc_init(): init gpmc bus
pekon guptaa0a37182014-05-08 21:43:47 +0530162 * Init GPMC for x16, MuxMode (SDRAM in x32).
Steve Sakoman27952012010-07-15 16:19:16 -0400163 * This code can only be executed from SRAM or SDRAM.
164 *****************************************************/
165void gpmc_init(void)
166{
Steve Sakoman27952012010-07-15 16:19:16 -0400167 /* global settings */
pekon guptaa0a37182014-05-08 21:43:47 +0530168 writel(0x00000008, &gpmc_cfg->sysconfig);
169 writel(0x00000000, &gpmc_cfg->irqstatus);
170 writel(0x00000000, &gpmc_cfg->irqenable);
Stefano Babic734af242014-06-17 16:47:40 +0200171 /* disable timeout, set a safe reset value */
172 writel(0x00001ff0, &gpmc_cfg->timeout_control);
Ladislav Michl22d6ac42016-07-12 20:28:17 +0200173 writel(gpmc_cs0_flash == MTD_DEV_TYPE_NOR ?
174 0x00000200 : 0x00000012, &gpmc_cfg->config);
175
176 set_gpmc_cs0(gpmc_cs0_flash);
Steve Sakoman27952012010-07-15 16:19:16 -0400177}