blob: 0b3ce3b6d896e4f348d04a408e13849ccce5538d [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>
25#include <mach/mfp-pxa27x.h>
26#include <mach/pxa-regs.h>
27#include <mach/audio.h>
28#include <mach/pxafb.h>
Mike Rapoport3696a8a2007-09-23 15:59:26 +010029
30#include <asm/hardware/it8152.h>
31
32#include "generic.h"
Mike Rapoport7d76e3f2008-10-07 11:58:25 +010033#include "cm-x2xx-pci.h"
Mike Rapoport3696a8a2007-09-23 15:59:26 +010034
Mike Rapoporta7f3f032008-10-05 10:26:55 +010035extern void cmx255_init(void);
Mike Rapoport4adc5fb2008-10-05 10:26:10 +010036extern void cmx270_init(void);
37
Mike Rapoport2f01a972008-06-17 12:29:58 +010038/* virtual addresses for statically mapped regions */
Mike Rapoportda591932008-10-05 10:25:44 +010039#define CMX2XX_VIRT_BASE (0xe8000000)
40#define CMX2XX_IT8152_VIRT (CMX2XX_VIRT_BASE)
Mike Rapoport2f01a972008-06-17 12:29:58 +010041
Mike Rapoport4adc5fb2008-10-05 10:26:10 +010042/* physical address if local-bus attached devices */
Mike Rapoporta7f3f032008-10-05 10:26:55 +010043#define CMX255_DM9000_PHYS_BASE (PXA_CS1_PHYS + (8 << 22))
Mike Rapoportda591932008-10-05 10:25:44 +010044#define CMX270_DM9000_PHYS_BASE (PXA_CS1_PHYS + (6 << 22))
45
46/* leds */
Mike Rapoporta7f3f032008-10-05 10:26:55 +010047#define CMX255_GPIO_RED (27)
48#define CMX255_GPIO_GREEN (32)
Mike Rapoportda591932008-10-05 10:25:44 +010049#define CMX270_GPIO_RED (93)
50#define CMX270_GPIO_GREEN (94)
Mike Rapoport3696a8a2007-09-23 15:59:26 +010051
Mike Rapoport2f01a972008-06-17 12:29:58 +010052/* GPIO IRQ usage */
Mike Rapoporta7f3f032008-10-05 10:26:55 +010053#define GPIO22_ETHIRQ (22)
Mike Rapoport2f01a972008-06-17 12:29:58 +010054#define GPIO10_ETHIRQ (10)
Mike Rapoporta7f3f032008-10-05 10:26:55 +010055#define CMX255_GPIO_IT8152_IRQ (0)
Mike Rapoportda591932008-10-05 10:25:44 +010056#define CMX270_GPIO_IT8152_IRQ (22)
Mike Rapoport2f01a972008-06-17 12:29:58 +010057
Mike Rapoporta7f3f032008-10-05 10:26:55 +010058#define CMX255_ETHIRQ IRQ_GPIO(GPIO22_ETHIRQ)
Mike Rapoport2f01a972008-06-17 12:29:58 +010059#define CMX270_ETHIRQ IRQ_GPIO(GPIO10_ETHIRQ)
Mike Rapoport2f01a972008-06-17 12:29:58 +010060
61#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
Mike Rapoporta7f3f032008-10-05 10:26:55 +010062static struct resource cmx255_dm9000_resource[] = {
63 [0] = {
64 .start = CMX255_DM9000_PHYS_BASE,
65 .end = CMX255_DM9000_PHYS_BASE + 3,
66 .flags = IORESOURCE_MEM,
67 },
68 [1] = {
69 .start = CMX255_DM9000_PHYS_BASE + 4,
70 .end = CMX255_DM9000_PHYS_BASE + 4 + 500,
71 .flags = IORESOURCE_MEM,
72 },
73 [2] = {
74 .start = CMX255_ETHIRQ,
75 .end = CMX255_ETHIRQ,
76 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
77 }
78};
79
Mike Rapoport2f01a972008-06-17 12:29:58 +010080static struct resource cmx270_dm9000_resource[] = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +010081 [0] = {
Mike Rapoportda591932008-10-05 10:25:44 +010082 .start = CMX270_DM9000_PHYS_BASE,
83 .end = CMX270_DM9000_PHYS_BASE + 3,
Mike Rapoport3696a8a2007-09-23 15:59:26 +010084 .flags = IORESOURCE_MEM,
85 },
86 [1] = {
Mike Rapoportda591932008-10-05 10:25:44 +010087 .start = CMX270_DM9000_PHYS_BASE + 8,
88 .end = CMX270_DM9000_PHYS_BASE + 8 + 500,
Mike Rapoport3696a8a2007-09-23 15:59:26 +010089 .flags = IORESOURCE_MEM,
90 },
91 [2] = {
92 .start = CMX270_ETHIRQ,
93 .end = CMX270_ETHIRQ,
Mike Rapoport2f01a972008-06-17 12:29:58 +010094 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Mike Rapoport3696a8a2007-09-23 15:59:26 +010095 }
96};
97
Mike Rapoport2f01a972008-06-17 12:29:58 +010098static struct dm9000_plat_data cmx270_dm9000_platdata = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +010099 .flags = DM9000_PLATF_32BITONLY,
100};
101
Mike Rapoportda591932008-10-05 10:25:44 +0100102static struct platform_device cmx2xx_dm9000_device = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100103 .name = "dm9000",
104 .id = 0,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100105 .num_resources = ARRAY_SIZE(cmx270_dm9000_resource),
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100106 .dev = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100107 .platform_data = &cmx270_dm9000_platdata,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100108 }
109};
110
Mike Rapoportda591932008-10-05 10:25:44 +0100111static void __init cmx2xx_init_dm9000(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100112{
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100113 if (cpu_is_pxa25x())
114 cmx2xx_dm9000_device.resource = cmx255_dm9000_resource;
115 else
116 cmx2xx_dm9000_device.resource = cmx270_dm9000_resource;
Mike Rapoportda591932008-10-05 10:25:44 +0100117 platform_device_register(&cmx2xx_dm9000_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100118}
119#else
Mike Rapoportda591932008-10-05 10:25:44 +0100120static inline void cmx2xx_init_dm9000(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100121#endif
122
123/* UCB1400 touchscreen controller */
124#if defined(CONFIG_TOUCHSCREEN_UCB1400) || defined(CONFIG_TOUCHSCREEN_UCB1400_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100125static struct platform_device cmx2xx_ts_device = {
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100126 .name = "ucb1400_ts",
127 .id = -1,
128};
129
Mike Rapoportda591932008-10-05 10:25:44 +0100130static void __init cmx2xx_init_touchscreen(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100131{
Mike Rapoportda591932008-10-05 10:25:44 +0100132 platform_device_register(&cmx2xx_ts_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100133}
134#else
Mike Rapoportda591932008-10-05 10:25:44 +0100135static inline void cmx2xx_init_touchscreen(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100136#endif
137
Mike Rapoport2f01a972008-06-17 12:29:58 +0100138/* CM-X270 LEDs */
139#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100140static struct gpio_led cmx2xx_leds[] = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100141 [0] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100142 .name = "cm-x2xx:red",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100143 .default_trigger = "nand-disk",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100144 .active_low = 1,
145 },
146 [1] = {
Mike Rapoportda591932008-10-05 10:25:44 +0100147 .name = "cm-x2xx:green",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100148 .default_trigger = "heartbeat",
Mike Rapoport2f01a972008-06-17 12:29:58 +0100149 .active_low = 1,
150 },
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100151};
152
Mike Rapoportda591932008-10-05 10:25:44 +0100153static struct gpio_led_platform_data cmx2xx_gpio_led_pdata = {
154 .num_leds = ARRAY_SIZE(cmx2xx_leds),
155 .leds = cmx2xx_leds,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100156};
157
Mike Rapoportda591932008-10-05 10:25:44 +0100158static struct platform_device cmx2xx_led_device = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100159 .name = "leds-gpio",
160 .id = -1,
161 .dev = {
Mike Rapoportda591932008-10-05 10:25:44 +0100162 .platform_data = &cmx2xx_gpio_led_pdata,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100163 },
164};
165
Mike Rapoportda591932008-10-05 10:25:44 +0100166static void __init cmx2xx_init_leds(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100167{
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100168 if (cpu_is_pxa25x()) {
169 cmx2xx_leds[0].gpio = CMX255_GPIO_RED;
170 cmx2xx_leds[1].gpio = CMX255_GPIO_GREEN;
171 } else {
172 cmx2xx_leds[0].gpio = CMX270_GPIO_RED;
173 cmx2xx_leds[1].gpio = CMX270_GPIO_GREEN;
174 }
Mike Rapoportda591932008-10-05 10:25:44 +0100175 platform_device_register(&cmx2xx_led_device);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100176}
177#else
Mike Rapoportda591932008-10-05 10:25:44 +0100178static inline void cmx2xx_init_leds(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100179#endif
180
Mike Rapoport2f01a972008-06-17 12:29:58 +0100181#if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100182/*
183 Display definitions
184 keep these for backwards compatibility, although symbolic names (as
185 e.g. in lpd270.c) looks better
186*/
187#define MTYPE_STN320x240 0
188#define MTYPE_TFT640x480 1
189#define MTYPE_CRT640x480 2
190#define MTYPE_CRT800x600 3
191#define MTYPE_TFT320x240 6
192#define MTYPE_STN640x480 7
193
194static struct pxafb_mode_info generic_stn_320x240_mode = {
195 .pixclock = 76923,
196 .bpp = 8,
197 .xres = 320,
198 .yres = 240,
199 .hsync_len = 3,
200 .vsync_len = 2,
201 .left_margin = 3,
202 .upper_margin = 0,
203 .right_margin = 3,
204 .lower_margin = 0,
205 .sync = (FB_SYNC_HOR_HIGH_ACT |
206 FB_SYNC_VERT_HIGH_ACT),
207 .cmap_greyscale = 0,
208};
209
210static struct pxafb_mach_info generic_stn_320x240 = {
211 .modes = &generic_stn_320x240_mode,
212 .num_modes = 1,
213 .lccr0 = 0,
214 .lccr3 = (LCCR3_PixClkDiv(0x03) |
215 LCCR3_Acb(0xff) |
216 LCCR3_PCP),
217 .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,
239 .lccr0 = (LCCR0_PAS),
240 .lccr3 = (LCCR3_PixClkDiv(0x01) |
241 LCCR3_Acb(0xff) |
242 LCCR3_PCP),
243 .cmap_inverse = 0,
244 .cmap_static = 0,
245};
246
247static struct pxafb_mode_info generic_crt_640x480_mode = {
248 .pixclock = 38461,
249 .bpp = 8,
250 .xres = 640,
251 .yres = 480,
252 .hsync_len = 63,
253 .vsync_len = 2,
254 .left_margin = 81,
255 .upper_margin = 33,
256 .right_margin = 16,
257 .lower_margin = 10,
258 .sync = (FB_SYNC_HOR_HIGH_ACT |
259 FB_SYNC_VERT_HIGH_ACT),
260 .cmap_greyscale = 0,
261};
262
263static struct pxafb_mach_info generic_crt_640x480 = {
264 .modes = &generic_crt_640x480_mode,
265 .num_modes = 1,
266 .lccr0 = (LCCR0_PAS),
267 .lccr3 = (LCCR3_PixClkDiv(0x01) |
268 LCCR3_Acb(0xff)),
269 .cmap_inverse = 0,
270 .cmap_static = 0,
271};
272
273static struct pxafb_mode_info generic_crt_800x600_mode = {
274 .pixclock = 28846,
275 .bpp = 8,
276 .xres = 800,
277 .yres = 600,
278 .hsync_len = 63,
279 .vsync_len = 2,
280 .left_margin = 26,
281 .upper_margin = 21,
282 .right_margin = 26,
283 .lower_margin = 11,
284 .sync = (FB_SYNC_HOR_HIGH_ACT |
285 FB_SYNC_VERT_HIGH_ACT),
286 .cmap_greyscale = 0,
287};
288
289static struct pxafb_mach_info generic_crt_800x600 = {
290 .modes = &generic_crt_800x600_mode,
291 .num_modes = 1,
292 .lccr0 = (LCCR0_PAS),
293 .lccr3 = (LCCR3_PixClkDiv(0x02) |
294 LCCR3_Acb(0xff)),
295 .cmap_inverse = 0,
296 .cmap_static = 0,
297};
298
299static struct pxafb_mode_info generic_tft_320x240_mode = {
300 .pixclock = 134615,
301 .bpp = 16,
302 .xres = 320,
303 .yres = 240,
304 .hsync_len = 63,
305 .vsync_len = 7,
306 .left_margin = 75,
307 .upper_margin = 0,
308 .right_margin = 15,
309 .lower_margin = 15,
310 .sync = 0,
311 .cmap_greyscale = 0,
312};
313
314static struct pxafb_mach_info generic_tft_320x240 = {
315 .modes = &generic_tft_320x240_mode,
316 .num_modes = 1,
317 .lccr0 = (LCCR0_PAS),
318 .lccr3 = (LCCR3_PixClkDiv(0x06) |
319 LCCR3_Acb(0xff) |
320 LCCR3_PCP),
321 .cmap_inverse = 0,
322 .cmap_static = 0,
323};
324
325static struct pxafb_mode_info generic_stn_640x480_mode = {
326 .pixclock = 57692,
327 .bpp = 8,
328 .xres = 640,
329 .yres = 480,
330 .hsync_len = 4,
331 .vsync_len = 2,
332 .left_margin = 10,
333 .upper_margin = 5,
334 .right_margin = 10,
335 .lower_margin = 5,
336 .sync = (FB_SYNC_HOR_HIGH_ACT |
337 FB_SYNC_VERT_HIGH_ACT),
338 .cmap_greyscale = 0,
339};
340
341static struct pxafb_mach_info generic_stn_640x480 = {
342 .modes = &generic_stn_640x480_mode,
343 .num_modes = 1,
344 .lccr0 = 0,
345 .lccr3 = (LCCR3_PixClkDiv(0x02) |
346 LCCR3_Acb(0xff)),
347 .cmap_inverse = 0,
348 .cmap_static = 0,
349};
350
Mike Rapoportda591932008-10-05 10:25:44 +0100351static struct pxafb_mach_info *cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100352
Mike Rapoportda591932008-10-05 10:25:44 +0100353static int __init cmx2xx_set_display(char *str)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100354{
355 int disp_type = simple_strtol(str, NULL, 0);
356 switch (disp_type) {
357 case MTYPE_STN320x240:
Mike Rapoportda591932008-10-05 10:25:44 +0100358 cmx2xx_display = &generic_stn_320x240;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100359 break;
360 case MTYPE_TFT640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100361 cmx2xx_display = &generic_tft_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100362 break;
363 case MTYPE_CRT640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100364 cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100365 break;
366 case MTYPE_CRT800x600:
Mike Rapoportda591932008-10-05 10:25:44 +0100367 cmx2xx_display = &generic_crt_800x600;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100368 break;
369 case MTYPE_TFT320x240:
Mike Rapoportda591932008-10-05 10:25:44 +0100370 cmx2xx_display = &generic_tft_320x240;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100371 break;
372 case MTYPE_STN640x480:
Mike Rapoportda591932008-10-05 10:25:44 +0100373 cmx2xx_display = &generic_stn_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100374 break;
375 default: /* fallback to CRT 640x480 */
Mike Rapoportda591932008-10-05 10:25:44 +0100376 cmx2xx_display = &generic_crt_640x480;
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100377 break;
378 }
379 return 1;
380}
381
382/*
383 This should be done really early to get proper configuration for
384 frame buffer.
Mike Rapoportda591932008-10-05 10:25:44 +0100385 Indeed, pxafb parameters can be used istead, but CM-X2XX bootloader
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100386 has limitied line length for kernel command line, and also it will
387 break compatibitlty with proprietary releases already in field.
388*/
Mike Rapoportda591932008-10-05 10:25:44 +0100389__setup("monitor=", cmx2xx_set_display);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100390
Mike Rapoportda591932008-10-05 10:25:44 +0100391static void __init cmx2xx_init_display(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100392{
Mike Rapoportda591932008-10-05 10:25:44 +0100393 set_pxa_fb_info(cmx2xx_display);
Mike Rapoport2f01a972008-06-17 12:29:58 +0100394}
395#else
Mike Rapoportda591932008-10-05 10:25:44 +0100396static inline void cmx2xx_init_display(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100397#endif
398
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100399#ifdef CONFIG_PM
400static unsigned long sleep_save_msc[10];
401
Mike Rapoportda591932008-10-05 10:25:44 +0100402static int cmx2xx_suspend(struct sys_device *dev, pm_message_t state)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100403{
Mike Rapoportda591932008-10-05 10:25:44 +0100404 cmx2xx_pci_suspend();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100405
406 /* save MSC registers */
407 sleep_save_msc[0] = MSC0;
408 sleep_save_msc[1] = MSC1;
409 sleep_save_msc[2] = MSC2;
410
411 /* setup power saving mode registers */
412 PCFR = 0x0;
413 PSLR = 0xff400000;
414 PMCR = 0x00000005;
415 PWER = 0x80000000;
416 PFER = 0x00000000;
417 PRER = 0x00000000;
418 PGSR0 = 0xC0018800;
419 PGSR1 = 0x004F0002;
420 PGSR2 = 0x6021C000;
421 PGSR3 = 0x00020000;
422
423 return 0;
424}
425
Mike Rapoportda591932008-10-05 10:25:44 +0100426static int cmx2xx_resume(struct sys_device *dev)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100427{
Mike Rapoportda591932008-10-05 10:25:44 +0100428 cmx2xx_pci_resume();
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100429
430 /* restore MSC registers */
431 MSC0 = sleep_save_msc[0];
432 MSC1 = sleep_save_msc[1];
433 MSC2 = sleep_save_msc[2];
434
435 return 0;
436}
437
Mike Rapoportda591932008-10-05 10:25:44 +0100438static struct sysdev_class cmx2xx_pm_sysclass = {
Kay Sieversaf5ca3f2007-12-20 02:09:39 +0100439 .name = "pm",
Mike Rapoportda591932008-10-05 10:25:44 +0100440 .resume = cmx2xx_resume,
441 .suspend = cmx2xx_suspend,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100442};
443
Mike Rapoportda591932008-10-05 10:25:44 +0100444static struct sys_device cmx2xx_pm_device = {
445 .cls = &cmx2xx_pm_sysclass,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100446};
447
Mike Rapoportda591932008-10-05 10:25:44 +0100448static int __init cmx2xx_pm_init(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100449{
450 int error;
Mike Rapoportda591932008-10-05 10:25:44 +0100451 error = sysdev_class_register(&cmx2xx_pm_sysclass);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100452 if (error == 0)
Mike Rapoportda591932008-10-05 10:25:44 +0100453 error = sysdev_register(&cmx2xx_pm_device);
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100454 return error;
455}
456#else
Mike Rapoportda591932008-10-05 10:25:44 +0100457static int __init cmx2xx_pm_init(void) { return 0; }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100458#endif
459
Mike Rapoport2f01a972008-06-17 12:29:58 +0100460#if defined(CONFIG_SND_PXA2XX_AC97) || defined(CONFIG_SND_PXA2XX_AC97_MODULE)
Mike Rapoportda591932008-10-05 10:25:44 +0100461static void __init cmx2xx_init_ac97(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100462{
463 pxa_set_ac97_info(NULL);
464}
465#else
Mike Rapoportda591932008-10-05 10:25:44 +0100466static inline void cmx2xx_init_ac97(void) {}
Mike Rapoport2f01a972008-06-17 12:29:58 +0100467#endif
468
Mike Rapoportda591932008-10-05 10:25:44 +0100469static void __init cmx2xx_init(void)
470{
471 cmx2xx_pm_init();
472
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100473 if (cpu_is_pxa25x())
474 cmx255_init();
475 else
476 cmx270_init();
Mike Rapoportda591932008-10-05 10:25:44 +0100477
478 cmx2xx_init_dm9000();
479 cmx2xx_init_display();
480 cmx2xx_init_ac97();
481 cmx2xx_init_touchscreen();
482 cmx2xx_init_leds();
483}
484
485static void __init cmx2xx_init_irq(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100486{
487 pxa27x_init_irq();
488
Mike Rapoporta7f3f032008-10-05 10:26:55 +0100489 if (cpu_is_pxa25x()) {
490 pxa25x_init_irq();
491 cmx2xx_pci_init_irq(CMX255_GPIO_IT8152_IRQ);
492 } else {
493 pxa27x_init_irq();
494 cmx2xx_pci_init_irq(CMX270_GPIO_IT8152_IRQ);
495 }
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100496}
497
Mike Rapoport2f01a972008-06-17 12:29:58 +0100498#ifdef CONFIG_PCI
499/* Map PCI companion statically */
Mike Rapoportda591932008-10-05 10:25:44 +0100500static struct map_desc cmx2xx_io_desc[] __initdata = {
Mike Rapoport2f01a972008-06-17 12:29:58 +0100501 [0] = { /* PCI bridge */
Mike Rapoportda591932008-10-05 10:25:44 +0100502 .virtual = CMX2XX_IT8152_VIRT,
Mike Rapoport2f01a972008-06-17 12:29:58 +0100503 .pfn = __phys_to_pfn(PXA_CS4_PHYS),
504 .length = SZ_64M,
505 .type = MT_DEVICE
506 },
507};
508
Mike Rapoportda591932008-10-05 10:25:44 +0100509static void __init cmx2xx_map_io(void)
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100510{
511 pxa_map_io();
Mike Rapoportda591932008-10-05 10:25:44 +0100512 iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc));
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100513
Mike Rapoportda591932008-10-05 10:25:44 +0100514 it8152_base_address = CMX2XX_IT8152_VIRT;
Mike Rapoport2f01a972008-06-17 12:29:58 +0100515}
516#else
Mike Rapoportda591932008-10-05 10:25:44 +0100517static void __init cmx2xx_map_io(void)
Mike Rapoport2f01a972008-06-17 12:29:58 +0100518{
519 pxa_map_io();
520}
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,
525 .phys_io = 0x40000000,
526 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Mike Rapoportda591932008-10-05 10:25:44 +0100527 .map_io = cmx2xx_map_io,
528 .init_irq = cmx2xx_init_irq,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100529 .timer = &pxa_timer,
Mike Rapoportda591932008-10-05 10:25:44 +0100530 .init_machine = cmx2xx_init,
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100531MACHINE_END