Nobuhiro Iwamatsu | aa4a5db | 2006-12-29 01:50:35 +0900 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * linux/arch/sh/boards/se/770x/setup.c |
| 3 | * |
| 4 | * Copyright (C) 2000 Kazumoto Kojima |
| 5 | * |
| 6 | * Hitachi SolutionEngine Support. |
| 7 | * |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/init.h> |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 10 | #include <linux/platform_device.h> |
Paul Mundt | 939a24a | 2008-07-29 21:41:37 +0900 | [diff] [blame] | 11 | #include <mach-se/mach/se.h> |
Paul Mundt | 073da9c | 2008-12-17 14:41:54 +0900 | [diff] [blame] | 12 | #include <mach-se/mach/mrshpc.h> |
| 13 | #include <asm/machvec.h> |
Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | #include <asm/smc37c93x.h> |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 16 | #include <asm/heartbeat.h> |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | /* |
| 19 | * Configure the Super I/O chip |
| 20 | */ |
| 21 | static void __init smsc_config(int index, int data) |
| 22 | { |
| 23 | outb_p(index, INDEX_PORT); |
| 24 | outb_p(data, DATA_PORT); |
| 25 | } |
| 26 | |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 27 | /* XXX: Another candidate for a more generic cchip machine vector */ |
| 28 | static void __init smsc_setup(char **cmdline_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
| 30 | outb_p(CONFIG_ENTER, CONFIG_PORT); |
| 31 | outb_p(CONFIG_ENTER, CONFIG_PORT); |
| 32 | |
| 33 | /* FDC */ |
| 34 | smsc_config(CURRENT_LDN_INDEX, LDN_FDC); |
| 35 | smsc_config(ACTIVATE_INDEX, 0x01); |
| 36 | smsc_config(IRQ_SELECT_INDEX, 6); /* IRQ6 */ |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* AUXIO (GPIO): to use IDE1 */ |
| 39 | smsc_config(CURRENT_LDN_INDEX, LDN_AUXIO); |
| 40 | smsc_config(GPIO46_INDEX, 0x00); /* nIOROP */ |
| 41 | smsc_config(GPIO47_INDEX, 0x00); /* nIOWOP */ |
| 42 | |
| 43 | /* COM1 */ |
| 44 | smsc_config(CURRENT_LDN_INDEX, LDN_COM1); |
| 45 | smsc_config(ACTIVATE_INDEX, 0x01); |
| 46 | smsc_config(IO_BASE_HI_INDEX, 0x03); |
| 47 | smsc_config(IO_BASE_LO_INDEX, 0xf8); |
| 48 | smsc_config(IRQ_SELECT_INDEX, 4); /* IRQ4 */ |
| 49 | |
| 50 | /* COM2 */ |
| 51 | smsc_config(CURRENT_LDN_INDEX, LDN_COM2); |
| 52 | smsc_config(ACTIVATE_INDEX, 0x01); |
| 53 | smsc_config(IO_BASE_HI_INDEX, 0x02); |
| 54 | smsc_config(IO_BASE_LO_INDEX, 0xf8); |
| 55 | smsc_config(IRQ_SELECT_INDEX, 3); /* IRQ3 */ |
| 56 | |
| 57 | /* RTC */ |
| 58 | smsc_config(CURRENT_LDN_INDEX, LDN_RTC); |
| 59 | smsc_config(ACTIVATE_INDEX, 0x01); |
| 60 | smsc_config(IRQ_SELECT_INDEX, 8); /* IRQ8 */ |
| 61 | |
| 62 | /* XXX: PARPORT, KBD, and MOUSE will come here... */ |
| 63 | outb_p(CONFIG_EXIT, CONFIG_PORT); |
| 64 | } |
| 65 | |
Nobuhiro Iwamatsu | f987fc8 | 2007-03-12 15:12:27 +0900 | [diff] [blame] | 66 | |
| 67 | static struct resource cf_ide_resources[] = { |
| 68 | [0] = { |
| 69 | .start = PA_MRSHPC_IO + 0x1f0, |
| 70 | .end = PA_MRSHPC_IO + 0x1f0 + 8, |
| 71 | .flags = IORESOURCE_MEM, |
| 72 | }, |
| 73 | [1] = { |
| 74 | .start = PA_MRSHPC_IO + 0x1f0 + 0x206, |
Nobuhiro Iwamatsu | 787d9d7 | 2008-06-18 18:32:03 +0900 | [diff] [blame] | 75 | .end = PA_MRSHPC_IO + 0x1f0 + 8 + 0x206 + 8, |
Nobuhiro Iwamatsu | f987fc8 | 2007-03-12 15:12:27 +0900 | [diff] [blame] | 76 | .flags = IORESOURCE_MEM, |
| 77 | }, |
| 78 | [2] = { |
Nobuhiro Iwamatsu | 2a8ff45 | 2007-04-26 11:51:00 +0900 | [diff] [blame] | 79 | .start = IRQ_CFCARD, |
Nobuhiro Iwamatsu | f987fc8 | 2007-03-12 15:12:27 +0900 | [diff] [blame] | 80 | .flags = IORESOURCE_IRQ, |
| 81 | }, |
| 82 | }; |
| 83 | |
| 84 | static struct platform_device cf_ide_device = { |
| 85 | .name = "pata_platform", |
| 86 | .id = -1, |
| 87 | .num_resources = ARRAY_SIZE(cf_ide_resources), |
| 88 | .resource = cf_ide_resources, |
| 89 | }; |
| 90 | |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 91 | static unsigned char heartbeat_bit_pos[] = { 8, 9, 10, 11, 12, 13, 14, 15 }; |
| 92 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 93 | static struct heartbeat_data heartbeat_data = { |
| 94 | .bit_pos = heartbeat_bit_pos, |
| 95 | .nr_bits = ARRAY_SIZE(heartbeat_bit_pos), |
| 96 | }; |
| 97 | |
Paul Mundt | a09d283 | 2010-01-15 12:24:34 +0900 | [diff] [blame] | 98 | static struct resource heartbeat_resource = { |
| 99 | .start = PA_LED, |
| 100 | .end = PA_LED, |
| 101 | .flags = IORESOURCE_MEM | IORESOURCE_MEM_16BIT, |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | static struct platform_device heartbeat_device = { |
| 105 | .name = "heartbeat", |
| 106 | .id = -1, |
| 107 | .dev = { |
Paul Mundt | a1fd306 | 2007-08-23 15:11:44 +0900 | [diff] [blame] | 108 | .platform_data = &heartbeat_data, |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 109 | }, |
Paul Mundt | a09d283 | 2010-01-15 12:24:34 +0900 | [diff] [blame] | 110 | .num_resources = 1, |
| 111 | .resource = &heartbeat_resource, |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 112 | }; |
| 113 | |
Nobuhiro Iwamatsu | 4864841 | 2008-07-29 14:37:25 +0900 | [diff] [blame] | 114 | #if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\ |
| 115 | defined(CONFIG_CPU_SUBTYPE_SH7712) |
Nobuhiro Iwamatsu | ffb91ad | 2008-06-18 18:29:06 +0900 | [diff] [blame] | 116 | /* SH771X Ethernet driver */ |
| 117 | static struct resource sh_eth0_resources[] = { |
| 118 | [0] = { |
| 119 | .start = SH_ETH0_BASE, |
| 120 | .end = SH_ETH0_BASE + 0x1B8, |
| 121 | .flags = IORESOURCE_MEM, |
| 122 | }, |
| 123 | [1] = { |
| 124 | .start = SH_ETH0_IRQ, |
| 125 | .end = SH_ETH0_IRQ, |
| 126 | .flags = IORESOURCE_IRQ, |
| 127 | }, |
| 128 | }; |
| 129 | |
| 130 | static struct platform_device sh_eth0_device = { |
| 131 | .name = "sh-eth", |
| 132 | .id = 0, |
| 133 | .dev = { |
| 134 | .platform_data = PHY_ID, |
| 135 | }, |
| 136 | .num_resources = ARRAY_SIZE(sh_eth0_resources), |
| 137 | .resource = sh_eth0_resources, |
| 138 | }; |
| 139 | |
| 140 | static struct resource sh_eth1_resources[] = { |
| 141 | [0] = { |
| 142 | .start = SH_ETH1_BASE, |
| 143 | .end = SH_ETH1_BASE + 0x1B8, |
| 144 | .flags = IORESOURCE_MEM, |
| 145 | }, |
| 146 | [1] = { |
| 147 | .start = SH_ETH1_IRQ, |
| 148 | .end = SH_ETH1_IRQ, |
| 149 | .flags = IORESOURCE_IRQ, |
| 150 | }, |
| 151 | }; |
| 152 | |
| 153 | static struct platform_device sh_eth1_device = { |
| 154 | .name = "sh-eth", |
| 155 | .id = 1, |
| 156 | .dev = { |
| 157 | .platform_data = PHY_ID, |
| 158 | }, |
| 159 | .num_resources = ARRAY_SIZE(sh_eth1_resources), |
| 160 | .resource = sh_eth1_resources, |
| 161 | }; |
Nobuhiro Iwamatsu | 4864841 | 2008-07-29 14:37:25 +0900 | [diff] [blame] | 162 | #endif |
Nobuhiro Iwamatsu | ffb91ad | 2008-06-18 18:29:06 +0900 | [diff] [blame] | 163 | |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 164 | static struct platform_device *se_devices[] __initdata = { |
| 165 | &heartbeat_device, |
Nobuhiro Iwamatsu | f987fc8 | 2007-03-12 15:12:27 +0900 | [diff] [blame] | 166 | &cf_ide_device, |
Nobuhiro Iwamatsu | 4864841 | 2008-07-29 14:37:25 +0900 | [diff] [blame] | 167 | #if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\ |
| 168 | defined(CONFIG_CPU_SUBTYPE_SH7712) |
Nobuhiro Iwamatsu | ffb91ad | 2008-06-18 18:29:06 +0900 | [diff] [blame] | 169 | &sh_eth0_device, |
| 170 | &sh_eth1_device, |
Nobuhiro Iwamatsu | 4864841 | 2008-07-29 14:37:25 +0900 | [diff] [blame] | 171 | #endif |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 172 | }; |
| 173 | |
| 174 | static int __init se_devices_setup(void) |
| 175 | { |
Paul Mundt | 073da9c | 2008-12-17 14:41:54 +0900 | [diff] [blame] | 176 | mrshpc_setup_windows(); |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 177 | return platform_add_devices(se_devices, ARRAY_SIZE(se_devices)); |
| 178 | } |
Nobuhiro Iwamatsu | 9465a54 | 2007-03-27 18:13:51 +0900 | [diff] [blame] | 179 | device_initcall(se_devices_setup); |
Paul Mundt | 3b4d953 | 2007-02-13 15:42:28 +0900 | [diff] [blame] | 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | /* |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 182 | * The Machine Vector |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | */ |
Paul Mundt | 82f81f4 | 2007-05-15 15:19:34 +0900 | [diff] [blame] | 184 | static struct sh_machine_vector mv_se __initmv = { |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 185 | .mv_name = "SolutionEngine", |
| 186 | .mv_setup = smsc_setup, |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 187 | .mv_init_irq = init_se_IRQ, |
Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 188 | }; |