blob: b6f11d25f25ad7334586448372a893f61541f2d7 [file] [log] [blame]
Ilya Yanok148854c2009-03-11 03:22:00 +03001/*
2 * Copyright (C) 2009 Ilya Yanok, Emcraft Systems Ltd, <yanok@emcraft.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Ilya Yanok148854c2009-03-11 03:22:00 +030013 */
14
15#include <linux/types.h>
16#include <linux/init.h>
17#include <linux/kernel.h>
18#include <linux/memory.h>
19#include <linux/platform_device.h>
20#include <linux/mtd/physmap.h>
21#include <linux/mtd/nand.h>
22#include <linux/gpio.h>
23
24#include <mach/hardware.h>
25#include <mach/irqs.h>
26#include <asm/mach-types.h>
27#include <asm/mach/arch.h>
28#include <asm/mach/time.h>
29#include <asm/mach/map.h>
30#include <mach/common.h>
31#include <asm/page.h>
32#include <asm/setup.h>
Ilya Yanok148854c2009-03-11 03:22:00 +030033#include <mach/iomux-mx3.h>
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +020034
35#include "devices-imx31.h"
Ilya Yanok148854c2009-03-11 03:22:00 +030036
37/* FPGA defines */
38#define QONG_FPGA_VERSION(major, minor, rev) \
39 (((major & 0xF) << 12) | ((minor & 0xF) << 8) | (rev & 0xFF))
40
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010041#define QONG_FPGA_BASEADDR MX31_CS1_BASE_ADDR
42#define QONG_FPGA_PERIPH_SIZE (1 << 24)
Ilya Yanok148854c2009-03-11 03:22:00 +030043
44#define QONG_FPGA_CTRL_BASEADDR QONG_FPGA_BASEADDR
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010045#define QONG_FPGA_CTRL_SIZE 0x10
Ilya Yanok148854c2009-03-11 03:22:00 +030046/* FPGA control registers */
47#define QONG_FPGA_CTRL_VERSION 0x00
48
49#define QONG_DNET_ID 1
50#define QONG_DNET_BASEADDR \
51 (QONG_FPGA_BASEADDR + QONG_DNET_ID * QONG_FPGA_PERIPH_SIZE)
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +010052#define QONG_DNET_SIZE 0x00001000
Ilya Yanok148854c2009-03-11 03:22:00 +030053
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +020054static const struct imxuart_platform_data uart_pdata __initconst = {
Ilya Yanok148854c2009-03-11 03:22:00 +030055 .flags = IMXUART_HAVE_RTSCTS,
56};
57
58static int uart_pins[] = {
59 MX31_PIN_CTS1__CTS1,
60 MX31_PIN_RTS1__RTS1,
61 MX31_PIN_TXD1__TXD1,
62 MX31_PIN_RXD1__RXD1
63};
64
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +020065static inline void __init mxc_init_imx_uart(void)
Ilya Yanok148854c2009-03-11 03:22:00 +030066{
67 mxc_iomux_setup_multiple_pins(uart_pins, ARRAY_SIZE(uart_pins),
68 "uart-0");
Uwe Kleine-König16cf5c42010-06-23 11:46:16 +020069 imx31_add_imx_uart0(&uart_pdata);
Ilya Yanok148854c2009-03-11 03:22:00 +030070}
71
72static struct resource dnet_resources[] = {
Sascha Hauer3f4f54b2009-06-23 12:12:00 +020073 {
Ilya Yanok148854c2009-03-11 03:22:00 +030074 .name = "dnet-memory",
75 .start = QONG_DNET_BASEADDR,
76 .end = QONG_DNET_BASEADDR + QONG_DNET_SIZE - 1,
77 .flags = IORESOURCE_MEM,
Sascha Hauer3f4f54b2009-06-23 12:12:00 +020078 }, {
Shawn Guoed175342011-12-02 20:00:33 +080079 /* irq number is run-time assigned */
Ilya Yanok148854c2009-03-11 03:22:00 +030080 .flags = IORESOURCE_IRQ,
81 },
82};
83
84static struct platform_device dnet_device = {
85 .name = "dnet",
86 .id = -1,
87 .num_resources = ARRAY_SIZE(dnet_resources),
88 .resource = dnet_resources,
89};
90
91static int __init qong_init_dnet(void)
92{
93 int ret;
94
Shawn Guoed175342011-12-02 20:00:33 +080095 dnet_resources[1].start =
96 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1));
97 dnet_resources[1].end =
98 gpio_to_irq(IOMUX_TO_GPIO(MX31_PIN_DTR_DCE1));
Ilya Yanok148854c2009-03-11 03:22:00 +030099 ret = platform_device_register(&dnet_device);
100 return ret;
101}
102
103/* MTD NOR flash */
104
105static struct physmap_flash_data qong_flash_data = {
106 .width = 2,
107};
108
109static struct resource qong_flash_resource = {
Uwe Kleine-Königf568dd72009-12-09 11:57:21 +0100110 .start = MX31_CS0_BASE_ADDR,
Uwe Kleine-Königd57351a2010-03-08 16:11:51 +0100111 .end = MX31_CS0_BASE_ADDR + SZ_128M - 1,
Ilya Yanok148854c2009-03-11 03:22:00 +0300112 .flags = IORESOURCE_MEM,
113};
114
115static struct platform_device qong_nor_mtd_device = {
116 .name = "physmap-flash",
117 .id = 0,
118 .dev = {
119 .platform_data = &qong_flash_data,
120 },
121 .resource = &qong_flash_resource,
122 .num_resources = 1,
123};
124
125static void qong_init_nor_mtd(void)
126{
127 (void)platform_device_register(&qong_nor_mtd_device);
128}
129
130/*
131 * Hardware specific access to control-lines
132 */
133static void qong_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
134{
135 struct nand_chip *nand_chip = mtd->priv;
136
137 if (cmd == NAND_CMD_NONE)
138 return;
139
140 if (ctrl & NAND_CLE)
141 writeb(cmd, nand_chip->IO_ADDR_W + (1 << 24));
142 else
143 writeb(cmd, nand_chip->IO_ADDR_W + (1 << 23));
144}
145
146/*
147 * Read the Device Ready pin.
148 */
149static int qong_nand_device_ready(struct mtd_info *mtd)
150{
151 return gpio_get_value(IOMUX_TO_GPIO(MX31_PIN_NFRB));
152}
153
154static void qong_nand_select_chip(struct mtd_info *mtd, int chip)
155{
156 if (chip >= 0)
157 gpio_set_value(IOMUX_TO_GPIO(MX31_PIN_NFCE_B), 0);
158 else
159 gpio_set_value(IOMUX_TO_GPIO(MX31_PIN_NFCE_B), 1);
160}
161
162static struct platform_nand_data qong_nand_data = {
163 .chip = {
Marek Vasutef077172010-08-12 02:14:54 +0100164 .nr_chips = 1,
Ilya Yanok148854c2009-03-11 03:22:00 +0300165 .chip_delay = 20,
166 .options = 0,
167 },
168 .ctrl = {
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100169 .cmd_ctrl = qong_nand_cmd_ctrl,
Ilya Yanok148854c2009-03-11 03:22:00 +0300170 .dev_ready = qong_nand_device_ready,
171 .select_chip = qong_nand_select_chip,
172 }
173};
174
175static struct resource qong_nand_resource = {
Uwe Kleine-König27ad4bf2011-03-17 09:40:29 +0100176 .start = MX31_CS3_BASE_ADDR,
177 .end = MX31_CS3_BASE_ADDR + SZ_32M - 1,
Ilya Yanok148854c2009-03-11 03:22:00 +0300178 .flags = IORESOURCE_MEM,
179};
180
181static struct platform_device qong_nand_device = {
182 .name = "gen_nand",
183 .id = -1,
184 .dev = {
185 .platform_data = &qong_nand_data,
186 },
187 .num_resources = 1,
188 .resource = &qong_nand_resource,
189};
190
191static void __init qong_init_nand_mtd(void)
192{
193 /* init CS */
Shawn Guof16fcb62011-10-17 14:15:06 +0800194 __raw_writel(0x00004f00, MX31_IO_ADDRESS(MX31_WEIM_CSCRxU(3)));
195 __raw_writel(0x20013b31, MX31_IO_ADDRESS(MX31_WEIM_CSCRxL(3)));
196 __raw_writel(0x00020800, MX31_IO_ADDRESS(MX31_WEIM_CSCRxA(3)));
197
Ilya Yanok148854c2009-03-11 03:22:00 +0300198 mxc_iomux_set_gpr(MUX_SDCTL_CSD1_SEL, true);
199
200 /* enable pin */
201 mxc_iomux_mode(IOMUX_MODE(MX31_PIN_NFCE_B, IOMUX_CONFIG_GPIO));
202 if (!gpio_request(IOMUX_TO_GPIO(MX31_PIN_NFCE_B), "nand_enable"))
203 gpio_direction_output(IOMUX_TO_GPIO(MX31_PIN_NFCE_B), 0);
204
205 /* ready/busy pin */
206 mxc_iomux_mode(IOMUX_MODE(MX31_PIN_NFRB, IOMUX_CONFIG_GPIO));
207 if (!gpio_request(IOMUX_TO_GPIO(MX31_PIN_NFRB), "nand_rdy"))
208 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_NFRB));
209
210 /* write protect pin */
211 mxc_iomux_mode(IOMUX_MODE(MX31_PIN_NFWP_B, IOMUX_CONFIG_GPIO));
212 if (!gpio_request(IOMUX_TO_GPIO(MX31_PIN_NFWP_B), "nand_wp"))
213 gpio_direction_input(IOMUX_TO_GPIO(MX31_PIN_NFWP_B));
214
215 platform_device_register(&qong_nand_device);
216}
217
218static void __init qong_init_fpga(void)
219{
220 void __iomem *regs;
221 u32 fpga_ver;
222
223 regs = ioremap(QONG_FPGA_CTRL_BASEADDR, QONG_FPGA_CTRL_SIZE);
224 if (!regs) {
225 printk(KERN_ERR "%s: failed to map registers, aborting.\n",
226 __func__);
227 return;
228 }
229
230 fpga_ver = readl(regs + QONG_FPGA_CTRL_VERSION);
231 iounmap(regs);
232 printk(KERN_INFO "Qong FPGA version %d.%d.%d\n",
233 (fpga_ver & 0xF000) >> 12,
234 (fpga_ver & 0x0F00) >> 8, fpga_ver & 0x00FF);
235 if (fpga_ver < QONG_FPGA_VERSION(0, 8, 7)) {
236 printk(KERN_ERR "qong: Unexpected FPGA version, FPGA-based "
237 "devices won't be registered!\n");
238 return;
239 }
240
241 /* register FPGA-based devices */
242 qong_init_nand_mtd();
243 qong_init_dnet();
244}
245
246/*
Ilya Yanok148854c2009-03-11 03:22:00 +0300247 * Board specific initialization.
248 */
Uwe Kleine-Könige134fb22011-02-11 10:23:19 +0100249static void __init qong_init(void)
Ilya Yanok148854c2009-03-11 03:22:00 +0300250{
Shawn Guob78d8e52011-06-06 00:07:55 +0800251 imx31_soc_init();
252
Ilya Yanok148854c2009-03-11 03:22:00 +0300253 mxc_init_imx_uart();
254 qong_init_nor_mtd();
255 qong_init_fpga();
Fabio Estevambbb43362011-09-19 10:59:46 -0300256 imx31_add_imx2_wdt(NULL);
Ilya Yanok148854c2009-03-11 03:22:00 +0300257}
258
259static void __init qong_timer_init(void)
260{
261 mx31_clocks_init(26000000);
262}
263
264static struct sys_timer qong_timer = {
265 .init = qong_timer_init,
266};
267
Ilya Yanok148854c2009-03-11 03:22:00 +0300268MACHINE_START(QONG, "Dave/DENX QongEVB-LITE")
269 /* Maintainer: DENX Software Engineering GmbH */
Nicolas Pitredc8f1902011-07-05 22:38:12 -0400270 .atag_offset = 0x100,
Uwe Kleine-König97976e22011-02-07 16:35:20 +0100271 .map_io = mx31_map_io,
272 .init_early = imx31_init_early,
273 .init_irq = mx31_init_irq,
Sascha Hauerffa2ea32011-09-20 14:31:24 +0200274 .handle_irq = imx31_handle_irq,
Uwe Kleine-König97976e22011-02-07 16:35:20 +0100275 .timer = &qong_timer,
Uwe Kleine-Könige134fb22011-02-11 10:23:19 +0100276 .init_machine = qong_init,
Russell King65ea7882011-11-06 17:12:08 +0000277 .restart = mxc_restart,
Ilya Yanok148854c2009-03-11 03:22:00 +0300278MACHINE_END