blob: 03dc3ac84502edd8f83aa51820ef1a05f24f9648 [file] [log] [blame]
Kuninori Morimoto9b93e242012-04-10 20:57:31 -07001/*
2 * KZM-A9-GT board support
3 *
4 * Copyright (C) 2012 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
Kuninori Morimoto26786112012-04-10 20:58:33 -070019
20#include <linux/delay.h>
Kuninori Morimoto9b93e242012-04-10 20:57:31 -070021#include <linux/gpio.h>
Kuninori Morimoto1e354642012-04-22 23:54:14 -070022#include <linux/gpio_keys.h>
Kuninori Morimoto9b93e242012-04-10 20:57:31 -070023#include <linux/io.h>
24#include <linux/irq.h>
Kuninori Morimoto407c0522012-04-10 20:58:45 -070025#include <linux/i2c.h>
Kuninori Morimoto1e354642012-04-22 23:54:14 -070026#include <linux/i2c/pcf857x.h>
27#include <linux/input.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060028#include <linux/irqchip/arm-gic.h>
Kuninori Morimotocc2512b2012-04-22 23:53:40 -070029#include <linux/mmc/host.h>
30#include <linux/mmc/sh_mmcif.h>
Kuninori Morimoto7775a932012-04-22 23:53:59 -070031#include <linux/mmc/sh_mobile_sdhi.h>
Guennadi Liakhovetski28307e02013-02-12 17:15:31 +000032#include <linux/mfd/as3711.h>
Kuninori Morimoto7775a932012-04-22 23:53:59 -070033#include <linux/mfd/tmio.h>
Laurent Pinchartf3202e12013-01-03 12:54:28 +010034#include <linux/pinctrl/machine.h>
Laurent Pinchart83aeac92013-03-13 03:23:50 +010035#include <linux/pinctrl/pinconf-generic.h>
Kuninori Morimoto9b93e242012-04-10 20:57:31 -070036#include <linux/platform_device.h>
Robin Holt7b6d8642013-07-08 16:01:40 -070037#include <linux/reboot.h>
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +020038#include <linux/regulator/fixed.h>
39#include <linux/regulator/machine.h>
Kuninori Morimotoc15c4252012-04-10 20:57:58 -070040#include <linux/smsc911x.h>
Kuninori Morimotodd818182012-04-10 20:58:10 -070041#include <linux/usb/r8a66597.h>
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -070042#include <linux/usb/renesas_usbhs.h>
Kuninori Morimoto26786112012-04-10 20:58:33 -070043#include <linux/videodev2.h>
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -070044#include <sound/sh_fsi.h>
45#include <sound/simple_card.h>
Kuninori Morimotoc15c4252012-04-10 20:57:58 -070046#include <mach/irqs.h>
Kuninori Morimoto9b93e242012-04-10 20:57:31 -070047#include <mach/sh73a0.h>
48#include <mach/common.h>
49#include <asm/hardware/cache-l2x0.h>
Kuninori Morimoto9b93e242012-04-10 20:57:31 -070050#include <asm/mach-types.h>
51#include <asm/mach/arch.h>
Kuninori Morimoto26786112012-04-10 20:58:33 -070052#include <video/sh_mobile_lcdc.h>
Kuninori Morimoto9b93e242012-04-10 20:57:31 -070053
Kuninori Morimoto1e354642012-04-22 23:54:14 -070054/*
55 * external GPIO
56 */
Laurent Pinchart282b5832013-07-29 21:33:54 +020057#define GPIO_PCF8575_BASE (310)
58#define GPIO_PCF8575_PORT10 (GPIO_PCF8575_BASE + 8)
59#define GPIO_PCF8575_PORT11 (GPIO_PCF8575_BASE + 9)
60#define GPIO_PCF8575_PORT12 (GPIO_PCF8575_BASE + 10)
61#define GPIO_PCF8575_PORT13 (GPIO_PCF8575_BASE + 11)
62#define GPIO_PCF8575_PORT14 (GPIO_PCF8575_BASE + 12)
63#define GPIO_PCF8575_PORT15 (GPIO_PCF8575_BASE + 13)
64#define GPIO_PCF8575_PORT16 (GPIO_PCF8575_BASE + 14)
Kuninori Morimoto1e354642012-04-22 23:54:14 -070065
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +020066/* Dummy supplies, where voltage doesn't matter */
67static struct regulator_consumer_supply dummy_supplies[] = {
Simon Horman48296a12013-02-15 22:48:36 +090068 REGULATOR_SUPPLY("vddvario", "smsc911x.0"),
69 REGULATOR_SUPPLY("vdd33a", "smsc911x.0"),
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +020070};
71
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -070072/*
73 * FSI-AK4648
74 *
75 * this command is required when playback.
76 *
77 * # amixer set "LINEOUT Mixer DACL" on
78 */
79
Kuninori Morimotoc15c4252012-04-10 20:57:58 -070080/* SMSC 9221 */
81static struct resource smsc9221_resources[] = {
82 [0] = {
83 .start = 0x10000000, /* CS4 */
84 .end = 0x100000ff,
85 .flags = IORESOURCE_MEM,
86 },
87 [1] = {
Magnus Damm341eb542013-02-26 12:01:09 +090088 .start = irq_pin(3), /* IRQ3 */
Kuninori Morimotoc15c4252012-04-10 20:57:58 -070089 .flags = IORESOURCE_IRQ,
90 },
91};
92
93static struct smsc911x_platform_config smsc9221_platdata = {
94 .flags = SMSC911X_USE_32BIT | SMSC911X_SAVE_MAC_ADDRESS,
95 .phy_interface = PHY_INTERFACE_MODE_MII,
96 .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW,
97 .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL,
98};
99
100static struct platform_device smsc_device = {
101 .name = "smsc911x",
102 .dev = {
103 .platform_data = &smsc9221_platdata,
104 },
105 .resource = smsc9221_resources,
106 .num_resources = ARRAY_SIZE(smsc9221_resources),
107};
108
Kuninori Morimotodd818182012-04-10 20:58:10 -0700109/* USB external chip */
110static struct r8a66597_platdata usb_host_data = {
111 .on_chip = 0,
112 .xtal = R8A66597_PLATDATA_XTAL_48MHZ,
113};
114
115static struct resource usb_resources[] = {
116 [0] = {
117 .start = 0x10010000,
118 .end = 0x1001ffff - 1,
119 .flags = IORESOURCE_MEM,
120 },
121 [1] = {
Magnus Damm341eb542013-02-26 12:01:09 +0900122 .start = irq_pin(1), /* IRQ1 */
Kuninori Morimotodd818182012-04-10 20:58:10 -0700123 .flags = IORESOURCE_IRQ,
124 },
125};
126
127static struct platform_device usb_host_device = {
128 .name = "r8a66597_hcd",
129 .dev = {
130 .platform_data = &usb_host_data,
131 .dma_mask = NULL,
132 .coherent_dma_mask = 0xffffffff,
133 },
134 .num_resources = ARRAY_SIZE(usb_resources),
135 .resource = usb_resources,
136};
137
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700138/* USB Func CN17 */
139struct usbhs_private {
Arnd Bergmann0a4b04d2012-09-14 20:08:08 +0000140 void __iomem *phy;
141 void __iomem *cr2;
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700142 struct renesas_usbhs_platform_info info;
143};
144
Magnus Damm341eb542013-02-26 12:01:09 +0900145#define IRQ15 irq_pin(15)
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700146#define USB_PHY_MODE (1 << 4)
147#define USB_PHY_INT_EN ((1 << 3) | (1 << 2))
148#define USB_PHY_ON (1 << 1)
149#define USB_PHY_OFF (1 << 0)
150#define USB_PHY_INT_CLR (USB_PHY_ON | USB_PHY_OFF)
151
152#define usbhs_get_priv(pdev) \
153 container_of(renesas_usbhs_get_info(pdev), struct usbhs_private, info)
154
155static int usbhs_get_vbus(struct platform_device *pdev)
156{
157 struct usbhs_private *priv = usbhs_get_priv(pdev);
158
159 return !((1 << 7) & __raw_readw(priv->cr2));
160}
161
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700162static int usbhs_phy_reset(struct platform_device *pdev)
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700163{
164 struct usbhs_private *priv = usbhs_get_priv(pdev);
165
166 /* init phy */
167 __raw_writew(0x8a0a, priv->cr2);
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700168
169 return 0;
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700170}
171
172static int usbhs_get_id(struct platform_device *pdev)
173{
174 return USBHS_GADGET;
175}
176
177static irqreturn_t usbhs_interrupt(int irq, void *data)
178{
179 struct platform_device *pdev = data;
180 struct usbhs_private *priv = usbhs_get_priv(pdev);
181
182 renesas_usbhs_call_notify_hotplug(pdev);
183
184 /* clear status */
185 __raw_writew(__raw_readw(priv->phy) | USB_PHY_INT_CLR, priv->phy);
186
187 return IRQ_HANDLED;
188}
189
190static int usbhs_hardware_init(struct platform_device *pdev)
191{
192 struct usbhs_private *priv = usbhs_get_priv(pdev);
193 int ret;
194
195 /* clear interrupt status */
196 __raw_writew(USB_PHY_MODE | USB_PHY_INT_CLR, priv->phy);
197
198 ret = request_irq(IRQ15, usbhs_interrupt, IRQF_TRIGGER_HIGH,
199 dev_name(&pdev->dev), pdev);
200 if (ret) {
201 dev_err(&pdev->dev, "request_irq err\n");
202 return ret;
203 }
204
205 /* enable USB phy interrupt */
206 __raw_writew(USB_PHY_MODE | USB_PHY_INT_EN, priv->phy);
207
208 return 0;
209}
210
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700211static int usbhs_hardware_exit(struct platform_device *pdev)
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700212{
213 struct usbhs_private *priv = usbhs_get_priv(pdev);
214
215 /* clear interrupt status */
216 __raw_writew(USB_PHY_MODE | USB_PHY_INT_CLR, priv->phy);
217
218 free_irq(IRQ15, pdev);
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700219
220 return 0;
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700221}
222
223static u32 usbhs_pipe_cfg[] = {
224 USB_ENDPOINT_XFER_CONTROL,
225 USB_ENDPOINT_XFER_ISOC,
226 USB_ENDPOINT_XFER_ISOC,
227 USB_ENDPOINT_XFER_BULK,
228 USB_ENDPOINT_XFER_BULK,
229 USB_ENDPOINT_XFER_BULK,
230 USB_ENDPOINT_XFER_INT,
231 USB_ENDPOINT_XFER_INT,
232 USB_ENDPOINT_XFER_INT,
233 USB_ENDPOINT_XFER_BULK,
234 USB_ENDPOINT_XFER_BULK,
235 USB_ENDPOINT_XFER_BULK,
236 USB_ENDPOINT_XFER_BULK,
237 USB_ENDPOINT_XFER_BULK,
238 USB_ENDPOINT_XFER_BULK,
239 USB_ENDPOINT_XFER_BULK,
240};
241
242static struct usbhs_private usbhs_private = {
Arnd Bergmann0a4b04d2012-09-14 20:08:08 +0000243 .phy = IOMEM(0xe60781e0), /* USBPHYINT */
244 .cr2 = IOMEM(0xe605810c), /* USBCR2 */
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700245 .info = {
246 .platform_callback = {
247 .hardware_init = usbhs_hardware_init,
248 .hardware_exit = usbhs_hardware_exit,
249 .get_id = usbhs_get_id,
250 .phy_reset = usbhs_phy_reset,
251 .get_vbus = usbhs_get_vbus,
252 },
253 .driver_param = {
254 .buswait_bwait = 4,
255 .has_otg = 1,
256 .pipe_type = usbhs_pipe_cfg,
257 .pipe_size = ARRAY_SIZE(usbhs_pipe_cfg),
258 },
259 },
260};
261
262static struct resource usbhs_resources[] = {
263 [0] = {
264 .start = 0xE6890000,
265 .end = 0xE68900e6 - 1,
266 .flags = IORESOURCE_MEM,
267 },
268 [1] = {
269 .start = gic_spi(62),
270 .end = gic_spi(62),
271 .flags = IORESOURCE_IRQ,
272 },
273};
274
275static struct platform_device usbhs_device = {
276 .name = "renesas_usbhs",
277 .id = -1,
278 .dev = {
279 .dma_mask = NULL,
280 .coherent_dma_mask = 0xffffffff,
281 .platform_data = &usbhs_private.info,
282 },
283 .num_resources = ARRAY_SIZE(usbhs_resources),
284 .resource = usbhs_resources,
285};
286
Kuninori Morimoto26786112012-04-10 20:58:33 -0700287/* LCDC */
288static struct fb_videomode kzm_lcdc_mode = {
289 .name = "WVGA Panel",
290 .xres = 800,
291 .yres = 480,
292 .left_margin = 220,
293 .right_margin = 110,
294 .hsync_len = 70,
295 .upper_margin = 20,
296 .lower_margin = 5,
297 .vsync_len = 5,
298 .sync = 0,
299};
300
301static struct sh_mobile_lcdc_info lcdc_info = {
302 .clock_source = LCDC_CLK_BUS,
303 .ch[0] = {
304 .chan = LCDC_CHAN_MAINLCD,
305 .fourcc = V4L2_PIX_FMT_RGB565,
306 .interface_type = RGB24,
307 .lcd_modes = &kzm_lcdc_mode,
308 .num_modes = 1,
309 .clock_divider = 5,
310 .flags = 0,
311 .panel_cfg = {
312 .width = 152,
313 .height = 91,
314 },
315 }
316};
317
318static struct resource lcdc_resources[] = {
319 [0] = {
320 .name = "LCDC",
321 .start = 0xfe940000,
322 .end = 0xfe943fff,
323 .flags = IORESOURCE_MEM,
324 },
325 [1] = {
326 .start = intcs_evt2irq(0x580),
327 .flags = IORESOURCE_IRQ,
328 },
329};
330
331static struct platform_device lcdc_device = {
332 .name = "sh_mobile_lcdc_fb",
333 .num_resources = ARRAY_SIZE(lcdc_resources),
334 .resource = lcdc_resources,
335 .dev = {
336 .platform_data = &lcdc_info,
Laurent Pinchart4f387322013-12-16 19:16:08 +0100337 .coherent_dma_mask = DMA_BIT_MASK(32),
Kuninori Morimoto26786112012-04-10 20:58:33 -0700338 },
339};
340
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +0200341/* Fixed 1.8V regulator to be used by MMCIF */
342static struct regulator_consumer_supply fixed1v8_power_consumers[] =
343{
344 REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
345 REGULATOR_SUPPLY("vqmmc", "sh_mmcif.0"),
346};
347
Kuninori Morimotocc2512b2012-04-22 23:53:40 -0700348/* MMCIF */
349static struct resource sh_mmcif_resources[] = {
350 [0] = {
351 .name = "MMCIF",
352 .start = 0xe6bd0000,
353 .end = 0xe6bd00ff,
354 .flags = IORESOURCE_MEM,
355 },
356 [1] = {
Tetsuyuki Kobayashia7048352012-09-06 07:19:36 +0000357 .start = gic_spi(140),
Kuninori Morimotocc2512b2012-04-22 23:53:40 -0700358 .flags = IORESOURCE_IRQ,
359 },
360 [2] = {
Tetsuyuki Kobayashia7048352012-09-06 07:19:36 +0000361 .start = gic_spi(141),
Kuninori Morimotocc2512b2012-04-22 23:53:40 -0700362 .flags = IORESOURCE_IRQ,
363 },
364};
365
366static struct sh_mmcif_plat_data sh_mmcif_platdata = {
367 .ocr = MMC_VDD_165_195,
368 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
Guennadi Liakhovetski58d0bbd2013-07-10 21:21:15 +0200369 .ccs_unsupported = true,
Kuninori Morimotoa1ca8f42012-06-25 03:39:39 -0700370 .slave_id_tx = SHDMA_SLAVE_MMCIF_TX,
371 .slave_id_rx = SHDMA_SLAVE_MMCIF_RX,
Kuninori Morimotocc2512b2012-04-22 23:53:40 -0700372};
373
374static struct platform_device mmc_device = {
375 .name = "sh_mmcif",
376 .dev = {
377 .dma_mask = NULL,
378 .coherent_dma_mask = 0xffffffff,
379 .platform_data = &sh_mmcif_platdata,
380 },
381 .num_resources = ARRAY_SIZE(sh_mmcif_resources),
382 .resource = sh_mmcif_resources,
383};
384
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100385/* Fixed 3.3V regulators to be used by SDHI0 */
386static struct regulator_consumer_supply vcc_sdhi0_consumers[] =
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +0200387{
388 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100389};
390
391static struct regulator_init_data vcc_sdhi0_init_data = {
392 .constraints = {
393 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
394 },
395 .num_consumer_supplies = ARRAY_SIZE(vcc_sdhi0_consumers),
396 .consumer_supplies = vcc_sdhi0_consumers,
397};
398
399static struct fixed_voltage_config vcc_sdhi0_info = {
400 .supply_name = "SDHI0 Vcc",
401 .microvolts = 3300000,
402 .gpio = 15,
403 .enable_high = 1,
404 .init_data = &vcc_sdhi0_init_data,
405};
406
407static struct platform_device vcc_sdhi0 = {
408 .name = "reg-fixed-voltage",
409 .id = 0,
410 .dev = {
411 .platform_data = &vcc_sdhi0_info,
412 },
413};
414
415/* Fixed 3.3V regulators to be used by SDHI2 */
416static struct regulator_consumer_supply vcc_sdhi2_consumers[] =
417{
Guennadi Liakhovetski11b8e452012-07-01 01:12:04 +0200418 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.2"),
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100419};
420
421static struct regulator_init_data vcc_sdhi2_init_data = {
422 .constraints = {
423 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
424 },
425 .num_consumer_supplies = ARRAY_SIZE(vcc_sdhi2_consumers),
426 .consumer_supplies = vcc_sdhi2_consumers,
427};
428
429static struct fixed_voltage_config vcc_sdhi2_info = {
430 .supply_name = "SDHI2 Vcc",
431 .microvolts = 3300000,
432 .gpio = 14,
433 .enable_high = 1,
434 .init_data = &vcc_sdhi2_init_data,
435};
436
437static struct platform_device vcc_sdhi2 = {
438 .name = "reg-fixed-voltage",
439 .id = 1,
440 .dev = {
441 .platform_data = &vcc_sdhi2_info,
442 },
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +0200443};
444
Kuninori Morimoto7775a932012-04-22 23:53:59 -0700445/* SDHI */
446static struct sh_mobile_sdhi_info sdhi0_info = {
Tetsuyuki Kobayashibd9e2e72012-09-06 09:09:31 +0000447 .dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
448 .dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
Kuninori Morimoto7775a932012-04-22 23:53:59 -0700449 .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT,
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100450 .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_SDIO_IRQ |
451 MMC_CAP_POWER_OFF_CARD,
Kuninori Morimoto7775a932012-04-22 23:53:59 -0700452};
453
454static struct resource sdhi0_resources[] = {
455 [0] = {
456 .name = "SDHI0",
457 .start = 0xee100000,
458 .end = 0xee1000ff,
459 .flags = IORESOURCE_MEM,
460 },
461 [1] = {
462 .name = SH_MOBILE_SDHI_IRQ_CARD_DETECT,
463 .start = gic_spi(83),
464 .flags = IORESOURCE_IRQ,
465 },
466 [2] = {
467 .name = SH_MOBILE_SDHI_IRQ_SDCARD,
468 .start = gic_spi(84),
469 .flags = IORESOURCE_IRQ,
470 },
471 [3] = {
472 .name = SH_MOBILE_SDHI_IRQ_SDIO,
473 .start = gic_spi(85),
474 .flags = IORESOURCE_IRQ,
475 },
476};
477
478static struct platform_device sdhi0_device = {
479 .name = "sh_mobile_sdhi",
480 .num_resources = ARRAY_SIZE(sdhi0_resources),
481 .resource = sdhi0_resources,
482 .dev = {
483 .platform_data = &sdhi0_info,
484 },
485};
486
Kuninori Morimoto425d6942012-06-25 03:35:11 -0700487/* Micro SD */
488static struct sh_mobile_sdhi_info sdhi2_info = {
Tetsuyuki Kobayashibd9e2e72012-09-06 09:09:31 +0000489 .dma_slave_tx = SHDMA_SLAVE_SDHI2_TX,
490 .dma_slave_rx = SHDMA_SLAVE_SDHI2_RX,
Kuninori Morimoto425d6942012-06-25 03:35:11 -0700491 .tmio_flags = TMIO_MMC_HAS_IDLE_WAIT |
492 TMIO_MMC_USE_GPIO_CD |
493 TMIO_MMC_WRPROTECT_DISABLE,
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100494 .tmio_caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_POWER_OFF_CARD,
Guennadi Liakhovetskib58e5fa2013-02-12 16:50:02 +0100495 .cd_gpio = 13,
Kuninori Morimoto425d6942012-06-25 03:35:11 -0700496};
497
498static struct resource sdhi2_resources[] = {
499 [0] = {
500 .name = "SDHI2",
501 .start = 0xee140000,
502 .end = 0xee1400ff,
503 .flags = IORESOURCE_MEM,
504 },
505 [1] = {
506 .name = SH_MOBILE_SDHI_IRQ_CARD_DETECT,
507 .start = gic_spi(103),
508 .flags = IORESOURCE_IRQ,
509 },
510 [2] = {
511 .name = SH_MOBILE_SDHI_IRQ_SDCARD,
512 .start = gic_spi(104),
513 .flags = IORESOURCE_IRQ,
514 },
515 [3] = {
516 .name = SH_MOBILE_SDHI_IRQ_SDIO,
517 .start = gic_spi(105),
518 .flags = IORESOURCE_IRQ,
519 },
520};
521
522static struct platform_device sdhi2_device = {
523 .name = "sh_mobile_sdhi",
524 .id = 2,
525 .num_resources = ARRAY_SIZE(sdhi2_resources),
526 .resource = sdhi2_resources,
527 .dev = {
528 .platform_data = &sdhi2_info,
529 },
530};
531
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700532/* KEY */
533#define GPIO_KEY(c, g, d) { .code = c, .gpio = g, .desc = d, .active_low = 1 }
534
535static struct gpio_keys_button gpio_buttons[] = {
536 GPIO_KEY(KEY_BACK, GPIO_PCF8575_PORT10, "SW3"),
537 GPIO_KEY(KEY_RIGHT, GPIO_PCF8575_PORT11, "SW2-R"),
538 GPIO_KEY(KEY_LEFT, GPIO_PCF8575_PORT12, "SW2-L"),
539 GPIO_KEY(KEY_ENTER, GPIO_PCF8575_PORT13, "SW2-P"),
540 GPIO_KEY(KEY_UP, GPIO_PCF8575_PORT14, "SW2-U"),
541 GPIO_KEY(KEY_DOWN, GPIO_PCF8575_PORT15, "SW2-D"),
542 GPIO_KEY(KEY_HOME, GPIO_PCF8575_PORT16, "SW1"),
543};
544
545static struct gpio_keys_platform_data gpio_key_info = {
546 .buttons = gpio_buttons,
547 .nbuttons = ARRAY_SIZE(gpio_buttons),
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700548};
549
550static struct platform_device gpio_keys_device = {
Kuninori Morimotoee6691d2012-09-11 14:26:05 +0900551 .name = "gpio-keys",
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700552 .dev = {
553 .platform_data = &gpio_key_info,
554 },
555};
556
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700557/* FSI-AK4648 */
558static struct sh_fsi_platform_info fsi_info = {
559 .port_a = {
Kuninori Morimoto76b80322012-06-25 03:39:30 -0700560 .tx_id = SHDMA_SLAVE_FSI2A_TX,
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700561 },
562};
563
564static struct resource fsi_resources[] = {
565 [0] = {
566 .name = "FSI",
567 .start = 0xEC230000,
568 .end = 0xEC230400 - 1,
569 .flags = IORESOURCE_MEM,
570 },
571 [1] = {
572 .start = gic_spi(146),
573 .flags = IORESOURCE_IRQ,
574 },
575};
576
577static struct platform_device fsi_device = {
578 .name = "sh_fsi2",
579 .id = -1,
580 .num_resources = ARRAY_SIZE(fsi_resources),
581 .resource = fsi_resources,
582 .dev = {
583 .platform_data = &fsi_info,
584 },
585};
586
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700587static struct asoc_simple_card_info fsi2_ak4648_info = {
588 .name = "AK4648",
589 .card = "FSI2A-AK4648",
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700590 .codec = "ak4642-codec.0-0012",
591 .platform = "sh_fsi2",
Kuninori Morimotoc7a507e2014-03-13 17:56:25 -0700592 .daifmt = SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_CBM_CFM,
Kuninori Morimotoa4a29922013-01-10 16:49:11 -0800593 .cpu_dai = {
594 .name = "fsia-dai",
Kuninori Morimotoa4a29922013-01-10 16:49:11 -0800595 },
596 .codec_dai = {
597 .name = "ak4642-hifi",
Kuninori Morimotoa4a29922013-01-10 16:49:11 -0800598 .sysclk = 11289600,
599 },
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700600};
601
602static struct platform_device fsi_ak4648_device = {
603 .name = "asoc-simple-card",
604 .dev = {
605 .platform_data = &fsi2_ak4648_info,
606 },
607};
608
Kuninori Morimoto7775a932012-04-22 23:53:59 -0700609/* I2C */
Guennadi Liakhovetski28307e02013-02-12 17:15:31 +0000610
611/* StepDown1 is used to supply 1.315V to the CPU */
612static struct regulator_init_data as3711_sd1 = {
613 .constraints = {
614 .name = "1.315V CPU",
615 .boot_on = 1,
616 .always_on = 1,
617 .min_uV = 1315000,
618 .max_uV = 1335000,
619 },
620};
621
622/* StepDown2 is used to supply 1.8V to the CPU and to the board */
623static struct regulator_init_data as3711_sd2 = {
624 .constraints = {
625 .name = "1.8V",
626 .boot_on = 1,
627 .always_on = 1,
628 .min_uV = 1800000,
629 .max_uV = 1800000,
630 },
631};
632
633/*
634 * StepDown3 is switched in parallel with StepDown2, seems to be off,
635 * according to read-back pre-set register values
636 */
637
638/* StepDown4 is used to supply 1.215V to the CPU and to the board */
639static struct regulator_init_data as3711_sd4 = {
640 .constraints = {
641 .name = "1.215V",
642 .boot_on = 1,
643 .always_on = 1,
644 .min_uV = 1215000,
645 .max_uV = 1235000,
646 },
647};
648
649/* LDO1 is unused and unconnected */
650
651/* LDO2 is used to supply 2.8V to the CPU */
652static struct regulator_init_data as3711_ldo2 = {
653 .constraints = {
654 .name = "2.8V CPU",
655 .boot_on = 1,
656 .always_on = 1,
657 .min_uV = 2800000,
658 .max_uV = 2800000,
659 },
660};
661
662/* LDO3 is used to supply 3.0V to the CPU */
663static struct regulator_init_data as3711_ldo3 = {
664 .constraints = {
665 .name = "3.0V CPU",
666 .boot_on = 1,
667 .always_on = 1,
668 .min_uV = 3000000,
669 .max_uV = 3000000,
670 },
671};
672
673/* LDO4 is used to supply 2.8V to the board */
674static struct regulator_init_data as3711_ldo4 = {
675 .constraints = {
676 .name = "2.8V",
677 .boot_on = 1,
678 .always_on = 1,
679 .min_uV = 2800000,
680 .max_uV = 2800000,
681 },
682};
683
684/* LDO5 is switched parallel to LDO4, also set to 2.8V */
685static struct regulator_init_data as3711_ldo5 = {
686 .constraints = {
687 .name = "2.8V #2",
688 .boot_on = 1,
689 .always_on = 1,
690 .min_uV = 2800000,
691 .max_uV = 2800000,
692 },
693};
694
695/* LDO6 is unused and unconnected */
696
697/* LDO7 is used to supply 1.15V to the CPU */
698static struct regulator_init_data as3711_ldo7 = {
699 .constraints = {
700 .name = "1.15V CPU",
701 .boot_on = 1,
702 .always_on = 1,
703 .min_uV = 1150000,
704 .max_uV = 1150000,
705 },
706};
707
708/* LDO8 is switched parallel to LDO7, also set to 1.15V */
709static struct regulator_init_data as3711_ldo8 = {
710 .constraints = {
711 .name = "1.15V CPU #2",
712 .boot_on = 1,
713 .always_on = 1,
714 .min_uV = 1150000,
715 .max_uV = 1150000,
716 },
717};
718
719static struct as3711_platform_data as3711_pdata = {
720 .regulator = {
721 .init_data = {
722 [AS3711_REGULATOR_SD_1] = &as3711_sd1,
723 [AS3711_REGULATOR_SD_2] = &as3711_sd2,
724 [AS3711_REGULATOR_SD_4] = &as3711_sd4,
725 [AS3711_REGULATOR_LDO_2] = &as3711_ldo2,
726 [AS3711_REGULATOR_LDO_3] = &as3711_ldo3,
727 [AS3711_REGULATOR_LDO_4] = &as3711_ldo4,
728 [AS3711_REGULATOR_LDO_5] = &as3711_ldo5,
729 [AS3711_REGULATOR_LDO_7] = &as3711_ldo7,
730 [AS3711_REGULATOR_LDO_8] = &as3711_ldo8,
731 },
732 },
733 .backlight = {
734 .su2_fb = "sh_mobile_lcdc_fb.0",
735 .su2_max_uA = 36000,
736 .su2_feedback = AS3711_SU2_CURR_AUTO,
737 .su2_fbprot = AS3711_SU2_GPIO4,
738 .su2_auto_curr1 = true,
739 .su2_auto_curr2 = true,
740 .su2_auto_curr3 = true,
741 },
742};
743
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700744static struct pcf857x_platform_data pcf8575_pdata = {
745 .gpio_base = GPIO_PCF8575_BASE,
746};
747
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700748static struct i2c_board_info i2c0_devices[] = {
749 {
750 I2C_BOARD_INFO("ak4648", 0x12),
Tetsuyuki Kobayashi080e0d12012-06-20 12:57:51 +0200751 },
752 {
753 I2C_BOARD_INFO("r2025sd", 0x32),
Tetsuyuki Kobayashi8cec0122012-09-14 18:14:28 +0900754 },
755 {
756 I2C_BOARD_INFO("ak8975", 0x0c),
Magnus Damm341eb542013-02-26 12:01:09 +0900757 .irq = irq_pin(28), /* IRQ28 */
Tetsuyuki Kobayashi8cec0122012-09-14 18:14:28 +0900758 },
Tetsuyuki Kobayashi608c5622012-09-14 18:14:29 +0900759 {
760 I2C_BOARD_INFO("adxl34x", 0x1d),
Magnus Damm341eb542013-02-26 12:01:09 +0900761 .irq = irq_pin(26), /* IRQ26 */
Tetsuyuki Kobayashi608c5622012-09-14 18:14:29 +0900762 },
Guennadi Liakhovetski28307e02013-02-12 17:15:31 +0000763 {
764 I2C_BOARD_INFO("as3711", 0x40),
765 .irq = intcs_evt2irq(0x3300), /* IRQ24 */
766 .platform_data = &as3711_pdata,
767 },
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700768};
769
Kuninori Morimoto407c0522012-04-10 20:58:45 -0700770static struct i2c_board_info i2c1_devices[] = {
771 {
772 I2C_BOARD_INFO("st1232-ts", 0x55),
Magnus Damm341eb542013-02-26 12:01:09 +0900773 .irq = irq_pin(8), /* IRQ8 */
Kuninori Morimoto407c0522012-04-10 20:58:45 -0700774 },
775};
776
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700777static struct i2c_board_info i2c3_devices[] = {
778 {
779 I2C_BOARD_INFO("pcf8575", 0x20),
Magnus Damm341eb542013-02-26 12:01:09 +0900780 .irq = irq_pin(19), /* IRQ19 */
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700781 .platform_data = &pcf8575_pdata,
782 },
783};
784
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700785static struct platform_device *kzm_devices[] __initdata = {
Kuninori Morimotoc15c4252012-04-10 20:57:58 -0700786 &smsc_device,
Kuninori Morimotodd818182012-04-10 20:58:10 -0700787 &usb_host_device,
Kuninori Morimoto77bcefd2012-06-25 03:35:01 -0700788 &usbhs_device,
Kuninori Morimoto26786112012-04-10 20:58:33 -0700789 &lcdc_device,
Kuninori Morimotocc2512b2012-04-22 23:53:40 -0700790 &mmc_device,
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100791 &vcc_sdhi0,
792 &vcc_sdhi2,
Kuninori Morimoto7775a932012-04-22 23:53:59 -0700793 &sdhi0_device,
Kuninori Morimoto425d6942012-06-25 03:35:11 -0700794 &sdhi2_device,
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700795 &gpio_keys_device,
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700796 &fsi_device,
797 &fsi_ak4648_device,
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700798};
799
Laurent Pinchart83aeac92013-03-13 03:23:50 +0100800static unsigned long pin_pullup_conf[] = {
801 PIN_CONF_PACKED(PIN_CONFIG_BIAS_PULL_UP, 0),
802};
803
Laurent Pinchartf3202e12013-01-03 12:54:28 +0100804static const struct pinctrl_map kzm_pinctrl_map[] = {
Laurent Pinchartee9f8da2013-01-03 12:54:28 +0100805 /* FSIA (AK4648) */
Kuninori Morimoto41534a32013-05-22 18:34:10 -0700806 PIN_MAP_MUX_GROUP_DEFAULT("sh_fsi2", "pfc-sh73a0",
Laurent Pinchartee9f8da2013-01-03 12:54:28 +0100807 "fsia_mclk_in", "fsia"),
Kuninori Morimoto41534a32013-05-22 18:34:10 -0700808 PIN_MAP_MUX_GROUP_DEFAULT("sh_fsi2", "pfc-sh73a0",
Laurent Pinchartee9f8da2013-01-03 12:54:28 +0100809 "fsia_sclk_in", "fsia"),
Kuninori Morimoto41534a32013-05-22 18:34:10 -0700810 PIN_MAP_MUX_GROUP_DEFAULT("sh_fsi2", "pfc-sh73a0",
Laurent Pinchartee9f8da2013-01-03 12:54:28 +0100811 "fsia_data_in", "fsia"),
Kuninori Morimoto41534a32013-05-22 18:34:10 -0700812 PIN_MAP_MUX_GROUP_DEFAULT("sh_fsi2", "pfc-sh73a0",
Laurent Pinchartee9f8da2013-01-03 12:54:28 +0100813 "fsia_data_out", "fsia"),
Laurent Pinchart118b6732013-01-03 12:54:28 +0100814 /* I2C3 */
815 PIN_MAP_MUX_GROUP_DEFAULT("i2c-sh_mobile.3", "pfc-sh73a0",
816 "i2c3_1", "i2c3"),
Laurent Pinchartf3202e12013-01-03 12:54:28 +0100817 /* LCD */
818 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_lcdc_fb.0", "pfc-sh73a0",
819 "lcd_data24", "lcd"),
820 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_lcdc_fb.0", "pfc-sh73a0",
821 "lcd_sync", "lcd"),
Laurent Pinchart83aeac92013-03-13 03:23:50 +0100822 /* MMCIF */
823 PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-sh73a0",
824 "mmc0_data8_0", "mmc0"),
825 PIN_MAP_MUX_GROUP_DEFAULT("sh_mmcif.0", "pfc-sh73a0",
826 "mmc0_ctrl_0", "mmc0"),
827 PIN_MAP_CONFIGS_PIN_DEFAULT("sh_mmcif.0", "pfc-sh73a0",
828 "PORT279", pin_pullup_conf),
829 PIN_MAP_CONFIGS_GROUP_DEFAULT("sh_mmcif.0", "pfc-sh73a0",
830 "mmc0_data8_0", pin_pullup_conf),
Laurent Pinchart5606ed92013-01-03 12:54:28 +0100831 /* SCIFA4 */
832 PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.4", "pfc-sh73a0",
833 "scifa4_data", "scifa4"),
834 PIN_MAP_MUX_GROUP_DEFAULT("sh-sci.4", "pfc-sh73a0",
835 "scifa4_ctrl", "scifa4"),
Laurent Pinchart83aeac92013-03-13 03:23:50 +0100836 /* SDHI0 */
837 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-sh73a0",
838 "sdhi0_data4", "sdhi0"),
839 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-sh73a0",
840 "sdhi0_ctrl", "sdhi0"),
841 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-sh73a0",
842 "sdhi0_cd", "sdhi0"),
843 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.0", "pfc-sh73a0",
844 "sdhi0_wp", "sdhi0"),
845 /* SDHI2 */
846 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.2", "pfc-sh73a0",
847 "sdhi2_data4", "sdhi2"),
848 PIN_MAP_MUX_GROUP_DEFAULT("sh_mobile_sdhi.2", "pfc-sh73a0",
849 "sdhi2_ctrl", "sdhi2"),
Laurent Pinchartfed94cf2013-03-13 03:21:36 +0100850 /* SMSC */
851 PIN_MAP_MUX_GROUP_DEFAULT("smsc911x.0", "pfc-sh73a0",
852 "bsc_cs4", "bsc"),
Laurent Pinchartf4243862013-03-13 03:23:50 +0100853 /* USB */
854 PIN_MAP_MUX_GROUP_DEFAULT("renesas_usbhs", "pfc-sh73a0",
855 "usb_vbus", "usb"),
Laurent Pinchartf3202e12013-01-03 12:54:28 +0100856};
857
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700858static void __init kzm_init(void)
859{
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100860 regulator_register_always_on(2, "fixed-1.8V", fixed1v8_power_consumers,
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +0200861 ARRAY_SIZE(fixed1v8_power_consumers), 1800000);
Guennadi Liakhovetski54ca74e2013-03-18 19:26:44 +0100862 regulator_register_fixed(3, dummy_supplies, ARRAY_SIZE(dummy_supplies));
Guennadi Liakhovetski44a42442012-06-27 00:32:31 +0200863
Laurent Pinchartf3202e12013-01-03 12:54:28 +0100864 pinctrl_register_mappings(kzm_pinctrl_map, ARRAY_SIZE(kzm_pinctrl_map));
865
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700866 sh73a0_pinmux_init();
867
Kuninori Morimotoc15c4252012-04-10 20:57:58 -0700868 /* SMSC */
Guennadi Liakhovetskib58e5fa2013-02-12 16:50:02 +0100869 gpio_request_one(224, GPIOF_IN, NULL); /* IRQ3 */
Kuninori Morimotoc15c4252012-04-10 20:57:58 -0700870
Kuninori Morimoto26786112012-04-10 20:58:33 -0700871 /* LCDC */
Guennadi Liakhovetskib58e5fa2013-02-12 16:50:02 +0100872 gpio_request_one(222, GPIOF_OUT_INIT_HIGH, NULL); /* LCDCDON */
873 gpio_request_one(226, GPIOF_OUT_INIT_HIGH, NULL); /* SC */
Kuninori Morimoto26786112012-04-10 20:58:33 -0700874
Kuninori Morimoto407c0522012-04-10 20:58:45 -0700875 /* Touchscreen */
Guennadi Liakhovetskib58e5fa2013-02-12 16:50:02 +0100876 gpio_request_one(223, GPIOF_IN, NULL); /* IRQ8 */
Kuninori Morimotocc2512b2012-04-22 23:53:40 -0700877
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700878#ifdef CONFIG_CACHE_L2X0
879 /* Early BRESP enable, Shared attribute override enable, 64K*8way */
880 l2x0_init(IOMEM(0xf0100000), 0x40460000, 0x82000fff);
881#endif
882
Kuninori Morimotoaccb90c2012-06-12 02:44:03 -0700883 i2c_register_board_info(0, i2c0_devices, ARRAY_SIZE(i2c0_devices));
Kuninori Morimoto407c0522012-04-10 20:58:45 -0700884 i2c_register_board_info(1, i2c1_devices, ARRAY_SIZE(i2c1_devices));
Kuninori Morimoto1e354642012-04-22 23:54:14 -0700885 i2c_register_board_info(3, i2c3_devices, ARRAY_SIZE(i2c3_devices));
Kuninori Morimoto407c0522012-04-10 20:58:45 -0700886
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700887 sh73a0_add_standard_devices();
888 platform_add_devices(kzm_devices, ARRAY_SIZE(kzm_devices));
Bastian Hecht13baf882012-12-05 12:13:06 +0000889
890 sh73a0_pm_init();
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700891}
892
Robin Holt7b6d8642013-07-08 16:01:40 -0700893static void kzm9g_restart(enum reboot_mode mode, const char *cmd)
Tetsuyuki Kobayashi79527172012-07-20 15:16:30 +0900894{
Arnd Bergmann28901c12012-09-23 22:41:21 +0000895#define RESCNT2 IOMEM(0xe6188020)
Tetsuyuki Kobayashi79527172012-07-20 15:16:30 +0900896 /* Do soft power on reset */
897 writel((1 << 31), RESCNT2);
898}
899
Magnus Damm7296d932012-05-14 23:22:28 +0200900static const char *kzm9g_boards_compat_dt[] __initdata = {
901 "renesas,kzm9g",
902 NULL,
903};
904
905DT_MACHINE_START(KZM9G_DT, "kzm9g")
Marc Zyngiera62580e2011-09-08 13:15:22 +0100906 .smp = smp_ops(sh73a0_smp_ops),
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700907 .map_io = sh73a0_map_io,
908 .init_early = sh73a0_add_early_devices,
909 .nr_irqs = NR_IRQS_LEGACY,
910 .init_irq = sh73a0_init_irq,
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700911 .init_machine = kzm_init,
Kuninori Morimoto14dd52f2012-06-20 22:40:08 -0700912 .init_late = shmobile_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700913 .init_time = sh73a0_earlytimer_init,
Tetsuyuki Kobayashi79527172012-07-20 15:16:30 +0900914 .restart = kzm9g_restart,
Magnus Damm7296d932012-05-14 23:22:28 +0200915 .dt_compat = kzm9g_boards_compat_dt,
Kuninori Morimoto9b93e242012-04-10 20:57:31 -0700916MACHINE_END