blob: 284ea1f4420507da064d339c4357e864f9d0b1c5 [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001/* linux/arch/arm/mach-s3c2410/mach-amlm5900.c
David Andersda56c942006-09-21 22:57:12 +01002 *
3 * linux/arch/arm/mach-s3c2410/mach-amlm5900.c
4 *
5 * Copyright (c) 2006 American Microsystems Limited
6 * David Anders <danders@amltd.com>
7
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 * @History:
24 * derived from linux/arch/arm/mach-s3c2410/mach-bast.c, written by
25 * Ben Dooks <ben@simtec.co.uk>
26 *
27 ***********************************************************************/
28
29#include <linux/kernel.h>
30#include <linux/types.h>
31#include <linux/interrupt.h>
32#include <linux/list.h>
33#include <linux/timer.h>
34#include <linux/init.h>
Ben Dooksec976d62009-05-13 22:52:24 +010035#include <linux/gpio.h>
David Andersda56c942006-09-21 22:57:12 +010036#include <linux/device.h>
37#include <linux/platform_device.h>
38#include <linux/proc_fs.h>
Ben Dooks1b8fc182007-02-11 18:56:03 +010039#include <linux/serial_core.h>
Russell Kingfced80c2008-09-06 12:10:45 +010040#include <linux/io.h>
David Andersda56c942006-09-21 22:57:12 +010041
42#include <asm/mach/arch.h>
43#include <asm/mach/map.h>
44#include <asm/mach/irq.h>
45#include <asm/mach/flash.h>
46
Russell Kinga09e64f2008-08-05 16:14:15 +010047#include <mach/hardware.h>
David Andersda56c942006-09-21 22:57:12 +010048#include <asm/irq.h>
49#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010050#include <mach/fb.h>
David Andersda56c942006-09-21 22:57:12 +010051
Ben Dooksa2b7ba92008-10-07 22:26:09 +010052#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010053#include <mach/regs-lcd.h>
54#include <mach/regs-gpio.h>
Linus Walleijb0161ca2014-01-14 14:24:24 +010055#include <mach/gpio-samsung.h>
David Andersda56c942006-09-21 22:57:12 +010056
Arnd Bergmann436d42c2012-08-24 15:22:12 +020057#include <linux/platform_data/i2c-s3c2410.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010058#include <plat/devs.h>
59#include <plat/cpu.h>
Ben Dooks40b956f2010-05-04 14:38:49 +090060#include <plat/gpio-cfg.h>
David Andersda56c942006-09-21 22:57:12 +010061
David Andersda56c942006-09-21 22:57:12 +010062#include <linux/mtd/mtd.h>
63#include <linux/mtd/partitions.h>
64#include <linux/mtd/map.h>
65#include <linux/mtd/physmap.h>
66
Romain Naour7f78b6e2013-01-09 18:47:04 -080067#include <plat/samsung-time.h>
68
Kukjin Kimb27b0722012-01-03 14:02:03 +010069#include "common.h"
70
Tushar Behera7d4aa902012-05-12 16:12:20 +090071static struct resource amlm5900_nor_resource =
72 DEFINE_RES_MEM(0x00000000, SZ_16M);
David Andersda56c942006-09-21 22:57:12 +010073
74static struct mtd_partition amlm5900_mtd_partitions[] = {
75 {
76 .name = "System",
77 .size = 0x240000,
78 .offset = 0,
79 .mask_flags = MTD_WRITEABLE, /* force read-only */
80 }, {
81 .name = "Kernel",
82 .size = 0x100000,
83 .offset = MTDPART_OFS_APPEND,
84 }, {
85 .name = "Ramdisk",
86 .size = 0x300000,
87 .offset = MTDPART_OFS_APPEND,
88 }, {
89 .name = "JFFS2",
90 .size = 0x9A0000,
91 .offset = MTDPART_OFS_APPEND,
92 }, {
93 .name = "Settings",
94 .size = MTDPART_SIZ_FULL,
95 .offset = MTDPART_OFS_APPEND,
96 }
97};
98
99static struct physmap_flash_data amlm5900_flash_data = {
100 .width = 2,
101 .parts = amlm5900_mtd_partitions,
102 .nr_parts = ARRAY_SIZE(amlm5900_mtd_partitions),
103};
104
105static struct platform_device amlm5900_device_nor = {
106 .name = "physmap-flash",
107 .id = 0,
108 .dev = {
109 .platform_data = &amlm5900_flash_data,
110 },
111 .num_resources = 1,
112 .resource = &amlm5900_nor_resource,
113};
David Andersda56c942006-09-21 22:57:12 +0100114
115static struct map_desc amlm5900_iodesc[] __initdata = {
David Andersda56c942006-09-21 22:57:12 +0100116};
117
118#define UCON S3C2410_UCON_DEFAULT
119#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
120#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
121
122static struct s3c2410_uartcfg amlm5900_uartcfgs[] = {
123 [0] = {
124 .hwport = 0,
125 .flags = 0,
126 .ucon = UCON,
127 .ulcon = ULCON,
128 .ufcon = UFCON,
129 },
130 [1] = {
131 .hwport = 1,
132 .flags = 0,
133 .ucon = UCON,
134 .ulcon = ULCON,
135 .ufcon = UFCON,
136 },
137 [2] = {
138 .hwport = 2,
139 .flags = 0,
140 .ucon = UCON,
141 .ulcon = ULCON,
142 .ufcon = UFCON,
143 }
144};
145
146
147static struct platform_device *amlm5900_devices[] __initdata = {
148#ifdef CONFIG_FB_S3C2410
149 &s3c_device_lcd,
150#endif
151 &s3c_device_adc,
152 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000153 &s3c_device_i2c0,
Ben Dooksb8132482009-11-23 00:13:39 +0000154 &s3c_device_ohci,
David Andersda56c942006-09-21 22:57:12 +0100155 &s3c_device_rtc,
156 &s3c_device_usbgadget,
157 &s3c_device_sdi,
David Andersda56c942006-09-21 22:57:12 +0100158 &amlm5900_device_nor,
David Andersda56c942006-09-21 22:57:12 +0100159};
160
Ben Dookse0787612007-05-28 18:57:31 +0100161static void __init amlm5900_map_io(void)
David Andersda56c942006-09-21 22:57:12 +0100162{
163 s3c24xx_init_io(amlm5900_iodesc, ARRAY_SIZE(amlm5900_iodesc));
164 s3c24xx_init_clocks(0);
165 s3c24xx_init_uarts(amlm5900_uartcfgs, ARRAY_SIZE(amlm5900_uartcfgs));
Romain Naour7f78b6e2013-01-09 18:47:04 -0800166 samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4);
David Andersda56c942006-09-21 22:57:12 +0100167}
168
169#ifdef CONFIG_FB_S3C2410
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700170static struct s3c2410fb_display __initdata amlm5900_lcd_info = {
David Andersda56c942006-09-21 22:57:12 +0100171 .width = 160,
172 .height = 160,
173
Krzysztof Helt1f411532007-10-16 01:28:57 -0700174 .type = S3C2410_LCDCON1_STN4,
175
Krzysztof Helt69816692007-10-16 01:29:06 -0700176 .pixclock = 680000, /* HCLK = 100MHz */
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700177 .xres = 160,
178 .yres = 160,
179 .bpp = 4,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700180 .left_margin = 1 << (4 + 3),
181 .right_margin = 8 << 3,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700182 .hsync_len = 48,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700183 .upper_margin = 0,
184 .lower_margin = 0,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700185
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700186 .lcdcon5 = 0x00000001,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700187};
188
189static struct s3c2410fb_mach_info __initdata amlm5900_fb_info = {
190
191 .displays = &amlm5900_lcd_info,
192 .num_displays = 1,
193 .default_display = 0,
194
David Andersda56c942006-09-21 22:57:12 +0100195 .gpccon = 0xaaaaaaaa,
196 .gpccon_mask = 0xffffffff,
197 .gpcup = 0x0000ffff,
198 .gpcup_mask = 0xffffffff,
199
200 .gpdcon = 0xaaaaaaaa,
201 .gpdcon_mask = 0xffffffff,
202 .gpdup = 0x0000ffff,
203 .gpdup_mask = 0xffffffff,
David Andersda56c942006-09-21 22:57:12 +0100204};
205#endif
206
David Anders26f90812006-09-26 17:46:00 +0100207static irqreturn_t
Linus Torvalds0cd61b62006-10-06 10:53:39 -0700208amlm5900_wake_interrupt(int irq, void *ignored)
David Anders26f90812006-09-26 17:46:00 +0100209{
210 return IRQ_HANDLED;
211}
212
213static void amlm5900_init_pm(void)
214{
215 int ret = 0;
216
217 ret = request_irq(IRQ_EINT9, &amlm5900_wake_interrupt,
218 IRQF_TRIGGER_RISING | IRQF_SHARED,
219 "amlm5900_wakeup", &amlm5900_wake_interrupt);
220 if (ret != 0) {
221 printk(KERN_ERR "AML-M5900: no wakeup irq, %d?\n", ret);
222 } else {
223 enable_irq_wake(IRQ_EINT9);
224 /* configure the suspend/resume status pin */
Ben Dooks40b956f2010-05-04 14:38:49 +0900225 s3c_gpio_cfgpin(S3C2410_GPF(2), S3C2410_GPIO_OUTPUT);
Ben Dooksfb378742010-05-06 11:03:50 +0900226 s3c_gpio_setpull(S3C2410_GPF(2), S3C_GPIO_PULL_UP);
David Anders26f90812006-09-26 17:46:00 +0100227 }
228}
David Andersda56c942006-09-21 22:57:12 +0100229static void __init amlm5900_init(void)
230{
David Anders26f90812006-09-26 17:46:00 +0100231 amlm5900_init_pm();
David Andersda56c942006-09-21 22:57:12 +0100232#ifdef CONFIG_FB_S3C2410
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700233 s3c24xx_fb_set_platdata(&amlm5900_fb_info);
David Andersda56c942006-09-21 22:57:12 +0100234#endif
Ben Dooks3e1b7762008-10-31 16:14:40 +0000235 s3c_i2c0_set_platdata(NULL);
Ben Dooks57e51712007-04-20 11:19:16 +0100236 platform_add_devices(amlm5900_devices, ARRAY_SIZE(amlm5900_devices));
David Andersda56c942006-09-21 22:57:12 +0100237}
238
239MACHINE_START(AML_M5900, "AML_M5900")
Nicolas Pitre69d50712011-07-05 22:38:17 -0400240 .atag_offset = 0x100,
David Andersda56c942006-09-21 22:57:12 +0100241 .map_io = amlm5900_map_io,
Heiko Stuebnerf182aa12013-03-07 12:38:19 +0900242 .init_irq = s3c2410_init_irq,
David Andersda56c942006-09-21 22:57:12 +0100243 .init_machine = amlm5900_init,
Romain Naour7f78b6e2013-01-09 18:47:04 -0800244 .init_time = samsung_timer_init,
Kukjin Kimb27b0722012-01-03 14:02:03 +0100245 .restart = s3c2410_restart,
David Andersda56c942006-09-21 22:57:12 +0100246MACHINE_END