| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 1 | /* | 
| Uwe Kleine-König | 95c0046 | 2009-12-09 20:12:07 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mach-mx1/mach-scb9328.c | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 3 | * | 
|  | 4 | * Copyright (c) 2004 Sascha Hauer <saschahauer@web.de> | 
|  | 5 | * Copyright (c) 2006-2008 Juergen Beisert <jbeisert@netscape.net> | 
|  | 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 | */ | 
|  | 12 |  | 
|  | 13 | #include <linux/platform_device.h> | 
|  | 14 | #include <linux/mtd/physmap.h> | 
|  | 15 | #include <linux/interrupt.h> | 
|  | 16 | #include <linux/dm9000.h> | 
|  | 17 |  | 
|  | 18 | #include <asm/mach-types.h> | 
|  | 19 | #include <asm/mach/arch.h> | 
|  | 20 | #include <asm/mach/time.h> | 
|  | 21 |  | 
|  | 22 | #include <mach/common.h> | 
|  | 23 | #include <mach/hardware.h> | 
|  | 24 | #include <mach/irqs.h> | 
| Uwe Kleine-König | e835d88 | 2010-02-16 11:07:49 +0100 | [diff] [blame] | 25 | #include <mach/iomux-mx1.h> | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 26 |  | 
| Uwe Kleine-König | d112f4e | 2010-06-22 14:50:59 +0200 | [diff] [blame] | 27 | #include "devices-imx1.h" | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 28 |  | 
|  | 29 | /* | 
|  | 30 | * This scb9328 has a 32MiB flash | 
|  | 31 | */ | 
|  | 32 | static struct resource flash_resource = { | 
| Uwe Kleine-König | 05a3185 | 2010-03-04 21:02:41 +0100 | [diff] [blame] | 33 | .start	= MX1_CS0_PHYS, | 
|  | 34 | .end	= MX1_CS0_PHYS + (32 * 1024 * 1024) - 1, | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 35 | .flags	= IORESOURCE_MEM, | 
|  | 36 | }; | 
|  | 37 |  | 
|  | 38 | static struct physmap_flash_data scb_flash_data = { | 
|  | 39 | .width  = 2, | 
|  | 40 | }; | 
|  | 41 |  | 
|  | 42 | static struct platform_device scb_flash_device = { | 
|  | 43 | .name		= "physmap-flash", | 
|  | 44 | .id		= 0, | 
|  | 45 | .dev = { | 
|  | 46 | .platform_data = &scb_flash_data, | 
|  | 47 | }, | 
|  | 48 | .resource = &flash_resource, | 
|  | 49 | .num_resources = 1, | 
|  | 50 | }; | 
|  | 51 |  | 
|  | 52 | /* | 
|  | 53 | * scb9328 has a DM9000 network controller | 
|  | 54 | * connected to CS5, with 16 bit data path | 
|  | 55 | * and interrupt connected to GPIO 3 | 
|  | 56 | */ | 
|  | 57 |  | 
|  | 58 | /* | 
|  | 59 | * internal datapath is fixed 16 bit | 
|  | 60 | */ | 
|  | 61 | static struct dm9000_plat_data dm9000_platdata = { | 
|  | 62 | .flags	= DM9000_PLATF_16BITONLY, | 
|  | 63 | }; | 
|  | 64 |  | 
|  | 65 | /* | 
|  | 66 | * the DM9000 drivers wants two defined address spaces | 
|  | 67 | * to gain access to address latch registers and the data path. | 
|  | 68 | */ | 
|  | 69 | static struct resource dm9000x_resources[] = { | 
| Sascha Hauer | 9b0e6db | 2009-06-23 12:14:39 +0200 | [diff] [blame] | 70 | { | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 71 | .name	= "address area", | 
| Uwe Kleine-König | 05a3185 | 2010-03-04 21:02:41 +0100 | [diff] [blame] | 72 | .start	= MX1_CS5_PHYS, | 
|  | 73 | .end	= MX1_CS5_PHYS + 1, | 
| Sascha Hauer | 9b0e6db | 2009-06-23 12:14:39 +0200 | [diff] [blame] | 74 | .flags	= IORESOURCE_MEM,	/* address access */ | 
|  | 75 | }, { | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 76 | .name	= "data area", | 
| Uwe Kleine-König | 05a3185 | 2010-03-04 21:02:41 +0100 | [diff] [blame] | 77 | .start	= MX1_CS5_PHYS + 4, | 
|  | 78 | .end	= MX1_CS5_PHYS + 5, | 
| Sascha Hauer | 9b0e6db | 2009-06-23 12:14:39 +0200 | [diff] [blame] | 79 | .flags	= IORESOURCE_MEM,	/* data access */ | 
|  | 80 | }, { | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 81 | .start	= IRQ_GPIOC(3), | 
|  | 82 | .end	= IRQ_GPIOC(3), | 
| Sascha Hauer | 9b0e6db | 2009-06-23 12:14:39 +0200 | [diff] [blame] | 83 | .flags	= IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 84 | }, | 
|  | 85 | }; | 
|  | 86 |  | 
|  | 87 | static struct platform_device dm9000x_device = { | 
|  | 88 | .name		= "dm9000", | 
|  | 89 | .id		= 0, | 
|  | 90 | .num_resources	= ARRAY_SIZE(dm9000x_resources), | 
|  | 91 | .resource	= dm9000x_resources, | 
|  | 92 | .dev		= { | 
|  | 93 | .platform_data = &dm9000_platdata, | 
|  | 94 | } | 
|  | 95 | }; | 
|  | 96 |  | 
| Uwe Kleine-König | 6c80ee5 | 2010-09-28 21:53:31 +0200 | [diff] [blame] | 97 | static const int mxc_uart1_pins[] = { | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 98 | PC9_PF_UART1_CTS, | 
|  | 99 | PC10_PF_UART1_RTS, | 
|  | 100 | PC11_PF_UART1_TXD, | 
|  | 101 | PC12_PF_UART1_RXD, | 
|  | 102 | }; | 
|  | 103 |  | 
|  | 104 | static int uart1_mxc_init(struct platform_device *pdev) | 
|  | 105 | { | 
|  | 106 | return mxc_gpio_setup_multiple_pins(mxc_uart1_pins, | 
|  | 107 | ARRAY_SIZE(mxc_uart1_pins), "UART1"); | 
|  | 108 | } | 
|  | 109 |  | 
| Uwe Kleine-König | a02b042 | 2010-03-05 11:04:45 +0100 | [diff] [blame] | 110 | static void uart1_mxc_exit(struct platform_device *pdev) | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 111 | { | 
|  | 112 | mxc_gpio_release_multiple_pins(mxc_uart1_pins, | 
|  | 113 | ARRAY_SIZE(mxc_uart1_pins)); | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 114 | } | 
|  | 115 |  | 
| Uwe Kleine-König | d112f4e | 2010-06-22 14:50:59 +0200 | [diff] [blame] | 116 | static const struct imxuart_platform_data uart_pdata __initconst = { | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 117 | .init = uart1_mxc_init, | 
|  | 118 | .exit = uart1_mxc_exit, | 
|  | 119 | .flags = IMXUART_HAVE_RTSCTS, | 
|  | 120 | }; | 
|  | 121 |  | 
|  | 122 | static struct platform_device *devices[] __initdata = { | 
|  | 123 | &scb_flash_device, | 
|  | 124 | &dm9000x_device, | 
|  | 125 | }; | 
|  | 126 |  | 
|  | 127 | /* | 
|  | 128 | * scb9328_init - Init the CPU card itself | 
|  | 129 | */ | 
|  | 130 | static void __init scb9328_init(void) | 
|  | 131 | { | 
| Uwe Kleine-König | d112f4e | 2010-06-22 14:50:59 +0200 | [diff] [blame] | 132 | imx1_add_imx_uart0(&uart_pdata); | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 133 |  | 
|  | 134 | printk(KERN_INFO"Scb9328: Adding devices\n"); | 
|  | 135 | platform_add_devices(devices, ARRAY_SIZE(devices)); | 
|  | 136 | } | 
|  | 137 |  | 
|  | 138 | static void __init scb9328_timer_init(void) | 
|  | 139 | { | 
|  | 140 | mx1_clocks_init(32000); | 
|  | 141 | } | 
|  | 142 |  | 
|  | 143 | static struct sys_timer scb9328_timer = { | 
|  | 144 | .init	= scb9328_timer_init, | 
|  | 145 | }; | 
|  | 146 |  | 
|  | 147 | MACHINE_START(SCB9328, "Synertronixx scb9328") | 
| Uwe Kleine-König | 3dac219 | 2011-02-07 16:35:19 +0100 | [diff] [blame] | 148 | /* Sascha Hauer */ | 
|  | 149 | .boot_params = 0x08000100, | 
|  | 150 | .map_io = mx1_map_io, | 
|  | 151 | .init_early = imx1_init_early, | 
|  | 152 | .init_irq = mx1_init_irq, | 
|  | 153 | .timer = &scb9328_timer, | 
|  | 154 | .init_machine = scb9328_init, | 
| Sascha Hauer | 2420563 | 2009-01-28 17:36:37 +0100 | [diff] [blame] | 155 | MACHINE_END |