Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mach-anw6410.c
Go to the documentation of this file.
1 /* linux/arch/arm/mach-s3c64xx/mach-anw6410.c
2  *
3  * Copyright 2008 Openmoko, Inc.
4  * Copyright 2008 Simtec Electronics
5  * Ben Dooks <[email protected]>
6  * http://armlinux.simtec.co.uk/
7  * Copyright 2009 Kwangwoo Lee
8  * Kwangwoo Lee <[email protected]>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13  *
14 */
15 
16 #include <linux/kernel.h>
17 #include <linux/types.h>
18 #include <linux/interrupt.h>
19 #include <linux/list.h>
20 #include <linux/timer.h>
21 #include <linux/init.h>
22 #include <linux/serial_core.h>
23 #include <linux/platform_device.h>
24 #include <linux/io.h>
25 #include <linux/i2c.h>
26 #include <linux/fb.h>
27 #include <linux/gpio.h>
28 #include <linux/delay.h>
29 #include <linux/dm9000.h>
30 
31 #include <video/platform_lcd.h>
32 #include <video/samsung_fimd.h>
33 
34 #include <asm/hardware/vic.h>
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/irq.h>
38 
39 #include <mach/hardware.h>
40 #include <mach/map.h>
41 
42 #include <asm/irq.h>
43 #include <asm/mach-types.h>
44 
45 #include <plat/regs-serial.h>
47 #include <plat/fb.h>
48 
49 #include <plat/clock.h>
50 #include <plat/devs.h>
51 #include <plat/cpu.h>
52 #include <mach/regs-gpio.h>
53 #include <mach/regs-modem.h>
54 
55 #include "common.h"
56 
57 /* DM9000 */
58 #define ANW6410_PA_DM9000 (0x18000000)
59 
60 /* A hardware buffer to control external devices is mapped at 0x30000000.
61  * It can not be read. So current status must be kept in anw6410_extdev_status.
62  */
63 #define ANW6410_VA_EXTDEV S3C_ADDR(0x02000000)
64 #define ANW6410_PA_EXTDEV (0x30000000)
65 
66 #define ANW6410_EN_DM9000 (1<<11)
67 #define ANW6410_EN_LCD (1<<14)
68 
69 static __u32 anw6410_extdev_status;
70 
71 static struct s3c2410_uartcfg anw6410_uartcfgs[] __initdata = {
72  [0] = {
73  .hwport = 0,
74  .flags = 0,
75  .ucon = 0x3c5,
76  .ulcon = 0x03,
77  .ufcon = 0x51,
78  },
79  [1] = {
80  .hwport = 1,
81  .flags = 0,
82  .ucon = 0x3c5,
83  .ulcon = 0x03,
84  .ufcon = 0x51,
85  },
86 };
87 
88 /* framebuffer and LCD setup. */
89 static void __init anw6410_lcd_mode_set(void)
90 {
91  u32 tmp;
92 
93  /* set the LCD type */
98 
99  /* remove the LCD bypass */
101  tmp &= ~MIFPCON_LCD_BYPASS;
103 }
104 
105 /* GPF1 = LCD panel power
106  * GPF4 = LCD backlight control
107  */
108 static void anw6410_lcd_power_set(struct plat_lcd_data *pd,
109  unsigned int power)
110 {
111  if (power) {
112  anw6410_extdev_status |= (ANW6410_EN_LCD << 16);
113  __raw_writel(anw6410_extdev_status, ANW6410_VA_EXTDEV);
114 
117  } else {
118  anw6410_extdev_status &= ~(ANW6410_EN_LCD << 16);
119  __raw_writel(anw6410_extdev_status, ANW6410_VA_EXTDEV);
120 
123  }
124 }
125 
126 static struct plat_lcd_data anw6410_lcd_power_data = {
127  .set_power = anw6410_lcd_power_set,
128 };
129 
130 static struct platform_device anw6410_lcd_powerdev = {
131  .name = "platform-lcd",
132  .dev.parent = &s3c_device_fb.dev,
133  .dev.platform_data = &anw6410_lcd_power_data,
134 };
135 
136 static struct s3c_fb_pd_win anw6410_fb_win0 = {
137  .max_bpp = 32,
138  .default_bpp = 16,
139  .xres = 800,
140  .yres = 480,
141 };
142 
143 static struct fb_videomode anw6410_lcd_timing = {
144  .left_margin = 8,
145  .right_margin = 13,
146  .upper_margin = 7,
147  .lower_margin = 5,
148  .hsync_len = 3,
149  .vsync_len = 1,
150  .xres = 800,
151  .yres = 480,
152 };
153 
154 /* 405566 clocks per frame => 60Hz refresh requires 24333960Hz clock */
155 static struct s3c_fb_platdata anw6410_lcd_pdata __initdata = {
156  .setup_gpio = s3c64xx_fb_gpio_setup_24bpp,
157  .vtiming = &anw6410_lcd_timing,
158  .win[0] = &anw6410_fb_win0,
161 };
162 
163 /* DM9000AEP 10/100 ethernet controller */
164 static void __init anw6410_dm9000_enable(void)
165 {
166  anw6410_extdev_status |= (ANW6410_EN_DM9000 << 16);
167  __raw_writel(anw6410_extdev_status, ANW6410_VA_EXTDEV);
168 }
169 
170 static struct resource anw6410_dm9000_resource[] = {
172  [1] = DEFINE_RES_MEM(ANW6410_PA_DM9000 + 4, 501),
175 };
176 
177 static struct dm9000_plat_data anw6410_dm9000_pdata = {
179  /* dev_addr can be set to provide hwaddr. */
180 };
181 
182 static struct platform_device anw6410_device_eth = {
183  .name = "dm9000",
184  .id = -1,
185  .num_resources = ARRAY_SIZE(anw6410_dm9000_resource),
186  .resource = anw6410_dm9000_resource,
187  .dev = {
188  .platform_data = &anw6410_dm9000_pdata,
189  },
190 };
191 
192 static struct map_desc anw6410_iodesc[] __initdata = {
193  {
194  .virtual = (unsigned long)ANW6410_VA_EXTDEV,
196  .length = SZ_64K,
197  .type = MT_DEVICE,
198  },
199 };
200 
201 static struct platform_device *anw6410_devices[] __initdata = {
202  &s3c_device_fb,
203  &anw6410_lcd_powerdev,
204  &anw6410_device_eth,
205 };
206 
207 static void __init anw6410_map_io(void)
208 {
209  s3c64xx_init_io(anw6410_iodesc, ARRAY_SIZE(anw6410_iodesc));
210  s3c24xx_init_clocks(12000000);
211  s3c24xx_init_uarts(anw6410_uartcfgs, ARRAY_SIZE(anw6410_uartcfgs));
212 
213  anw6410_lcd_mode_set();
214 }
215 
216 static void __init anw6410_machine_init(void)
217 {
218  s3c_fb_set_platdata(&anw6410_lcd_pdata);
219 
220  gpio_request(S3C64XX_GPF(1), "panel power");
221  gpio_request(S3C64XX_GPF(4), "LCD backlight");
222 
223  anw6410_dm9000_enable();
224 
225  platform_add_devices(anw6410_devices, ARRAY_SIZE(anw6410_devices));
226 }
227 
228 MACHINE_START(ANW6410, "A&W6410")
229  /* Maintainer: Kwangwoo Lee <[email protected]> */
230  .atag_offset = 0x100,
231 
232  .init_irq = s3c6410_init_irq,
233  .handle_irq = vic_handle_irq,
234  .map_io = anw6410_map_io,
235  .init_machine = anw6410_machine_init,
236  .init_late = s3c64xx_init_late,
237  .timer = &s3c24xx_timer,
238  .restart = s3c64xx_restart,