]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/mach-s3c64xx/mach-mini6410.c
Merge tag 'cleanup-initcall' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[karo-tx-linux.git] / arch / arm / mach-s3c64xx / mach-mini6410.c
1 /* linux/arch/arm/mach-s3c64xx/mach-mini6410.c
2  *
3  * Copyright 2010 Darius Augulis <augulis.darius@gmail.com>
4  * Copyright 2008 Openmoko, Inc.
5  * Copyright 2008 Simtec Electronics
6  *      Ben Dooks <ben@simtec.co.uk>
7  *      http://armlinux.simtec.co.uk/
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  *
13 */
14
15 #include <linux/init.h>
16 #include <linux/interrupt.h>
17 #include <linux/fb.h>
18 #include <linux/gpio.h>
19 #include <linux/kernel.h>
20 #include <linux/list.h>
21 #include <linux/dm9000.h>
22 #include <linux/mtd/mtd.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/serial_core.h>
25 #include <linux/types.h>
26
27 #include <asm/hardware/vic.h>
28 #include <asm/mach-types.h>
29 #include <asm/mach/arch.h>
30 #include <asm/mach/map.h>
31
32 #include <mach/map.h>
33 #include <mach/regs-gpio.h>
34 #include <mach/regs-modem.h>
35 #include <mach/regs-srom.h>
36
37 #include <plat/adc.h>
38 #include <plat/cpu.h>
39 #include <plat/devs.h>
40 #include <plat/fb.h>
41 #include <plat/nand.h>
42 #include <plat/regs-serial.h>
43 #include <plat/ts.h>
44 #include <plat/regs-fb-v4.h>
45
46 #include <video/platform_lcd.h>
47
48 #include "common.h"
49
50 #define UCON S3C2410_UCON_DEFAULT
51 #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB)
52 #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE)
53
54 static struct s3c2410_uartcfg mini6410_uartcfgs[] __initdata = {
55         [0] = {
56                 .hwport = 0,
57                 .flags  = 0,
58                 .ucon   = UCON,
59                 .ulcon  = ULCON,
60                 .ufcon  = UFCON,
61         },
62         [1] = {
63                 .hwport = 1,
64                 .flags  = 0,
65                 .ucon   = UCON,
66                 .ulcon  = ULCON,
67                 .ufcon  = UFCON,
68         },
69         [2] = {
70                 .hwport = 2,
71                 .flags  = 0,
72                 .ucon   = UCON,
73                 .ulcon  = ULCON,
74                 .ufcon  = UFCON,
75         },
76         [3] = {
77                 .hwport = 3,
78                 .flags  = 0,
79                 .ucon   = UCON,
80                 .ulcon  = ULCON,
81                 .ufcon  = UFCON,
82         },
83 };
84
85 /* DM9000AEP 10/100 ethernet controller */
86
87 static struct resource mini6410_dm9k_resource[] = {
88         [0] = DEFINE_RES_MEM(S3C64XX_PA_XM0CSN1, 2),
89         [1] = DEFINE_RES_MEM(S3C64XX_PA_XM0CSN1 + 4, 2),
90         [2] = DEFINE_RES_NAMED(S3C_EINT(7), 1, NULL, IORESOURCE_IRQ \
91                                         | IORESOURCE_IRQ_HIGHLEVEL),
92 };
93
94 static struct dm9000_plat_data mini6410_dm9k_pdata = {
95         .flags          = (DM9000_PLATF_16BITONLY | DM9000_PLATF_NO_EEPROM),
96 };
97
98 static struct platform_device mini6410_device_eth = {
99         .name           = "dm9000",
100         .id             = -1,
101         .num_resources  = ARRAY_SIZE(mini6410_dm9k_resource),
102         .resource       = mini6410_dm9k_resource,
103         .dev            = {
104                 .platform_data  = &mini6410_dm9k_pdata,
105         },
106 };
107
108 static struct mtd_partition mini6410_nand_part[] = {
109         [0] = {
110                 .name   = "uboot",
111                 .size   = SZ_1M,
112                 .offset = 0,
113         },
114         [1] = {
115                 .name   = "kernel",
116                 .size   = SZ_2M,
117                 .offset = SZ_1M,
118         },
119         [2] = {
120                 .name   = "rootfs",
121                 .size   = MTDPART_SIZ_FULL,
122                 .offset = SZ_1M + SZ_2M,
123         },
124 };
125
126 static struct s3c2410_nand_set mini6410_nand_sets[] = {
127         [0] = {
128                 .name           = "nand",
129                 .nr_chips       = 1,
130                 .nr_partitions  = ARRAY_SIZE(mini6410_nand_part),
131                 .partitions     = mini6410_nand_part,
132         },
133 };
134
135 static struct s3c2410_platform_nand mini6410_nand_info = {
136         .tacls          = 25,
137         .twrph0         = 55,
138         .twrph1         = 40,
139         .nr_sets        = ARRAY_SIZE(mini6410_nand_sets),
140         .sets           = mini6410_nand_sets,
141 };
142
143 static struct s3c_fb_pd_win mini6410_fb_win[] = {
144         {
145                 .win_mode       = {     /* 4.3" 480x272 */
146                         .left_margin    = 3,
147                         .right_margin   = 2,
148                         .upper_margin   = 1,
149                         .lower_margin   = 1,
150                         .hsync_len      = 40,
151                         .vsync_len      = 1,
152                         .xres           = 480,
153                         .yres           = 272,
154                 },
155                 .max_bpp        = 32,
156                 .default_bpp    = 16,
157         }, {
158                 .win_mode       = {     /* 7.0" 800x480 */
159                         .left_margin    = 8,
160                         .right_margin   = 13,
161                         .upper_margin   = 7,
162                         .lower_margin   = 5,
163                         .hsync_len      = 3,
164                         .vsync_len      = 1,
165                         .xres           = 800,
166                         .yres           = 480,
167                 },
168                 .max_bpp        = 32,
169                 .default_bpp    = 16,
170         },
171 };
172
173 static struct s3c_fb_platdata mini6410_lcd_pdata __initdata = {
174         .setup_gpio     = s3c64xx_fb_gpio_setup_24bpp,
175         .win[0]         = &mini6410_fb_win[0],
176         .vidcon0        = VIDCON0_VIDOUT_RGB | VIDCON0_PNRMODE_RGB,
177         .vidcon1        = VIDCON1_INV_HSYNC | VIDCON1_INV_VSYNC,
178 };
179
180 static void mini6410_lcd_power_set(struct plat_lcd_data *pd,
181                                    unsigned int power)
182 {
183         if (power)
184                 gpio_direction_output(S3C64XX_GPE(0), 1);
185         else
186                 gpio_direction_output(S3C64XX_GPE(0), 0);
187 }
188
189 static struct plat_lcd_data mini6410_lcd_power_data = {
190         .set_power      = mini6410_lcd_power_set,
191 };
192
193 static struct platform_device mini6410_lcd_powerdev = {
194         .name                   = "platform-lcd",
195         .dev.parent             = &s3c_device_fb.dev,
196         .dev.platform_data      = &mini6410_lcd_power_data,
197 };
198
199 static struct platform_device *mini6410_devices[] __initdata = {
200         &mini6410_device_eth,
201         &s3c_device_hsmmc0,
202         &s3c_device_hsmmc1,
203         &s3c_device_ohci,
204         &s3c_device_nand,
205         &s3c_device_fb,
206         &mini6410_lcd_powerdev,
207         &s3c_device_adc,
208         &s3c_device_ts,
209 };
210
211 static void __init mini6410_map_io(void)
212 {
213         u32 tmp;
214
215         s3c64xx_init_io(NULL, 0);
216         s3c24xx_init_clocks(12000000);
217         s3c24xx_init_uarts(mini6410_uartcfgs, ARRAY_SIZE(mini6410_uartcfgs));
218
219         /* set the LCD type */
220         tmp = __raw_readl(S3C64XX_SPCON);
221         tmp &= ~S3C64XX_SPCON_LCD_SEL_MASK;
222         tmp |= S3C64XX_SPCON_LCD_SEL_RGB;
223         __raw_writel(tmp, S3C64XX_SPCON);
224
225         /* remove the LCD bypass */
226         tmp = __raw_readl(S3C64XX_MODEM_MIFPCON);
227         tmp &= ~MIFPCON_LCD_BYPASS;
228         __raw_writel(tmp, S3C64XX_MODEM_MIFPCON);
229 }
230
231 /*
232  * mini6410_features string
233  *
234  * 0-9 LCD configuration
235  *
236  */
237 static char mini6410_features_str[12] __initdata = "0";
238
239 static int __init mini6410_features_setup(char *str)
240 {
241         if (str)
242                 strlcpy(mini6410_features_str, str,
243                         sizeof(mini6410_features_str));
244         return 1;
245 }
246
247 __setup("mini6410=", mini6410_features_setup);
248
249 #define FEATURE_SCREEN (1 << 0)
250
251 struct mini6410_features_t {
252         int done;
253         int lcd_index;
254 };
255
256 static void mini6410_parse_features(
257                 struct mini6410_features_t *features,
258                 const char *features_str)
259 {
260         const char *fp = features_str;
261
262         features->done = 0;
263         features->lcd_index = 0;
264
265         while (*fp) {
266                 char f = *fp++;
267
268                 switch (f) {
269                 case '0'...'9': /* tft screen */
270                         if (features->done & FEATURE_SCREEN) {
271                                 printk(KERN_INFO "MINI6410: '%c' ignored, "
272                                         "screen type already set\n", f);
273                         } else {
274                                 int li = f - '0';
275                                 if (li >= ARRAY_SIZE(mini6410_fb_win))
276                                         printk(KERN_INFO "MINI6410: '%c' out "
277                                                 "of range LCD mode\n", f);
278                                 else {
279                                         features->lcd_index = li;
280                                 }
281                         }
282                         features->done |= FEATURE_SCREEN;
283                         break;
284                 }
285         }
286 }
287
288 static void __init mini6410_machine_init(void)
289 {
290         u32 cs1;
291         struct mini6410_features_t features = { 0 };
292
293         printk(KERN_INFO "MINI6410: Option string mini6410=%s\n",
294                         mini6410_features_str);
295
296         /* Parse the feature string */
297         mini6410_parse_features(&features, mini6410_features_str);
298
299         mini6410_lcd_pdata.win[0] = &mini6410_fb_win[features.lcd_index];
300
301         printk(KERN_INFO "MINI6410: selected LCD display is %dx%d\n",
302                 mini6410_lcd_pdata.win[0]->win_mode.xres,
303                 mini6410_lcd_pdata.win[0]->win_mode.yres);
304
305         s3c_nand_set_platdata(&mini6410_nand_info);
306         s3c_fb_set_platdata(&mini6410_lcd_pdata);
307         s3c24xx_ts_set_platdata(NULL);
308
309         /* configure nCS1 width to 16 bits */
310
311         cs1 = __raw_readl(S3C64XX_SROM_BW) &
312                 ~(S3C64XX_SROM_BW__CS_MASK << S3C64XX_SROM_BW__NCS1__SHIFT);
313         cs1 |= ((1 << S3C64XX_SROM_BW__DATAWIDTH__SHIFT) |
314                 (1 << S3C64XX_SROM_BW__WAITENABLE__SHIFT) |
315                 (1 << S3C64XX_SROM_BW__BYTEENABLE__SHIFT)) <<
316                         S3C64XX_SROM_BW__NCS1__SHIFT;
317         __raw_writel(cs1, S3C64XX_SROM_BW);
318
319         /* set timing for nCS1 suitable for ethernet chip */
320
321         __raw_writel((0 << S3C64XX_SROM_BCX__PMC__SHIFT) |
322                 (6 << S3C64XX_SROM_BCX__TACP__SHIFT) |
323                 (4 << S3C64XX_SROM_BCX__TCAH__SHIFT) |
324                 (1 << S3C64XX_SROM_BCX__TCOH__SHIFT) |
325                 (13 << S3C64XX_SROM_BCX__TACC__SHIFT) |
326                 (4 << S3C64XX_SROM_BCX__TCOS__SHIFT) |
327                 (0 << S3C64XX_SROM_BCX__TACS__SHIFT), S3C64XX_SROM_BC1);
328
329         gpio_request(S3C64XX_GPF(15), "LCD power");
330         gpio_request(S3C64XX_GPE(0), "LCD power");
331
332         platform_add_devices(mini6410_devices, ARRAY_SIZE(mini6410_devices));
333 }
334
335 MACHINE_START(MINI6410, "MINI6410")
336         /* Maintainer: Darius Augulis <augulis.darius@gmail.com> */
337         .atag_offset    = 0x100,
338         .init_irq       = s3c6410_init_irq,
339         .handle_irq     = vic_handle_irq,
340         .map_io         = mini6410_map_io,
341         .init_machine   = mini6410_machine_init,
342         .init_late      = s3c64xx_init_late,
343         .timer          = &s3c24xx_timer,
344         .restart        = s3c64xx_restart,
345 MACHINE_END