1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2009 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
8 #include <asm/heartbeat.h>
9 #include <asm/suspend.h>
10 #include <cpu/sh7724.h>
11 #include <linux/delay.h>
12 #include <linux/device.h>
13 #include <linux/i2c.h>
15 #include <linux/init.h>
16 #include <linux/input.h>
17 #include <linux/input/sh_keysc.h>
18 #include <linux/interrupt.h>
19 #include <linux/memblock.h>
20 #include <linux/mfd/tmio.h>
21 #include <linux/mmc/host.h>
22 #include <linux/mmc/sh_mmcif.h>
23 #include <linux/mtd/physmap.h>
24 #include <linux/gpio.h>
25 #include <linux/gpio/machine.h>
26 #include <linux/platform_data/gpio_backlight.h>
27 #include <linux/platform_data/tsc2007.h>
28 #include <linux/platform_device.h>
29 #include <linux/regulator/fixed.h>
30 #include <linux/regulator/machine.h>
31 #include <linux/sh_eth.h>
32 #include <linux/sh_intc.h>
33 #include <linux/spi/mmc_spi.h>
34 #include <linux/spi/sh_msiof.h>
35 #include <linux/spi/spi.h>
36 #include <linux/usb/r8a66597.h>
37 #include <linux/usb/renesas_usbhs.h>
38 #include <linux/videodev2.h>
39 #include <linux/dma-map-ops.h>
41 #include <media/drv-intf/renesas-ceu.h>
42 #include <media/i2c/mt9t112.h>
43 #include <media/i2c/tw9910.h>
45 #include <sound/sh_fsi.h>
46 #include <sound/simple_card.h>
48 #include <video/sh_mobile_lcdc.h>
51 * Address Interface BusWidth
52 *-----------------------------------------
53 * 0x0000_0000 uboot 16bit
54 * 0x0004_0000 Linux romImage 16bit
55 * 0x0014_0000 MTD for Linux 16bit
56 * 0x0400_0000 Internal I/O 16/32bit
57 * 0x0800_0000 DRAM 32bit
58 * 0x1800_0000 MFI 16bit
62 *------------------------------
63 * DS2[1] = FlashROM write protect ON : write protect
64 * OFF : No write protect
65 * DS2[2] = RMII / TS, SCIF ON : RMII
67 * DS2[3] = Camera / Video ON : Camera
69 * DS2[5] = NTSC_OUT Clock ON : On board OSC
71 * DS2[6-7] = MMC / SD ON-OFF : SD
78 * it needs amixer settings for playing
80 * amixer set 'HeadPhone' 80
81 * amixer set 'Out Mixer Left DAC Left' on
82 * amixer set 'Out Mixer Right DAC Right' on
85 #define CEU_BUFFER_MEMORY_SIZE (4 << 20)
86 static phys_addr_t ceu0_dma_membase
;
87 static phys_addr_t ceu1_dma_membase
;
90 static unsigned char led_pos
[] = { 0, 1, 2, 3 };
92 static struct heartbeat_data heartbeat_data
= {
97 static struct resource heartbeat_resource
= {
98 .start
= 0xA405012C, /* PTG */
99 .end
= 0xA405012E - 1,
100 .flags
= IORESOURCE_MEM
| IORESOURCE_MEM_8BIT
,
103 static struct platform_device heartbeat_device
= {
107 .platform_data
= &heartbeat_data
,
110 .resource
= &heartbeat_resource
,
114 static struct mtd_partition nor_flash_partitions
[] = {
116 .name
= "boot loader",
118 .size
= (5 * 1024 * 1024),
119 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
122 .offset
= MTDPART_OFS_APPEND
,
123 .size
= MTDPART_SIZ_FULL
,
127 static struct physmap_flash_data nor_flash_data
= {
129 .parts
= nor_flash_partitions
,
130 .nr_parts
= ARRAY_SIZE(nor_flash_partitions
),
133 static struct resource nor_flash_resources
[] = {
138 .flags
= IORESOURCE_MEM
,
142 static struct platform_device nor_flash_device
= {
143 .name
= "physmap-flash",
144 .resource
= nor_flash_resources
,
145 .num_resources
= ARRAY_SIZE(nor_flash_resources
),
147 .platform_data
= &nor_flash_data
,
152 #define SH_ETH_ADDR (0xA4600000)
153 static struct resource sh_eth_resources
[] = {
155 .start
= SH_ETH_ADDR
,
156 .end
= SH_ETH_ADDR
+ 0x1FC,
157 .flags
= IORESOURCE_MEM
,
160 .start
= evt2irq(0xd60),
161 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
165 static struct sh_eth_plat_data sh_eth_plat
= {
166 .phy
= 0x1f, /* SMSC LAN8700 */
167 .phy_interface
= PHY_INTERFACE_MODE_MII
,
168 .ether_link_active_low
= 1
171 static struct platform_device sh_eth_device
= {
172 .name
= "sh7724-ether",
175 .platform_data
= &sh_eth_plat
,
177 .num_resources
= ARRAY_SIZE(sh_eth_resources
),
178 .resource
= sh_eth_resources
,
182 static void usb0_port_power(int port
, int power
)
184 gpio_set_value(GPIO_PTB4
, power
);
187 static struct r8a66597_platdata usb0_host_data
= {
189 .port_power
= usb0_port_power
,
192 static struct resource usb0_host_resources
[] = {
195 .end
= 0xa4d80124 - 1,
196 .flags
= IORESOURCE_MEM
,
199 .start
= evt2irq(0xa20),
200 .end
= evt2irq(0xa20),
201 .flags
= IORESOURCE_IRQ
| IRQF_TRIGGER_LOW
,
205 static struct platform_device usb0_host_device
= {
206 .name
= "r8a66597_hcd",
209 .dma_mask
= NULL
, /* not use dma */
210 .coherent_dma_mask
= 0xffffffff,
211 .platform_data
= &usb0_host_data
,
213 .num_resources
= ARRAY_SIZE(usb0_host_resources
),
214 .resource
= usb0_host_resources
,
217 /* USB1 host/function */
218 static void usb1_port_power(int port
, int power
)
220 gpio_set_value(GPIO_PTB5
, power
);
223 static struct r8a66597_platdata usb1_common_data
= {
225 .port_power
= usb1_port_power
,
228 static struct resource usb1_common_resources
[] = {
231 .end
= 0xa4d90124 - 1,
232 .flags
= IORESOURCE_MEM
,
235 .start
= evt2irq(0xa40),
236 .end
= evt2irq(0xa40),
237 .flags
= IORESOURCE_IRQ
| IRQF_TRIGGER_LOW
,
241 static struct platform_device usb1_common_device
= {
242 /* .name will be added in arch_setup */
245 .dma_mask
= NULL
, /* not use dma */
246 .coherent_dma_mask
= 0xffffffff,
247 .platform_data
= &usb1_common_data
,
249 .num_resources
= ARRAY_SIZE(usb1_common_resources
),
250 .resource
= usb1_common_resources
,
256 static int usbhs_get_id(struct platform_device
*pdev
)
258 return gpio_get_value(GPIO_PTB3
);
261 static int usbhs_phy_reset(struct platform_device
*pdev
)
263 /* enable vbus if HOST */
264 if (!gpio_get_value(GPIO_PTB3
))
265 gpio_set_value(GPIO_PTB5
, 1);
270 static struct renesas_usbhs_platform_info usbhs_info
= {
271 .platform_callback
= {
272 .get_id
= usbhs_get_id
,
273 .phy_reset
= usbhs_phy_reset
,
277 .detection_delay
= 5,
278 .d0_tx_id
= SHDMA_SLAVE_USB1D0_TX
,
279 .d0_rx_id
= SHDMA_SLAVE_USB1D0_RX
,
280 .d1_tx_id
= SHDMA_SLAVE_USB1D1_TX
,
281 .d1_rx_id
= SHDMA_SLAVE_USB1D1_RX
,
285 static struct resource usbhs_resources
[] = {
288 .end
= 0xa4d90124 - 1,
289 .flags
= IORESOURCE_MEM
,
292 .start
= evt2irq(0xa40),
293 .end
= evt2irq(0xa40),
294 .flags
= IORESOURCE_IRQ
,
298 static struct platform_device usbhs_device
= {
299 .name
= "renesas_usbhs",
302 .dma_mask
= NULL
, /* not use dma */
303 .coherent_dma_mask
= 0xffffffff,
304 .platform_data
= &usbhs_info
,
306 .num_resources
= ARRAY_SIZE(usbhs_resources
),
307 .resource
= usbhs_resources
,
310 /* LCDC and backlight */
311 static const struct fb_videomode ecovec_lcd_modes
[] = {
322 .sync
= 0, /* hsync and vsync are active low */
326 static const struct fb_videomode ecovec_dvi_modes
[] = {
337 .sync
= 0, /* hsync and vsync are active low */
341 static struct sh_mobile_lcdc_info lcdc_info
= {
343 .interface_type
= RGB18
,
344 .chan
= LCDC_CHAN_MAINLCD
,
345 .fourcc
= V4L2_PIX_FMT_RGB565
,
346 .panel_cfg
= { /* 7.0 inch */
353 static struct resource lcdc_resources
[] = {
358 .flags
= IORESOURCE_MEM
,
361 .start
= evt2irq(0xf40),
362 .flags
= IORESOURCE_IRQ
,
366 static struct platform_device lcdc_device
= {
367 .name
= "sh_mobile_lcdc_fb",
368 .num_resources
= ARRAY_SIZE(lcdc_resources
),
369 .resource
= lcdc_resources
,
371 .platform_data
= &lcdc_info
,
375 static struct gpiod_lookup_table gpio_backlight_lookup
= {
376 .dev_id
= "gpio-backlight.0",
378 GPIO_LOOKUP("sh7724_pfc", GPIO_PTR1
, NULL
, GPIO_ACTIVE_HIGH
),
383 static struct property_entry gpio_backlight_props
[] = {
384 PROPERTY_ENTRY_BOOL("default-on"),
388 static struct gpio_backlight_platform_data gpio_backlight_data
= {
389 .fbdev
= &lcdc_device
.dev
,
392 static const struct platform_device_info gpio_backlight_device_info
= {
393 .name
= "gpio-backlight",
394 .data
= &gpio_backlight_data
,
395 .size_data
= sizeof(gpio_backlight_data
),
396 .properties
= gpio_backlight_props
,
399 static struct platform_device
*gpio_backlight_device
;
402 static struct ceu_platform_data ceu0_pdata
= {
405 { /* [0] = mt9t112 */
422 static struct resource ceu0_resources
[] = {
427 .flags
= IORESOURCE_MEM
,
430 .start
= evt2irq(0x880),
431 .flags
= IORESOURCE_IRQ
,
435 static struct platform_device ceu0_device
= {
436 .name
= "renesas-ceu",
438 .num_resources
= ARRAY_SIZE(ceu0_resources
),
439 .resource
= ceu0_resources
,
441 .platform_data
= &ceu0_pdata
,
446 static struct ceu_platform_data ceu1_pdata
= {
449 { /* [0] = mt9t112 */
459 static struct resource ceu1_resources
[] = {
464 .flags
= IORESOURCE_MEM
,
467 .start
= evt2irq(0x9e0),
468 .flags
= IORESOURCE_IRQ
,
472 static struct platform_device ceu1_device
= {
473 .name
= "renesas-ceu",
475 .num_resources
= ARRAY_SIZE(ceu1_resources
),
476 .resource
= ceu1_resources
,
478 .platform_data
= &ceu1_pdata
,
482 /* Power up/down GPIOs for camera devices and video decoder */
483 static struct gpiod_lookup_table tw9910_gpios
= {
486 GPIO_LOOKUP("sh7724_pfc", GPIO_PTU2
, "pdn", GPIO_ACTIVE_HIGH
),
490 static struct gpiod_lookup_table mt9t112_0_gpios
= {
493 GPIO_LOOKUP("sh7724_pfc", GPIO_PTA3
, "standby",
498 static struct gpiod_lookup_table mt9t112_1_gpios
= {
501 GPIO_LOOKUP("sh7724_pfc", GPIO_PTA4
, "standby",
507 static struct tw9910_video_info tw9910_info
= {
509 .mpout
= TW9910_MPO_FIELD
,
512 static struct mt9t112_platform_data mt9t112_0_pdata
= {
513 .flags
= MT9T112_FLAG_PCLK_RISING_EDGE
,
514 .divider
= { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
517 static struct mt9t112_platform_data mt9t112_1_pdata
= {
518 .flags
= MT9T112_FLAG_PCLK_RISING_EDGE
,
519 .divider
= { 0x49, 0x6, 0, 6, 0, 9, 9, 6, 0 }, /* for 24MHz */
522 static struct i2c_board_info i2c0_devices
[] = {
524 I2C_BOARD_INFO("da7210", 0x1a),
527 I2C_BOARD_INFO("tw9910", 0x45),
528 .platform_data
= &tw9910_info
,
532 I2C_BOARD_INFO("mt9t112", 0x3c),
533 .platform_data
= &mt9t112_0_pdata
,
537 static struct i2c_board_info i2c1_devices
[] = {
539 I2C_BOARD_INFO("r2025sd", 0x32),
542 I2C_BOARD_INFO("lis3lv02d", 0x1c),
543 .irq
= evt2irq(0x620),
547 I2C_BOARD_INFO("mt9t112", 0x3c),
548 .platform_data
= &mt9t112_1_pdata
,
553 static struct sh_keysc_info keysc_info
= {
554 .mode
= SH_KEYSC_MODE_1
,
558 .keycodes
= { KEY_1
, 0, 0, 0, 0,
563 KEY_6
, 0, 0, 0, 0, },
566 static struct resource keysc_resources
[] = {
571 .flags
= IORESOURCE_MEM
,
574 .start
= evt2irq(0xbe0),
575 .flags
= IORESOURCE_IRQ
,
579 static struct platform_device keysc_device
= {
581 .id
= 0, /* keysc0 clock */
582 .num_resources
= ARRAY_SIZE(keysc_resources
),
583 .resource
= keysc_resources
,
585 .platform_data
= &keysc_info
,
590 #define IRQ0 evt2irq(0x600)
592 static int ts_get_pendown_state(struct device
*dev
)
595 gpio_free(GPIO_FN_INTC_IRQ0
);
596 gpio_request(GPIO_PTZ0
, NULL
);
597 gpio_direction_input(GPIO_PTZ0
);
599 val
= gpio_get_value(GPIO_PTZ0
);
601 gpio_free(GPIO_PTZ0
);
602 gpio_request(GPIO_FN_INTC_IRQ0
, NULL
);
607 static int ts_init(void)
609 gpio_request(GPIO_FN_INTC_IRQ0
, NULL
);
613 static struct tsc2007_platform_data tsc2007_info
= {
616 .get_pendown_state
= ts_get_pendown_state
,
617 .init_platform_hw
= ts_init
,
620 static struct i2c_board_info ts_i2c_clients
= {
621 I2C_BOARD_INFO("tsc2007", 0x48),
623 .platform_data
= &tsc2007_info
,
627 static struct regulator_consumer_supply cn12_power_consumers
[] =
629 REGULATOR_SUPPLY("vmmc", "sh_mmcif.0"),
630 REGULATOR_SUPPLY("vqmmc", "sh_mmcif.0"),
631 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.1"),
632 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.1"),
635 static struct regulator_init_data cn12_power_init_data
= {
637 .valid_ops_mask
= REGULATOR_CHANGE_STATUS
,
639 .num_consumer_supplies
= ARRAY_SIZE(cn12_power_consumers
),
640 .consumer_supplies
= cn12_power_consumers
,
643 static struct fixed_voltage_config cn12_power_info
= {
644 .supply_name
= "CN12 SD/MMC Vdd",
645 .microvolts
= 3300000,
646 .init_data
= &cn12_power_init_data
,
649 static struct platform_device cn12_power
= {
650 .name
= "reg-fixed-voltage",
653 .platform_data
= &cn12_power_info
,
657 static struct gpiod_lookup_table cn12_power_gpiod_table
= {
658 .dev_id
= "reg-fixed-voltage.0",
660 /* Offset 7 on port B */
661 GPIO_LOOKUP("sh7724_pfc", GPIO_PTB7
,
662 NULL
, GPIO_ACTIVE_HIGH
),
667 #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
669 static struct regulator_consumer_supply sdhi0_power_consumers
[] =
671 REGULATOR_SUPPLY("vmmc", "sh_mobile_sdhi.0"),
672 REGULATOR_SUPPLY("vqmmc", "sh_mobile_sdhi.0"),
675 static struct regulator_init_data sdhi0_power_init_data
= {
677 .valid_ops_mask
= REGULATOR_CHANGE_STATUS
,
679 .num_consumer_supplies
= ARRAY_SIZE(sdhi0_power_consumers
),
680 .consumer_supplies
= sdhi0_power_consumers
,
683 static struct fixed_voltage_config sdhi0_power_info
= {
684 .supply_name
= "CN11 SD/MMC Vdd",
685 .microvolts
= 3300000,
686 .init_data
= &sdhi0_power_init_data
,
689 static struct platform_device sdhi0_power
= {
690 .name
= "reg-fixed-voltage",
693 .platform_data
= &sdhi0_power_info
,
697 static struct gpiod_lookup_table sdhi0_power_gpiod_table
= {
698 .dev_id
= "reg-fixed-voltage.1",
700 /* Offset 6 on port B */
701 GPIO_LOOKUP("sh7724_pfc", GPIO_PTB6
,
702 NULL
, GPIO_ACTIVE_HIGH
),
707 static struct gpiod_lookup_table sdhi0_gpio_table
= {
708 .dev_id
= "sh_mobile_sdhi.0",
711 GPIO_LOOKUP("sh7724_pfc", GPIO_PTY7
, "cd", GPIO_ACTIVE_LOW
),
716 static struct tmio_mmc_data sdhi0_info
= {
717 .chan_priv_tx
= (void *)SHDMA_SLAVE_SDHI0_TX
,
718 .chan_priv_rx
= (void *)SHDMA_SLAVE_SDHI0_RX
,
719 .capabilities
= MMC_CAP_SDIO_IRQ
| MMC_CAP_POWER_OFF_CARD
|
723 static struct resource sdhi0_resources
[] = {
728 .flags
= IORESOURCE_MEM
,
731 .start
= evt2irq(0xe80),
732 .flags
= IORESOURCE_IRQ
,
736 static struct platform_device sdhi0_device
= {
737 .name
= "sh_mobile_sdhi",
738 .num_resources
= ARRAY_SIZE(sdhi0_resources
),
739 .resource
= sdhi0_resources
,
742 .platform_data
= &sdhi0_info
,
746 #if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
748 static struct tmio_mmc_data sdhi1_info
= {
749 .chan_priv_tx
= (void *)SHDMA_SLAVE_SDHI1_TX
,
750 .chan_priv_rx
= (void *)SHDMA_SLAVE_SDHI1_RX
,
751 .capabilities
= MMC_CAP_SDIO_IRQ
| MMC_CAP_POWER_OFF_CARD
|
755 static struct gpiod_lookup_table sdhi1_gpio_table
= {
756 .dev_id
= "sh_mobile_sdhi.1",
759 GPIO_LOOKUP("sh7724_pfc", GPIO_PTW7
, "cd", GPIO_ACTIVE_LOW
),
764 static struct resource sdhi1_resources
[] = {
769 .flags
= IORESOURCE_MEM
,
772 .start
= evt2irq(0x4e0),
773 .flags
= IORESOURCE_IRQ
,
777 static struct platform_device sdhi1_device
= {
778 .name
= "sh_mobile_sdhi",
779 .num_resources
= ARRAY_SIZE(sdhi1_resources
),
780 .resource
= sdhi1_resources
,
783 .platform_data
= &sdhi1_info
,
786 #endif /* CONFIG_MMC_SH_MMCIF */
791 static void mmc_spi_setpower(struct device
*dev
, unsigned int maskval
)
793 gpio_set_value(GPIO_PTB6
, maskval
? 1 : 0);
796 static struct mmc_spi_platform_data mmc_spi_info
= {
797 .caps
= MMC_CAP_NEEDS_POLL
,
798 .caps2
= MMC_CAP2_RO_ACTIVE_HIGH
,
799 .ocr_mask
= MMC_VDD_32_33
| MMC_VDD_33_34
, /* 3.3V only */
800 .setpower
= mmc_spi_setpower
,
803 static struct gpiod_lookup_table mmc_spi_gpio_table
= {
804 .dev_id
= "mmc_spi.0", /* device "mmc_spi" @ CS0 */
807 GPIO_LOOKUP_IDX("sh7724_pfc", GPIO_PTY7
, NULL
, 0,
810 GPIO_LOOKUP_IDX("sh7724_pfc", GPIO_PTY6
, NULL
, 1,
816 static struct spi_board_info spi_bus
[] = {
818 .modalias
= "mmc_spi",
819 .platform_data
= &mmc_spi_info
,
820 .max_speed_hz
= 5000000,
826 static struct sh_msiof_spi_info msiof0_data
= {
830 static struct resource msiof0_resources
[] = {
835 .flags
= IORESOURCE_MEM
,
838 .start
= evt2irq(0xc80),
839 .flags
= IORESOURCE_IRQ
,
843 static struct platform_device msiof0_device
= {
844 .name
= "spi_sh_msiof",
845 .id
= 0, /* MSIOF0 */
847 .platform_data
= &msiof0_data
,
849 .num_resources
= ARRAY_SIZE(msiof0_resources
),
850 .resource
= msiof0_resources
,
853 static struct gpiod_lookup_table msiof_gpio_table
= {
854 .dev_id
= "spi_sh_msiof.0",
856 GPIO_LOOKUP("sh7724_pfc", GPIO_PTM4
, "cs", GPIO_ACTIVE_HIGH
),
864 static struct resource fsi_resources
[] = {
869 .flags
= IORESOURCE_MEM
,
872 .start
= evt2irq(0xf80),
873 .flags
= IORESOURCE_IRQ
,
877 static struct platform_device fsi_device
= {
880 .num_resources
= ARRAY_SIZE(fsi_resources
),
881 .resource
= fsi_resources
,
884 static struct asoc_simple_card_info fsi_da7210_info
= {
886 .card
= "FSIB-DA7210",
887 .codec
= "da7210.0-001a",
888 .platform
= "sh_fsi.0",
889 .daifmt
= SND_SOC_DAIFMT_I2S
| SND_SOC_DAIFMT_CBM_CFM
,
894 .name
= "da7210-hifi",
898 static struct platform_device fsi_da7210_device
= {
899 .name
= "asoc-simple-card",
901 .platform_data
= &fsi_da7210_info
,
902 .coherent_dma_mask
= DMA_BIT_MASK(32),
903 .dma_mask
= &fsi_da7210_device
.dev
.coherent_dma_mask
,
909 static struct resource irda_resources
[] = {
914 .flags
= IORESOURCE_MEM
,
917 .start
= evt2irq(0x480),
918 .flags
= IORESOURCE_IRQ
,
922 static struct platform_device irda_device
= {
924 .num_resources
= ARRAY_SIZE(irda_resources
),
925 .resource
= irda_resources
,
928 #include <media/i2c/ak881x.h>
929 #include <media/drv-intf/sh_vou.h>
931 static struct ak881x_pdata ak881x_pdata
= {
932 .flags
= AK881X_IF_MODE_SLAVE
,
935 static struct i2c_board_info ak8813
= {
936 I2C_BOARD_INFO("ak8813", 0x20),
937 .platform_data
= &ak881x_pdata
,
940 static struct sh_vou_pdata sh_vou_pdata
= {
941 .bus_fmt
= SH_VOU_BUS_8BIT
,
942 .flags
= SH_VOU_HSYNC_LOW
| SH_VOU_VSYNC_LOW
,
943 .board_info
= &ak8813
,
947 static struct resource sh_vou_resources
[] = {
951 .flags
= IORESOURCE_MEM
,
954 .start
= evt2irq(0x8e0),
955 .flags
= IORESOURCE_IRQ
,
959 static struct platform_device vou_device
= {
962 .num_resources
= ARRAY_SIZE(sh_vou_resources
),
963 .resource
= sh_vou_resources
,
965 .platform_data
= &sh_vou_pdata
,
969 #if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
971 static struct resource sh_mmcif_resources
[] = {
976 .flags
= IORESOURCE_MEM
,
980 .start
= evt2irq(0x5a0),
981 .flags
= IORESOURCE_IRQ
,
985 .start
= evt2irq(0x5c0),
986 .flags
= IORESOURCE_IRQ
,
990 static struct sh_mmcif_plat_data sh_mmcif_plat
= {
991 .sup_pclk
= 0, /* SH7724: Max Pclk/2 */
992 .caps
= MMC_CAP_4_BIT_DATA
|
995 .ocr
= MMC_VDD_32_33
| MMC_VDD_33_34
,
998 static struct platform_device sh_mmcif_device
= {
1002 .platform_data
= &sh_mmcif_plat
,
1004 .num_resources
= ARRAY_SIZE(sh_mmcif_resources
),
1005 .resource
= sh_mmcif_resources
,
1009 static struct platform_device
*ecovec_ceu_devices
[] __initdata
= {
1014 static struct platform_device
*ecovec_devices
[] __initdata
= {
1019 &usb1_common_device
,
1024 #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1027 #if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
1037 #if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1043 #define EEPROM_ADDR 0x50
1044 static u8
mac_read(struct i2c_adapter
*a
, u8 command
)
1046 struct i2c_msg msg
[2];
1050 msg
[0].addr
= EEPROM_ADDR
;
1053 msg
[0].buf
= &command
;
1055 msg
[1].addr
= EEPROM_ADDR
;
1056 msg
[1].flags
= I2C_M_RD
;
1060 ret
= i2c_transfer(a
, msg
, 2);
1062 printk(KERN_ERR
"error %d\n", ret
);
1069 static void __init
sh_eth_init(struct sh_eth_plat_data
*pd
)
1071 struct i2c_adapter
*a
= i2c_get_adapter(1);
1075 pr_err("can not get I2C 1\n");
1079 /* read MAC address from EEPROM */
1080 for (i
= 0; i
< sizeof(pd
->mac_addr
); i
++) {
1081 pd
->mac_addr
[i
] = mac_read(a
, 0x10 + i
);
1088 static void __init
sh_eth_init(struct sh_eth_plat_data
*pd
)
1090 pr_err("unable to read sh_eth MAC address\n");
1094 #define PORT_HIZA 0xA4050158
1095 #define IODRIVEA 0xA405018A
1097 extern char ecovec24_sdram_enter_start
;
1098 extern char ecovec24_sdram_enter_end
;
1099 extern char ecovec24_sdram_leave_start
;
1100 extern char ecovec24_sdram_leave_end
;
1102 static int __init
arch_setup(void)
1105 bool cn12_enabled
= false;
1107 /* register board specific self-refresh code */
1108 sh_mobile_register_self_refresh(SUSP_SH_STANDBY
| SUSP_SH_SF
|
1110 &ecovec24_sdram_enter_start
,
1111 &ecovec24_sdram_enter_end
,
1112 &ecovec24_sdram_leave_start
,
1113 &ecovec24_sdram_leave_end
);
1115 /* enable STATUS0, STATUS2 and PDSTATUS */
1116 gpio_request(GPIO_FN_STATUS0
, NULL
);
1117 gpio_request(GPIO_FN_STATUS2
, NULL
);
1118 gpio_request(GPIO_FN_PDSTATUS
, NULL
);
1121 gpio_request(GPIO_FN_SCIF0_TXD
, NULL
);
1122 gpio_request(GPIO_FN_SCIF0_RXD
, NULL
);
1124 /* enable debug LED */
1125 gpio_request(GPIO_PTG0
, NULL
);
1126 gpio_request(GPIO_PTG1
, NULL
);
1127 gpio_request(GPIO_PTG2
, NULL
);
1128 gpio_request(GPIO_PTG3
, NULL
);
1129 gpio_direction_output(GPIO_PTG0
, 0);
1130 gpio_direction_output(GPIO_PTG1
, 0);
1131 gpio_direction_output(GPIO_PTG2
, 0);
1132 gpio_direction_output(GPIO_PTG3
, 0);
1133 __raw_writew((__raw_readw(PORT_HIZA
) & ~(0x1 << 1)) , PORT_HIZA
);
1136 gpio_request(GPIO_PTA1
, NULL
);
1137 gpio_direction_output(GPIO_PTA1
, 1);
1140 gpio_request(GPIO_FN_RMII_RXD0
, NULL
);
1141 gpio_request(GPIO_FN_RMII_RXD1
, NULL
);
1142 gpio_request(GPIO_FN_RMII_TXD0
, NULL
);
1143 gpio_request(GPIO_FN_RMII_TXD1
, NULL
);
1144 gpio_request(GPIO_FN_RMII_REF_CLK
, NULL
);
1145 gpio_request(GPIO_FN_RMII_TX_EN
, NULL
);
1146 gpio_request(GPIO_FN_RMII_RX_ER
, NULL
);
1147 gpio_request(GPIO_FN_RMII_CRS_DV
, NULL
);
1148 gpio_request(GPIO_FN_MDIO
, NULL
);
1149 gpio_request(GPIO_FN_MDC
, NULL
);
1150 gpio_request(GPIO_FN_LNKSTA
, NULL
);
1153 __raw_writew(0x0000, 0xA4D80000);
1154 __raw_writew(0x0000, 0xA4D90000);
1155 gpio_request(GPIO_PTB3
, NULL
);
1156 gpio_request(GPIO_PTB4
, NULL
);
1157 gpio_request(GPIO_PTB5
, NULL
);
1158 gpio_direction_input(GPIO_PTB3
);
1159 gpio_direction_output(GPIO_PTB4
, 0);
1160 gpio_direction_output(GPIO_PTB5
, 0);
1161 __raw_writew(0x0600, 0xa40501d4);
1162 __raw_writew(0x0600, 0xa4050192);
1164 if (gpio_get_value(GPIO_PTB3
)) {
1165 printk(KERN_INFO
"USB1 function is selected\n");
1166 usb1_common_device
.name
= "r8a66597_udc";
1168 printk(KERN_INFO
"USB1 host is selected\n");
1169 usb1_common_device
.name
= "r8a66597_hcd";
1173 gpio_request(GPIO_FN_LCDD23
, NULL
);
1174 gpio_request(GPIO_FN_LCDD22
, NULL
);
1175 gpio_request(GPIO_FN_LCDD21
, NULL
);
1176 gpio_request(GPIO_FN_LCDD20
, NULL
);
1177 gpio_request(GPIO_FN_LCDD19
, NULL
);
1178 gpio_request(GPIO_FN_LCDD18
, NULL
);
1179 gpio_request(GPIO_FN_LCDD17
, NULL
);
1180 gpio_request(GPIO_FN_LCDD16
, NULL
);
1181 gpio_request(GPIO_FN_LCDD15
, NULL
);
1182 gpio_request(GPIO_FN_LCDD14
, NULL
);
1183 gpio_request(GPIO_FN_LCDD13
, NULL
);
1184 gpio_request(GPIO_FN_LCDD12
, NULL
);
1185 gpio_request(GPIO_FN_LCDD11
, NULL
);
1186 gpio_request(GPIO_FN_LCDD10
, NULL
);
1187 gpio_request(GPIO_FN_LCDD9
, NULL
);
1188 gpio_request(GPIO_FN_LCDD8
, NULL
);
1189 gpio_request(GPIO_FN_LCDD7
, NULL
);
1190 gpio_request(GPIO_FN_LCDD6
, NULL
);
1191 gpio_request(GPIO_FN_LCDD5
, NULL
);
1192 gpio_request(GPIO_FN_LCDD4
, NULL
);
1193 gpio_request(GPIO_FN_LCDD3
, NULL
);
1194 gpio_request(GPIO_FN_LCDD2
, NULL
);
1195 gpio_request(GPIO_FN_LCDD1
, NULL
);
1196 gpio_request(GPIO_FN_LCDD0
, NULL
);
1197 gpio_request(GPIO_FN_LCDDISP
, NULL
);
1198 gpio_request(GPIO_FN_LCDHSYN
, NULL
);
1199 gpio_request(GPIO_FN_LCDDCK
, NULL
);
1200 gpio_request(GPIO_FN_LCDVSYN
, NULL
);
1201 gpio_request(GPIO_FN_LCDDON
, NULL
);
1202 gpio_request(GPIO_FN_LCDLCLK
, NULL
);
1203 __raw_writew((__raw_readw(PORT_HIZA
) & ~0x0001), PORT_HIZA
);
1205 gpio_request(GPIO_PTE6
, NULL
);
1206 gpio_request(GPIO_PTU1
, NULL
);
1207 gpio_request(GPIO_PTA2
, NULL
);
1208 gpio_direction_input(GPIO_PTE6
);
1209 gpio_direction_output(GPIO_PTU1
, 0);
1210 gpio_direction_output(GPIO_PTA2
, 0);
1212 /* I/O buffer drive ability is high */
1213 __raw_writew((__raw_readw(IODRIVEA
) & ~0x00c0) | 0x0080 , IODRIVEA
);
1215 if (gpio_get_value(GPIO_PTE6
)) {
1217 lcdc_info
.clock_source
= LCDC_CLK_EXTERNAL
;
1218 lcdc_info
.ch
[0].clock_divider
= 1;
1219 lcdc_info
.ch
[0].lcd_modes
= ecovec_dvi_modes
;
1220 lcdc_info
.ch
[0].num_modes
= ARRAY_SIZE(ecovec_dvi_modes
);
1223 gpio_backlight_data
.fbdev
= NULL
;
1225 gpio_set_value(GPIO_PTA2
, 1);
1226 gpio_set_value(GPIO_PTU1
, 1);
1229 lcdc_info
.clock_source
= LCDC_CLK_PERIPHERAL
;
1230 lcdc_info
.ch
[0].clock_divider
= 2;
1231 lcdc_info
.ch
[0].lcd_modes
= ecovec_lcd_modes
;
1232 lcdc_info
.ch
[0].num_modes
= ARRAY_SIZE(ecovec_lcd_modes
);
1236 * LCDDON control is needed for Panel,
1237 * but current sh_mobile_lcdc driver doesn't control it.
1238 * It is temporary correspondence
1240 gpio_request(GPIO_PTF4
, NULL
);
1241 gpio_direction_output(GPIO_PTF4
, 1);
1243 /* enable TouchScreen */
1244 i2c_register_board_info(0, &ts_i2c_clients
, 1);
1245 irq_set_irq_type(IRQ0
, IRQ_TYPE_LEVEL_LOW
);
1249 gpio_request(GPIO_FN_VIO0_D15
, NULL
);
1250 gpio_request(GPIO_FN_VIO0_D14
, NULL
);
1251 gpio_request(GPIO_FN_VIO0_D13
, NULL
);
1252 gpio_request(GPIO_FN_VIO0_D12
, NULL
);
1253 gpio_request(GPIO_FN_VIO0_D11
, NULL
);
1254 gpio_request(GPIO_FN_VIO0_D10
, NULL
);
1255 gpio_request(GPIO_FN_VIO0_D9
, NULL
);
1256 gpio_request(GPIO_FN_VIO0_D8
, NULL
);
1257 gpio_request(GPIO_FN_VIO0_D7
, NULL
);
1258 gpio_request(GPIO_FN_VIO0_D6
, NULL
);
1259 gpio_request(GPIO_FN_VIO0_D5
, NULL
);
1260 gpio_request(GPIO_FN_VIO0_D4
, NULL
);
1261 gpio_request(GPIO_FN_VIO0_D3
, NULL
);
1262 gpio_request(GPIO_FN_VIO0_D2
, NULL
);
1263 gpio_request(GPIO_FN_VIO0_D1
, NULL
);
1264 gpio_request(GPIO_FN_VIO0_D0
, NULL
);
1265 gpio_request(GPIO_FN_VIO0_VD
, NULL
);
1266 gpio_request(GPIO_FN_VIO0_CLK
, NULL
);
1267 gpio_request(GPIO_FN_VIO0_FLD
, NULL
);
1268 gpio_request(GPIO_FN_VIO0_HD
, NULL
);
1271 gpio_request(GPIO_FN_VIO1_D7
, NULL
);
1272 gpio_request(GPIO_FN_VIO1_D6
, NULL
);
1273 gpio_request(GPIO_FN_VIO1_D5
, NULL
);
1274 gpio_request(GPIO_FN_VIO1_D4
, NULL
);
1275 gpio_request(GPIO_FN_VIO1_D3
, NULL
);
1276 gpio_request(GPIO_FN_VIO1_D2
, NULL
);
1277 gpio_request(GPIO_FN_VIO1_D1
, NULL
);
1278 gpio_request(GPIO_FN_VIO1_D0
, NULL
);
1279 gpio_request(GPIO_FN_VIO1_FLD
, NULL
);
1280 gpio_request(GPIO_FN_VIO1_HD
, NULL
);
1281 gpio_request(GPIO_FN_VIO1_VD
, NULL
);
1282 gpio_request(GPIO_FN_VIO1_CLK
, NULL
);
1285 gpio_request(GPIO_FN_KEYOUT5_IN5
, NULL
);
1286 gpio_request(GPIO_FN_KEYOUT4_IN6
, NULL
);
1287 gpio_request(GPIO_FN_KEYOUT3
, NULL
);
1288 gpio_request(GPIO_FN_KEYOUT2
, NULL
);
1289 gpio_request(GPIO_FN_KEYOUT1
, NULL
);
1290 gpio_request(GPIO_FN_KEYOUT0
, NULL
);
1291 gpio_request(GPIO_FN_KEYIN0
, NULL
);
1293 /* enable user debug switch */
1294 gpio_request(GPIO_PTR0
, NULL
);
1295 gpio_request(GPIO_PTR4
, NULL
);
1296 gpio_request(GPIO_PTR5
, NULL
);
1297 gpio_request(GPIO_PTR6
, NULL
);
1298 gpio_direction_input(GPIO_PTR0
);
1299 gpio_direction_input(GPIO_PTR4
);
1300 gpio_direction_input(GPIO_PTR5
);
1301 gpio_direction_input(GPIO_PTR6
);
1303 /* SD-card slot CN11 */
1304 #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1305 /* enable SDHI0 on CN11 (needs DS2.4 set to ON) */
1306 gpio_request(GPIO_FN_SDHI0WP
, NULL
);
1307 gpio_request(GPIO_FN_SDHI0CMD
, NULL
);
1308 gpio_request(GPIO_FN_SDHI0CLK
, NULL
);
1309 gpio_request(GPIO_FN_SDHI0D3
, NULL
);
1310 gpio_request(GPIO_FN_SDHI0D2
, NULL
);
1311 gpio_request(GPIO_FN_SDHI0D1
, NULL
);
1312 gpio_request(GPIO_FN_SDHI0D0
, NULL
);
1314 /* enable MSIOF0 on CN11 (needs DS2.4 set to OFF) */
1315 gpio_request(GPIO_FN_MSIOF0_TXD
, NULL
);
1316 gpio_request(GPIO_FN_MSIOF0_RXD
, NULL
);
1317 gpio_request(GPIO_FN_MSIOF0_TSCK
, NULL
);
1318 gpio_request(GPIO_PTB6
, NULL
); /* 3.3V power control */
1319 gpio_direction_output(GPIO_PTB6
, 0); /* disable power by default */
1321 gpiod_add_lookup_table(&mmc_spi_gpio_table
);
1322 gpiod_add_lookup_table(&msiof_gpio_table
);
1323 spi_register_board_info(spi_bus
, ARRAY_SIZE(spi_bus
));
1326 /* MMC/SD-card slot CN12 */
1327 #if defined(CONFIG_MMC_SH_MMCIF) || defined(CONFIG_MMC_SH_MMCIF_MODULE)
1328 /* enable MMCIF (needs DS2.6,7 set to OFF,ON) */
1329 gpio_request(GPIO_FN_MMC_D7
, NULL
);
1330 gpio_request(GPIO_FN_MMC_D6
, NULL
);
1331 gpio_request(GPIO_FN_MMC_D5
, NULL
);
1332 gpio_request(GPIO_FN_MMC_D4
, NULL
);
1333 gpio_request(GPIO_FN_MMC_D3
, NULL
);
1334 gpio_request(GPIO_FN_MMC_D2
, NULL
);
1335 gpio_request(GPIO_FN_MMC_D1
, NULL
);
1336 gpio_request(GPIO_FN_MMC_D0
, NULL
);
1337 gpio_request(GPIO_FN_MMC_CLK
, NULL
);
1338 gpio_request(GPIO_FN_MMC_CMD
, NULL
);
1340 cn12_enabled
= true;
1341 #elif defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1342 /* enable SDHI1 on CN12 (needs DS2.6,7 set to ON,OFF) */
1343 gpio_request(GPIO_FN_SDHI1WP
, NULL
);
1344 gpio_request(GPIO_FN_SDHI1CMD
, NULL
);
1345 gpio_request(GPIO_FN_SDHI1CLK
, NULL
);
1346 gpio_request(GPIO_FN_SDHI1D3
, NULL
);
1347 gpio_request(GPIO_FN_SDHI1D2
, NULL
);
1348 gpio_request(GPIO_FN_SDHI1D1
, NULL
);
1349 gpio_request(GPIO_FN_SDHI1D0
, NULL
);
1351 cn12_enabled
= true;
1355 /* I/O buffer drive ability is high for CN12 */
1356 __raw_writew((__raw_readw(IODRIVEA
) & ~0x3000) | 0x2000,
1360 gpio_request(GPIO_FN_FSIMCKB
, NULL
);
1361 gpio_request(GPIO_FN_FSIIBSD
, NULL
);
1362 gpio_request(GPIO_FN_FSIOBSD
, NULL
);
1363 gpio_request(GPIO_FN_FSIIBBCK
, NULL
);
1364 gpio_request(GPIO_FN_FSIIBLRCK
, NULL
);
1365 gpio_request(GPIO_FN_FSIOBBCK
, NULL
);
1366 gpio_request(GPIO_FN_FSIOBLRCK
, NULL
);
1367 gpio_request(GPIO_FN_CLKAUDIOBO
, NULL
);
1369 /* set SPU2 clock to 83.4 MHz */
1370 clk
= clk_get(NULL
, "spu_clk");
1372 clk_set_rate(clk
, clk_round_rate(clk
, 83333333));
1376 /* change parent of FSI B */
1377 clk
= clk_get(NULL
, "fsib_clk");
1379 /* 48kHz dummy clock was used to make sure 1/1 divide */
1380 clk_set_rate(&sh7724_fsimckb_clk
, 48000);
1381 clk_set_parent(clk
, &sh7724_fsimckb_clk
);
1382 clk_set_rate(clk
, 48000);
1386 gpio_request(GPIO_PTU0
, NULL
);
1387 gpio_direction_output(GPIO_PTU0
, 0);
1390 /* enable motion sensor */
1391 gpio_request(GPIO_FN_INTC_IRQ1
, NULL
);
1392 gpio_direction_input(GPIO_FN_INTC_IRQ1
);
1394 /* set VPU clock to 166 MHz */
1395 clk
= clk_get(NULL
, "vpu_clk");
1397 clk_set_rate(clk
, clk_round_rate(clk
, 166000000));
1402 gpio_request(GPIO_FN_IRDA_OUT
, NULL
);
1403 gpio_request(GPIO_FN_IRDA_IN
, NULL
);
1404 gpio_request(GPIO_PTU5
, NULL
);
1405 gpio_direction_output(GPIO_PTU5
, 0);
1407 /* Register gpio lookup tables for cameras and video decoder */
1408 gpiod_add_lookup_table(&tw9910_gpios
);
1409 gpiod_add_lookup_table(&mt9t112_0_gpios
);
1410 gpiod_add_lookup_table(&mt9t112_1_gpios
);
1412 /* enable I2C device */
1413 i2c_register_board_info(0, i2c0_devices
,
1414 ARRAY_SIZE(i2c0_devices
));
1416 i2c_register_board_info(1, i2c1_devices
,
1417 ARRAY_SIZE(i2c1_devices
));
1419 #if defined(CONFIG_VIDEO_SH_VOU) || defined(CONFIG_VIDEO_SH_VOU_MODULE)
1421 gpio_request(GPIO_FN_DV_D15
, NULL
);
1422 gpio_request(GPIO_FN_DV_D14
, NULL
);
1423 gpio_request(GPIO_FN_DV_D13
, NULL
);
1424 gpio_request(GPIO_FN_DV_D12
, NULL
);
1425 gpio_request(GPIO_FN_DV_D11
, NULL
);
1426 gpio_request(GPIO_FN_DV_D10
, NULL
);
1427 gpio_request(GPIO_FN_DV_D9
, NULL
);
1428 gpio_request(GPIO_FN_DV_D8
, NULL
);
1429 gpio_request(GPIO_FN_DV_CLKI
, NULL
);
1430 gpio_request(GPIO_FN_DV_CLK
, NULL
);
1431 gpio_request(GPIO_FN_DV_VSYNC
, NULL
);
1432 gpio_request(GPIO_FN_DV_HSYNC
, NULL
);
1434 /* AK8813 power / reset sequence */
1435 gpio_request(GPIO_PTG4
, NULL
);
1436 gpio_request(GPIO_PTU3
, NULL
);
1438 gpio_direction_output(GPIO_PTG4
, 0);
1440 gpio_direction_output(GPIO_PTU3
, 1);
1444 /* Power up, reset */
1445 gpio_set_value(GPIO_PTU3
, 0);
1450 gpio_set_value(GPIO_PTG4
, 1);
1453 /* Initialize CEU platform devices separately to map memory first */
1454 device_initialize(&ecovec_ceu_devices
[0]->dev
);
1455 dma_declare_coherent_memory(&ecovec_ceu_devices
[0]->dev
,
1456 ceu0_dma_membase
, ceu0_dma_membase
,
1458 CEU_BUFFER_MEMORY_SIZE
- 1);
1459 platform_device_add(ecovec_ceu_devices
[0]);
1461 device_initialize(&ecovec_ceu_devices
[1]->dev
);
1462 dma_declare_coherent_memory(&ecovec_ceu_devices
[1]->dev
,
1463 ceu1_dma_membase
, ceu1_dma_membase
,
1465 CEU_BUFFER_MEMORY_SIZE
- 1);
1466 platform_device_add(ecovec_ceu_devices
[1]);
1468 gpiod_add_lookup_table(&cn12_power_gpiod_table
);
1469 #if defined(CONFIG_MMC_SDHI) || defined(CONFIG_MMC_SDHI_MODULE)
1470 gpiod_add_lookup_table(&sdhi0_power_gpiod_table
);
1471 gpiod_add_lookup_table(&sdhi0_gpio_table
);
1472 #if !defined(CONFIG_MMC_SH_MMCIF) && !defined(CONFIG_MMC_SH_MMCIF_MODULE)
1473 gpiod_add_lookup_table(&sdhi1_gpio_table
);
1477 gpiod_add_lookup_table(&gpio_backlight_lookup
);
1478 gpio_backlight_device
= platform_device_register_full(
1479 &gpio_backlight_device_info
);
1480 if (IS_ERR(gpio_backlight_device
))
1481 return PTR_ERR(gpio_backlight_device
);
1483 return platform_add_devices(ecovec_devices
,
1484 ARRAY_SIZE(ecovec_devices
));
1486 arch_initcall(arch_setup
);
1488 static int __init
devices_setup(void)
1490 sh_eth_init(&sh_eth_plat
);
1493 device_initcall(devices_setup
);
1495 /* Reserve a portion of memory for CEU 0 and CEU 1 buffers */
1496 static void __init
ecovec_mv_mem_reserve(void)
1499 phys_addr_t size
= CEU_BUFFER_MEMORY_SIZE
;
1501 phys
= memblock_phys_alloc(size
, PAGE_SIZE
);
1503 panic("Failed to allocate CEU0 memory\n");
1505 memblock_free(phys
, size
);
1506 memblock_remove(phys
, size
);
1507 ceu0_dma_membase
= phys
;
1509 phys
= memblock_phys_alloc(size
, PAGE_SIZE
);
1511 panic("Failed to allocate CEU1 memory\n");
1513 memblock_free(phys
, size
);
1514 memblock_remove(phys
, size
);
1515 ceu1_dma_membase
= phys
;
1518 static struct sh_machine_vector mv_ecovec __initmv
= {
1519 .mv_name
= "R0P7724 (EcoVec)",
1520 .mv_mem_reserve
= ecovec_mv_mem_reserve
,