Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 1 | /* |
| 2 | * arch/sh/boards/renesas/x3proto/setup.c |
| 3 | * |
| 4 | * Renesas SH-X3 Prototype Board Support. |
| 5 | * |
Paul Mundt | e77eb36 | 2008-08-05 13:16:56 +0900 | [diff] [blame] | 6 | * Copyright (C) 2007 - 2008 Paul Mundt |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 7 | * |
| 8 | * This file is subject to the terms and conditions of the GNU General Public |
| 9 | * License. See the file "COPYING" in the main directory of this archive |
| 10 | * for more details. |
| 11 | */ |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/io.h> |
Paul Mundt | e77eb36 | 2008-08-05 13:16:56 +0900 | [diff] [blame] | 16 | #include <linux/smc91x.h> |
Paul Mundt | 10f0fc1 | 2009-01-07 17:45:02 +0900 | [diff] [blame] | 17 | #include <linux/irq.h> |
Yoshihiro Shimoda | fcaf99d | 2009-05-26 09:33:08 +0000 | [diff] [blame] | 18 | #include <linux/interrupt.h> |
| 19 | #include <linux/usb/r8a66597.h> |
Magnus Damm | 2c59b0b | 2009-07-22 14:41:35 +0000 | [diff] [blame] | 20 | #include <linux/usb/m66592.h> |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 21 | #include <asm/ilsel.h> |
Paul Mundt | 3366e35 | 2010-03-30 12:38:01 +0900 | [diff] [blame] | 22 | #include <asm/smp-ops.h> |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 23 | |
| 24 | static struct resource heartbeat_resources[] = { |
| 25 | [0] = { |
| 26 | .start = 0xb8140020, |
Paul Mundt | a1fd306 | 2007-08-23 15:11:44 +0900 | [diff] [blame] | 27 | .end = 0xb8140020, |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 28 | .flags = IORESOURCE_MEM, |
| 29 | }, |
| 30 | }; |
| 31 | |
| 32 | static struct platform_device heartbeat_device = { |
| 33 | .name = "heartbeat", |
| 34 | .id = -1, |
| 35 | .num_resources = ARRAY_SIZE(heartbeat_resources), |
| 36 | .resource = heartbeat_resources, |
| 37 | }; |
| 38 | |
Paul Mundt | e77eb36 | 2008-08-05 13:16:56 +0900 | [diff] [blame] | 39 | static struct smc91x_platdata smc91x_info = { |
| 40 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, |
| 41 | }; |
| 42 | |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 43 | static struct resource smc91x_resources[] = { |
| 44 | [0] = { |
| 45 | .start = 0x18000300, |
| 46 | .end = 0x18000300 + 0x10 - 1, |
| 47 | .flags = IORESOURCE_MEM, |
| 48 | }, |
| 49 | [1] = { |
| 50 | /* Filled in by ilsel */ |
| 51 | .flags = IORESOURCE_IRQ, |
| 52 | }, |
| 53 | }; |
| 54 | |
| 55 | static struct platform_device smc91x_device = { |
| 56 | .name = "smc91x", |
| 57 | .id = -1, |
| 58 | .resource = smc91x_resources, |
| 59 | .num_resources = ARRAY_SIZE(smc91x_resources), |
Paul Mundt | e77eb36 | 2008-08-05 13:16:56 +0900 | [diff] [blame] | 60 | .dev = { |
| 61 | .platform_data = &smc91x_info, |
| 62 | }, |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 63 | }; |
| 64 | |
Yoshihiro Shimoda | fcaf99d | 2009-05-26 09:33:08 +0000 | [diff] [blame] | 65 | static struct r8a66597_platdata r8a66597_data = { |
| 66 | .xtal = R8A66597_PLATDATA_XTAL_12MHZ, |
| 67 | .vif = 1, |
| 68 | }; |
| 69 | |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 70 | static struct resource r8a66597_usb_host_resources[] = { |
| 71 | [0] = { |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 72 | .start = 0x18040000, |
| 73 | .end = 0x18080000 - 1, |
| 74 | .flags = IORESOURCE_MEM, |
| 75 | }, |
| 76 | [1] = { |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 77 | /* Filled in by ilsel */ |
Yoshihiro Shimoda | fcaf99d | 2009-05-26 09:33:08 +0000 | [diff] [blame] | 78 | .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW, |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 79 | }, |
| 80 | }; |
| 81 | |
| 82 | static struct platform_device r8a66597_usb_host_device = { |
| 83 | .name = "r8a66597_hcd", |
| 84 | .id = -1, |
| 85 | .dev = { |
| 86 | .dma_mask = NULL, /* don't use dma */ |
| 87 | .coherent_dma_mask = 0xffffffff, |
Yoshihiro Shimoda | fcaf99d | 2009-05-26 09:33:08 +0000 | [diff] [blame] | 88 | .platform_data = &r8a66597_data, |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 89 | }, |
| 90 | .num_resources = ARRAY_SIZE(r8a66597_usb_host_resources), |
| 91 | .resource = r8a66597_usb_host_resources, |
| 92 | }; |
| 93 | |
Magnus Damm | 2c59b0b | 2009-07-22 14:41:35 +0000 | [diff] [blame] | 94 | static struct m66592_platdata usbf_platdata = { |
| 95 | .xtal = M66592_PLATDATA_XTAL_24MHZ, |
| 96 | .vif = 1, |
| 97 | }; |
| 98 | |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 99 | static struct resource m66592_usb_peripheral_resources[] = { |
| 100 | [0] = { |
| 101 | .name = "m66592_udc", |
| 102 | .start = 0x18080000, |
| 103 | .end = 0x180c0000 - 1, |
| 104 | .flags = IORESOURCE_MEM, |
| 105 | }, |
| 106 | [1] = { |
| 107 | .name = "m66592_udc", |
| 108 | /* Filled in by ilsel */ |
| 109 | .flags = IORESOURCE_IRQ, |
| 110 | }, |
| 111 | }; |
| 112 | |
| 113 | static struct platform_device m66592_usb_peripheral_device = { |
| 114 | .name = "m66592_udc", |
| 115 | .id = -1, |
| 116 | .dev = { |
| 117 | .dma_mask = NULL, /* don't use dma */ |
| 118 | .coherent_dma_mask = 0xffffffff, |
Magnus Damm | 2c59b0b | 2009-07-22 14:41:35 +0000 | [diff] [blame] | 119 | .platform_data = &usbf_platdata, |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 120 | }, |
| 121 | .num_resources = ARRAY_SIZE(m66592_usb_peripheral_resources), |
| 122 | .resource = m66592_usb_peripheral_resources, |
| 123 | }; |
| 124 | |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 125 | static struct platform_device *x3proto_devices[] __initdata = { |
| 126 | &heartbeat_device, |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 127 | &smc91x_device, |
| 128 | &r8a66597_usb_host_device, |
| 129 | &m66592_usb_peripheral_device, |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 130 | }; |
| 131 | |
Paul Mundt | 4bacd79 | 2010-10-02 22:02:07 +0900 | [diff] [blame^] | 132 | static void __init x3proto_init_irq(void) |
| 133 | { |
| 134 | plat_irq_setup_pins(IRQ_MODE_IRL3210); |
| 135 | |
| 136 | /* Set ICR0.LVLMODE */ |
| 137 | __raw_writel(__raw_readl(0xfe410000) | (1 << 21), 0xfe410000); |
| 138 | } |
| 139 | |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 140 | static int __init x3proto_devices_setup(void) |
| 141 | { |
Paul Mundt | 4bacd79 | 2010-10-02 22:02:07 +0900 | [diff] [blame^] | 142 | /* |
| 143 | * IRLs are only needed for ILSEL mappings, so flip over the INTC |
| 144 | * pins at a later point to enable the GPIOs to settle. |
| 145 | */ |
| 146 | x3proto_init_irq(); |
| 147 | |
Paul Mundt | e7109a9 | 2007-08-08 15:27:55 +0900 | [diff] [blame] | 148 | r8a66597_usb_host_resources[1].start = |
| 149 | r8a66597_usb_host_resources[1].end = ilsel_enable(ILSEL_USBH_I); |
| 150 | |
| 151 | m66592_usb_peripheral_resources[1].start = |
| 152 | m66592_usb_peripheral_resources[1].end = ilsel_enable(ILSEL_USBP_I); |
| 153 | |
| 154 | smc91x_resources[1].start = |
| 155 | smc91x_resources[1].end = ilsel_enable(ILSEL_LAN); |
| 156 | |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 157 | return platform_add_devices(x3proto_devices, |
| 158 | ARRAY_SIZE(x3proto_devices)); |
| 159 | } |
| 160 | device_initcall(x3proto_devices_setup); |
| 161 | |
Paul Mundt | 3366e35 | 2010-03-30 12:38:01 +0900 | [diff] [blame] | 162 | static void __init x3proto_setup(char **cmdline_p) |
| 163 | { |
| 164 | register_smp_ops(&shx3_smp_ops); |
| 165 | } |
| 166 | |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 167 | static struct sh_machine_vector mv_x3proto __initmv = { |
| 168 | .mv_name = "x3proto", |
Paul Mundt | 3366e35 | 2010-03-30 12:38:01 +0900 | [diff] [blame] | 169 | .mv_setup = x3proto_setup, |
Paul Mundt | 94807a3 | 2007-08-08 15:22:04 +0900 | [diff] [blame] | 170 | }; |