Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 1 | /* |
| 2 | * AP4EVB board support |
| 3 | * |
| 4 | * Copyright (C) 2010 Magnus Damm |
| 5 | * Copyright (C) 2008 Yoshihiro Shimoda |
| 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 as published by |
| 9 | * the Free Software Foundation; version 2 of the License. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 20 | #include <linux/clk.h> |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 21 | #include <linux/kernel.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/irq.h> |
| 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/delay.h> |
Guennadi Liakhovetski | 69bf6f45 | 2010-05-04 14:07:15 +0000 | [diff] [blame] | 27 | #include <linux/mfd/sh_mobile_sdhi.h> |
Arnd Hannemann | 410d878 | 2010-08-18 16:24:13 +0000 | [diff] [blame] | 28 | #include <linux/mfd/tmio.h> |
Guennadi Liakhovetski | 341291a | 2010-05-23 14:12:46 +0000 | [diff] [blame] | 29 | #include <linux/mmc/host.h> |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 30 | #include <linux/mtd/mtd.h> |
| 31 | #include <linux/mtd/partitions.h> |
| 32 | #include <linux/mtd/physmap.h> |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 33 | #include <linux/mmc/host.h> |
| 34 | #include <linux/mmc/sh_mmcif.h> |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 35 | #include <linux/i2c.h> |
| 36 | #include <linux/i2c/tsc2007.h> |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 37 | #include <linux/io.h> |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 38 | #include <linux/smsc911x.h> |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 39 | #include <linux/sh_intc.h> |
| 40 | #include <linux/sh_clk.h> |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 41 | #include <linux/gpio.h> |
Kuninori Morimoto | 17ccb83 | 2010-02-23 07:07:01 +0000 | [diff] [blame] | 42 | #include <linux/input.h> |
Arnd Hannemann | 2863e93 | 2010-08-14 19:45:21 +0000 | [diff] [blame] | 43 | #include <linux/leds.h> |
Kuninori Morimoto | 17ccb83 | 2010-02-23 07:07:01 +0000 | [diff] [blame] | 44 | #include <linux/input/sh_keysc.h> |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 45 | #include <linux/usb/r8a66597.h> |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 46 | |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 47 | #include <sound/sh_fsi.h> |
| 48 | |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 49 | #include <video/sh_mobile_hdmi.h> |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 50 | #include <video/sh_mobile_lcdc.h> |
| 51 | #include <video/sh_mipi_dsi.h> |
| 52 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 53 | #include <mach/common.h> |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 54 | #include <mach/irqs.h> |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 55 | #include <mach/sh7372.h> |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 56 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 57 | #include <asm/mach-types.h> |
| 58 | #include <asm/mach/arch.h> |
| 59 | #include <asm/mach/map.h> |
Magnus Damm | 495b3ce | 2010-05-12 14:21:34 +0000 | [diff] [blame] | 60 | #include <asm/mach/time.h> |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 61 | |
Kuninori Morimoto | 02624a1 | 2010-02-18 17:58:19 +0900 | [diff] [blame] | 62 | /* |
| 63 | * Address Interface BusWidth note |
| 64 | * ------------------------------------------------------------------ |
| 65 | * 0x0000_0000 NOR Flash ROM (MCP) 16bit SW7 : bit1 = ON |
| 66 | * 0x0800_0000 user area - |
| 67 | * 0x1000_0000 NOR Flash ROM (MCP) 16bit SW7 : bit1 = OFF |
| 68 | * 0x1400_0000 Ether (LAN9220) 16bit |
| 69 | * 0x1600_0000 user area - cannot use with NAND |
| 70 | * 0x1800_0000 user area - |
| 71 | * 0x1A00_0000 - |
| 72 | * 0x4000_0000 LPDDR2-SDRAM (POP) 32bit |
| 73 | */ |
| 74 | |
| 75 | /* |
| 76 | * NOR Flash ROM |
| 77 | * |
| 78 | * SW1 | SW2 | SW7 | NOR Flash ROM |
| 79 | * bit1 | bit1 bit2 | bit1 | Memory allocation |
| 80 | * ------+------------+------+------------------ |
| 81 | * OFF | ON OFF | ON | Area 0 |
| 82 | * OFF | ON OFF | OFF | Area 4 |
| 83 | */ |
| 84 | |
| 85 | /* |
| 86 | * NAND Flash ROM |
| 87 | * |
| 88 | * SW1 | SW2 | SW7 | NAND Flash ROM |
| 89 | * bit1 | bit1 bit2 | bit2 | Memory allocation |
| 90 | * ------+------------+------+------------------ |
| 91 | * OFF | ON OFF | ON | FCE 0 |
| 92 | * OFF | ON OFF | OFF | FCE 1 |
| 93 | */ |
| 94 | |
| 95 | /* |
| 96 | * SMSC 9220 |
| 97 | * |
| 98 | * SW1 SMSC 9220 |
| 99 | * ----------------------- |
| 100 | * ON access disable |
| 101 | * OFF access enable |
| 102 | */ |
| 103 | |
Kuninori Morimoto | 17ccb83 | 2010-02-23 07:07:01 +0000 | [diff] [blame] | 104 | /* |
Kuninori Morimoto | dda128d | 2010-03-12 10:07:55 +0000 | [diff] [blame] | 105 | * LCD / IRQ / KEYSC / IrDA |
Kuninori Morimoto | 17ccb83 | 2010-02-23 07:07:01 +0000 | [diff] [blame] | 106 | * |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 107 | * IRQ = IRQ26 (TS), IRQ27 (VIO), IRQ28 (QHD-TouchScreen) |
| 108 | * LCD = 2nd LCDC (WVGA) |
Kuninori Morimoto | dda128d | 2010-03-12 10:07:55 +0000 | [diff] [blame] | 109 | * |
| 110 | * | SW43 | |
| 111 | * SW3 | ON | OFF | |
| 112 | * -------------+-----------------------+---------------+ |
| 113 | * ON | KEY / IrDA | LCD | |
| 114 | * OFF | KEY / IrDA / IRQ | IRQ | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 115 | * |
| 116 | * |
| 117 | * QHD / WVGA display |
| 118 | * |
| 119 | * You can choice display type on menuconfig. |
| 120 | * Then, check above dip-switch. |
Kuninori Morimoto | 17ccb83 | 2010-02-23 07:07:01 +0000 | [diff] [blame] | 121 | */ |
| 122 | |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 123 | /* |
| 124 | * USB |
| 125 | * |
| 126 | * J7 : 1-2 MAX3355E VBUS |
| 127 | * 2-3 DC 5.0V |
| 128 | * |
| 129 | * S39: bit2: off |
| 130 | */ |
| 131 | |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 132 | /* |
| 133 | * FSI/FSMI |
| 134 | * |
| 135 | * SW41 : ON : SH-Mobile AP4 Audio Mode |
| 136 | * : OFF : Bluetooth Audio Mode |
| 137 | */ |
| 138 | |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 139 | /* |
Kuninori Morimoto | d3d03e4 | 2010-06-01 04:31:29 +0000 | [diff] [blame] | 140 | * MMC0/SDHI1 (CN7) |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 141 | * |
Kuninori Morimoto | d3d03e4 | 2010-06-01 04:31:29 +0000 | [diff] [blame] | 142 | * J22 : select card voltage |
| 143 | * 1-2 pin : 1.8v |
| 144 | * 2-3 pin : 3.3v |
| 145 | * |
| 146 | * SW1 | SW33 |
| 147 | * | bit1 | bit2 | bit3 | bit4 |
| 148 | * ------------+------+------+------+------- |
| 149 | * MMC0 OFF | OFF | ON | ON | X |
| 150 | * SDHI1 OFF | ON | X | OFF | ON |
| 151 | * |
| 152 | * voltage lebel |
| 153 | * CN7 : 1.8v |
| 154 | * CN12: 3.3v |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 155 | */ |
| 156 | |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 157 | /* MTD */ |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 158 | static struct mtd_partition nor_flash_partitions[] = { |
| 159 | { |
| 160 | .name = "loader", |
| 161 | .offset = 0x00000000, |
| 162 | .size = 512 * 1024, |
| 163 | }, |
| 164 | { |
| 165 | .name = "bootenv", |
| 166 | .offset = MTDPART_OFS_APPEND, |
| 167 | .size = 512 * 1024, |
| 168 | }, |
| 169 | { |
| 170 | .name = "kernel_ro", |
| 171 | .offset = MTDPART_OFS_APPEND, |
| 172 | .size = 8 * 1024 * 1024, |
| 173 | .mask_flags = MTD_WRITEABLE, |
| 174 | }, |
| 175 | { |
| 176 | .name = "kernel", |
| 177 | .offset = MTDPART_OFS_APPEND, |
| 178 | .size = 8 * 1024 * 1024, |
| 179 | }, |
| 180 | { |
| 181 | .name = "data", |
| 182 | .offset = MTDPART_OFS_APPEND, |
| 183 | .size = MTDPART_SIZ_FULL, |
| 184 | }, |
| 185 | }; |
| 186 | |
| 187 | static struct physmap_flash_data nor_flash_data = { |
| 188 | .width = 2, |
| 189 | .parts = nor_flash_partitions, |
| 190 | .nr_parts = ARRAY_SIZE(nor_flash_partitions), |
| 191 | }; |
| 192 | |
| 193 | static struct resource nor_flash_resources[] = { |
| 194 | [0] = { |
| 195 | .start = 0x00000000, |
| 196 | .end = 0x08000000 - 1, |
| 197 | .flags = IORESOURCE_MEM, |
| 198 | } |
| 199 | }; |
| 200 | |
| 201 | static struct platform_device nor_flash_device = { |
| 202 | .name = "physmap-flash", |
| 203 | .dev = { |
| 204 | .platform_data = &nor_flash_data, |
| 205 | }, |
| 206 | .num_resources = ARRAY_SIZE(nor_flash_resources), |
| 207 | .resource = nor_flash_resources, |
| 208 | }; |
| 209 | |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 210 | /* SMSC 9220 */ |
| 211 | static struct resource smc911x_resources[] = { |
| 212 | { |
| 213 | .start = 0x14000000, |
| 214 | .end = 0x16000000 - 1, |
| 215 | .flags = IORESOURCE_MEM, |
| 216 | }, { |
Magnus Damm | 33c9607 | 2010-05-20 14:41:00 +0000 | [diff] [blame] | 217 | .start = evt2irq(0x02c0) /* IRQ6A */, |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 218 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
| 219 | }, |
| 220 | }; |
| 221 | |
| 222 | static struct smsc911x_platform_config smsc911x_info = { |
| 223 | .flags = SMSC911X_USE_16BIT | SMSC911X_SAVE_MAC_ADDRESS, |
| 224 | .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW, |
| 225 | .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL, |
| 226 | }; |
| 227 | |
| 228 | static struct platform_device smc911x_device = { |
| 229 | .name = "smsc911x", |
| 230 | .id = -1, |
| 231 | .num_resources = ARRAY_SIZE(smc911x_resources), |
| 232 | .resource = smc911x_resources, |
| 233 | .dev = { |
| 234 | .platform_data = &smsc911x_info, |
| 235 | }, |
| 236 | }; |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 237 | |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 238 | /* SH_MMCIF */ |
| 239 | static struct resource sh_mmcif_resources[] = { |
| 240 | [0] = { |
| 241 | .name = "SH_MMCIF", |
| 242 | .start = 0xE6BD0000, |
| 243 | .end = 0xE6BD00FF, |
| 244 | .flags = IORESOURCE_MEM, |
| 245 | }, |
| 246 | [1] = { |
| 247 | /* MMC ERR */ |
Kuninori Morimoto | 8d56934 | 2010-06-01 02:40:05 +0000 | [diff] [blame] | 248 | .start = evt2irq(0x1ac0), |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 249 | .flags = IORESOURCE_IRQ, |
| 250 | }, |
| 251 | [2] = { |
| 252 | /* MMC NOR */ |
Kuninori Morimoto | 8d56934 | 2010-06-01 02:40:05 +0000 | [diff] [blame] | 253 | .start = evt2irq(0x1ae0), |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 254 | .flags = IORESOURCE_IRQ, |
| 255 | }, |
| 256 | }; |
| 257 | |
Kuninori Morimoto | bb04e19 | 2010-06-02 00:25:03 +0000 | [diff] [blame] | 258 | static struct sh_mmcif_plat_data sh_mmcif_plat = { |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 259 | .sup_pclk = 0, |
| 260 | .ocr = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34, |
| 261 | .caps = MMC_CAP_4_BIT_DATA | |
| 262 | MMC_CAP_8_BIT_DATA | |
| 263 | MMC_CAP_NEEDS_POLL, |
| 264 | }; |
| 265 | |
| 266 | static struct platform_device sh_mmcif_device = { |
| 267 | .name = "sh_mmcif", |
| 268 | .id = 0, |
| 269 | .dev = { |
| 270 | .dma_mask = NULL, |
| 271 | .coherent_dma_mask = 0xffffffff, |
| 272 | .platform_data = &sh_mmcif_plat, |
| 273 | }, |
| 274 | .num_resources = ARRAY_SIZE(sh_mmcif_resources), |
| 275 | .resource = sh_mmcif_resources, |
| 276 | }; |
| 277 | |
Magnus Damm | 3a14d03 | 2010-03-10 09:26:44 +0000 | [diff] [blame] | 278 | /* SDHI0 */ |
Guennadi Liakhovetski | 69bf6f45 | 2010-05-04 14:07:15 +0000 | [diff] [blame] | 279 | static struct sh_mobile_sdhi_info sdhi0_info = { |
Guennadi Liakhovetski | 341291a | 2010-05-23 14:12:46 +0000 | [diff] [blame] | 280 | .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX, |
| 281 | .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX, |
Guennadi Liakhovetski | 69bf6f45 | 2010-05-04 14:07:15 +0000 | [diff] [blame] | 282 | }; |
| 283 | |
Magnus Damm | 3a14d03 | 2010-03-10 09:26:44 +0000 | [diff] [blame] | 284 | static struct resource sdhi0_resources[] = { |
| 285 | [0] = { |
| 286 | .name = "SDHI0", |
| 287 | .start = 0xe6850000, |
| 288 | .end = 0xe68501ff, |
| 289 | .flags = IORESOURCE_MEM, |
| 290 | }, |
| 291 | [1] = { |
Magnus Damm | 33c9607 | 2010-05-20 14:41:00 +0000 | [diff] [blame] | 292 | .start = evt2irq(0x0e00) /* SDHI0 */, |
Magnus Damm | 3a14d03 | 2010-03-10 09:26:44 +0000 | [diff] [blame] | 293 | .flags = IORESOURCE_IRQ, |
| 294 | }, |
| 295 | }; |
| 296 | |
| 297 | static struct platform_device sdhi0_device = { |
| 298 | .name = "sh_mobile_sdhi", |
| 299 | .num_resources = ARRAY_SIZE(sdhi0_resources), |
| 300 | .resource = sdhi0_resources, |
| 301 | .id = 0, |
Guennadi Liakhovetski | 69bf6f45 | 2010-05-04 14:07:15 +0000 | [diff] [blame] | 302 | .dev = { |
| 303 | .platform_data = &sdhi0_info, |
| 304 | }, |
Magnus Damm | 3a14d03 | 2010-03-10 09:26:44 +0000 | [diff] [blame] | 305 | }; |
| 306 | |
Guennadi Liakhovetski | 341291a | 2010-05-23 14:12:46 +0000 | [diff] [blame] | 307 | /* SDHI1 */ |
| 308 | static struct sh_mobile_sdhi_info sdhi1_info = { |
| 309 | .dma_slave_tx = SHDMA_SLAVE_SDHI1_TX, |
| 310 | .dma_slave_rx = SHDMA_SLAVE_SDHI1_RX, |
| 311 | .tmio_ocr_mask = MMC_VDD_165_195, |
Arnd Hannemann | 410d878 | 2010-08-18 16:24:13 +0000 | [diff] [blame] | 312 | .tmio_flags = TMIO_MMC_WRPROTECT_DISABLE, |
Guennadi Liakhovetski | 341291a | 2010-05-23 14:12:46 +0000 | [diff] [blame] | 313 | }; |
| 314 | |
| 315 | static struct resource sdhi1_resources[] = { |
| 316 | [0] = { |
| 317 | .name = "SDHI1", |
| 318 | .start = 0xe6860000, |
| 319 | .end = 0xe68601ff, |
| 320 | .flags = IORESOURCE_MEM, |
| 321 | }, |
| 322 | [1] = { |
| 323 | .start = evt2irq(0x0e80), |
| 324 | .flags = IORESOURCE_IRQ, |
| 325 | }, |
| 326 | }; |
| 327 | |
| 328 | static struct platform_device sdhi1_device = { |
| 329 | .name = "sh_mobile_sdhi", |
| 330 | .num_resources = ARRAY_SIZE(sdhi1_resources), |
| 331 | .resource = sdhi1_resources, |
| 332 | .id = 1, |
| 333 | .dev = { |
| 334 | .platform_data = &sdhi1_info, |
| 335 | }, |
| 336 | }; |
| 337 | |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 338 | /* USB1 */ |
Kuninori Morimoto | bb04e19 | 2010-06-02 00:25:03 +0000 | [diff] [blame] | 339 | static void usb1_host_port_power(int port, int power) |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 340 | { |
| 341 | if (!power) /* only power-on supported for now */ |
| 342 | return; |
| 343 | |
| 344 | /* set VBOUT/PWEN and EXTLP1 in DVSTCTR */ |
| 345 | __raw_writew(__raw_readw(0xE68B0008) | 0x600, 0xE68B0008); |
| 346 | } |
| 347 | |
| 348 | static struct r8a66597_platdata usb1_host_data = { |
| 349 | .on_chip = 1, |
| 350 | .port_power = usb1_host_port_power, |
| 351 | }; |
| 352 | |
| 353 | static struct resource usb1_host_resources[] = { |
| 354 | [0] = { |
| 355 | .name = "USBHS", |
| 356 | .start = 0xE68B0000, |
| 357 | .end = 0xE68B00E6 - 1, |
| 358 | .flags = IORESOURCE_MEM, |
| 359 | }, |
| 360 | [1] = { |
Magnus Damm | 33c9607 | 2010-05-20 14:41:00 +0000 | [diff] [blame] | 361 | .start = evt2irq(0x1ce0) /* USB1_USB1I0 */, |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 362 | .flags = IORESOURCE_IRQ, |
| 363 | }, |
| 364 | }; |
| 365 | |
| 366 | static struct platform_device usb1_host_device = { |
| 367 | .name = "r8a66597_hcd", |
| 368 | .id = 1, |
| 369 | .dev = { |
| 370 | .dma_mask = NULL, /* not use dma */ |
| 371 | .coherent_dma_mask = 0xffffffff, |
| 372 | .platform_data = &usb1_host_data, |
| 373 | }, |
| 374 | .num_resources = ARRAY_SIZE(usb1_host_resources), |
| 375 | .resource = usb1_host_resources, |
| 376 | }; |
| 377 | |
Guennadi Liakhovetski | 4443240 | 2010-09-03 07:20:04 +0000 | [diff] [blame^] | 378 | const static struct fb_videomode ap4evb_lcdc_modes[] = { |
| 379 | { |
| 380 | #ifdef CONFIG_AP4EVB_QHD |
| 381 | .name = "R63302(QHD)", |
| 382 | .xres = 544, |
| 383 | .yres = 961, |
| 384 | .left_margin = 72, |
| 385 | .right_margin = 600, |
| 386 | .hsync_len = 16, |
| 387 | .upper_margin = 8, |
| 388 | .lower_margin = 8, |
| 389 | .vsync_len = 2, |
| 390 | .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT, |
| 391 | #else |
| 392 | .name = "WVGA Panel", |
| 393 | .xres = 800, |
| 394 | .yres = 480, |
| 395 | .left_margin = 220, |
| 396 | .right_margin = 110, |
| 397 | .hsync_len = 70, |
| 398 | .upper_margin = 20, |
| 399 | .lower_margin = 5, |
| 400 | .vsync_len = 5, |
| 401 | .sync = 0, |
| 402 | #endif |
| 403 | }, |
| 404 | }; |
| 405 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 406 | static struct sh_mobile_lcdc_info lcdc_info = { |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 407 | .ch[0] = { |
| 408 | .chan = LCDC_CHAN_MAINLCD, |
| 409 | .bpp = 16, |
Guennadi Liakhovetski | 4443240 | 2010-09-03 07:20:04 +0000 | [diff] [blame^] | 410 | .lcd_cfg = ap4evb_lcdc_modes, |
| 411 | .num_cfg = ARRAY_SIZE(ap4evb_lcdc_modes), |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 412 | } |
| 413 | }; |
| 414 | |
| 415 | static struct resource lcdc_resources[] = { |
| 416 | [0] = { |
| 417 | .name = "LCDC", |
| 418 | .start = 0xfe940000, /* P4-only space */ |
| 419 | .end = 0xfe943fff, |
| 420 | .flags = IORESOURCE_MEM, |
| 421 | }, |
| 422 | [1] = { |
| 423 | .start = intcs_evt2irq(0x580), |
| 424 | .flags = IORESOURCE_IRQ, |
| 425 | }, |
| 426 | }; |
| 427 | |
| 428 | static struct platform_device lcdc_device = { |
| 429 | .name = "sh_mobile_lcdc_fb", |
| 430 | .num_resources = ARRAY_SIZE(lcdc_resources), |
| 431 | .resource = lcdc_resources, |
| 432 | .dev = { |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 433 | .platform_data = &lcdc_info, |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 434 | .coherent_dma_mask = ~0, |
| 435 | }, |
| 436 | }; |
| 437 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 438 | /* |
| 439 | * QHD display |
| 440 | */ |
| 441 | #ifdef CONFIG_AP4EVB_QHD |
| 442 | |
| 443 | /* KEYSC (Needs SW43 set to ON) */ |
| 444 | static struct sh_keysc_info keysc_info = { |
| 445 | .mode = SH_KEYSC_MODE_1, |
| 446 | .scan_timing = 3, |
| 447 | .delay = 2500, |
| 448 | .keycodes = { |
| 449 | KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, |
| 450 | KEY_5, KEY_6, KEY_7, KEY_8, KEY_9, |
| 451 | KEY_A, KEY_B, KEY_C, KEY_D, KEY_E, |
| 452 | KEY_F, KEY_G, KEY_H, KEY_I, KEY_J, |
| 453 | KEY_K, KEY_L, KEY_M, KEY_N, KEY_O, |
| 454 | }, |
| 455 | }; |
| 456 | |
| 457 | static struct resource keysc_resources[] = { |
| 458 | [0] = { |
| 459 | .name = "KEYSC", |
| 460 | .start = 0xe61b0000, |
| 461 | .end = 0xe61b0063, |
| 462 | .flags = IORESOURCE_MEM, |
| 463 | }, |
| 464 | [1] = { |
| 465 | .start = evt2irq(0x0be0), /* KEYSC_KEY */ |
| 466 | .flags = IORESOURCE_IRQ, |
| 467 | }, |
| 468 | }; |
| 469 | |
| 470 | static struct platform_device keysc_device = { |
| 471 | .name = "sh_keysc", |
| 472 | .id = 0, /* "keysc0" clock */ |
| 473 | .num_resources = ARRAY_SIZE(keysc_resources), |
| 474 | .resource = keysc_resources, |
| 475 | .dev = { |
| 476 | .platform_data = &keysc_info, |
| 477 | }, |
| 478 | }; |
| 479 | |
| 480 | /* MIPI-DSI */ |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 481 | static struct resource mipidsi0_resources[] = { |
| 482 | [0] = { |
| 483 | .start = 0xffc60000, |
| 484 | .end = 0xffc68fff, |
| 485 | .flags = IORESOURCE_MEM, |
| 486 | }, |
| 487 | }; |
| 488 | |
| 489 | static struct sh_mipi_dsi_info mipidsi0_info = { |
| 490 | .data_format = MIPI_RGB888, |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 491 | .lcd_chan = &lcdc_info.ch[0], |
Guennadi Liakhovetski | 8eda2f2 | 2010-05-23 14:04:03 +0000 | [diff] [blame] | 492 | }; |
| 493 | |
| 494 | static struct platform_device mipidsi0_device = { |
| 495 | .name = "sh-mipi-dsi", |
| 496 | .num_resources = ARRAY_SIZE(mipidsi0_resources), |
| 497 | .resource = mipidsi0_resources, |
| 498 | .id = 0, |
| 499 | .dev = { |
| 500 | .platform_data = &mipidsi0_info, |
| 501 | }, |
| 502 | }; |
| 503 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 504 | /* This function will disappear when we switch to (runtime) PM */ |
| 505 | static int __init ap4evb_init_display_clk(void) |
| 506 | { |
| 507 | struct clk *lcdc_clk; |
| 508 | struct clk *dsitx_clk; |
| 509 | int ret; |
| 510 | |
| 511 | lcdc_clk = clk_get(&lcdc_device.dev, "sh_mobile_lcdc_fb.0"); |
| 512 | if (IS_ERR(lcdc_clk)) |
| 513 | return PTR_ERR(lcdc_clk); |
| 514 | |
| 515 | dsitx_clk = clk_get(&mipidsi0_device.dev, "sh-mipi-dsi.0"); |
| 516 | if (IS_ERR(dsitx_clk)) { |
| 517 | ret = PTR_ERR(dsitx_clk); |
| 518 | goto eclkdsitxget; |
| 519 | } |
| 520 | |
| 521 | ret = clk_enable(lcdc_clk); |
| 522 | if (ret < 0) |
| 523 | goto eclklcdcon; |
| 524 | |
| 525 | ret = clk_enable(dsitx_clk); |
| 526 | if (ret < 0) |
| 527 | goto eclkdsitxon; |
| 528 | |
| 529 | return 0; |
| 530 | |
| 531 | eclkdsitxon: |
| 532 | clk_disable(lcdc_clk); |
| 533 | eclklcdcon: |
| 534 | clk_put(dsitx_clk); |
| 535 | eclkdsitxget: |
| 536 | clk_put(lcdc_clk); |
| 537 | |
| 538 | return ret; |
| 539 | } |
| 540 | device_initcall(ap4evb_init_display_clk); |
| 541 | |
| 542 | static struct platform_device *qhd_devices[] __initdata = { |
| 543 | &mipidsi0_device, |
| 544 | &keysc_device, |
| 545 | }; |
| 546 | #endif /* CONFIG_AP4EVB_QHD */ |
| 547 | |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 548 | /* FSI */ |
| 549 | #define IRQ_FSI evt2irq(0x1840) |
| 550 | #define FSIACKCR 0xE6150018 |
| 551 | static void fsiackcr_init(struct clk *clk) |
| 552 | { |
| 553 | u32 status = __raw_readl(clk->enable_reg); |
| 554 | |
| 555 | /* use external clock */ |
| 556 | status &= ~0x000000ff; |
| 557 | status |= 0x00000080; |
| 558 | __raw_writel(status, clk->enable_reg); |
| 559 | } |
| 560 | |
| 561 | static struct clk_ops fsiackcr_clk_ops = { |
| 562 | .init = fsiackcr_init, |
| 563 | }; |
| 564 | |
| 565 | static struct clk fsiackcr_clk = { |
| 566 | .ops = &fsiackcr_clk_ops, |
| 567 | .enable_reg = (void __iomem *)FSIACKCR, |
| 568 | .rate = 0, /* unknown */ |
| 569 | }; |
| 570 | |
Kuninori Morimoto | bb04e19 | 2010-06-02 00:25:03 +0000 | [diff] [blame] | 571 | static struct sh_fsi_platform_info fsi_info = { |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 572 | .porta_flags = SH_FSI_BRS_INV | |
| 573 | SH_FSI_OUT_SLAVE_MODE | |
| 574 | SH_FSI_IN_SLAVE_MODE | |
| 575 | SH_FSI_OFMT(PCM) | |
| 576 | SH_FSI_IFMT(PCM), |
| 577 | }; |
| 578 | |
| 579 | static struct resource fsi_resources[] = { |
| 580 | [0] = { |
| 581 | .name = "FSI", |
| 582 | .start = 0xFE3C0000, |
| 583 | .end = 0xFE3C0400 - 1, |
| 584 | .flags = IORESOURCE_MEM, |
| 585 | }, |
| 586 | [1] = { |
| 587 | .start = IRQ_FSI, |
| 588 | .flags = IORESOURCE_IRQ, |
| 589 | }, |
| 590 | }; |
| 591 | |
| 592 | static struct platform_device fsi_device = { |
| 593 | .name = "sh_fsi2", |
Kuninori Morimoto | 9f6f11b | 2010-08-18 03:37:19 +0000 | [diff] [blame] | 594 | .id = -1, |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 595 | .num_resources = ARRAY_SIZE(fsi_resources), |
| 596 | .resource = fsi_resources, |
| 597 | .dev = { |
| 598 | .platform_data = &fsi_info, |
| 599 | }, |
| 600 | }; |
| 601 | |
Guennadi Liakhovetski | 4443240 | 2010-09-03 07:20:04 +0000 | [diff] [blame^] | 602 | const static struct fb_videomode ap4evb_hdmi_modes[] = { |
| 603 | { |
| 604 | .name = "HDMI 720p", |
| 605 | .xres = 1280, |
| 606 | .yres = 720, |
| 607 | |
| 608 | /* |
| 609 | * If left and right margins are not multiples of 8, |
| 610 | * LDHAJR will be adjusted accordingly by the LCDC |
| 611 | * driver. Until we start using EDID, these values |
| 612 | * might have to be adjusted for different monitors. |
| 613 | */ |
| 614 | .left_margin = 200, |
| 615 | .right_margin = 88, |
| 616 | .hsync_len = 48, |
| 617 | |
| 618 | .upper_margin = 20, |
| 619 | .lower_margin = 5, |
| 620 | .vsync_len = 5, |
| 621 | |
| 622 | .pixclock = 13468, |
| 623 | .sync = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_HOR_HIGH_ACT, |
| 624 | }, |
| 625 | }; |
| 626 | |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 627 | static struct sh_mobile_lcdc_info sh_mobile_lcdc1_info = { |
| 628 | .clock_source = LCDC_CLK_EXTERNAL, |
| 629 | .ch[0] = { |
| 630 | .chan = LCDC_CHAN_MAINLCD, |
| 631 | .bpp = 16, |
| 632 | .interface_type = RGB24, |
| 633 | .clock_divider = 1, |
| 634 | .flags = LCDC_FLAGS_DWPOL, |
Guennadi Liakhovetski | 4443240 | 2010-09-03 07:20:04 +0000 | [diff] [blame^] | 635 | .lcd_cfg = ap4evb_hdmi_modes, |
| 636 | .num_cfg = ARRAY_SIZE(ap4evb_hdmi_modes), |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 637 | } |
| 638 | }; |
| 639 | |
| 640 | static struct resource lcdc1_resources[] = { |
| 641 | [0] = { |
| 642 | .name = "LCDC1", |
| 643 | .start = 0xfe944000, |
| 644 | .end = 0xfe947fff, |
| 645 | .flags = IORESOURCE_MEM, |
| 646 | }, |
| 647 | [1] = { |
| 648 | .start = intcs_evt2irq(0x17a0), |
| 649 | .flags = IORESOURCE_IRQ, |
| 650 | }, |
| 651 | }; |
| 652 | |
| 653 | static struct platform_device lcdc1_device = { |
| 654 | .name = "sh_mobile_lcdc_fb", |
| 655 | .num_resources = ARRAY_SIZE(lcdc1_resources), |
| 656 | .resource = lcdc1_resources, |
| 657 | .id = 1, |
| 658 | .dev = { |
| 659 | .platform_data = &sh_mobile_lcdc1_info, |
| 660 | .coherent_dma_mask = ~0, |
| 661 | }, |
| 662 | }; |
| 663 | |
| 664 | static struct sh_mobile_hdmi_info hdmi_info = { |
| 665 | .lcd_chan = &sh_mobile_lcdc1_info.ch[0], |
| 666 | .lcd_dev = &lcdc1_device.dev, |
| 667 | }; |
| 668 | |
| 669 | static struct resource hdmi_resources[] = { |
| 670 | [0] = { |
| 671 | .name = "HDMI", |
| 672 | .start = 0xe6be0000, |
| 673 | .end = 0xe6be00ff, |
| 674 | .flags = IORESOURCE_MEM, |
| 675 | }, |
| 676 | [1] = { |
| 677 | /* There's also an HDMI interrupt on INTCS @ 0x18e0 */ |
| 678 | .start = evt2irq(0x17e0), |
| 679 | .flags = IORESOURCE_IRQ, |
| 680 | }, |
| 681 | }; |
| 682 | |
| 683 | static struct platform_device hdmi_device = { |
| 684 | .name = "sh-mobile-hdmi", |
| 685 | .num_resources = ARRAY_SIZE(hdmi_resources), |
| 686 | .resource = hdmi_resources, |
| 687 | .id = -1, |
| 688 | .dev = { |
| 689 | .platform_data = &hdmi_info, |
| 690 | }, |
| 691 | }; |
| 692 | |
Arnd Hannemann | 2863e93 | 2010-08-14 19:45:21 +0000 | [diff] [blame] | 693 | static struct gpio_led ap4evb_leds[] = { |
| 694 | { |
| 695 | .name = "led4", |
| 696 | .gpio = GPIO_PORT185, |
| 697 | .default_state = LEDS_GPIO_DEFSTATE_ON, |
| 698 | }, |
| 699 | { |
| 700 | .name = "led2", |
| 701 | .gpio = GPIO_PORT186, |
| 702 | .default_state = LEDS_GPIO_DEFSTATE_ON, |
| 703 | }, |
| 704 | { |
| 705 | .name = "led3", |
| 706 | .gpio = GPIO_PORT187, |
| 707 | .default_state = LEDS_GPIO_DEFSTATE_ON, |
| 708 | }, |
| 709 | { |
| 710 | .name = "led1", |
| 711 | .gpio = GPIO_PORT188, |
| 712 | .default_state = LEDS_GPIO_DEFSTATE_ON, |
| 713 | } |
| 714 | }; |
| 715 | |
| 716 | static struct gpio_led_platform_data ap4evb_leds_pdata = { |
| 717 | .num_leds = ARRAY_SIZE(ap4evb_leds), |
Paul Mundt | 8050fbf | 2010-08-16 14:54:35 +0900 | [diff] [blame] | 718 | .leds = ap4evb_leds, |
Arnd Hannemann | 2863e93 | 2010-08-14 19:45:21 +0000 | [diff] [blame] | 719 | }; |
| 720 | |
| 721 | static struct platform_device leds_device = { |
| 722 | .name = "leds-gpio", |
| 723 | .id = 0, |
| 724 | .dev = { |
| 725 | .platform_data = &ap4evb_leds_pdata, |
| 726 | }, |
| 727 | }; |
| 728 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 729 | static struct platform_device *ap4evb_devices[] __initdata = { |
Arnd Hannemann | 2863e93 | 2010-08-14 19:45:21 +0000 | [diff] [blame] | 730 | &leds_device, |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 731 | &nor_flash_device, |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 732 | &smc911x_device, |
Magnus Damm | 3a14d03 | 2010-03-10 09:26:44 +0000 | [diff] [blame] | 733 | &sdhi0_device, |
Guennadi Liakhovetski | 341291a | 2010-05-23 14:12:46 +0000 | [diff] [blame] | 734 | &sdhi1_device, |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 735 | &usb1_host_device, |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 736 | &fsi_device, |
Paul Mundt | beccb12 | 2010-08-04 16:47:37 +0900 | [diff] [blame] | 737 | &sh_mmcif_device, |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 738 | &lcdc1_device, |
| 739 | &lcdc_device, |
| 740 | &hdmi_device, |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 741 | }; |
| 742 | |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 743 | static int __init hdmi_init_pm_clock(void) |
| 744 | { |
| 745 | struct clk *hdmi_ick = clk_get(&hdmi_device.dev, "ick"); |
| 746 | int ret; |
| 747 | long rate; |
| 748 | |
| 749 | if (IS_ERR(hdmi_ick)) { |
| 750 | ret = PTR_ERR(hdmi_ick); |
| 751 | pr_err("Cannot get HDMI ICK: %d\n", ret); |
| 752 | goto out; |
| 753 | } |
| 754 | |
| 755 | ret = clk_set_parent(&pllc2_clk, &dv_clki_div2_clk); |
| 756 | if (ret < 0) { |
| 757 | pr_err("Cannot set PLLC2 parent: %d, %d users\n", ret, pllc2_clk.usecount); |
| 758 | goto out; |
| 759 | } |
| 760 | |
| 761 | pr_debug("PLLC2 initial frequency %lu\n", clk_get_rate(&pllc2_clk)); |
| 762 | |
| 763 | rate = clk_round_rate(&pllc2_clk, 594000000); |
| 764 | if (rate < 0) { |
| 765 | pr_err("Cannot get suitable rate: %ld\n", rate); |
| 766 | ret = rate; |
| 767 | goto out; |
| 768 | } |
| 769 | |
| 770 | ret = clk_set_rate(&pllc2_clk, rate); |
| 771 | if (ret < 0) { |
| 772 | pr_err("Cannot set rate %ld: %d\n", rate, ret); |
| 773 | goto out; |
| 774 | } |
| 775 | |
| 776 | pr_debug("PLLC2 set frequency %lu\n", rate); |
| 777 | |
| 778 | ret = clk_set_parent(hdmi_ick, &pllc2_clk); |
| 779 | if (ret < 0) { |
| 780 | pr_err("Cannot set HDMI parent: %d\n", ret); |
| 781 | goto out; |
| 782 | } |
| 783 | |
| 784 | out: |
| 785 | if (!IS_ERR(hdmi_ick)) |
| 786 | clk_put(hdmi_ick); |
| 787 | return ret; |
| 788 | } |
| 789 | |
| 790 | device_initcall(hdmi_init_pm_clock); |
| 791 | |
Kuninori Morimoto | 71c3ba9 | 2010-07-14 07:01:16 +0000 | [diff] [blame] | 792 | /* |
| 793 | * FIXME !! |
| 794 | * |
| 795 | * gpio_no_direction |
Kuninori Morimoto | 71c3ba9 | 2010-07-14 07:01:16 +0000 | [diff] [blame] | 796 | * are quick_hack. |
| 797 | * |
| 798 | * current gpio frame work doesn't have |
| 799 | * the method to control only pull up/down/free. |
| 800 | * this function should be replaced by correct gpio function |
| 801 | */ |
| 802 | static void __init gpio_no_direction(u32 addr) |
| 803 | { |
| 804 | __raw_writeb(0x00, addr); |
| 805 | } |
| 806 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 807 | /* TouchScreen */ |
Magnus Damm | 33c9607 | 2010-05-20 14:41:00 +0000 | [diff] [blame] | 808 | #define IRQ28 evt2irq(0x3380) /* IRQ28A */ |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 809 | #define IRQ7 evt2irq(0x02e0) /* IRQ7A */ |
Kuninori Morimoto | bb04e19 | 2010-06-02 00:25:03 +0000 | [diff] [blame] | 810 | static struct tsc2007_platform_data tsc2007_info = { |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 811 | .model = 2007, |
Kuninori Morimoto | ef73150 | 2010-08-27 09:49:50 +0000 | [diff] [blame] | 812 | .x_plate_ohms = 1000, |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 813 | }; |
| 814 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 815 | static struct i2c_board_info tsc_device = { |
| 816 | I2C_BOARD_INFO("tsc2007", 0x48), |
| 817 | .type = "tsc2007", |
| 818 | .platform_data = &tsc2007_info, |
| 819 | /*.irq is selected on ap4evb_init */ |
| 820 | }; |
| 821 | |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 822 | /* I2C */ |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 823 | static struct i2c_board_info i2c0_devices[] = { |
| 824 | { |
| 825 | I2C_BOARD_INFO("ak4643", 0x13), |
| 826 | }, |
| 827 | }; |
| 828 | |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 829 | static struct i2c_board_info i2c1_devices[] = { |
| 830 | { |
Kuninori Morimoto | 8fc883c | 2010-03-11 07:34:37 +0000 | [diff] [blame] | 831 | I2C_BOARD_INFO("r2025sd", 0x32), |
| 832 | }, |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 833 | }; |
| 834 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 835 | static struct map_desc ap4evb_io_desc[] __initdata = { |
| 836 | /* create a 1:1 entity map for 0xe6xxxxxx |
| 837 | * used by CPGA, INTC and PFC. |
| 838 | */ |
| 839 | { |
| 840 | .virtual = 0xe6000000, |
| 841 | .pfn = __phys_to_pfn(0xe6000000), |
| 842 | .length = 256 << 20, |
| 843 | .type = MT_DEVICE_NONSHARED |
| 844 | }, |
| 845 | }; |
| 846 | |
| 847 | static void __init ap4evb_map_io(void) |
| 848 | { |
| 849 | iotable_init(ap4evb_io_desc, ARRAY_SIZE(ap4evb_io_desc)); |
| 850 | |
Magnus Damm | 495b3ce | 2010-05-12 14:21:34 +0000 | [diff] [blame] | 851 | /* setup early devices and console here as well */ |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 852 | sh7372_add_early_devices(); |
Magnus Damm | 4ae04ac | 2010-02-08 11:02:54 +0000 | [diff] [blame] | 853 | shmobile_setup_console(); |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 854 | } |
| 855 | |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 856 | #define GPIO_PORT9CR 0xE6051009 |
| 857 | #define GPIO_PORT10CR 0xE605100A |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 858 | static void __init ap4evb_init(void) |
| 859 | { |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 860 | u32 srcr4; |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 861 | struct clk *clk; |
| 862 | |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 863 | sh7372_pinmux_init(); |
| 864 | |
Kuninori Morimoto | b228b48 | 2010-02-18 16:44:41 +0900 | [diff] [blame] | 865 | /* enable SCIFA0 */ |
| 866 | gpio_request(GPIO_FN_SCIFA0_TXD, NULL); |
| 867 | gpio_request(GPIO_FN_SCIFA0_RXD, NULL); |
| 868 | |
Kuninori Morimoto | 1b7e067 | 2010-02-17 09:30:14 +0000 | [diff] [blame] | 869 | /* enable SMSC911X */ |
| 870 | gpio_request(GPIO_FN_CS5A, NULL); |
| 871 | gpio_request(GPIO_FN_IRQ6_39, NULL); |
| 872 | |
Kuninori Morimoto | 8cb3a2e | 2010-02-22 09:30:12 +0000 | [diff] [blame] | 873 | /* enable Debug switch (S6) */ |
| 874 | gpio_request(GPIO_PORT32, NULL); |
| 875 | gpio_request(GPIO_PORT33, NULL); |
| 876 | gpio_request(GPIO_PORT34, NULL); |
| 877 | gpio_request(GPIO_PORT35, NULL); |
| 878 | gpio_direction_input(GPIO_PORT32); |
| 879 | gpio_direction_input(GPIO_PORT33); |
| 880 | gpio_direction_input(GPIO_PORT34); |
| 881 | gpio_direction_input(GPIO_PORT35); |
| 882 | gpio_export(GPIO_PORT32, 0); |
| 883 | gpio_export(GPIO_PORT33, 0); |
| 884 | gpio_export(GPIO_PORT34, 0); |
| 885 | gpio_export(GPIO_PORT35, 0); |
| 886 | |
Magnus Damm | 3a14d03 | 2010-03-10 09:26:44 +0000 | [diff] [blame] | 887 | /* SDHI0 */ |
| 888 | gpio_request(GPIO_FN_SDHICD0, NULL); |
| 889 | gpio_request(GPIO_FN_SDHIWP0, NULL); |
| 890 | gpio_request(GPIO_FN_SDHICMD0, NULL); |
| 891 | gpio_request(GPIO_FN_SDHICLK0, NULL); |
| 892 | gpio_request(GPIO_FN_SDHID0_3, NULL); |
| 893 | gpio_request(GPIO_FN_SDHID0_2, NULL); |
| 894 | gpio_request(GPIO_FN_SDHID0_1, NULL); |
| 895 | gpio_request(GPIO_FN_SDHID0_0, NULL); |
| 896 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 897 | /* SDHI1 */ |
| 898 | gpio_request(GPIO_FN_SDHICMD1, NULL); |
| 899 | gpio_request(GPIO_FN_SDHICLK1, NULL); |
| 900 | gpio_request(GPIO_FN_SDHID1_3, NULL); |
| 901 | gpio_request(GPIO_FN_SDHID1_2, NULL); |
| 902 | gpio_request(GPIO_FN_SDHID1_1, NULL); |
| 903 | gpio_request(GPIO_FN_SDHID1_0, NULL); |
Kuninori Morimoto | 91cf508 | 2010-03-11 10:42:52 +0000 | [diff] [blame] | 904 | |
Kuninori Morimoto | c8ee3d4 | 2010-05-13 01:08:21 +0000 | [diff] [blame] | 905 | /* MMCIF */ |
| 906 | gpio_request(GPIO_FN_MMCD0_0, NULL); |
| 907 | gpio_request(GPIO_FN_MMCD0_1, NULL); |
| 908 | gpio_request(GPIO_FN_MMCD0_2, NULL); |
| 909 | gpio_request(GPIO_FN_MMCD0_3, NULL); |
| 910 | gpio_request(GPIO_FN_MMCD0_4, NULL); |
| 911 | gpio_request(GPIO_FN_MMCD0_5, NULL); |
| 912 | gpio_request(GPIO_FN_MMCD0_6, NULL); |
| 913 | gpio_request(GPIO_FN_MMCD0_7, NULL); |
| 914 | gpio_request(GPIO_FN_MMCCMD0, NULL); |
| 915 | gpio_request(GPIO_FN_MMCCLK0, NULL); |
| 916 | |
Kuninori Morimoto | fb54d26 | 2010-04-13 06:16:32 +0000 | [diff] [blame] | 917 | /* USB enable */ |
| 918 | gpio_request(GPIO_FN_VBUS0_1, NULL); |
| 919 | gpio_request(GPIO_FN_IDIN_1_18, NULL); |
| 920 | gpio_request(GPIO_FN_PWEN_1_115, NULL); |
| 921 | gpio_request(GPIO_FN_OVCN_1_114, NULL); |
| 922 | gpio_request(GPIO_FN_EXTLP_1, NULL); |
| 923 | gpio_request(GPIO_FN_OVCN2_1, NULL); |
| 924 | |
| 925 | /* setup USB phy */ |
| 926 | __raw_writew(0x8a0a, 0xE6058130); /* USBCR2 */ |
| 927 | |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 928 | /* enable FSI2 */ |
| 929 | gpio_request(GPIO_FN_FSIAIBT, NULL); |
| 930 | gpio_request(GPIO_FN_FSIAILR, NULL); |
| 931 | gpio_request(GPIO_FN_FSIAISLD, NULL); |
| 932 | gpio_request(GPIO_FN_FSIAOSLD, NULL); |
| 933 | gpio_request(GPIO_PORT161, NULL); |
| 934 | gpio_direction_output(GPIO_PORT161, 0); /* slave */ |
| 935 | |
| 936 | gpio_request(GPIO_PORT9, NULL); |
| 937 | gpio_request(GPIO_PORT10, NULL); |
| 938 | gpio_no_direction(GPIO_PORT9CR); /* FSIAOBT needs no direction */ |
| 939 | gpio_no_direction(GPIO_PORT10CR); /* FSIAOLR needs no direction */ |
| 940 | |
| 941 | /* set SPU2 clock to 119.6 MHz */ |
| 942 | clk = clk_get(NULL, "spu_clk"); |
Paul Mundt | 2ae2b76 | 2010-05-31 14:25:57 +0900 | [diff] [blame] | 943 | if (!IS_ERR(clk)) { |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 944 | clk_set_rate(clk, clk_round_rate(clk, 119600000)); |
| 945 | clk_put(clk); |
| 946 | } |
| 947 | |
| 948 | /* change parent of FSI A */ |
| 949 | clk = clk_get(NULL, "fsia_clk"); |
Paul Mundt | 2ae2b76 | 2010-05-31 14:25:57 +0900 | [diff] [blame] | 950 | if (!IS_ERR(clk)) { |
Kuninori Morimoto | cb9215e | 2010-05-24 06:50:44 +0000 | [diff] [blame] | 951 | clk_register(&fsiackcr_clk); |
| 952 | clk_set_parent(clk, &fsiackcr_clk); |
| 953 | clk_put(clk); |
| 954 | } |
| 955 | |
| 956 | /* |
| 957 | * set irq priority, to avoid sound chopping |
| 958 | * when NFS rootfs is used |
| 959 | * FSI(3) > SMSC911X(2) |
| 960 | */ |
| 961 | intc_set_priority(IRQ_FSI, 3); |
| 962 | |
| 963 | i2c_register_board_info(0, i2c0_devices, |
| 964 | ARRAY_SIZE(i2c0_devices)); |
| 965 | |
| 966 | i2c_register_board_info(1, i2c1_devices, |
| 967 | ARRAY_SIZE(i2c1_devices)); |
| 968 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 969 | #ifdef CONFIG_AP4EVB_QHD |
Magnus Damm | dd8a61a | 2010-08-31 09:22:36 +0000 | [diff] [blame] | 970 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 971 | /* |
Magnus Damm | dd8a61a | 2010-08-31 09:22:36 +0000 | [diff] [blame] | 972 | * For QHD Panel (MIPI-DSI, CONFIG_AP4EVB_QHD=y) and |
| 973 | * IRQ28 for Touch Panel, set dip switches S3, S43 as OFF, ON. |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 974 | */ |
| 975 | |
| 976 | /* enable KEYSC */ |
| 977 | gpio_request(GPIO_FN_KEYOUT0, NULL); |
| 978 | gpio_request(GPIO_FN_KEYOUT1, NULL); |
| 979 | gpio_request(GPIO_FN_KEYOUT2, NULL); |
| 980 | gpio_request(GPIO_FN_KEYOUT3, NULL); |
| 981 | gpio_request(GPIO_FN_KEYOUT4, NULL); |
| 982 | gpio_request(GPIO_FN_KEYIN0_136, NULL); |
| 983 | gpio_request(GPIO_FN_KEYIN1_135, NULL); |
| 984 | gpio_request(GPIO_FN_KEYIN2_134, NULL); |
| 985 | gpio_request(GPIO_FN_KEYIN3_133, NULL); |
| 986 | gpio_request(GPIO_FN_KEYIN4, NULL); |
| 987 | |
| 988 | /* enable TouchScreen */ |
Kuninori Morimoto | ef73150 | 2010-08-27 09:49:50 +0000 | [diff] [blame] | 989 | gpio_request(GPIO_FN_IRQ28_123, NULL); |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 990 | set_irq_type(IRQ28, IRQ_TYPE_LEVEL_LOW); |
| 991 | |
| 992 | tsc_device.irq = IRQ28; |
| 993 | i2c_register_board_info(1, &tsc_device, 1); |
| 994 | |
| 995 | /* LCDC0 */ |
| 996 | lcdc_info.clock_source = LCDC_CLK_PERIPHERAL; |
| 997 | lcdc_info.ch[0].interface_type = RGB24; |
| 998 | lcdc_info.ch[0].clock_divider = 1; |
| 999 | lcdc_info.ch[0].flags = LCDC_FLAGS_DWPOL; |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 1000 | lcdc_info.ch[0].lcd_size_cfg.width = 44; |
| 1001 | lcdc_info.ch[0].lcd_size_cfg.height = 79; |
| 1002 | |
| 1003 | platform_add_devices(qhd_devices, ARRAY_SIZE(qhd_devices)); |
| 1004 | |
| 1005 | #else |
| 1006 | /* |
Magnus Damm | dd8a61a | 2010-08-31 09:22:36 +0000 | [diff] [blame] | 1007 | * For WVGA Panel (18-bit RGB, CONFIG_AP4EVB_WVGA=y) and |
| 1008 | * IRQ7 for Touch Panel, set dip switches S3, S43 to ON, OFF. |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 1009 | */ |
Magnus Damm | dd8a61a | 2010-08-31 09:22:36 +0000 | [diff] [blame] | 1010 | |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 1011 | gpio_request(GPIO_FN_LCDD17, NULL); |
| 1012 | gpio_request(GPIO_FN_LCDD16, NULL); |
| 1013 | gpio_request(GPIO_FN_LCDD15, NULL); |
| 1014 | gpio_request(GPIO_FN_LCDD14, NULL); |
| 1015 | gpio_request(GPIO_FN_LCDD13, NULL); |
| 1016 | gpio_request(GPIO_FN_LCDD12, NULL); |
| 1017 | gpio_request(GPIO_FN_LCDD11, NULL); |
| 1018 | gpio_request(GPIO_FN_LCDD10, NULL); |
| 1019 | gpio_request(GPIO_FN_LCDD9, NULL); |
| 1020 | gpio_request(GPIO_FN_LCDD8, NULL); |
| 1021 | gpio_request(GPIO_FN_LCDD7, NULL); |
| 1022 | gpio_request(GPIO_FN_LCDD6, NULL); |
| 1023 | gpio_request(GPIO_FN_LCDD5, NULL); |
| 1024 | gpio_request(GPIO_FN_LCDD4, NULL); |
| 1025 | gpio_request(GPIO_FN_LCDD3, NULL); |
| 1026 | gpio_request(GPIO_FN_LCDD2, NULL); |
| 1027 | gpio_request(GPIO_FN_LCDD1, NULL); |
| 1028 | gpio_request(GPIO_FN_LCDD0, NULL); |
| 1029 | gpio_request(GPIO_FN_LCDDISP, NULL); |
| 1030 | gpio_request(GPIO_FN_LCDDCK, NULL); |
| 1031 | |
| 1032 | gpio_request(GPIO_PORT189, NULL); /* backlight */ |
| 1033 | gpio_direction_output(GPIO_PORT189, 1); |
| 1034 | |
| 1035 | gpio_request(GPIO_PORT151, NULL); /* LCDDON */ |
| 1036 | gpio_direction_output(GPIO_PORT151, 1); |
| 1037 | |
| 1038 | lcdc_info.clock_source = LCDC_CLK_BUS; |
| 1039 | lcdc_info.ch[0].interface_type = RGB18; |
| 1040 | lcdc_info.ch[0].clock_divider = 2; |
| 1041 | lcdc_info.ch[0].flags = 0; |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 1042 | lcdc_info.ch[0].lcd_size_cfg.width = 152; |
| 1043 | lcdc_info.ch[0].lcd_size_cfg.height = 91; |
| 1044 | |
| 1045 | /* enable TouchScreen */ |
Kuninori Morimoto | ef73150 | 2010-08-27 09:49:50 +0000 | [diff] [blame] | 1046 | gpio_request(GPIO_FN_IRQ7_40, NULL); |
Kuninori Morimoto | 9fa1b7f | 2010-06-04 03:15:09 +0000 | [diff] [blame] | 1047 | set_irq_type(IRQ7, IRQ_TYPE_LEVEL_LOW); |
| 1048 | |
| 1049 | tsc_device.irq = IRQ7; |
| 1050 | i2c_register_board_info(0, &tsc_device, 1); |
| 1051 | #endif /* CONFIG_AP4EVB_QHD */ |
Guennadi Liakhovetski | 341291a | 2010-05-23 14:12:46 +0000 | [diff] [blame] | 1052 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 1053 | sh7372_add_standard_devices(); |
| 1054 | |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 1055 | /* HDMI */ |
| 1056 | gpio_request(GPIO_FN_HDMI_HPD, NULL); |
| 1057 | gpio_request(GPIO_FN_HDMI_CEC, NULL); |
| 1058 | |
| 1059 | /* Reset HDMI, must be held at least one EXTALR (32768Hz) period */ |
| 1060 | #define SRCR4 0xe61580bc |
| 1061 | srcr4 = __raw_readl(SRCR4); |
| 1062 | __raw_writel(srcr4 | (1 << 13), SRCR4); |
| 1063 | udelay(50); |
| 1064 | __raw_writel(srcr4 & ~(1 << 13), SRCR4); |
| 1065 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 1066 | platform_add_devices(ap4evb_devices, ARRAY_SIZE(ap4evb_devices)); |
| 1067 | } |
| 1068 | |
Magnus Damm | 495b3ce | 2010-05-12 14:21:34 +0000 | [diff] [blame] | 1069 | static void __init ap4evb_timer_init(void) |
| 1070 | { |
| 1071 | sh7372_clock_init(); |
| 1072 | shmobile_timer.init(); |
Guennadi Liakhovetski | dfbcdf6 | 2010-07-21 10:13:25 +0000 | [diff] [blame] | 1073 | |
| 1074 | /* External clock source */ |
| 1075 | clk_set_rate(&dv_clki_clk, 27000000); |
Magnus Damm | 495b3ce | 2010-05-12 14:21:34 +0000 | [diff] [blame] | 1076 | } |
| 1077 | |
| 1078 | static struct sys_timer ap4evb_timer = { |
| 1079 | .init = ap4evb_timer_init, |
| 1080 | }; |
| 1081 | |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 1082 | MACHINE_START(AP4EVB, "ap4evb") |
| 1083 | .phys_io = 0xe6000000, |
| 1084 | .io_pg_offst = ((0xe6000000) >> 18) & 0xfffc, |
| 1085 | .map_io = ap4evb_map_io, |
| 1086 | .init_irq = sh7372_init_irq, |
| 1087 | .init_machine = ap4evb_init, |
Magnus Damm | 495b3ce | 2010-05-12 14:21:34 +0000 | [diff] [blame] | 1088 | .timer = &ap4evb_timer, |
Magnus Damm | 2b7eda6 | 2010-02-05 11:14:58 +0000 | [diff] [blame] | 1089 | MACHINE_END |