trizeps4.c 14.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  linux/arch/arm/mach-pxa/trizeps4.c
 *
 *  Support for the Keith und Koep Trizeps4 Module Platform.
 *
 *  Author:	Jürgen Schindele
 *  Created:	20 02, 2006
 *  Copyright:	Jürgen Schindele
 *
 *  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/init.h>
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/interrupt.h>
19
#include <linux/leds.h>
20
#include <linux/export.h>
21 22 23 24 25
#include <linux/sched.h>
#include <linux/bitops.h>
#include <linux/fb.h>
#include <linux/ioport.h>
#include <linux/delay.h>
26 27
#include <linux/gpio.h>
#include <linux/dm9000.h>
28
#include <linux/mtd/physmap.h>
29
#include <linux/mtd/partitions.h>
30
#include <linux/regulator/machine.h>
31
#include <linux/platform_data/i2c-pxa.h>
32 33 34 35 36 37 38 39 40 41 42 43 44

#include <asm/types.h>
#include <asm/setup.h>
#include <asm/memory.h>
#include <asm/mach-types.h>
#include <asm/irq.h>
#include <asm/sizes.h>

#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/irq.h>
#include <asm/mach/flash.h>

45
#include "pxa27x.h"
46 47
#include <mach/trizeps4.h>
#include <mach/audio.h>
48 49 50 51
#include <linux/platform_data/video-pxafb.h>
#include <linux/platform_data/mmc-pxamci.h>
#include <linux/platform_data/irda-pxaficp.h>
#include <linux/platform_data/usb-ohci-pxa27x.h>
52
#include <mach/smemc.h>
53 54

#include "generic.h"
55
#include "devices.h"
56

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
/*	comment out the following line if you want to use the
 *	Standard UART from PXA for serial / irda transmission
 *	and acivate it if you have status leds connected */
#define STATUS_LEDS_ON_STUART_PINS 1

/*****************************************************************************
 * MultiFunctionPins of CPU
 *****************************************************************************/
static unsigned long trizeps4_pin_config[] __initdata = {
	/* Chip Selects */
	GPIO15_nCS_1,		/* DiskOnChip CS */
	GPIO93_GPIO,		/* TRIZEPS4_DOC_IRQ */
	GPIO94_GPIO,		/* DOC lock */

	GPIO78_nCS_2,		/* DM9000 CS */
	GPIO101_GPIO,		/* TRIZEPS4_ETH_IRQ */

	GPIO79_nCS_3,		/* Logic CS */
	GPIO0_GPIO | WAKEUP_ON_EDGE_RISE,	/* Logic irq */

77 78 79 80 81 82
	/* AC97 */
	GPIO28_AC97_BITCLK,
	GPIO29_AC97_SDATA_IN_0,
	GPIO30_AC97_SDATA_OUT,
	GPIO31_AC97_SYNC,

83
	/* LCD - 16bpp Active TFT */
84
	GPIOxx_LCD_TFT_16BPP,
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148

	/* UART */
	GPIO9_FFUART_CTS,
	GPIO10_FFUART_DCD,
	GPIO16_FFUART_TXD,
	GPIO33_FFUART_DSR,
	GPIO38_FFUART_RI,
	GPIO82_FFUART_DTR,
	GPIO83_FFUART_RTS,
	GPIO96_FFUART_RXD,

	GPIO42_BTUART_RXD,
	GPIO43_BTUART_TXD,
	GPIO44_BTUART_CTS,
	GPIO45_BTUART_RTS,
#ifdef STATUS_LEDS_ON_STUART_PINS
	GPIO46_GPIO,
	GPIO47_GPIO,
#else
	GPIO46_STUART_RXD,
	GPIO47_STUART_TXD,
#endif
	/* PCMCIA */
	GPIO11_GPIO,			/* TRIZEPS4_CD_IRQ */
	GPIO13_GPIO,			/* TRIZEPS4_READY_NINT */
	GPIO48_nPOE,
	GPIO49_nPWE,
	GPIO50_nPIOR,
	GPIO51_nPIOW,
	GPIO54_nPCE_2,
	GPIO55_nPREG,
	GPIO56_nPWAIT,
	GPIO57_nIOIS16,
	GPIO102_nPCE_1,
	GPIO104_PSKTSEL,

	/* MultiMediaCard */
	GPIO32_MMC_CLK,
	GPIO92_MMC_DAT_0,
	GPIO109_MMC_DAT_1,
	GPIO110_MMC_DAT_2,
	GPIO111_MMC_DAT_3,
	GPIO112_MMC_CMD,
	GPIO12_GPIO,			/* TRIZEPS4_MMC_IRQ */

	/* USB OHCI */
	GPIO88_USBH1_PWR,		/* USBHPWR1 */
	GPIO89_USBH1_PEN,		/* USBHPEN1 */

	/* I2C */
	GPIO117_I2C_SCL,
	GPIO118_I2C_SDA,
};

static unsigned long trizeps4wl_pin_config[] __initdata = {
	/* SSP 2 */
	GPIO14_SSP2_SFRM,
	GPIO19_SSP2_SCLK,
	GPIO53_GPIO,			/* TRIZEPS4_SPI_IRQ */
	GPIO86_SSP2_RXD,
	GPIO87_SSP2_TXD,
};

/****************************************************************************
149
 * ONBOARD FLASH
150
 ****************************************************************************/
151 152 153
static struct mtd_partition trizeps4_partitions[] = {
	{
		.name =		"Bootloader",
154
		.offset =	0x00000000,
155 156
		.size =		0x00040000,
		.mask_flags =	MTD_WRITEABLE  /* force read-only */
157
	}, {
158 159 160
		.name =		"Backup",
		.offset =	0x00040000,
		.size =		0x00040000,
161
	}, {
162 163 164
		.name =		"Image",
		.offset =	0x00080000,
		.size =		0x01080000,
165
	}, {
166 167 168
		.name =		"IPSM",
		.offset =	0x01100000,
		.size =		0x00e00000,
169
	}, {
170 171
		.name =		"Registry",
		.offset =	0x01f00000,
172 173 174 175
		.size =		MTDPART_SIZ_FULL,
	}
};

176
static struct physmap_flash_data trizeps4_flash_data[] = {
177
	{
178
		.width		= 4,			/* bankwidth in bytes */
179 180 181 182 183 184 185
		.parts		= trizeps4_partitions,
		.nr_parts	= ARRAY_SIZE(trizeps4_partitions)
	}
};

static struct resource flash_resource = {
	.start	= PXA_CS0_PHYS,
186
	.end	= PXA_CS0_PHYS + SZ_32M - 1,
187 188 189 190
	.flags	= IORESOURCE_MEM,
};

static struct platform_device flash_device = {
191
	.name		= "physmap-flash",
192 193
	.id		= 0,
	.dev = {
194
		.platform_data = trizeps4_flash_data,
195 196 197 198 199
	},
	.resource = &flash_resource,
	.num_resources = 1,
};

200
/****************************************************************************
201
 * DAVICOM DM9000 Ethernet
202
 ****************************************************************************/
203 204 205 206 207 208 209 210 211 212 213 214 215 216
static struct resource dm9000_resources[] = {
	[0] = {
		.start	= TRIZEPS4_ETH_PHYS+0x300,
		.end	= TRIZEPS4_ETH_PHYS+0x400-1,
		.flags	= IORESOURCE_MEM,
	},
	[1] = {
		.start	= TRIZEPS4_ETH_PHYS+0x8300,
		.end	= TRIZEPS4_ETH_PHYS+0x8400-1,
		.flags	= IORESOURCE_MEM,
	},
	[2] = {
		.start	= TRIZEPS4_ETH_IRQ,
		.end	= TRIZEPS4_ETH_IRQ,
217
		.flags	= IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
218 219 220
	},
};

221 222 223 224
static struct dm9000_plat_data tri_dm9000_platdata = {
	.flags		= DM9000_PLATF_32BITONLY,
};

225 226 227 228 229
static struct platform_device dm9000_device = {
	.name		= "dm9000",
	.id		= -1,
	.num_resources	= ARRAY_SIZE(dm9000_resources),
	.resource	= dm9000_resources,
230 231 232
	.dev		= {
		.platform_data = &tri_dm9000_platdata,
	}
233 234
};

235 236 237 238 239
/****************************************************************************
 * LED's on GPIO pins of PXA
 ****************************************************************************/
static struct gpio_led trizeps4_led[] = {
#ifdef STATUS_LEDS_ON_STUART_PINS
240
	{
241 242 243 244
		.name = "led0:orange:heartbeat",	/* */
		.default_trigger = "heartbeat",
		.gpio = GPIO_HEARTBEAT_LED,
		.active_low = 1,
245 246
	},
	{
247 248 249 250
		.name = "led1:yellow:cpubusy",		/* */
		.default_trigger = "cpu-busy",
		.gpio = GPIO_SYS_BUSY_LED,
		.active_low = 1,
251 252 253 254
	},
#endif
};

255 256 257 258 259 260 261 262
static struct gpio_led_platform_data trizeps4_led_data = {
	.leds		= trizeps4_led,
	.num_leds	= ARRAY_SIZE(trizeps4_led),
};

static struct platform_device leds_devices = {
	.name		= "leds-gpio",
	.id		= -1,
263
	.dev		= {
264
		.platform_data	= &trizeps4_led_data,
265 266 267
	},
};

268
static struct platform_device *trizeps4_devices[] __initdata = {
269 270
	&flash_device,
	&dm9000_device,
271 272 273 274 275 276
	&leds_devices,
};

static struct platform_device *trizeps4wl_devices[] __initdata = {
	&flash_device,
	&leds_devices,
277 278 279 280 281 282 283 284 285 286 287
};

static short trizeps_conxs_bcr;

/* PCCARD power switching supports only 3,3V */
void board_pcmcia_power(int power)
{
	if (power) {
		/* switch power on, put in reset and enable buffers */
		trizeps_conxs_bcr |= power;
		trizeps_conxs_bcr |= ConXS_BCR_CF_RESET;
288 289
		trizeps_conxs_bcr &= ~ConXS_BCR_CF_BUF_EN;
		BCR_writew(trizeps_conxs_bcr);
290 291 292
		/* wait a little */
		udelay(2000);
		/* take reset away */
293 294
		trizeps_conxs_bcr &= ~ConXS_BCR_CF_RESET;
		BCR_writew(trizeps_conxs_bcr);
295 296 297 298
		udelay(2000);
	} else {
		/* put in reset */
		trizeps_conxs_bcr |= ConXS_BCR_CF_RESET;
299
		BCR_writew(trizeps_conxs_bcr);
300 301
		udelay(1000);
		/* switch power off */
302 303
		trizeps_conxs_bcr &= ~0xf;
		BCR_writew(trizeps_conxs_bcr);
304
	}
305 306
	pr_debug("%s: o%s 0x%x\n", __func__, power ? "n" : "ff",
			trizeps_conxs_bcr);
307
}
308
EXPORT_SYMBOL(board_pcmcia_power);
309 310 311 312

/* backlight power switching for LCD panel */
static void board_backlight_power(int on)
{
313
	if (on)
314
		trizeps_conxs_bcr |= ConXS_BCR_L_DISP;
315
	else
316 317
		trizeps_conxs_bcr &= ~ConXS_BCR_L_DISP;

318 319 320
	pr_debug("%s: o%s 0x%x\n", __func__, on ? "n" : "ff",
			trizeps_conxs_bcr);
	BCR_writew(trizeps_conxs_bcr);
321 322
}

323 324 325 326
/* a I2C based RTC is known on CONXS board */
static struct i2c_board_info trizeps4_i2c_devices[] __initdata = {
	{ I2C_BOARD_INFO("rtc-pcf8593", 0x51) }
};
327

328 329 330 331 332
/****************************************************************************
 * MMC card slot external to module
 ****************************************************************************/
static int trizeps4_mci_init(struct device *dev, irq_handler_t mci_detect_int,
		void *data)
333 334 335
{
	int err;

336
	err = request_irq(TRIZEPS4_MMC_IRQ, mci_detect_int,
337
			  IRQF_TRIGGER_RISING, "MMC card detect", data);
338 339 340 341 342 343
	if (err) {
		printk(KERN_ERR "trizeps4_mci_init: MMC/SD: can't request"
						"MMC card detect IRQ\n");
		return -1;
	}
	return 0;
344 345 346 347 348 349 350 351 352
}

static void trizeps4_mci_exit(struct device *dev, void *data)
{
	free_irq(TRIZEPS4_MMC_IRQ, data);
}

static struct pxamci_platform_data trizeps4_mci_platform_data = {
	.ocr_mask	= MMC_VDD_32_33|MMC_VDD_33_34,
353
	.detect_delay_ms= 10,
354 355
	.init 		= trizeps4_mci_init,
	.exit		= trizeps4_mci_exit,
356 357
	.get_ro		= NULL,	/* write-protection not supported */
	.setpower 	= NULL,	/* power-switching not supported */
358 359 360
	.gpio_card_detect = -1,
	.gpio_card_ro	= -1,
	.gpio_power	= -1,
361 362
};

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
/****************************************************************************
 * IRDA mode switching on stuart
 ****************************************************************************/
#ifndef STATUS_LEDS_ON_STUART_PINS
static short trizeps_conxs_ircr;

static int trizeps4_irda_startup(struct device *dev)
{
	trizeps_conxs_ircr &= ~ConXS_IRCR_SD;
	IRCR_writew(trizeps_conxs_ircr);
	return 0;
}

static void trizeps4_irda_shutdown(struct device *dev)
{
	trizeps_conxs_ircr |= ConXS_IRCR_SD;
	IRCR_writew(trizeps_conxs_ircr);
}

static void trizeps4_irda_transceiver_mode(struct device *dev, int mode)
{
	unsigned long flags;

	local_irq_save(flags);
	/* Switch mode */
	if (mode & IR_SIRMODE)
		trizeps_conxs_ircr &= ~ConXS_IRCR_MODE;	/* Slow mode */
390
	else if (mode & IR_FIRMODE)
391 392 393 394 395 396 397 398 399 400 401 402 403 404
		trizeps_conxs_ircr |= ConXS_IRCR_MODE;	/* Fast mode */

	/* Switch power */
	if (mode & IR_OFF)
		trizeps_conxs_ircr |= ConXS_IRCR_SD;
	else
		trizeps_conxs_ircr &= ~ConXS_IRCR_SD;

	IRCR_writew(trizeps_conxs_ircr);
	local_irq_restore(flags);

	pxa2xx_transceiver_mode(dev, mode);
}

405
static struct pxaficp_platform_data trizeps4_ficp_platform_data = {
406
	.gpio_pwdown		= -1,
407 408 409 410
	.transceiver_cap	= IR_SIRMODE | IR_FIRMODE | IR_OFF,
	.transceiver_mode	= trizeps4_irda_transceiver_mode,
	.startup		= trizeps4_irda_startup,
	.shutdown		= trizeps4_irda_shutdown,
411
};
412
#endif
413

414 415 416
/****************************************************************************
 * OHCI USB port
 ****************************************************************************/
417 418
static struct pxaohci_platform_data trizeps4_ohci_platform_data = {
	.port_mode	= PMM_PERPORT_MODE,
419
	.flags		= ENABLE_PORT_ALL | POWER_CONTROL_LOW | POWER_SENSE_LOW,
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
};

static struct map_desc trizeps4_io_desc[] __initdata = {
	{ 	/* ConXS CFSR */
		.virtual	= TRIZEPS4_CFSR_VIRT,
		.pfn		= __phys_to_pfn(TRIZEPS4_CFSR_PHYS),
		.length		= 0x00001000,
		.type		= MT_DEVICE
	},
	{	/* ConXS BCR */
		.virtual	= TRIZEPS4_BOCR_VIRT,
		.pfn		= __phys_to_pfn(TRIZEPS4_BOCR_PHYS),
		.length		= 0x00001000,
		.type		= MT_DEVICE
	},
	{ 	/* ConXS IRCR */
		.virtual	= TRIZEPS4_IRCR_VIRT,
		.pfn		= __phys_to_pfn(TRIZEPS4_IRCR_PHYS),
		.length		= 0x00001000,
		.type		= MT_DEVICE
	},
	{	/* ConXS DCR */
		.virtual	= TRIZEPS4_DICR_VIRT,
		.pfn		= __phys_to_pfn(TRIZEPS4_DICR_PHYS),
		.length		= 0x00001000,
		.type		= MT_DEVICE
	},
	{	/* ConXS UPSR */
		.virtual	= TRIZEPS4_UPSR_VIRT,
		.pfn		= __phys_to_pfn(TRIZEPS4_UPSR_PHYS),
		.length		= 0x00001000,
		.type		= MT_DEVICE
	}
};

455
static struct pxafb_mode_info sharp_lcd_mode = {
456 457 458 459 460 461 462 463 464 465 466 467
	.pixclock	= 78000,
	.xres		= 640,
	.yres		= 480,
	.bpp		= 8,
	.hsync_len	= 4,
	.left_margin	= 4,
	.right_margin	= 4,
	.vsync_len	= 2,
	.upper_margin	= 0,
	.lower_margin	= 0,
	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
	.cmap_greyscale	= 0,
468 469 470
};

static struct pxafb_mach_info sharp_lcd = {
471 472 473 474 475 476
	.modes		= &sharp_lcd_mode,
	.num_modes	= 1,
	.lcd_conn	= LCD_COLOR_DSTN_16BPP | LCD_PCLK_EDGE_FALL,
	.cmap_inverse	= 0,
	.cmap_static	= 0,
	.pxafb_backlight_power = board_backlight_power,
477 478
};

479
static struct pxafb_mode_info toshiba_lcd_mode = {
480 481 482 483 484 485 486 487 488 489 490 491
	.pixclock	= 39720,
	.xres		= 640,
	.yres		= 480,
	.bpp		= 8,
	.hsync_len	= 63,
	.left_margin	= 12,
	.right_margin	= 12,
	.vsync_len	= 4,
	.upper_margin	= 32,
	.lower_margin	= 10,
	.sync		= 0,
	.cmap_greyscale	= 0,
492 493 494
};

static struct pxafb_mach_info toshiba_lcd = {
495 496 497 498 499 500
	.modes		= &toshiba_lcd_mode,
	.num_modes	= 1,
	.lcd_conn	= (LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL),
	.cmap_inverse	= 0,
	.cmap_static	= 0,
	.pxafb_backlight_power = board_backlight_power,
501 502
};

503 504
static void __init trizeps4_init(void)
{
505 506 507 508 509 510 511 512 513
	pxa2xx_mfp_config(ARRAY_AND_SIZE(trizeps4_pin_config));
	if (machine_is_trizeps4wl()) {
		pxa2xx_mfp_config(ARRAY_AND_SIZE(trizeps4wl_pin_config));
		platform_add_devices(trizeps4wl_devices,
					ARRAY_SIZE(trizeps4wl_devices));
	} else {
		platform_add_devices(trizeps4_devices,
					ARRAY_SIZE(trizeps4_devices));
	}
514

515 516 517 518
	pxa_set_ffuart_info(NULL);
	pxa_set_btuart_info(NULL);
	pxa_set_stuart_info(NULL);

519
	if (0)	/* dont know how to determine LCD */
520
		pxa_set_fb_info(NULL, &sharp_lcd);
521
	else
522
		pxa_set_fb_info(NULL, &toshiba_lcd);
523 524

	pxa_set_mci_info(&trizeps4_mci_platform_data);
525
#ifndef STATUS_LEDS_ON_STUART_PINS
526
	pxa_set_ficp_info(&trizeps4_ficp_platform_data);
527
#endif
528
	pxa_set_ohci_info(&trizeps4_ohci_platform_data);
529
	pxa_set_ac97_info(NULL);
530 531 532
	pxa_set_i2c_info(NULL);
	i2c_register_board_info(0, trizeps4_i2c_devices,
					ARRAY_SIZE(trizeps4_i2c_devices));
533 534 535

	/* this is the reset value */
	trizeps_conxs_bcr = 0x00A0;
536

537 538
	BCR_writew(trizeps_conxs_bcr);
	board_backlight_power(1);
539 540

	regulator_has_full_constraints();
541
}
542

543 544
static void __init trizeps4_map_io(void)
{
545
	pxa27x_map_io();
546 547
	iotable_init(trizeps4_io_desc, ARRAY_SIZE(trizeps4_io_desc));

548
	if ((__raw_readl(MSC0) & 0x8) && (__raw_readl(BOOT_DEF) & 0x1)) {
549 550 551 552 553 554 555 556
		/* if flash is 16 bit wide its a Trizeps4 WL */
		__machine_arch_type = MACH_TYPE_TRIZEPS4WL;
		trizeps4_flash_data[0].width = 2;
	} else {
		/* if flash is 32 bit wide its a Trizeps4 */
		__machine_arch_type = MACH_TYPE_TRIZEPS4;
		trizeps4_flash_data[0].width = 4;
	}
557 558 559 560
}

MACHINE_START(TRIZEPS4, "Keith und Koep Trizeps IV module")
	/* MAINTAINER("Jürgen Schindele") */
561
	.atag_offset	= 0x100,
562 563
	.init_machine	= trizeps4_init,
	.map_io		= trizeps4_map_io,
R
Rob Herring 已提交
564
	.nr_irqs	= PXA_NR_IRQS,
565
	.init_irq	= pxa27x_init_irq,
566
	.handle_irq	= pxa27x_handle_irq,
S
Stephen Warren 已提交
567
	.init_time	= pxa_timer_init,
568
	.restart	= pxa_restart,
569 570
MACHINE_END

571 572
MACHINE_START(TRIZEPS4WL, "Keith und Koep Trizeps IV-WL module")
	/* MAINTAINER("Jürgen Schindele") */
573
	.atag_offset	= 0x100,
574 575
	.init_machine	= trizeps4_init,
	.map_io		= trizeps4_map_io,
R
Rob Herring 已提交
576
	.nr_irqs	= PXA_NR_IRQS,
577
	.init_irq	= pxa27x_init_irq,
578
	.handle_irq	= pxa27x_handle_irq,
S
Stephen Warren 已提交
579
	.init_time	= pxa_timer_init,
580
	.restart	= pxa_restart,
581
MACHINE_END