3 * (Compatible with Algo System ., LTD. - AP-320A)
5 * Copyright (C) 2008 Renesas Solutions Corp.
6 * Author : Yusuke Goda <goda.yuske@renesas.com>
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
13 #include <linux/init.h>
14 #include <linux/device.h>
15 #include <linux/interrupt.h>
16 #include <linux/platform_device.h>
17 #include <linux/mmc/host.h>
18 #include <linux/mmc/sh_mobile_sdhi.h>
19 #include <linux/mtd/physmap.h>
20 #include <linux/mtd/sh_flctl.h>
21 #include <linux/mfd/tmio.h>
22 #include <linux/delay.h>
23 #include <linux/i2c.h>
24 #include <linux/regulator/fixed.h>
25 #include <linux/regulator/machine.h>
26 #include <linux/smsc911x.h>
27 #include <linux/gpio.h>
28 #include <linux/videodev2.h>
29 #include <linux/sh_intc.h>
30 #include <media/ov772x.h>
31 #include <media/soc_camera.h>
32 #include <media/soc_camera_platform.h>
33 #include <media/sh_mobile_ceu.h>
34 #include <video/sh_mobile_lcdc.h>
36 #include <asm/clock.h>
37 #include <asm/suspend.h>
38 #include <cpu/sh7723.h>
40 /* Dummy supplies, where voltage doesn't matter */
41 static struct regulator_consumer_supply dummy_supplies
[] = {
42 REGULATOR_SUPPLY("vddvario", "smsc911x"),
43 REGULATOR_SUPPLY("vdd33a", "smsc911x"),
46 static struct smsc911x_platform_config smsc911x_config
= {
47 .phy_interface
= PHY_INTERFACE_MODE_MII
,
48 .irq_polarity
= SMSC911X_IRQ_POLARITY_ACTIVE_LOW
,
49 .irq_type
= SMSC911X_IRQ_TYPE_OPEN_DRAIN
,
50 .flags
= SMSC911X_USE_32BIT
,
53 static struct resource smsc9118_resources
[] = {
57 .flags
= IORESOURCE_MEM
,
60 .start
= evt2irq(0x660),
61 .end
= evt2irq(0x660),
62 .flags
= IORESOURCE_IRQ
,
66 static struct platform_device smsc9118_device
= {
69 .num_resources
= ARRAY_SIZE(smsc9118_resources
),
70 .resource
= smsc9118_resources
,
72 .platform_data
= &smsc911x_config
,
77 * AP320 and AP325RXA has CPLD data in NOR Flash(0xA80000-0xABFFFF).
78 * If this area erased, this board can not boot.
80 static struct mtd_partition ap325rxa_nor_flash_partitions
[] = {
84 .size
= (1 * 1024 * 1024),
85 .mask_flags
= MTD_WRITEABLE
, /* Read-only */
88 .offset
= MTDPART_OFS_APPEND
,
89 .size
= (2 * 1024 * 1024),
92 .offset
= MTDPART_OFS_APPEND
,
93 .size
= ((7 * 1024 * 1024) + (512 * 1024)),
96 .offset
= MTDPART_OFS_APPEND
,
97 .mask_flags
= MTD_WRITEABLE
, /* Read-only */
98 .size
= (1024 * 128 * 2),
100 .name
= "free-area1",
101 .offset
= MTDPART_OFS_APPEND
,
102 .size
= MTDPART_SIZ_FULL
,
106 static struct physmap_flash_data ap325rxa_nor_flash_data
= {
108 .parts
= ap325rxa_nor_flash_partitions
,
109 .nr_parts
= ARRAY_SIZE(ap325rxa_nor_flash_partitions
),
112 static struct resource ap325rxa_nor_flash_resources
[] = {
117 .flags
= IORESOURCE_MEM
,
121 static struct platform_device ap325rxa_nor_flash_device
= {
122 .name
= "physmap-flash",
123 .resource
= ap325rxa_nor_flash_resources
,
124 .num_resources
= ARRAY_SIZE(ap325rxa_nor_flash_resources
),
126 .platform_data
= &ap325rxa_nor_flash_data
,
130 static struct mtd_partition nand_partition_info
[] = {
134 .size
= MTDPART_SIZ_FULL
,
138 static struct resource nand_flash_resources
[] = {
142 .flags
= IORESOURCE_MEM
,
146 static struct sh_flctl_platform_data nand_flash_data
= {
147 .parts
= nand_partition_info
,
148 .nr_parts
= ARRAY_SIZE(nand_partition_info
),
149 .flcmncr_val
= FCKSEL_E
| TYPESEL_SET
| NANWF_E
,
153 static struct platform_device nand_flash_device
= {
155 .resource
= nand_flash_resources
,
156 .num_resources
= ARRAY_SIZE(nand_flash_resources
),
158 .platform_data
= &nand_flash_data
,
162 #define FPGA_LCDREG 0xB4100180
163 #define FPGA_BKLREG 0xB4100212
164 #define FPGA_LCDREG_VAL 0x0018
165 #define PORT_MSELCRB 0xA4050182
166 #define PORT_HIZCRC 0xA405015C
167 #define PORT_DRVCRA 0xA405018A
168 #define PORT_DRVCRB 0xA405018C
170 static int ap320_wvga_set_brightness(int brightness
)
173 gpio_set_value(GPIO_PTS3
, 0);
174 __raw_writew(0x100, FPGA_BKLREG
);
176 __raw_writew(0, FPGA_BKLREG
);
177 gpio_set_value(GPIO_PTS3
, 1);
183 static void ap320_wvga_power_on(void)
187 /* ASD AP-320/325 LCD ON */
188 __raw_writew(FPGA_LCDREG_VAL
, FPGA_LCDREG
);
191 static void ap320_wvga_power_off(void)
193 /* ASD AP-320/325 LCD OFF */
194 __raw_writew(0, FPGA_LCDREG
);
197 static const struct fb_videomode ap325rxa_lcdc_modes
[] = {
208 .sync
= 0, /* hsync and vsync are active low */
212 static struct sh_mobile_lcdc_info lcdc_info
= {
213 .clock_source
= LCDC_CLK_EXTERNAL
,
215 .chan
= LCDC_CHAN_MAINLCD
,
216 .fourcc
= V4L2_PIX_FMT_RGB565
,
217 .interface_type
= RGB18
,
219 .lcd_modes
= ap325rxa_lcdc_modes
,
220 .num_modes
= ARRAY_SIZE(ap325rxa_lcdc_modes
),
222 .width
= 152, /* 7.0 inch */
224 .display_on
= ap320_wvga_power_on
,
225 .display_off
= ap320_wvga_power_off
,
228 .name
= "sh_mobile_lcdc_bl",
230 .set_brightness
= ap320_wvga_set_brightness
,
235 static struct resource lcdc_resources
[] = {
238 .start
= 0xfe940000, /* P4-only space */
240 .flags
= IORESOURCE_MEM
,
243 .start
= evt2irq(0x580),
244 .flags
= IORESOURCE_IRQ
,
248 static struct platform_device lcdc_device
= {
249 .name
= "sh_mobile_lcdc_fb",
250 .num_resources
= ARRAY_SIZE(lcdc_resources
),
251 .resource
= lcdc_resources
,
253 .platform_data
= &lcdc_info
,
257 static void camera_power(int val
)
259 gpio_set_value(GPIO_PTZ5
, val
); /* RST_CAM/RSTB */
264 /* support for the old ncm03j camera */
265 static unsigned char camera_ncm03j_magic
[] =
267 0x87, 0x00, 0x88, 0x08, 0x89, 0x01, 0x8A, 0xE8,
268 0x1D, 0x00, 0x1E, 0x8A, 0x21, 0x00, 0x33, 0x36,
269 0x36, 0x60, 0x37, 0x08, 0x3B, 0x31, 0x44, 0x0F,
270 0x46, 0xF0, 0x4B, 0x28, 0x4C, 0x21, 0x4D, 0x55,
271 0x4E, 0x1B, 0x4F, 0xC7, 0x50, 0xFC, 0x51, 0x12,
272 0x58, 0x02, 0x66, 0xC0, 0x67, 0x46, 0x6B, 0xA0,
273 0x6C, 0x34, 0x7E, 0x25, 0x7F, 0x25, 0x8D, 0x0F,
274 0x92, 0x40, 0x93, 0x04, 0x94, 0x26, 0x95, 0x0A,
275 0x99, 0x03, 0x9A, 0xF0, 0x9B, 0x14, 0x9D, 0x7A,
276 0xC5, 0x02, 0xD6, 0x07, 0x59, 0x00, 0x5A, 0x1A,
277 0x5B, 0x2A, 0x5C, 0x37, 0x5D, 0x42, 0x5E, 0x56,
278 0xC8, 0x00, 0xC9, 0x1A, 0xCA, 0x2A, 0xCB, 0x37,
279 0xCC, 0x42, 0xCD, 0x56, 0xCE, 0x00, 0xCF, 0x1A,
280 0xD0, 0x2A, 0xD1, 0x37, 0xD2, 0x42, 0xD3, 0x56,
281 0x5F, 0x68, 0x60, 0x87, 0x61, 0xA3, 0x62, 0xBC,
282 0x63, 0xD4, 0x64, 0xEA, 0xD6, 0x0F,
285 static int camera_probe(void)
287 struct i2c_adapter
*a
= i2c_get_adapter(0);
296 msg
.buf
= camera_ncm03j_magic
;
299 ret
= i2c_transfer(a
, &msg
, 1);
305 static int camera_set_capture(struct soc_camera_platform_info
*info
,
308 struct i2c_adapter
*a
= i2c_get_adapter(0);
315 return 0; /* no disable for now */
318 for (i
= 0; i
< ARRAY_SIZE(camera_ncm03j_magic
); i
+= 2) {
326 buf
[0] = camera_ncm03j_magic
[i
];
327 buf
[1] = camera_ncm03j_magic
[i
+ 1];
329 ret
= (ret
< 0) ? ret
: i2c_transfer(a
, &msg
, 1);
335 static int ap325rxa_camera_add(struct soc_camera_device
*icd
);
336 static void ap325rxa_camera_del(struct soc_camera_device
*icd
);
338 static struct soc_camera_platform_info camera_info
= {
339 .format_name
= "UYVY",
342 .code
= MEDIA_BUS_FMT_UYVY8_2X8
,
343 .colorspace
= V4L2_COLORSPACE_SMPTE170M
,
344 .field
= V4L2_FIELD_NONE
,
348 .mbus_param
= V4L2_MBUS_PCLK_SAMPLE_RISING
| V4L2_MBUS_MASTER
|
349 V4L2_MBUS_VSYNC_ACTIVE_HIGH
| V4L2_MBUS_HSYNC_ACTIVE_HIGH
|
350 V4L2_MBUS_DATA_ACTIVE_HIGH
,
351 .mbus_type
= V4L2_MBUS_PARALLEL
,
352 .set_capture
= camera_set_capture
,
355 static struct soc_camera_link camera_link
= {
357 .add_device
= ap325rxa_camera_add
,
358 .del_device
= ap325rxa_camera_del
,
359 .module_name
= "soc_camera_platform",
360 .priv
= &camera_info
,
363 static struct platform_device
*camera_device
;
365 static void ap325rxa_camera_release(struct device
*dev
)
367 soc_camera_platform_release(&camera_device
);
370 static int ap325rxa_camera_add(struct soc_camera_device
*icd
)
372 int ret
= soc_camera_platform_add(icd
, &camera_device
, &camera_link
,
373 ap325rxa_camera_release
, 0);
377 ret
= camera_probe();
379 soc_camera_platform_del(icd
, camera_device
, &camera_link
);
384 static void ap325rxa_camera_del(struct soc_camera_device
*icd
)
386 soc_camera_platform_del(icd
, camera_device
, &camera_link
);
388 #endif /* CONFIG_I2C */
390 static int ov7725_power(struct device
*dev
, int mode
)
399 static struct sh_mobile_ceu_info sh_mobile_ceu_info
= {
400 .flags
= SH_CEU_FLAG_USE_8BIT_BUS
,
403 static struct resource ceu_resources
[] = {
408 .flags
= IORESOURCE_MEM
,
411 .start
= evt2irq(0x880),
412 .flags
= IORESOURCE_IRQ
,
415 /* place holder for contiguous memory */
419 static struct platform_device ceu_device
= {
420 .name
= "sh_mobile_ceu",
421 .id
= 0, /* "ceu0" clock */
422 .num_resources
= ARRAY_SIZE(ceu_resources
),
423 .resource
= ceu_resources
,
425 .platform_data
= &sh_mobile_ceu_info
,
429 /* Fixed 3.3V regulators to be used by SDHI0, SDHI1 */
430 static struct regulator_consumer_supply fixed3v3_power_consumers
[] =
432 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
433 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
434 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
435 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.1"),
438 static struct resource sdhi0_cn3_resources
[] = {
443 .flags
= IORESOURCE_MEM
,
446 .start
= evt2irq(0xe80),
447 .flags
= IORESOURCE_IRQ
,
451 static struct tmio_mmc_data sdhi0_cn3_data
= {
452 .capabilities
= MMC_CAP_SDIO_IRQ
,
455 static struct platform_device sdhi0_cn3_device
= {
456 .name
= "sh_mobile_sdhi",
457 .id
= 0, /* "sdhi0" clock */
458 .num_resources
= ARRAY_SIZE(sdhi0_cn3_resources
),
459 .resource
= sdhi0_cn3_resources
,
461 .platform_data
= &sdhi0_cn3_data
,
465 static struct resource sdhi1_cn7_resources
[] = {
470 .flags
= IORESOURCE_MEM
,
473 .start
= evt2irq(0x4e0),
474 .flags
= IORESOURCE_IRQ
,
478 static struct tmio_mmc_data sdhi1_cn7_data
= {
479 .capabilities
= MMC_CAP_SDIO_IRQ
,
482 static struct platform_device sdhi1_cn7_device
= {
483 .name
= "sh_mobile_sdhi",
484 .id
= 1, /* "sdhi1" clock */
485 .num_resources
= ARRAY_SIZE(sdhi1_cn7_resources
),
486 .resource
= sdhi1_cn7_resources
,
488 .platform_data
= &sdhi1_cn7_data
,
492 static struct i2c_board_info __initdata ap325rxa_i2c_devices
[] = {
494 I2C_BOARD_INFO("pcf8563", 0x51),
498 static struct i2c_board_info ap325rxa_i2c_camera
[] = {
500 I2C_BOARD_INFO("ov772x", 0x21),
504 static struct ov772x_camera_info ov7725_info
= {
505 .flags
= OV772X_FLAG_VFLIP
| OV772X_FLAG_HFLIP
,
506 .edgectrl
= OV772X_AUTO_EDGECTRL(0xf, 0),
509 static struct soc_camera_link ov7725_link
= {
511 .power
= ov7725_power
,
512 .board_info
= &ap325rxa_i2c_camera
[0],
514 .priv
= &ov7725_info
,
517 static struct platform_device ap325rxa_camera
[] = {
519 .name
= "soc-camera-pdrv",
522 .platform_data
= &ov7725_link
,
525 .name
= "soc-camera-pdrv",
528 .platform_data
= &camera_link
,
533 static struct platform_device
*ap325rxa_devices
[] __initdata
= {
535 &ap325rxa_nor_flash_device
,
545 extern char ap325rxa_sdram_enter_start
;
546 extern char ap325rxa_sdram_enter_end
;
547 extern char ap325rxa_sdram_leave_start
;
548 extern char ap325rxa_sdram_leave_end
;
550 static int __init
ap325rxa_devices_setup(void)
552 /* register board specific self-refresh code */
553 sh_mobile_register_self_refresh(SUSP_SH_STANDBY
| SUSP_SH_SF
,
554 &ap325rxa_sdram_enter_start
,
555 &ap325rxa_sdram_enter_end
,
556 &ap325rxa_sdram_leave_start
,
557 &ap325rxa_sdram_leave_end
);
559 regulator_register_always_on(0, "fixed-3.3V", fixed3v3_power_consumers
,
560 ARRAY_SIZE(fixed3v3_power_consumers
), 3300000);
561 regulator_register_fixed(1, dummy_supplies
, ARRAY_SIZE(dummy_supplies
));
563 /* LD3 and LD4 LEDs */
564 gpio_request(GPIO_PTX5
, NULL
); /* RUN */
565 gpio_direction_output(GPIO_PTX5
, 1);
566 gpio_export(GPIO_PTX5
, 0);
568 gpio_request(GPIO_PTX4
, NULL
); /* INDICATOR */
569 gpio_direction_output(GPIO_PTX4
, 0);
570 gpio_export(GPIO_PTX4
, 0);
573 gpio_request(GPIO_PTF7
, NULL
); /* MODE */
574 gpio_direction_input(GPIO_PTF7
);
575 gpio_export(GPIO_PTF7
, 0);
578 gpio_request(GPIO_FN_LCDD15
, NULL
);
579 gpio_request(GPIO_FN_LCDD14
, NULL
);
580 gpio_request(GPIO_FN_LCDD13
, NULL
);
581 gpio_request(GPIO_FN_LCDD12
, NULL
);
582 gpio_request(GPIO_FN_LCDD11
, NULL
);
583 gpio_request(GPIO_FN_LCDD10
, NULL
);
584 gpio_request(GPIO_FN_LCDD9
, NULL
);
585 gpio_request(GPIO_FN_LCDD8
, NULL
);
586 gpio_request(GPIO_FN_LCDD7
, NULL
);
587 gpio_request(GPIO_FN_LCDD6
, NULL
);
588 gpio_request(GPIO_FN_LCDD5
, NULL
);
589 gpio_request(GPIO_FN_LCDD4
, NULL
);
590 gpio_request(GPIO_FN_LCDD3
, NULL
);
591 gpio_request(GPIO_FN_LCDD2
, NULL
);
592 gpio_request(GPIO_FN_LCDD1
, NULL
);
593 gpio_request(GPIO_FN_LCDD0
, NULL
);
594 gpio_request(GPIO_FN_LCDLCLK_PTR
, NULL
);
595 gpio_request(GPIO_FN_LCDDCK
, NULL
);
596 gpio_request(GPIO_FN_LCDVEPWC
, NULL
);
597 gpio_request(GPIO_FN_LCDVCPWC
, NULL
);
598 gpio_request(GPIO_FN_LCDVSYN
, NULL
);
599 gpio_request(GPIO_FN_LCDHSYN
, NULL
);
600 gpio_request(GPIO_FN_LCDDISP
, NULL
);
601 gpio_request(GPIO_FN_LCDDON
, NULL
);
604 gpio_request(GPIO_PTS3
, NULL
);
605 gpio_direction_output(GPIO_PTS3
, 1);
608 gpio_request(GPIO_FN_VIO_CLK2
, NULL
);
609 gpio_request(GPIO_FN_VIO_VD2
, NULL
);
610 gpio_request(GPIO_FN_VIO_HD2
, NULL
);
611 gpio_request(GPIO_FN_VIO_FLD
, NULL
);
612 gpio_request(GPIO_FN_VIO_CKO
, NULL
);
613 gpio_request(GPIO_FN_VIO_D15
, NULL
);
614 gpio_request(GPIO_FN_VIO_D14
, NULL
);
615 gpio_request(GPIO_FN_VIO_D13
, NULL
);
616 gpio_request(GPIO_FN_VIO_D12
, NULL
);
617 gpio_request(GPIO_FN_VIO_D11
, NULL
);
618 gpio_request(GPIO_FN_VIO_D10
, NULL
);
619 gpio_request(GPIO_FN_VIO_D9
, NULL
);
620 gpio_request(GPIO_FN_VIO_D8
, NULL
);
622 gpio_request(GPIO_PTZ7
, NULL
);
623 gpio_direction_output(GPIO_PTZ7
, 0); /* OE_CAM */
624 gpio_request(GPIO_PTZ6
, NULL
);
625 gpio_direction_output(GPIO_PTZ6
, 0); /* STBY_CAM */
626 gpio_request(GPIO_PTZ5
, NULL
);
627 gpio_direction_output(GPIO_PTZ5
, 0); /* RST_CAM */
628 gpio_request(GPIO_PTZ4
, NULL
);
629 gpio_direction_output(GPIO_PTZ4
, 0); /* SADDR */
631 __raw_writew(__raw_readw(PORT_MSELCRB
) & ~0x0001, PORT_MSELCRB
);
634 gpio_request(GPIO_FN_FCE
, NULL
);
635 gpio_request(GPIO_FN_NAF7
, NULL
);
636 gpio_request(GPIO_FN_NAF6
, NULL
);
637 gpio_request(GPIO_FN_NAF5
, NULL
);
638 gpio_request(GPIO_FN_NAF4
, NULL
);
639 gpio_request(GPIO_FN_NAF3
, NULL
);
640 gpio_request(GPIO_FN_NAF2
, NULL
);
641 gpio_request(GPIO_FN_NAF1
, NULL
);
642 gpio_request(GPIO_FN_NAF0
, NULL
);
643 gpio_request(GPIO_FN_FCDE
, NULL
);
644 gpio_request(GPIO_FN_FOE
, NULL
);
645 gpio_request(GPIO_FN_FSC
, NULL
);
646 gpio_request(GPIO_FN_FWE
, NULL
);
647 gpio_request(GPIO_FN_FRB
, NULL
);
649 __raw_writew(0, PORT_HIZCRC
);
650 __raw_writew(0xFFFF, PORT_DRVCRA
);
651 __raw_writew(0xFFFF, PORT_DRVCRB
);
653 platform_resource_setup_memory(&ceu_device
, "ceu", 4 << 20);
655 /* SDHI0 - CN3 - SD CARD */
656 gpio_request(GPIO_FN_SDHI0CD_PTD
, NULL
);
657 gpio_request(GPIO_FN_SDHI0WP_PTD
, NULL
);
658 gpio_request(GPIO_FN_SDHI0D3_PTD
, NULL
);
659 gpio_request(GPIO_FN_SDHI0D2_PTD
, NULL
);
660 gpio_request(GPIO_FN_SDHI0D1_PTD
, NULL
);
661 gpio_request(GPIO_FN_SDHI0D0_PTD
, NULL
);
662 gpio_request(GPIO_FN_SDHI0CMD_PTD
, NULL
);
663 gpio_request(GPIO_FN_SDHI0CLK_PTD
, NULL
);
665 /* SDHI1 - CN7 - MICRO SD CARD */
666 gpio_request(GPIO_FN_SDHI1CD
, NULL
);
667 gpio_request(GPIO_FN_SDHI1D3
, NULL
);
668 gpio_request(GPIO_FN_SDHI1D2
, NULL
);
669 gpio_request(GPIO_FN_SDHI1D1
, NULL
);
670 gpio_request(GPIO_FN_SDHI1D0
, NULL
);
671 gpio_request(GPIO_FN_SDHI1CMD
, NULL
);
672 gpio_request(GPIO_FN_SDHI1CLK
, NULL
);
674 i2c_register_board_info(0, ap325rxa_i2c_devices
,
675 ARRAY_SIZE(ap325rxa_i2c_devices
));
677 return platform_add_devices(ap325rxa_devices
,
678 ARRAY_SIZE(ap325rxa_devices
));
680 arch_initcall(ap325rxa_devices_setup
);
682 /* Return the board specific boot mode pin configuration */
683 static int ap325rxa_mode_pins(void)
685 /* MD0=0, MD1=0, MD2=0: Clock Mode 0
686 * MD3=0: 16-bit Area0 Bus Width
687 * MD5=1: Little Endian
688 * TSTMD=1, MD8=1: Test Mode Disabled
690 return MODE_PIN5
| MODE_PIN8
;
693 static struct sh_machine_vector mv_ap325rxa __initmv
= {
694 .mv_name
= "AP-325RXA",
695 .mv_mode_pins
= ap325rxa_mode_pins
,