| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * linux/arch/arm/mach-sa1100/pleb.c | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							|  |  |  | #include <linux/tty.h>
 | 
					
						
							|  |  |  | #include <linux/ioport.h>
 | 
					
						
							| 
									
										
										
										
											2005-10-29 19:07:23 +01:00
										 |  |  | #include <linux/platform_device.h>
 | 
					
						
							| 
									
										
										
										
											2006-07-01 22:32:38 +01:00
										 |  |  | #include <linux/irq.h>
 | 
					
						
							| 
									
										
										
										
											2008-09-06 12:10:45 +01:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <linux/mtd/partitions.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  | #include <mach/hardware.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <asm/setup.h>
 | 
					
						
							|  |  |  | #include <asm/mach-types.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <asm/mach/arch.h>
 | 
					
						
							|  |  |  | #include <asm/mach/map.h>
 | 
					
						
							|  |  |  | #include <asm/mach/flash.h>
 | 
					
						
							|  |  |  | #include <asm/mach/serial_sa1100.h>
 | 
					
						
							| 
									
										
										
										
											2008-08-05 16:14:15 +01:00
										 |  |  | #include <mach/irqs.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "generic.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Ethernet IRQ mappings | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PLEB_ETH0_P		(0x20000300)	/* Ethernet 0 in PCMCIA0 IO */
 | 
					
						
							|  |  |  | #define PLEB_ETH0_V		(0xf6000300)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define GPIO_ETH0_IRQ		GPIO_GPIO(21)
 | 
					
						
							|  |  |  | #define GPIO_ETH0_EN		GPIO_GPIO(26)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IRQ_GPIO_ETH0_IRQ	IRQ_GPIO21
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource smc91x_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							| 
									
										
										
										
											2008-09-29 17:09:10 +01:00
										 |  |  | 		.start	= PLEB_ETH0_P, | 
					
						
							|  |  |  | 		.end	= PLEB_ETH0_P | 0x03ffffff, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | #if 0 /* Autoprobe instead, to get rising/falling edge characteristic right */
 | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start	= IRQ_GPIO_ETH0_IRQ, | 
					
						
							|  |  |  | 		.end	= IRQ_GPIO_ETH0_IRQ, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device smc91x_device = { | 
					
						
							|  |  |  | 	.name		= "smc91x", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(smc91x_resources), | 
					
						
							|  |  |  | 	.resource	= smc91x_resources, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device *devices[] __initdata = { | 
					
						
							|  |  |  | 	&smc91x_device, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Pleb's memory map | 
					
						
							|  |  |  |  * has flash memory (typically 4 or 8 meg) selected by | 
					
						
							|  |  |  |  * the two SA1100 lowest chip select outputs. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static struct resource pleb_flash_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start = SA1100_CS0_PHYS, | 
					
						
							|  |  |  | 		.end   = SA1100_CS0_PHYS + SZ_8M - 1, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							|  |  |  | 		.start = SA1100_CS1_PHYS, | 
					
						
							|  |  |  | 		.end   = SA1100_CS1_PHYS + SZ_8M - 1, | 
					
						
							|  |  |  | 		.flags = IORESOURCE_MEM, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct mtd_partition pleb_partitions[] = { | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.name		= "blob", | 
					
						
							| 
									
										
										
										
											2008-09-29 17:09:10 +01:00
										 |  |  | 		.offset		= 0, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.size		= 0x00020000, | 
					
						
							|  |  |  | 	}, { | 
					
						
							|  |  |  | 		.name		= "kernel", | 
					
						
							| 
									
										
										
										
											2008-09-29 17:09:10 +01:00
										 |  |  | 		.offset		= MTDPART_OFS_APPEND, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.size		= 0x000e0000, | 
					
						
							|  |  |  | 	}, { | 
					
						
							|  |  |  | 		.name		= "rootfs", | 
					
						
							| 
									
										
										
										
											2008-09-29 17:09:10 +01:00
										 |  |  | 		.offset		= MTDPART_OFS_APPEND, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.size		= 0x00300000, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct flash_platform_data pleb_flash_data = { | 
					
						
							|  |  |  | 	.map_name = "cfi_probe", | 
					
						
							|  |  |  | 	.parts = pleb_partitions, | 
					
						
							|  |  |  | 	.nr_parts = ARRAY_SIZE(pleb_partitions), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init pleb_init(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-10-06 14:55:53 +01:00
										 |  |  | 	sa11x0_register_mtd(&pleb_flash_data, pleb_flash_resources, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			      ARRAY_SIZE(pleb_flash_resources)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	platform_add_devices(devices, ARRAY_SIZE(devices)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void __init pleb_map_io(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	sa1100_map_io(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sa1100_register_uart(0, 3); | 
					
						
							| 
									
										
										
										
											2008-11-26 20:58:43 +01:00
										 |  |  | 	sa1100_register_uart(1, 1); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-26 20:58:43 +01:00
										 |  |  | 	GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD); | 
					
						
							|  |  |  | 	GPDR |= GPIO_UART_TXD; | 
					
						
							|  |  |  | 	GPDR &= ~GPIO_UART_RXD; | 
					
						
							|  |  |  | 	PPAR |= PPAR_UPR; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Fix expansion memory timing for network card | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	MECR = ((2<<10) | (2<<5) | (2<<0)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Enable the SMC ethernet controller | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	GPDR |= GPIO_ETH0_EN;	/* set to output */ | 
					
						
							|  |  |  | 	GPCR  = GPIO_ETH0_EN;	/* clear MCLK (enable smc) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GPDR &= ~GPIO_ETH0_IRQ; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-24 13:25:22 +01:00
										 |  |  | 	irq_set_irq_type(GPIO_ETH0_IRQ, IRQ_TYPE_EDGE_FALLING); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MACHINE_START(PLEB, "PLEB") | 
					
						
							| 
									
										
										
										
											2005-07-03 17:38:58 +01:00
										 |  |  | 	.map_io		= pleb_map_io, | 
					
						
							|  |  |  | 	.init_irq	= sa1100_init_irq, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	.timer		= &sa1100_timer, | 
					
						
							|  |  |  | 	.init_machine   = pleb_init, | 
					
						
							| 
									
										
										
										
											2011-11-05 10:28:50 +00:00
										 |  |  | 	.restart	= sa11x0_restart, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | MACHINE_END |