cm-x2xx.c 11.8 KB
Newer Older
1
/*
2
 * linux/arch/arm/mach-pxa/cm-x2xx.c
3
 *
4
 * Copyright (C) 2008 CompuLab, Ltd.
5 6 7 8 9 10 11 12
 * Mike Rapoport <mike@compulab.co.il>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/platform_device.h>
13
#include <linux/syscore_ops.h>
14 15
#include <linux/irq.h>
#include <linux/gpio.h>
16 17

#include <linux/dm9000.h>
18
#include <linux/leds.h>
19 20 21 22 23

#include <asm/mach/arch.h>
#include <asm/mach-types.h>
#include <asm/mach/map.h>

24
#include <mach/pxa25x.h>
25
#undef GPIO24_SSP1_SFRM
26
#include <mach/pxa27x.h>
27
#include <mach/audio.h>
28
#include <linux/platform_data/video-pxafb.h>
29
#include <mach/smemc.h>
30 31 32 33

#include <asm/hardware/it8152.h>

#include "generic.h"
34
#include "cm-x2xx-pci.h"
35

36
extern void cmx255_init(void);
37 38
extern void cmx270_init(void);

39 40 41
/* reserve IRQs for IT8152 */
#define CMX2XX_NR_IRQS		(IRQ_BOARD_START + 40)

42
/* virtual addresses for statically mapped regions */
43
#define CMX2XX_VIRT_BASE	(void __iomem *)(0xe8000000)
44
#define CMX2XX_IT8152_VIRT	(CMX2XX_VIRT_BASE)
45

46
/* physical address if local-bus attached devices */
47
#define CMX255_DM9000_PHYS_BASE (PXA_CS1_PHYS + (8 << 22))
48 49 50
#define CMX270_DM9000_PHYS_BASE	(PXA_CS1_PHYS + (6 << 22))

/* leds */
51 52
#define CMX255_GPIO_RED		(27)
#define CMX255_GPIO_GREEN	(32)
53 54
#define CMX270_GPIO_RED		(93)
#define CMX270_GPIO_GREEN	(94)
55

56
/* GPIO IRQ usage */
57
#define GPIO22_ETHIRQ		(22)
58
#define GPIO10_ETHIRQ		(10)
59
#define CMX255_GPIO_IT8152_IRQ	(0)
60
#define CMX270_GPIO_IT8152_IRQ	(22)
61

62 63
#define CMX255_ETHIRQ		PXA_GPIO_TO_IRQ(GPIO22_ETHIRQ)
#define CMX270_ETHIRQ		PXA_GPIO_TO_IRQ(GPIO10_ETHIRQ)
64 65

#if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE)
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
static struct resource cmx255_dm9000_resource[] = {
	[0] = {
		.start = CMX255_DM9000_PHYS_BASE,
		.end   = CMX255_DM9000_PHYS_BASE + 3,
		.flags = IORESOURCE_MEM,
	},
	[1] = {
		.start = CMX255_DM9000_PHYS_BASE + 4,
		.end   = CMX255_DM9000_PHYS_BASE + 4 + 500,
		.flags = IORESOURCE_MEM,
	},
	[2] = {
		.start = CMX255_ETHIRQ,
		.end   = CMX255_ETHIRQ,
		.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
	}
};

84
static struct resource cmx270_dm9000_resource[] = {
85
	[0] = {
86 87
		.start = CMX270_DM9000_PHYS_BASE,
		.end   = CMX270_DM9000_PHYS_BASE + 3,
88 89 90
		.flags = IORESOURCE_MEM,
	},
	[1] = {
91 92
		.start = CMX270_DM9000_PHYS_BASE + 8,
		.end   = CMX270_DM9000_PHYS_BASE + 8 + 500,
93 94 95 96 97
		.flags = IORESOURCE_MEM,
	},
	[2] = {
		.start = CMX270_ETHIRQ,
		.end   = CMX270_ETHIRQ,
98
		.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
99 100 101
	}
};

102
static struct dm9000_plat_data cmx270_dm9000_platdata = {
103
	.flags		= DM9000_PLATF_32BITONLY | DM9000_PLATF_NO_EEPROM,
104 105
};

106
static struct platform_device cmx2xx_dm9000_device = {
107 108
	.name		= "dm9000",
	.id		= 0,
109
	.num_resources	= ARRAY_SIZE(cmx270_dm9000_resource),
110
	.dev		= {
111
		.platform_data = &cmx270_dm9000_platdata,
112 113 114
	}
};

115
static void __init cmx2xx_init_dm9000(void)
116
{
117 118 119 120
	if (cpu_is_pxa25x())
		cmx2xx_dm9000_device.resource = cmx255_dm9000_resource;
	else
		cmx2xx_dm9000_device.resource = cmx270_dm9000_resource;
121
	platform_device_register(&cmx2xx_dm9000_device);
122 123
}
#else
124
static inline void cmx2xx_init_dm9000(void) {}
125 126 127 128
#endif

/* UCB1400 touchscreen controller */
#if defined(CONFIG_TOUCHSCREEN_UCB1400) || defined(CONFIG_TOUCHSCREEN_UCB1400_MODULE)
129
static struct platform_device cmx2xx_ts_device = {
130
	.name		= "ucb1400_core",
131 132 133
	.id		= -1,
};

134
static void __init cmx2xx_init_touchscreen(void)
135
{
136
	platform_device_register(&cmx2xx_ts_device);
137 138
}
#else
139
static inline void cmx2xx_init_touchscreen(void) {}
140 141 142 143
#endif

/* CM-X270 LEDs */
#if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE)
144
static struct gpio_led cmx2xx_leds[] = {
145
	[0] = {
146
		.name = "cm-x2xx:red",
147 148 149 150
		.default_trigger = "nand-disk",
		.active_low = 1,
	},
	[1] = {
151
		.name = "cm-x2xx:green",
152 153 154 155 156
		.default_trigger = "heartbeat",
		.active_low = 1,
	},
};

157 158 159
static struct gpio_led_platform_data cmx2xx_gpio_led_pdata = {
	.num_leds = ARRAY_SIZE(cmx2xx_leds),
	.leds = cmx2xx_leds,
160 161
};

162
static struct platform_device cmx2xx_led_device = {
163
	.name		= "leds-gpio",
164
	.id		= -1,
165
	.dev		= {
166
		.platform_data = &cmx2xx_gpio_led_pdata,
167
	},
168 169
};

170
static void __init cmx2xx_init_leds(void)
171
{
172 173 174 175 176 177 178
	if (cpu_is_pxa25x()) {
		cmx2xx_leds[0].gpio = CMX255_GPIO_RED;
		cmx2xx_leds[1].gpio = CMX255_GPIO_GREEN;
	} else {
		cmx2xx_leds[0].gpio = CMX270_GPIO_RED;
		cmx2xx_leds[1].gpio = CMX270_GPIO_GREEN;
	}
179
	platform_device_register(&cmx2xx_led_device);
180 181
}
#else
182
static inline void cmx2xx_init_leds(void) {}
183 184 185
#endif

#if defined(CONFIG_FB_PXA) || defined(CONFIG_FB_PXA_MODULE)
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
/*
  Display definitions
  keep these for backwards compatibility, although symbolic names (as
  e.g. in lpd270.c) looks better
*/
#define MTYPE_STN320x240	0
#define MTYPE_TFT640x480	1
#define MTYPE_CRT640x480	2
#define MTYPE_CRT800x600	3
#define MTYPE_TFT320x240	6
#define MTYPE_STN640x480	7

static struct pxafb_mode_info generic_stn_320x240_mode = {
	.pixclock	= 76923,
	.bpp		= 8,
	.xres		= 320,
	.yres		= 240,
	.hsync_len	= 3,
	.vsync_len	= 2,
	.left_margin	= 3,
	.upper_margin	= 0,
	.right_margin	= 3,
	.lower_margin	= 0,
	.sync		= (FB_SYNC_HOR_HIGH_ACT |
			   FB_SYNC_VERT_HIGH_ACT),
	.cmap_greyscale = 0,
};

static struct pxafb_mach_info generic_stn_320x240 = {
	.modes		= &generic_stn_320x240_mode,
	.num_modes	= 1,
217 218
	.lcd_conn	= LCD_COLOR_STN_8BPP | LCD_PCLK_EDGE_FALL |\
			  LCD_AC_BIAS_FREQ(0xff),
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
	.cmap_inverse	= 0,
	.cmap_static	= 0,
};

static struct pxafb_mode_info generic_tft_640x480_mode = {
	.pixclock	= 38461,
	.bpp		= 8,
	.xres		= 640,
	.yres		= 480,
	.hsync_len	= 60,
	.vsync_len	= 2,
	.left_margin	= 70,
	.upper_margin	= 10,
	.right_margin	= 70,
	.lower_margin	= 5,
	.sync		= 0,
	.cmap_greyscale = 0,
};

static struct pxafb_mach_info generic_tft_640x480 = {
	.modes		= &generic_tft_640x480_mode,
	.num_modes	= 1,
241 242
	.lcd_conn	= LCD_COLOR_TFT_8BPP | LCD_PCLK_EDGE_FALL |\
			  LCD_AC_BIAS_FREQ(0xff),
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
	.cmap_inverse	= 0,
	.cmap_static	= 0,
};

static struct pxafb_mode_info generic_crt_640x480_mode = {
	.pixclock	= 38461,
	.bpp		= 8,
	.xres		= 640,
	.yres		= 480,
	.hsync_len	= 63,
	.vsync_len	= 2,
	.left_margin	= 81,
	.upper_margin	= 33,
	.right_margin	= 16,
	.lower_margin	= 10,
	.sync		= (FB_SYNC_HOR_HIGH_ACT |
			   FB_SYNC_VERT_HIGH_ACT),
	.cmap_greyscale = 0,
};

static struct pxafb_mach_info generic_crt_640x480 = {
	.modes		= &generic_crt_640x480_mode,
	.num_modes	= 1,
266
	.lcd_conn	= LCD_COLOR_TFT_8BPP | LCD_AC_BIAS_FREQ(0xff),
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
	.cmap_inverse	= 0,
	.cmap_static	= 0,
};

static struct pxafb_mode_info generic_crt_800x600_mode = {
	.pixclock	= 28846,
	.bpp		= 8,
	.xres		= 800,
	.yres	  	= 600,
	.hsync_len	= 63,
	.vsync_len	= 2,
	.left_margin	= 26,
	.upper_margin	= 21,
	.right_margin	= 26,
	.lower_margin	= 11,
	.sync		= (FB_SYNC_HOR_HIGH_ACT |
			   FB_SYNC_VERT_HIGH_ACT),
	.cmap_greyscale = 0,
};

static struct pxafb_mach_info generic_crt_800x600 = {
	.modes		= &generic_crt_800x600_mode,
	.num_modes	= 1,
290
	.lcd_conn	= LCD_COLOR_TFT_8BPP | LCD_AC_BIAS_FREQ(0xff),
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
	.cmap_inverse	= 0,
	.cmap_static	= 0,
};

static struct pxafb_mode_info generic_tft_320x240_mode = {
	.pixclock	= 134615,
	.bpp		= 16,
	.xres		= 320,
	.yres		= 240,
	.hsync_len	= 63,
	.vsync_len	= 7,
	.left_margin	= 75,
	.upper_margin	= 0,
	.right_margin	= 15,
	.lower_margin	= 15,
	.sync		= 0,
	.cmap_greyscale = 0,
};

static struct pxafb_mach_info generic_tft_320x240 = {
	.modes		= &generic_tft_320x240_mode,
	.num_modes	= 1,
313
	.lcd_conn	= LCD_COLOR_TFT_16BPP | LCD_AC_BIAS_FREQ(0xff),
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
	.cmap_inverse	= 0,
	.cmap_static	= 0,
};

static struct pxafb_mode_info generic_stn_640x480_mode = {
	.pixclock	= 57692,
	.bpp		= 8,
	.xres		= 640,
	.yres		= 480,
	.hsync_len	= 4,
	.vsync_len	= 2,
	.left_margin	= 10,
	.upper_margin	= 5,
	.right_margin	= 10,
	.lower_margin	= 5,
	.sync		= (FB_SYNC_HOR_HIGH_ACT |
			   FB_SYNC_VERT_HIGH_ACT),
	.cmap_greyscale = 0,
};

static struct pxafb_mach_info generic_stn_640x480 = {
	.modes		= &generic_stn_640x480_mode,
	.num_modes	= 1,
337
	.lcd_conn	= LCD_COLOR_STN_8BPP | LCD_AC_BIAS_FREQ(0xff),
338 339 340 341
	.cmap_inverse	= 0,
	.cmap_static	= 0,
};

342
static struct pxafb_mach_info *cmx2xx_display = &generic_crt_640x480;
343

344
static int __init cmx2xx_set_display(char *str)
345 346 347 348
{
	int disp_type = simple_strtol(str, NULL, 0);
	switch (disp_type) {
	case MTYPE_STN320x240:
349
		cmx2xx_display = &generic_stn_320x240;
350 351
		break;
	case MTYPE_TFT640x480:
352
		cmx2xx_display = &generic_tft_640x480;
353 354
		break;
	case MTYPE_CRT640x480:
355
		cmx2xx_display = &generic_crt_640x480;
356 357
		break;
	case MTYPE_CRT800x600:
358
		cmx2xx_display = &generic_crt_800x600;
359 360
		break;
	case MTYPE_TFT320x240:
361
		cmx2xx_display = &generic_tft_320x240;
362 363
		break;
	case MTYPE_STN640x480:
364
		cmx2xx_display = &generic_stn_640x480;
365 366
		break;
	default: /* fallback to CRT 640x480 */
367
		cmx2xx_display = &generic_crt_640x480;
368 369 370 371 372 373 374 375
		break;
	}
	return 1;
}

/*
   This should be done really early to get proper configuration for
   frame buffer.
376
   Indeed, pxafb parameters can be used istead, but CM-X2XX bootloader
377 378 379
   has limitied line length for kernel command line, and also it will
   break compatibitlty with proprietary releases already in field.
*/
380
__setup("monitor=", cmx2xx_set_display);
381

382
static void __init cmx2xx_init_display(void)
383
{
384
	pxa_set_fb_info(NULL, cmx2xx_display);
385 386
}
#else
387
static inline void cmx2xx_init_display(void) {}
388 389
#endif

390 391 392
#ifdef CONFIG_PM
static unsigned long sleep_save_msc[10];

393
static int cmx2xx_suspend(void)
394
{
395
	cmx2xx_pci_suspend();
396 397

	/* save MSC registers */
398 399 400
	sleep_save_msc[0] = __raw_readl(MSC0);
	sleep_save_msc[1] = __raw_readl(MSC1);
	sleep_save_msc[2] = __raw_readl(MSC2);
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

	/* setup power saving mode registers */
	PCFR = 0x0;
	PSLR = 0xff400000;
	PMCR  = 0x00000005;
	PWER  = 0x80000000;
	PFER  = 0x00000000;
	PRER  = 0x00000000;
	PGSR0 = 0xC0018800;
	PGSR1 = 0x004F0002;
	PGSR2 = 0x6021C000;
	PGSR3 = 0x00020000;

	return 0;
}

417
static void cmx2xx_resume(void)
418
{
419
	cmx2xx_pci_resume();
420 421

	/* restore MSC registers */
422 423 424
	__raw_writel(sleep_save_msc[0], MSC0);
	__raw_writel(sleep_save_msc[1], MSC1);
	__raw_writel(sleep_save_msc[2], MSC2);
425 426
}

427
static struct syscore_ops cmx2xx_pm_syscore_ops = {
428 429
	.resume = cmx2xx_resume,
	.suspend = cmx2xx_suspend,
430 431
};

432
static int __init cmx2xx_pm_init(void)
433
{
434 435 436
	register_syscore_ops(&cmx2xx_pm_syscore_ops);

	return 0;
437 438
}
#else
439
static int __init cmx2xx_pm_init(void) { return 0; }
440 441
#endif

442
#if defined(CONFIG_SND_PXA2XX_AC97) || defined(CONFIG_SND_PXA2XX_AC97_MODULE)
443
static void __init cmx2xx_init_ac97(void)
444
{
445
	pxa_set_ac97_info(NULL);
446 447
}
#else
448
static inline void cmx2xx_init_ac97(void) {}
449
#endif
450

451 452
static void __init cmx2xx_init(void)
{
453 454 455 456
	pxa_set_ffuart_info(NULL);
	pxa_set_btuart_info(NULL);
	pxa_set_stuart_info(NULL);

457 458
	cmx2xx_pm_init();

459 460 461 462
	if (cpu_is_pxa25x())
		cmx255_init();
	else
		cmx270_init();
463 464 465 466 467 468 469 470 471

	cmx2xx_init_dm9000();
	cmx2xx_init_display();
	cmx2xx_init_ac97();
	cmx2xx_init_touchscreen();
	cmx2xx_init_leds();
}

static void __init cmx2xx_init_irq(void)
472
{
473 474 475 476 477 478 479
	if (cpu_is_pxa25x()) {
		pxa25x_init_irq();
		cmx2xx_pci_init_irq(CMX255_GPIO_IT8152_IRQ);
	} else {
		pxa27x_init_irq();
		cmx2xx_pci_init_irq(CMX270_GPIO_IT8152_IRQ);
	}
480
}
481

482 483
#ifdef CONFIG_PCI
/* Map PCI companion statically */
484
static struct map_desc cmx2xx_io_desc[] __initdata = {
485
	[0] = { /* PCI bridge */
486
		.virtual	= (unsigned long)CMX2XX_IT8152_VIRT,
487 488 489 490 491
		.pfn		= __phys_to_pfn(PXA_CS4_PHYS),
		.length		= SZ_64M,
		.type		= MT_DEVICE
	},
};
492

493
static void __init cmx2xx_map_io(void)
494
{
495 496 497 498 499 500
	if (cpu_is_pxa25x())
		pxa25x_map_io();

	if (cpu_is_pxa27x())
		pxa27x_map_io();

501
	iotable_init(cmx2xx_io_desc, ARRAY_SIZE(cmx2xx_io_desc));
502

503
	it8152_base_address = CMX2XX_IT8152_VIRT;
504
}
505
#else
506
static void __init cmx2xx_map_io(void)
507
{
508 509 510 511 512
	if (cpu_is_pxa25x())
		pxa25x_map_io();

	if (cpu_is_pxa27x())
		pxa27x_map_io();
513
}
514
#endif
515

516
MACHINE_START(ARMCORE, "Compulab CM-X2XX")
517
	.atag_offset	= 0x100,
518
	.map_io		= cmx2xx_map_io,
519
	.nr_irqs	= CMX2XX_NR_IRQS,
520
	.init_irq	= cmx2xx_init_irq,
521 522
	/* NOTE: pxa25x_handle_irq() works on PXA27x w/o camera support */
	.handle_irq	= pxa25x_handle_irq,
523
	.timer		= &pxa_timer,
524
	.init_machine	= cmx2xx_init,
525 526 527
#ifdef CONFIG_PCI
	.dma_zone_size	= SZ_64M,
#endif
528
	.restart	= pxa_restart,
529
MACHINE_END