2 * arch/arm/mach-ep93xx/vision_ep9307.c
3 * Vision Engraving Systems EP9307 SoM support.
5 * Copyright (C) 2008-2011 Vision Engraving Systems
6 * H Hartley Sweeten <hsweeten@visionengravers.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
19 #include <linux/irq.h>
20 #include <linux/gpio.h>
23 #include <linux/mtd/partitions.h>
24 #include <linux/i2c.h>
25 #include <linux/i2c-gpio.h>
26 #include <linux/platform_data/pca953x.h>
27 #include <linux/spi/spi.h>
28 #include <linux/spi/flash.h>
29 #include <linux/spi/mmc_spi.h>
30 #include <linux/mmc/host.h>
32 #include <mach/hardware.h>
33 #include <linux/platform_data/video-ep93xx.h>
34 #include <linux/platform_data/spi-ep93xx.h>
35 #include <mach/gpio-ep93xx.h>
37 #include <asm/mach-types.h>
38 #include <asm/mach/map.h>
39 #include <asm/mach/arch.h>
43 /*************************************************************************
44 * Static I/O mappings for the FPGA
45 *************************************************************************/
46 #define VISION_PHYS_BASE EP93XX_CS7_PHYS_BASE
47 #define VISION_VIRT_BASE 0xfebff000
49 static struct map_desc vision_io_desc
[] __initdata
= {
51 .virtual = VISION_VIRT_BASE
,
52 .pfn
= __phys_to_pfn(VISION_PHYS_BASE
),
58 static void __init
vision_map_io(void)
62 iotable_init(vision_io_desc
, ARRAY_SIZE(vision_io_desc
));
65 /*************************************************************************
67 *************************************************************************/
68 static struct ep93xx_eth_data vision_eth_data __initdata
= {
72 /*************************************************************************
74 *************************************************************************/
75 #define VISION_LCD_ENABLE EP93XX_GPIO_LINE_EGPIO1
77 static int vision_lcd_setup(struct platform_device
*pdev
)
81 err
= gpio_request_one(VISION_LCD_ENABLE
, GPIOF_INIT_HIGH
,
82 dev_name(&pdev
->dev
));
86 ep93xx_devcfg_clear_bits(EP93XX_SYSCON_DEVCFG_RAS
|
87 EP93XX_SYSCON_DEVCFG_RASONP3
|
88 EP93XX_SYSCON_DEVCFG_EXVC
);
93 static void vision_lcd_teardown(struct platform_device
*pdev
)
95 gpio_free(VISION_LCD_ENABLE
);
98 static void vision_lcd_blank(int blank_mode
, struct fb_info
*info
)
101 gpio_set_value(VISION_LCD_ENABLE
, 0);
103 gpio_set_value(VISION_LCD_ENABLE
, 1);
106 static struct ep93xxfb_mach_info ep93xxfb_info __initdata
= {
107 .num_modes
= EP93XXFB_USE_MODEDB
,
109 .flags
= EP93XXFB_USE_SDCSN0
| EP93XXFB_PCLK_FALLING
,
110 .setup
= vision_lcd_setup
,
111 .teardown
= vision_lcd_teardown
,
112 .blank
= vision_lcd_blank
,
116 /*************************************************************************
118 *************************************************************************/
119 #define PCA9539_74_GPIO_BASE (EP93XX_GPIO_LINE_MAX + 1)
120 #define PCA9539_75_GPIO_BASE (PCA9539_74_GPIO_BASE + 16)
121 #define PCA9539_76_GPIO_BASE (PCA9539_75_GPIO_BASE + 16)
122 #define PCA9539_77_GPIO_BASE (PCA9539_76_GPIO_BASE + 16)
124 static struct pca953x_platform_data pca953x_74_gpio_data
= {
125 .gpio_base
= PCA9539_74_GPIO_BASE
,
126 .irq_base
= EP93XX_BOARD_IRQ(0),
129 static struct pca953x_platform_data pca953x_75_gpio_data
= {
130 .gpio_base
= PCA9539_75_GPIO_BASE
,
134 static struct pca953x_platform_data pca953x_76_gpio_data
= {
135 .gpio_base
= PCA9539_76_GPIO_BASE
,
139 static struct pca953x_platform_data pca953x_77_gpio_data
= {
140 .gpio_base
= PCA9539_77_GPIO_BASE
,
144 /*************************************************************************
146 *************************************************************************/
147 static struct i2c_gpio_platform_data vision_i2c_gpio_data __initdata
= {
148 .sda_pin
= EP93XX_GPIO_LINE_EEDAT
,
149 .scl_pin
= EP93XX_GPIO_LINE_EECLK
,
152 static struct i2c_board_info vision_i2c_info
[] __initdata
= {
154 I2C_BOARD_INFO("isl1208", 0x6f),
155 .irq
= IRQ_EP93XX_EXT1
,
157 I2C_BOARD_INFO("pca9539", 0x74),
158 .platform_data
= &pca953x_74_gpio_data
,
160 I2C_BOARD_INFO("pca9539", 0x75),
161 .platform_data
= &pca953x_75_gpio_data
,
163 I2C_BOARD_INFO("pca9539", 0x76),
164 .platform_data
= &pca953x_76_gpio_data
,
166 I2C_BOARD_INFO("pca9539", 0x77),
167 .platform_data
= &pca953x_77_gpio_data
,
171 /*************************************************************************
173 *************************************************************************/
174 #define VISION_SPI_FLASH_CS EP93XX_GPIO_LINE_EGPIO7
176 static struct mtd_partition vision_spi_flash_partitions
[] = {
178 .name
= "SPI bootstrap",
182 .name
= "Bootstrap config",
183 .offset
= MTDPART_OFS_APPEND
,
186 .name
= "System config",
187 .offset
= MTDPART_OFS_APPEND
,
188 .size
= MTDPART_SIZ_FULL
,
192 static struct flash_platform_data vision_spi_flash_data
= {
194 .parts
= vision_spi_flash_partitions
,
195 .nr_parts
= ARRAY_SIZE(vision_spi_flash_partitions
),
198 static int vision_spi_flash_hw_setup(struct spi_device
*spi
)
200 return gpio_request_one(VISION_SPI_FLASH_CS
, GPIOF_INIT_HIGH
,
204 static void vision_spi_flash_hw_cleanup(struct spi_device
*spi
)
206 gpio_free(VISION_SPI_FLASH_CS
);
209 static void vision_spi_flash_hw_cs_control(struct spi_device
*spi
, int value
)
211 gpio_set_value(VISION_SPI_FLASH_CS
, value
);
214 static struct ep93xx_spi_chip_ops vision_spi_flash_hw
= {
215 .setup
= vision_spi_flash_hw_setup
,
216 .cleanup
= vision_spi_flash_hw_cleanup
,
217 .cs_control
= vision_spi_flash_hw_cs_control
,
220 /*************************************************************************
222 *************************************************************************/
223 #define VISION_SPI_MMC_CS EP93XX_GPIO_LINE_G(2)
224 #define VISION_SPI_MMC_WP EP93XX_GPIO_LINE_F(0)
225 #define VISION_SPI_MMC_CD EP93XX_GPIO_LINE_EGPIO15
227 static struct mmc_spi_platform_data vision_spi_mmc_data
= {
229 .powerup_msecs
= 100,
230 .ocr_mask
= MMC_VDD_32_33
| MMC_VDD_33_34
,
231 .flags
= MMC_SPI_USE_CD_GPIO
| MMC_SPI_USE_RO_GPIO
,
232 .cd_gpio
= VISION_SPI_MMC_CD
,
234 .ro_gpio
= VISION_SPI_MMC_WP
,
235 .caps2
= MMC_CAP2_RO_ACTIVE_HIGH
,
238 static int vision_spi_mmc_hw_setup(struct spi_device
*spi
)
240 return gpio_request_one(VISION_SPI_MMC_CS
, GPIOF_INIT_HIGH
,
244 static void vision_spi_mmc_hw_cleanup(struct spi_device
*spi
)
246 gpio_free(VISION_SPI_MMC_CS
);
249 static void vision_spi_mmc_hw_cs_control(struct spi_device
*spi
, int value
)
251 gpio_set_value(VISION_SPI_MMC_CS
, value
);
254 static struct ep93xx_spi_chip_ops vision_spi_mmc_hw
= {
255 .setup
= vision_spi_mmc_hw_setup
,
256 .cleanup
= vision_spi_mmc_hw_cleanup
,
257 .cs_control
= vision_spi_mmc_hw_cs_control
,
260 /*************************************************************************
262 *************************************************************************/
263 static struct spi_board_info vision_spi_board_info
[] __initdata
= {
265 .modalias
= "sst25l",
266 .platform_data
= &vision_spi_flash_data
,
267 .controller_data
= &vision_spi_flash_hw
,
268 .max_speed_hz
= 20000000,
273 .modalias
= "mmc_spi",
274 .platform_data
= &vision_spi_mmc_data
,
275 .controller_data
= &vision_spi_mmc_hw
,
276 .max_speed_hz
= 20000000,
283 static struct ep93xx_spi_info vision_spi_master __initdata
= {
284 .num_chipselect
= ARRAY_SIZE(vision_spi_board_info
),
287 /*************************************************************************
288 * Machine Initialization
289 *************************************************************************/
290 static void __init
vision_init_machine(void)
292 ep93xx_init_devices();
293 ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE
, SZ_64M
);
294 ep93xx_register_eth(&vision_eth_data
, 1);
295 ep93xx_register_fb(&ep93xxfb_info
);
296 ep93xx_register_pwm(1, 0);
299 * Request the gpio expander's interrupt gpio line now to prevent
300 * the kernel from doing a WARN in gpiolib:gpio_ensure_requested().
302 if (gpio_request_one(EP93XX_GPIO_LINE_F(7), GPIOF_DIR_IN
,
304 pr_warn("cannot request interrupt gpio for pca9539:74\n");
306 vision_i2c_info
[1].irq
= gpio_to_irq(EP93XX_GPIO_LINE_F(7));
308 ep93xx_register_i2c(&vision_i2c_gpio_data
, vision_i2c_info
,
309 ARRAY_SIZE(vision_i2c_info
));
310 ep93xx_register_spi(&vision_spi_master
, vision_spi_board_info
,
311 ARRAY_SIZE(vision_spi_board_info
));
314 MACHINE_START(VISION_EP9307
, "Vision Engraving Systems EP9307")
315 /* Maintainer: H Hartley Sweeten <hsweeten@visionengravers.com> */
316 .atag_offset
= 0x100,
317 .map_io
= vision_map_io
,
318 .init_irq
= ep93xx_init_irq
,
319 .init_time
= ep93xx_timer_init
,
320 .init_machine
= vision_init_machine
,
321 .init_late
= ep93xx_init_late
,
322 .restart
= ep93xx_restart
,