blob: 41a00f57e5da67d05651052c2aae9e207b96b944 [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001/* linux/arch/arm/mach-s3c2440/mach-osiris.c
Ben Dooks110d3222006-03-20 17:10:02 +00002 *
Ben Dooksf3374222008-07-03 11:24:40 +01003 * Copyright (c) 2005,2008 Simtec Electronics
Ben Dooks110d3222006-03-20 17:10:02 +00004 * http://armlinux.simtec.co.uk/
5 * Ben Dooks <ben@simtec.co.uk>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10*/
11
12#include <linux/kernel.h>
13#include <linux/types.h>
14#include <linux/interrupt.h>
15#include <linux/list.h>
16#include <linux/timer.h>
17#include <linux/init.h>
18#include <linux/device.h>
Ben Dooks5698bd22007-06-06 10:36:09 +010019#include <linux/sysdev.h>
Ben Dooksb6d1f542006-12-17 23:22:26 +010020#include <linux/serial_core.h>
Ben Dooksd96a9802008-04-16 00:12:39 +010021#include <linux/clk.h>
Ben Dooksf3374222008-07-03 11:24:40 +010022#include <linux/i2c.h>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Ben Dooks110d3222006-03-20 17:10:02 +000024
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27#include <asm/mach/irq.h>
28
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/osiris-map.h>
30#include <mach/osiris-cpld.h>
Ben Dooks110d3222006-03-20 17:10:02 +000031
Russell Kinga09e64f2008-08-05 16:14:15 +010032#include <mach/hardware.h>
Ben Dooks110d3222006-03-20 17:10:02 +000033#include <asm/irq.h>
34#include <asm/mach-types.h>
35
Ben Dooksa2b7ba92008-10-07 22:26:09 +010036#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/regs-gpio.h>
38#include <mach/regs-mem.h>
39#include <mach/regs-lcd.h>
Ben Dooks7926b5a2008-10-30 10:14:35 +000040#include <plat/nand.h>
Ben Dooks3e1b7762008-10-31 16:14:40 +000041#include <plat/iic.h>
Ben Dooks110d3222006-03-20 17:10:02 +000042
43#include <linux/mtd/mtd.h>
44#include <linux/mtd/nand.h>
45#include <linux/mtd/nand_ecc.h>
46#include <linux/mtd/partitions.h>
47
Ben Dooksd5120ae2008-10-07 23:09:51 +010048#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010049#include <plat/devs.h>
50#include <plat/cpu.h>
Ben Dooks110d3222006-03-20 17:10:02 +000051
Simon Arlott6cbdc8c2007-05-11 20:40:30 +010052/* onboard perihperal map */
Ben Dooks110d3222006-03-20 17:10:02 +000053
54static struct map_desc osiris_iodesc[] __initdata = {
55 /* ISA IO areas (may be over-written later) */
56
57 {
58 .virtual = (u32)S3C24XX_VA_ISA_BYTE,
59 .pfn = __phys_to_pfn(S3C2410_CS5),
60 .length = SZ_16M,
61 .type = MT_DEVICE,
62 }, {
63 .virtual = (u32)S3C24XX_VA_ISA_WORD,
64 .pfn = __phys_to_pfn(S3C2410_CS5),
65 .length = SZ_16M,
66 .type = MT_DEVICE,
67 },
68
69 /* CPLD control registers */
70
71 {
Ben Dooksc362aec2007-06-06 09:51:51 +010072 .virtual = (u32)OSIRIS_VA_CTRL0,
73 .pfn = __phys_to_pfn(OSIRIS_PA_CTRL0),
74 .length = SZ_16K,
75 .type = MT_DEVICE,
76 }, {
Ben Dooks110d3222006-03-20 17:10:02 +000077 .virtual = (u32)OSIRIS_VA_CTRL1,
78 .pfn = __phys_to_pfn(OSIRIS_PA_CTRL1),
79 .length = SZ_16K,
Ben Dooks705630d2006-07-26 20:16:39 +010080 .type = MT_DEVICE,
Ben Dooks110d3222006-03-20 17:10:02 +000081 }, {
82 .virtual = (u32)OSIRIS_VA_CTRL2,
83 .pfn = __phys_to_pfn(OSIRIS_PA_CTRL2),
84 .length = SZ_16K,
Ben Dooks705630d2006-07-26 20:16:39 +010085 .type = MT_DEVICE,
Ben Dooksc362aec2007-06-06 09:51:51 +010086 }, {
87 .virtual = (u32)OSIRIS_VA_IDREG,
88 .pfn = __phys_to_pfn(OSIRIS_PA_IDREG),
89 .length = SZ_16K,
90 .type = MT_DEVICE,
Ben Dooks110d3222006-03-20 17:10:02 +000091 },
92};
93
94#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
95#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
96#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
97
98static struct s3c24xx_uart_clksrc osiris_serial_clocks[] = {
99 [0] = {
100 .name = "uclk",
101 .divisor = 1,
102 .min_baud = 0,
103 .max_baud = 0,
104 },
105 [1] = {
106 .name = "pclk",
107 .divisor = 1,
108 .min_baud = 0,
Ben Dooks705630d2006-07-26 20:16:39 +0100109 .max_baud = 0,
Ben Dooks110d3222006-03-20 17:10:02 +0000110 }
111};
112
Ben Dooks66a9b492006-06-18 23:04:05 +0100113static struct s3c2410_uartcfg osiris_uartcfgs[] __initdata = {
Ben Dooks110d3222006-03-20 17:10:02 +0000114 [0] = {
115 .hwport = 0,
116 .flags = 0,
117 .ucon = UCON,
118 .ulcon = ULCON,
119 .ufcon = UFCON,
120 .clocks = osiris_serial_clocks,
Ben Dooks705630d2006-07-26 20:16:39 +0100121 .clocks_size = ARRAY_SIZE(osiris_serial_clocks),
Ben Dooks110d3222006-03-20 17:10:02 +0000122 },
123 [1] = {
Ben Dookse2e58102006-06-18 16:21:50 +0100124 .hwport = 1,
Ben Dooks110d3222006-03-20 17:10:02 +0000125 .flags = 0,
126 .ucon = UCON,
127 .ulcon = ULCON,
128 .ufcon = UFCON,
129 .clocks = osiris_serial_clocks,
Ben Dooks705630d2006-07-26 20:16:39 +0100130 .clocks_size = ARRAY_SIZE(osiris_serial_clocks),
Ben Dooks110d3222006-03-20 17:10:02 +0000131 },
Ben Dooksca7aa4d2006-12-07 20:49:01 +0100132 [2] = {
133 .hwport = 2,
134 .flags = 0,
135 .ucon = UCON,
136 .ulcon = ULCON,
137 .ufcon = UFCON,
138 .clocks = osiris_serial_clocks,
139 .clocks_size = ARRAY_SIZE(osiris_serial_clocks),
140 }
Ben Dooks110d3222006-03-20 17:10:02 +0000141};
142
143/* NAND Flash on Osiris board */
144
145static int external_map[] = { 2 };
146static int chip0_map[] = { 0 };
147static int chip1_map[] = { 1 };
148
Ben Dooksda956fd2006-03-20 21:02:39 +0000149static struct mtd_partition osiris_default_nand_part[] = {
Ben Dooks110d3222006-03-20 17:10:02 +0000150 [0] = {
151 .name = "Boot Agent",
152 .size = SZ_16K,
Ben Dooks705630d2006-07-26 20:16:39 +0100153 .offset = 0,
Ben Dooks110d3222006-03-20 17:10:02 +0000154 },
155 [1] = {
156 .name = "/boot",
157 .size = SZ_4M - SZ_16K,
158 .offset = SZ_16K,
159 },
160 [2] = {
161 .name = "user1",
162 .offset = SZ_4M,
163 .size = SZ_32M - SZ_4M,
164 },
165 [3] = {
166 .name = "user2",
167 .offset = SZ_32M,
168 .size = MTDPART_SIZ_FULL,
169 }
170};
171
Ben Dooks3c3e69c2007-07-12 10:57:37 +0100172static struct mtd_partition osiris_default_nand_part_large[] = {
173 [0] = {
174 .name = "Boot Agent",
175 .size = SZ_128K,
176 .offset = 0,
177 },
178 [1] = {
179 .name = "/boot",
180 .size = SZ_4M - SZ_128K,
181 .offset = SZ_128K,
182 },
183 [2] = {
184 .name = "user1",
185 .offset = SZ_4M,
186 .size = SZ_32M - SZ_4M,
187 },
188 [3] = {
189 .name = "user2",
190 .offset = SZ_32M,
191 .size = MTDPART_SIZ_FULL,
192 }
193};
194
Ben Dooks110d3222006-03-20 17:10:02 +0000195/* the Osiris has 3 selectable slots for nand-flash, the two
196 * on-board chip areas, as well as the external slot.
197 *
198 * Note, there is no current hot-plug support for the External
199 * socket.
200*/
201
202static struct s3c2410_nand_set osiris_nand_sets[] = {
203 [1] = {
204 .name = "External",
205 .nr_chips = 1,
206 .nr_map = external_map,
207 .nr_partitions = ARRAY_SIZE(osiris_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100208 .partitions = osiris_default_nand_part,
Ben Dooks110d3222006-03-20 17:10:02 +0000209 },
210 [0] = {
211 .name = "chip0",
212 .nr_chips = 1,
213 .nr_map = chip0_map,
214 .nr_partitions = ARRAY_SIZE(osiris_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100215 .partitions = osiris_default_nand_part,
Ben Dooks110d3222006-03-20 17:10:02 +0000216 },
217 [2] = {
218 .name = "chip1",
219 .nr_chips = 1,
220 .nr_map = chip1_map,
221 .nr_partitions = ARRAY_SIZE(osiris_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100222 .partitions = osiris_default_nand_part,
Ben Dooks110d3222006-03-20 17:10:02 +0000223 },
224};
225
226static void osiris_nand_select(struct s3c2410_nand_set *set, int slot)
227{
228 unsigned int tmp;
229
230 slot = set->nr_map[slot] & 3;
231
232 pr_debug("osiris_nand: selecting slot %d (set %p,%p)\n",
233 slot, set, set->nr_map);
234
Ben Dooksc362aec2007-06-06 09:51:51 +0100235 tmp = __raw_readb(OSIRIS_VA_CTRL0);
236 tmp &= ~OSIRIS_CTRL0_NANDSEL;
Ben Dooks110d3222006-03-20 17:10:02 +0000237 tmp |= slot;
238
Ben Dooksc362aec2007-06-06 09:51:51 +0100239 pr_debug("osiris_nand: ctrl0 now %02x\n", tmp);
Ben Dooks110d3222006-03-20 17:10:02 +0000240
Ben Dooksc362aec2007-06-06 09:51:51 +0100241 __raw_writeb(tmp, OSIRIS_VA_CTRL0);
Ben Dooks110d3222006-03-20 17:10:02 +0000242}
243
244static struct s3c2410_platform_nand osiris_nand_info = {
245 .tacls = 25,
246 .twrph0 = 60,
247 .twrph1 = 60,
248 .nr_sets = ARRAY_SIZE(osiris_nand_sets),
249 .sets = osiris_nand_sets,
250 .select_chip = osiris_nand_select,
251};
252
253/* PCMCIA control and configuration */
254
255static struct resource osiris_pcmcia_resource[] = {
256 [0] = {
257 .start = 0x0f000000,
258 .end = 0x0f100000,
259 .flags = IORESOURCE_MEM,
260 },
261 [1] = {
262 .start = 0x0c000000,
263 .end = 0x0c100000,
264 .flags = IORESOURCE_MEM,
265 }
266};
267
268static struct platform_device osiris_pcmcia = {
269 .name = "osiris-pcmcia",
270 .id = -1,
271 .num_resources = ARRAY_SIZE(osiris_pcmcia_resource),
272 .resource = osiris_pcmcia_resource,
273};
274
Ben Dooks5698bd22007-06-06 10:36:09 +0100275/* Osiris power management device */
276
277#ifdef CONFIG_PM
278static unsigned char pm_osiris_ctrl0;
279
280static int osiris_pm_suspend(struct sys_device *sd, pm_message_t state)
281{
Ben Dooks28047ec2007-10-04 23:16:42 +0100282 unsigned int tmp;
283
Ben Dooks5698bd22007-06-06 10:36:09 +0100284 pm_osiris_ctrl0 = __raw_readb(OSIRIS_VA_CTRL0);
Ben Dooks28047ec2007-10-04 23:16:42 +0100285 tmp = pm_osiris_ctrl0 & ~OSIRIS_CTRL0_NANDSEL;
286
287 /* ensure correct NAND slot is selected on resume */
288 if ((pm_osiris_ctrl0 & OSIRIS_CTRL0_BOOT_INT) == 0)
289 tmp |= 2;
290
291 __raw_writeb(tmp, OSIRIS_VA_CTRL0);
292
Ben Dooks4afcdda2007-10-04 23:18:08 +0100293 /* ensure that an nRESET is not generated on resume. */
294 s3c2410_gpio_setpin(S3C2410_GPA21, 1);
295 s3c2410_gpio_cfgpin(S3C2410_GPA21, S3C2410_GPA21_OUT);
296
Ben Dooks5698bd22007-06-06 10:36:09 +0100297 return 0;
298}
299
300static int osiris_pm_resume(struct sys_device *sd)
301{
302 if (pm_osiris_ctrl0 & OSIRIS_CTRL0_FIX8)
303 __raw_writeb(OSIRIS_CTRL1_FIX8, OSIRIS_VA_CTRL1);
304
Ben Dooks28047ec2007-10-04 23:16:42 +0100305 __raw_writeb(pm_osiris_ctrl0, OSIRIS_VA_CTRL0);
306
Ben Dooks4afcdda2007-10-04 23:18:08 +0100307 s3c2410_gpio_cfgpin(S3C2410_GPA21, S3C2410_GPA21_nRSTOUT);
308
Ben Dooks5698bd22007-06-06 10:36:09 +0100309 return 0;
310}
311
312#else
313#define osiris_pm_suspend NULL
314#define osiris_pm_resume NULL
315#endif
316
317static struct sysdev_class osiris_pm_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100318 .name = "mach-osiris",
Ben Dooks5698bd22007-06-06 10:36:09 +0100319 .suspend = osiris_pm_suspend,
320 .resume = osiris_pm_resume,
321};
322
323static struct sys_device osiris_pm_sysdev = {
324 .cls = &osiris_pm_sysclass,
325};
326
Ben Dooksf3374222008-07-03 11:24:40 +0100327/* I2C devices fitted. */
328
329static struct i2c_board_info osiris_i2c_devs[] __initdata = {
330 {
331 I2C_BOARD_INFO("tps65011", 0x48),
332 .irq = IRQ_EINT20,
333 },
334};
335
Ben Dooks110d3222006-03-20 17:10:02 +0000336/* Standard Osiris devices */
337
338static struct platform_device *osiris_devices[] __initdata = {
Ben Dooks3e1b7762008-10-31 16:14:40 +0000339 &s3c_device_i2c0,
Ben Dooks55ba86b2007-06-06 09:53:00 +0100340 &s3c_device_wdt,
Ben Dooks110d3222006-03-20 17:10:02 +0000341 &s3c_device_nand,
342 &osiris_pcmcia,
343};
344
Ben Dooks2bc75092008-07-15 17:17:48 +0100345static struct clk *osiris_clocks[] __initdata = {
Ben Dooks110d3222006-03-20 17:10:02 +0000346 &s3c24xx_dclk0,
347 &s3c24xx_dclk1,
348 &s3c24xx_clkout0,
349 &s3c24xx_clkout1,
350 &s3c24xx_uclk,
351};
352
Ben Dooksda956fd2006-03-20 21:02:39 +0000353static void __init osiris_map_io(void)
Ben Dooks110d3222006-03-20 17:10:02 +0000354{
Ben Dooksda956fd2006-03-20 21:02:39 +0000355 unsigned long flags;
356
Ben Dooks110d3222006-03-20 17:10:02 +0000357 /* initialise the clocks */
358
Ben Dooksd96a9802008-04-16 00:12:39 +0100359 s3c24xx_dclk0.parent = &clk_upll;
Ben Dooks110d3222006-03-20 17:10:02 +0000360 s3c24xx_dclk0.rate = 12*1000*1000;
361
Ben Dooksd96a9802008-04-16 00:12:39 +0100362 s3c24xx_dclk1.parent = &clk_upll;
Ben Dooks110d3222006-03-20 17:10:02 +0000363 s3c24xx_dclk1.rate = 24*1000*1000;
364
365 s3c24xx_clkout0.parent = &s3c24xx_dclk0;
366 s3c24xx_clkout1.parent = &s3c24xx_dclk1;
367
368 s3c24xx_uclk.parent = &s3c24xx_clkout1;
369
Ben Dooksce89c202007-04-20 11:15:27 +0100370 s3c24xx_register_clocks(osiris_clocks, ARRAY_SIZE(osiris_clocks));
371
Ben Dooks110d3222006-03-20 17:10:02 +0000372 s3c_device_nand.dev.platform_data = &osiris_nand_info;
373
374 s3c24xx_init_io(osiris_iodesc, ARRAY_SIZE(osiris_iodesc));
375 s3c24xx_init_clocks(0);
376 s3c24xx_init_uarts(osiris_uartcfgs, ARRAY_SIZE(osiris_uartcfgs));
Ben Dooks110d3222006-03-20 17:10:02 +0000377
Ben Dooks3c3e69c2007-07-12 10:57:37 +0100378 /* check for the newer revision boards with large page nand */
379
380 if ((__raw_readb(OSIRIS_VA_IDREG) & OSIRIS_ID_REVMASK) >= 4) {
381 printk(KERN_INFO "OSIRIS-B detected (revision %d)\n",
382 __raw_readb(OSIRIS_VA_IDREG) & OSIRIS_ID_REVMASK);
383 osiris_nand_sets[0].partitions = osiris_default_nand_part_large;
384 osiris_nand_sets[0].nr_partitions = ARRAY_SIZE(osiris_default_nand_part_large);
385 } else {
386 /* write-protect line to the NAND */
387 s3c2410_gpio_setpin(S3C2410_GPA0, 1);
388 }
389
Ben Dooks110d3222006-03-20 17:10:02 +0000390 /* fix bus configuration (nBE settings wrong on ABLE pre v2.20) */
Ben Dooksda956fd2006-03-20 21:02:39 +0000391
392 local_irq_save(flags);
Ben Dooks110d3222006-03-20 17:10:02 +0000393 __raw_writel(__raw_readl(S3C2410_BWSCON) | S3C2410_BWSCON_ST1 | S3C2410_BWSCON_ST2 | S3C2410_BWSCON_ST3 | S3C2410_BWSCON_ST4 | S3C2410_BWSCON_ST5, S3C2410_BWSCON);
Ben Dooksda956fd2006-03-20 21:02:39 +0000394 local_irq_restore(flags);
Ben Dooks110d3222006-03-20 17:10:02 +0000395}
396
Ben Dooks57e51712007-04-20 11:19:16 +0100397static void __init osiris_init(void)
398{
Ben Dooks5698bd22007-06-06 10:36:09 +0100399 sysdev_class_register(&osiris_pm_sysclass);
400 sysdev_register(&osiris_pm_sysdev);
401
Ben Dooks3e1b7762008-10-31 16:14:40 +0000402 s3c_i2c0_set_platdata(NULL);
403
Ben Dooksf3374222008-07-03 11:24:40 +0100404 i2c_register_board_info(0, osiris_i2c_devs,
405 ARRAY_SIZE(osiris_i2c_devs));
406
Ben Dooks57e51712007-04-20 11:19:16 +0100407 platform_add_devices(osiris_devices, ARRAY_SIZE(osiris_devices));
408};
409
Ben Dooks110d3222006-03-20 17:10:02 +0000410MACHINE_START(OSIRIS, "Simtec-OSIRIS")
411 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
Ben Dooks110d3222006-03-20 17:10:02 +0000412 .phys_io = S3C2410_PA_UART,
413 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
414 .boot_params = S3C2410_SDRAM_PA + 0x100,
415 .map_io = osiris_map_io,
Ben Dooks57e51712007-04-20 11:19:16 +0100416 .init_machine = osiris_init,
Ben Dooks110d3222006-03-20 17:10:02 +0000417 .init_irq = s3c24xx_init_irq,
Ben Dooks5698bd22007-06-06 10:36:09 +0100418 .init_machine = osiris_init,
Ben Dooks110d3222006-03-20 17:10:02 +0000419 .timer = &s3c24xx_timer,
420MACHINE_END