blob: b734d8468168a611b3ff16a9645686dab07dbe6d [file] [log] [blame]
Mike Rapoport3696a8a2007-09-23 15:59:26 +01001/*
Mike Rapoportda591932008-10-05 10:25:44 +01002 * linux/arch/arm/mach-pxa/cm-x2xx.c
Mike Rapoport3696a8a2007-09-23 15:59:26 +01003 *
Mike Rapoport4adc5fb2008-10-05 10:26:10 +01004 * Copyright (C) 2008 CompuLab, Ltd.
Mike Rapoport3696a8a2007-09-23 15:59:26 +01005 * Mike Rapoport <mike@compulab.co.il>
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
Mike Rapoport3696a8a2007-09-23 15:59:26 +010012#include <linux/platform_device.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010013#include <linux/sysdev.h>
Mike Rapoport2f01a972008-06-17 12:29:58 +010014#include <linux/irq.h>
15#include <linux/gpio.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010016
17#include <linux/dm9000.h>
Mike Rapoport2f01a972008-06-17 12:29:58 +010018#include <linux/leds.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010019
20#include <asm/mach/arch.h>
21#include <asm/mach-types.h>
22#include <asm/mach/map.h>
23
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/pxa2xx-regs.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010025#include <mach/audio.h>
26#include <mach/pxafb.h>
Marek Vasutad68bb92010-11-03 16:29:35 +010027#include <mach/smemc.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010028
29#include <asm/hardware/it8152.h>
30
31#include "generic.h"
Mike Rapoport7d76e3f2008-10-07 11:58:25 +010032#include "cm-x2xx-pci.h"
Mike Rapoport3696a8a2007-09-23 15:59:26 +010033
Mike Rapoporta7f3f032008-10-05 10:26:55 +010034extern void cmx255_init(void);
Mike Rapoport4adc5fb2008-10-05 10:26:10 +010035extern void cmx270_init(void);
36
Haojian Zhuang6ac6b812010-08-20 15:23:59 +080037/* reserve IRQs for IT8152 */
38#define CMX2XX_NR_IRQS (IRQ_BOARD_START + 40)
39
Mike Rapoport2f01a972008-06-17 12:29:58 +010040/* virtual addresses for statically mapped regions */
Mike Rapoportda591932008-10-05 10:25:44 +010041#define CMX2XX_VIRT_BASE (0xe8000000)
42#define CMX2XX_IT8152_VIRT (CMX2XX_VIRT_BASE)
Mike Rapoport2f01a972008-06-17 12:29:58 +010043
Mike Rapoport4adc5fb2008-10-05 10:26:10 +010044/* physical address if local-bus attached devices */
Mike Rapoporta7f3f032008-10-05 10:26:55 +010045#define CMX255_DM9000_PHYS_BASE (PXA_CS1_PHYS + (8 << 22))
Mike Rapoportda591932008-10-05 10:25:44 +010046#define CMX270_DM9000_PHYS_BASE (PXA_CS1_PHYS + (6 << 22))
47
48/* leds */
Mike Rapoporta7f3f032008-10-05 10:26:55 +010049#define CMX255_GPIO_RED (27)
50#define CMX255_GPIO_GREEN (32)
Mike Rapoportda591932008-10-05 10:25:44 +010051#define CMX270_GPIO_RED (93)
52#define CMX270_GPIO_GREEN (94)
Mike Rapoport3696a8a2007-09-23 15:59:26 +010053
Mike Rapoport2f01a972008-06-17 12:29:58 +010054/* GPIO IRQ usage */
Mike Rapoporta7f3f032008-10-05 10:26:55 +010055#define GPIO22_ETHIRQ (22)
Mike Rapoport2f01a972008-06-17 12:29:58 +010056#define GPIO10_ETHIRQ (10)
Mike Rapoporta7f3f032008-10-05 10:26:55 +010057#define CMX255_GPIO_IT8152_IRQ (0)
Mike Rapoportda591932008-10-05 10:25:44 +010058#define CMX270_GPIO_IT8152_IRQ (22)
Mike Rapoport2f01a972008-06-17 12:29:58 +010059
Mike Rapoporta7f3f032008-10-05 10:26:55 +010060#define CMX255_ETHIRQ IRQ_GPIO(GPIO22_ETHIRQ)
Mike Rapoport2f01a972008-06-17 12:29:58 +010061#define CMX270_ETHIRQ IRQ_GPIO(GPIO10_ETHIRQ)
Mike Rapoport2f01a972008-06-17 12:29:58 +010062
63#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
Mike Rapoporta7f3f032008-10-05 10:26:55 +010064static struct resource cmx255_dm9000_resource[] = {
65 [0] = {
66 .start = CMX255_DM9000_PHYS_BASE,
67 .end = CMX255_DM9000_PHYS_BASE + 3,
68 .flags = IORESOURCE_MEM,
69 },
70 [1] = {
71 .start = CMX255_DM9000_PHYS_BASE + 4,
72 .end = CMX255_DM9000_PHYS_BASE + 4 + 500,
73 .flags = IORESOURCE_MEM,
74 },
75 [2] = {
76 .start = CMX255_ETHIRQ,
77 .end = CMX255_ETHIRQ,
78 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
79 }
80};
81
Mike Rapoport2f01a972008-06-17 12:29:58 +010082static struct resource cmx270_dm9000_resource[] = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +010083 [0] = {
Mike Rapoportda591932008-10-05 10:25:44 +010084 .start = CMX270_DM9000_PHYS_BASE,
85 .end = CMX270_DM9000_PHYS_BASE + 3,
Mike Rapoport3696a8a2007-09-23 15:59:26 +010086 .flags = IORESOURCE_MEM,
87 },
88 [1] = {
Mike Rapoportda591932008-10-05 10:25:44 +010089 .start = CMX270_DM9000_PHYS_BASE + 8,
90 .end = CMX270_DM9000_PHYS_BASE + 8 + 500,
Mike Rapoport3696a8a2007-09-23 15:59:26 +010091 .flags = IORESOURCE_MEM,
92 },
93 [2] = {
94 .start = CMX270_ETHIRQ,
95 .end = CMX270_ETHIRQ,
Mike Rapoport2f01a972008-06-17 12:29:58 +010096 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Mike Rapoport3696a8a2007-09-23 15:59:26 +010097 }
98};
99
Mike Rapoport2f01a972008-06-17 12:29:58 +0100100static struct dm9000_plat_data cmx270_dm9000_platdata = {
Mike Rapoportbff22c92009-02-23 18:01:12 +0200101 .flags = DM9000_PLATF_32BITONLY | DM9000_PLATF_NO_EEPROM,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100102};
103
Mike Rapoportda591932008-10-05 10:25:44 +0100104static struct platform_device cmx2xx_dm9000_device = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100105 .name = "dm9000",
106 .id = 0,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100107 .num_resources = ARRAY_SIZE(cmx270_dm9000_resource),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100108 .dev = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100109 .platform_data = &cmx270_dm9000_platdata,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100110 }
111};
112
Mike Rapoportda591932008-10-05 10:25:44 +0100113static void __init cmx2xx_init_dm9000(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100114{
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100115 if (cpu_is_pxa25x())
116 cmx2xx_dm9000_device.resource = cmx255_dm9000_resource;
117 else
118 cmx2xx_dm9000_device.resource = cmx270_dm9000_resource;
Mike Rapoportda591932008-10-05 10:25:44 +0100119 platform_device_register(&cmx2xx_dm9000_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100120}
121#else
Mike Rapoportda591932008-10-05 10:25:44 +0100122static inline void cmx2xx_init_dm9000(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100123#endif
124
125/* UCB1400 touchscreen controller */
126#if defined(CONFIG_TOUCHSCREEN_UCB1400) || defined(CONFIG_TOUCHSCREEN_UCB1400_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100127static struct platform_device cmx2xx_ts_device = {
Marek Vasut50f6bb02009-04-01 22:30:07 +0800128 .name = "ucb1400_core",
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100129 .id = -1,
130};
131
Mike Rapoportda591932008-10-05 10:25:44 +0100132static void __init cmx2xx_init_touchscreen(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100133{
Mike Rapoportda591932008-10-05 10:25:44 +0100134 platform_device_register(&cmx2xx_ts_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100135}
136#else
Mike Rapoportda591932008-10-05 10:25:44 +0100137static inline void cmx2xx_init_touchscreen(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100138#endif
139
Mike Rapoport2f01a972008-06-17 12:29:58 +0100140/* CM-X270 LEDs */
141#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100142static struct gpio_led cmx2xx_leds[] = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100143 [0] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100144 .name = "cm-x2xx:red",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100145 .default_trigger = "nand-disk",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100146 .active_low = 1,
147 },
148 [1] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100149 .name = "cm-x2xx:green",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100150 .default_trigger = "heartbeat",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100151 .active_low = 1,
152 },
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100153};
154
Mike Rapoportda591932008-10-05 10:25:44 +0100155static struct gpio_led_platform_data cmx2xx_gpio_led_pdata = {
156 .num_leds = ARRAY_SIZE(cmx2xx_leds),
157 .leds = cmx2xx_leds,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100158};
159
Mike Rapoportda591932008-10-05 10:25:44 +0100160static struct platform_device cmx2xx_led_device = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100161 .name = "leds-gpio",
162 .id = -1,
163 .dev = {
Mike Rapoportda591932008-10-05 10:25:44 +0100164 .platform_data = &cmx2xx_gpio_led_pdata,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100165 },
166};
167
Mike Rapoportda591932008-10-05 10:25:44 +0100168static void __init cmx2xx_init_leds(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100169{
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100170 if (cpu_is_pxa25x()) {
171 cmx2xx_leds[0].gpio = CMX255_GPIO_RED;
172 cmx2xx_leds[1].gpio = CMX255_GPIO_GREEN;
173 } else {
174 cmx2xx_leds[0].gpio = CMX270_GPIO_RED;
175 cmx2xx_leds[1].gpio = CMX270_GPIO_GREEN;
176 }
Mike Rapoportda591932008-10-05 10:25:44 +0100177 platform_device_register(&cmx2xx_led_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100178}
179#else
Mike Rapoportda591932008-10-05 10:25:44 +0100180static inline void cmx2xx_init_leds(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100181#endif
182
Mike Rapoport2f01a972008-06-17 12:29:58 +0100183#if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100184/*
185 Display definitions
186 keep these for backwards compatibility, although symbolic names (as
187 e.g. in lpd270.c) looks better
188*/
189#define MTYPE_STN320x240 0
190#define MTYPE_TFT640x480 1
191#define MTYPE_CRT640x480 2
192#define MTYPE_CRT800x600 3
193#define MTYPE_TFT320x240 6
194#define MTYPE_STN640x480 7
195
196static struct pxafb_mode_info generic_stn_320x240_mode = {
197 .pixclock = 76923,
198 .bpp = 8,
199 .xres = 320,
200 .yres = 240,
201 .hsync_len = 3,
202 .vsync_len = 2,
203 .left_margin = 3,
204 .upper_margin = 0,
205 .right_margin = 3,
206 .lower_margin = 0,
207 .sync = (FB_SYNC_HOR_HIGH_ACT |
208 FB_SYNC_VERT_HIGH_ACT),
209 .cmap_greyscale = 0,
210};
211
212static struct pxafb_mach_info generic_stn_320x240 = {
213 .modes = &generic_stn_320x240_mode,
214 .num_modes = 1,
Eric Miao95873192008-12-07 17:49:01 +0800215 .lcd_conn = LCD_COLOR_STN_8BPP | LCD_PCLK_EDGE_FALL |\
216 LCD_AC_BIAS_FREQ(0xff),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100217 .cmap_inverse = 0,
218 .cmap_static = 0,
219};
220
221static struct pxafb_mode_info generic_tft_640x480_mode = {
222 .pixclock = 38461,
223 .bpp = 8,
224 .xres = 640,
225 .yres = 480,
226 .hsync_len = 60,
227 .vsync_len = 2,
228 .left_margin = 70,
229 .upper_margin = 10,
230 .right_margin = 70,
231 .lower_margin = 5,
232 .sync = 0,
233 .cmap_greyscale = 0,
234};
235
236static struct pxafb_mach_info generic_tft_640x480 = {
237 .modes = &generic_tft_640x480_mode,
238 .num_modes = 1,
Eric Miao95873192008-12-07 17:49:01 +0800239 .lcd_conn = LCD_COLOR_TFT_8BPP | LCD_PCLK_EDGE_FALL |\
240 LCD_AC_BIAS_FREQ(0xff),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100241 .cmap_inverse = 0,
242 .cmap_static = 0,
243};
244
245static struct pxafb_mode_info generic_crt_640x480_mode = {
246 .pixclock = 38461,
247 .bpp = 8,
248 .xres = 640,
249 .yres = 480,
250 .hsync_len = 63,
251 .vsync_len = 2,
252 .left_margin = 81,
253 .upper_margin = 33,
254 .right_margin = 16,
255 .lower_margin = 10,
256 .sync = (FB_SYNC_HOR_HIGH_ACT |
257 FB_SYNC_VERT_HIGH_ACT),
258 .cmap_greyscale = 0,
259};
260
261static struct pxafb_mach_info generic_crt_640x480 = {
262 .modes = &generic_crt_640x480_mode,
263 .num_modes = 1,
Eric Miao95873192008-12-07 17:49:01 +0800264 .lcd_conn = LCD_COLOR_TFT_8BPP | LCD_AC_BIAS_FREQ(0xff),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100265 .cmap_inverse = 0,
266 .cmap_static = 0,
267};
268
269static struct pxafb_mode_info generic_crt_800x600_mode = {
270 .pixclock = 28846,
271 .bpp = 8,
272 .xres = 800,
273 .yres = 600,
274 .hsync_len = 63,
275 .vsync_len = 2,
276 .left_margin = 26,
277 .upper_margin = 21,
278 .right_margin = 26,
279 .lower_margin = 11,
280 .sync = (FB_SYNC_HOR_HIGH_ACT |
281 FB_SYNC_VERT_HIGH_ACT),
282 .cmap_greyscale = 0,
283};
284
285static struct pxafb_mach_info generic_crt_800x600 = {
286 .modes = &generic_crt_800x600_mode,
287 .num_modes = 1,
Eric Miao95873192008-12-07 17:49:01 +0800288 .lcd_conn = LCD_COLOR_TFT_8BPP | LCD_AC_BIAS_FREQ(0xff),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100289 .cmap_inverse = 0,
290 .cmap_static = 0,
291};
292
293static struct pxafb_mode_info generic_tft_320x240_mode = {
294 .pixclock = 134615,
295 .bpp = 16,
296 .xres = 320,
297 .yres = 240,
298 .hsync_len = 63,
299 .vsync_len = 7,
300 .left_margin = 75,
301 .upper_margin = 0,
302 .right_margin = 15,
303 .lower_margin = 15,
304 .sync = 0,
305 .cmap_greyscale = 0,
306};
307
308static struct pxafb_mach_info generic_tft_320x240 = {
309 .modes = &generic_tft_320x240_mode,
310 .num_modes = 1,
Eric Miao95873192008-12-07 17:49:01 +0800311 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_AC_BIAS_FREQ(0xff),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100312 .cmap_inverse = 0,
313 .cmap_static = 0,
314};
315
316static struct pxafb_mode_info generic_stn_640x480_mode = {
317 .pixclock = 57692,
318 .bpp = 8,
319 .xres = 640,
320 .yres = 480,
321 .hsync_len = 4,
322 .vsync_len = 2,
323 .left_margin = 10,
324 .upper_margin = 5,
325 .right_margin = 10,
326 .lower_margin = 5,
327 .sync = (FB_SYNC_HOR_HIGH_ACT |
328 FB_SYNC_VERT_HIGH_ACT),
329 .cmap_greyscale = 0,
330};
331
332static struct pxafb_mach_info generic_stn_640x480 = {
333 .modes = &generic_stn_640x480_mode,
334 .num_modes = 1,
Eric Miao95873192008-12-07 17:49:01 +0800335 .lcd_conn = LCD_COLOR_STN_8BPP | LCD_AC_BIAS_FREQ(0xff),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100336 .cmap_inverse = 0,
337 .cmap_static = 0,
338};
339
Mike Rapoportda591932008-10-05 10:25:44 +0100340static struct pxafb_mach_info *cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100341
Mike Rapoportda591932008-10-05 10:25:44 +0100342static int __init cmx2xx_set_display(char *str)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100343{
344 int disp_type = simple_strtol(str, NULL, 0);
345 switch (disp_type) {
346 case MTYPE_STN320x240:
Mike Rapoportda591932008-10-05 10:25:44 +0100347 cmx2xx_display = &generic_stn_320x240;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100348 break;
349 case MTYPE_TFT640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100350 cmx2xx_display = &generic_tft_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100351 break;
352 case MTYPE_CRT640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100353 cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100354 break;
355 case MTYPE_CRT800x600:
Mike Rapoportda591932008-10-05 10:25:44 +0100356 cmx2xx_display = &generic_crt_800x600;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100357 break;
358 case MTYPE_TFT320x240:
Mike Rapoportda591932008-10-05 10:25:44 +0100359 cmx2xx_display = &generic_tft_320x240;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100360 break;
361 case MTYPE_STN640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100362 cmx2xx_display = &generic_stn_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100363 break;
364 default: /* fallback to CRT 640x480 */
Mike Rapoportda591932008-10-05 10:25:44 +0100365 cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100366 break;
367 }
368 return 1;
369}
370
371/*
372 This should be done really early to get proper configuration for
373 frame buffer.
Mike Rapoportda591932008-10-05 10:25:44 +0100374 Indeed, pxafb parameters can be used istead, but CM-X2XX bootloader
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100375 has limitied line length for kernel command line, and also it will
376 break compatibitlty with proprietary releases already in field.
377*/
Mike Rapoportda591932008-10-05 10:25:44 +0100378__setup("monitor=", cmx2xx_set_display);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100379
Mike Rapoportda591932008-10-05 10:25:44 +0100380static void __init cmx2xx_init_display(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100381{
Mike Rapoportda591932008-10-05 10:25:44 +0100382 set_pxa_fb_info(cmx2xx_display);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100383}
384#else
Mike Rapoportda591932008-10-05 10:25:44 +0100385static inline void cmx2xx_init_display(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100386#endif
387
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100388#ifdef CONFIG_PM
389static unsigned long sleep_save_msc[10];
390
Mike Rapoportda591932008-10-05 10:25:44 +0100391static int cmx2xx_suspend(struct sys_device *dev, pm_message_t state)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100392{
Mike Rapoportda591932008-10-05 10:25:44 +0100393 cmx2xx_pci_suspend();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100394
395 /* save MSC registers */
Marek Vasutad68bb92010-11-03 16:29:35 +0100396 sleep_save_msc[0] = __raw_readl(MSC0);
397 sleep_save_msc[1] = __raw_readl(MSC1);
398 sleep_save_msc[2] = __raw_readl(MSC2);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100399
400 /* setup power saving mode registers */
401 PCFR = 0x0;
402 PSLR = 0xff400000;
403 PMCR = 0x00000005;
404 PWER = 0x80000000;
405 PFER = 0x00000000;
406 PRER = 0x00000000;
407 PGSR0 = 0xC0018800;
408 PGSR1 = 0x004F0002;
409 PGSR2 = 0x6021C000;
410 PGSR3 = 0x00020000;
411
412 return 0;
413}
414
Mike Rapoportda591932008-10-05 10:25:44 +0100415static int cmx2xx_resume(struct sys_device *dev)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100416{
Mike Rapoportda591932008-10-05 10:25:44 +0100417 cmx2xx_pci_resume();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100418
419 /* restore MSC registers */
Marek Vasutad68bb92010-11-03 16:29:35 +0100420 __raw_writel(sleep_save_msc[0], MSC0);
421 __raw_writel(sleep_save_msc[1], MSC1);
422 __raw_writel(sleep_save_msc[2], MSC2);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100423
424 return 0;
425}
426
Mike Rapoportda591932008-10-05 10:25:44 +0100427static struct sysdev_class cmx2xx_pm_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100428 .name = "pm",
Mike Rapoportda591932008-10-05 10:25:44 +0100429 .resume = cmx2xx_resume,
430 .suspend = cmx2xx_suspend,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100431};
432
Mike Rapoportda591932008-10-05 10:25:44 +0100433static struct sys_device cmx2xx_pm_device = {
434 .cls = &cmx2xx_pm_sysclass,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100435};
436
Mike Rapoportda591932008-10-05 10:25:44 +0100437static int __init cmx2xx_pm_init(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100438{
439 int error;
Mike Rapoportda591932008-10-05 10:25:44 +0100440 error = sysdev_class_register(&cmx2xx_pm_sysclass);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100441 if (error == 0)
Mike Rapoportda591932008-10-05 10:25:44 +0100442 error = sysdev_register(&cmx2xx_pm_device);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100443 return error;
444}
445#else
Mike Rapoportda591932008-10-05 10:25:44 +0100446static int __init cmx2xx_pm_init(void) { return 0; }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100447#endif
448
Mike Rapoport2f01a972008-06-17 12:29:58 +0100449#if defined(CONFIG_SND_PXA2XX_AC97) || defined(CONFIG_SND_PXA2XX_AC97_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100450static void __init cmx2xx_init_ac97(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100451{
452 pxa_set_ac97_info(NULL);
453}
454#else
Mike Rapoportda591932008-10-05 10:25:44 +0100455static inline void cmx2xx_init_ac97(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100456#endif
457
Mike Rapoportda591932008-10-05 10:25:44 +0100458static void __init cmx2xx_init(void)
459{
Russell Kingcc155c62009-11-09 13:34:08 +0800460 pxa_set_ffuart_info(NULL);
461 pxa_set_btuart_info(NULL);
462 pxa_set_stuart_info(NULL);
463
Mike Rapoportda591932008-10-05 10:25:44 +0100464 cmx2xx_pm_init();
465
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100466 if (cpu_is_pxa25x())
467 cmx255_init();
468 else
469 cmx270_init();
Mike Rapoportda591932008-10-05 10:25:44 +0100470
471 cmx2xx_init_dm9000();
472 cmx2xx_init_display();
473 cmx2xx_init_ac97();
474 cmx2xx_init_touchscreen();
475 cmx2xx_init_leds();
476}
477
478static void __init cmx2xx_init_irq(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100479{
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100480 if (cpu_is_pxa25x()) {
481 pxa25x_init_irq();
482 cmx2xx_pci_init_irq(CMX255_GPIO_IT8152_IRQ);
483 } else {
484 pxa27x_init_irq();
485 cmx2xx_pci_init_irq(CMX270_GPIO_IT8152_IRQ);
486 }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100487}
488
Mike Rapoport2f01a972008-06-17 12:29:58 +0100489#ifdef CONFIG_PCI
490/* Map PCI companion statically */
Mike Rapoportda591932008-10-05 10:25:44 +0100491static struct map_desc cmx2xx_io_desc[] __initdata = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100492 [0] = { /* PCI bridge */
Mike Rapoportda591932008-10-05 10:25:44 +0100493 .virtual = CMX2XX_IT8152_VIRT,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100494 .pfn = __phys_to_pfn(PXA_CS4_PHYS),
495 .length = SZ_64M,
496 .type = MT_DEVICE
497 },
498};
499
Mike Rapoportda591932008-10-05 10:25:44 +0100500static void __init cmx2xx_map_io(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100501{
Marek Vasut851982c2010-10-11 02:20:19 +0200502 if (cpu_is_pxa25x())
503 pxa25x_map_io();
504
505 if (cpu_is_pxa27x())
506 pxa27x_map_io();
507
Mike Rapoportda591932008-10-05 10:25:44 +0100508 iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc));
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100509
Mike Rapoportda591932008-10-05 10:25:44 +0100510 it8152_base_address = CMX2XX_IT8152_VIRT;
Mike Rapoport2f01a972008-06-17 12:29:58 +0100511}
512#else
Mike Rapoportda591932008-10-05 10:25:44 +0100513static void __init cmx2xx_map_io(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100514{
Marek Vasut851982c2010-10-11 02:20:19 +0200515 if (cpu_is_pxa25x())
516 pxa25x_map_io();
517
518 if (cpu_is_pxa27x())
519 pxa27x_map_io();
Mike Rapoport2f01a972008-06-17 12:29:58 +0100520}
521#endif
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100522
Mike Rapoportda591932008-10-05 10:25:44 +0100523MACHINE_START(ARMCORE, "Compulab CM-X2XX")
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100524 .boot_params = 0xa0000100,
Mike Rapoportda591932008-10-05 10:25:44 +0100525 .map_io = cmx2xx_map_io,
Haojian Zhuang6ac6b812010-08-20 15:23:59 +0800526 .nr_irqs = CMX2XX_NR_IRQS,
Mike Rapoportda591932008-10-05 10:25:44 +0100527 .init_irq = cmx2xx_init_irq,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100528 .timer = &pxa_timer,
Mike Rapoportda591932008-10-05 10:25:44 +0100529 .init_machine = cmx2xx_init,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100530MACHINE_END