1 This enables the mmc-over-spi driver for the Sim.One board, based on Mika's
2 patch, which used a GPIO for chip select in stead of the default SFRMOUT pin.
3 I've modified it to use the usual SFRMOUT; if you've modified your Sim.One
4 board to use a GPIO instead, uncomment and modify
5 // #define MMC_CHIP_SELECT_GPIO EP93XX_GPIO_LINE_EGPIO15
7 -martinwguy, 14 May 2010
9 From: Mika Westerberg <mika.westerberg@iki.fi>
10 Date: Wed, 28 Apr 2010 08:42:46 +0300
11 Subject: [PATCH] ep93xx: simone: added board specific SPI support for MMC/SD cards
13 This includes setting up EGPIOs 0 and 9 for card detection and chip select
16 --- a/arch/arm/mach-ep93xx/simone.c
17 +++ b/arch/arm/mach-ep93xx/simone.c
19 #include <linux/kernel.h>
20 #include <linux/init.h>
21 #include <linux/platform_device.h>
22 +#include <linux/mmc/host.h>
23 #include <linux/gpio.h>
24 +#include <linux/spi/spi.h>
25 +#include <linux/spi/mmc_spi.h>
26 #include <linux/i2c.h>
27 #include <linux/i2c-gpio.h>
29 #include <mach/hardware.h>
31 +#include <mach/ep93xx_spi.h>
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 @@ -38,6 +42,135 @@ static struct ep93xxfb_mach_info __initd
36 .flags = EP93XXFB_USE_SDCSN0 | EP93XXFB_PCLK_FALLING,
40 + * GPIO lines used for MMC card detection.
42 +#define MMC_CARD_DETECT_GPIO EP93XX_GPIO_LINE_EGPIO0
45 + * If you have hacked your Sim.One to use a GPIO as SD card chip select
46 + * (SD pin 1), uncomment the following line.
47 + * The example, EGPIO15, is on TP17 near the CPU.
49 +// #define MMC_CHIP_SELECT_GPIO EP93XX_GPIO_LINE_EGPIO15
52 + * MMC SPI chip select GPIO handling. If you are using SFRMOUT (SFRM1) signal,
53 + * you can leave these empty and pass NULL as .controller_data.
56 +#ifdef MMC_CHIP_SELECT_GPIO
57 +static int simone_mmc_spi_setup(struct spi_device *spi)
59 + unsigned int gpio = MMC_CHIP_SELECT_GPIO;
62 + err = gpio_request(gpio, spi->modalias);
66 + err = gpio_direction_output(gpio, 1);
75 +static void simone_mmc_spi_cleanup(struct spi_device *spi)
77 + unsigned int gpio = MMC_CHIP_SELECT_GPIO;
79 + gpio_set_value(gpio, 1);
80 + gpio_direction_input(gpio);
84 +static void simone_mmc_spi_cs_control(struct spi_device *spi, int value)
86 + gpio_set_value(MMC_CHIP_SELECT_GPIO, value);
89 +static struct ep93xx_spi_chip_ops simone_mmc_spi_ops = {
90 + .setup = simone_mmc_spi_setup,
91 + .cleanup = simone_mmc_spi_cleanup,
92 + .cs_control = simone_mmc_spi_cs_control,
97 + * MMC card detection GPIO setup.
99 +static int simone_mmc_spi_init(struct device *dev,
100 + irqreturn_t (*irq_handler)(int, void *), void *mmc)
102 + unsigned int gpio = MMC_CARD_DETECT_GPIO;
105 + err = gpio_request(gpio, dev_name(dev));
109 + err = gpio_direction_input(gpio);
113 + irq = gpio_to_irq(gpio);
117 + err = request_irq(irq, irq_handler, IRQF_TRIGGER_FALLING,
118 + "MMC card detect", mmc);
122 + printk(KERN_INFO "%s: using irq %d for MMC card detection\n",
123 + dev_name(dev), irq);
131 +static void simone_mmc_spi_exit(struct device *dev, void *mmc)
133 + unsigned int gpio = MMC_CARD_DETECT_GPIO;
135 + free_irq(gpio_to_irq(gpio), mmc);
139 +static struct mmc_spi_platform_data simone_mmc_spi_data = {
140 + .init = simone_mmc_spi_init,
141 + .exit = simone_mmc_spi_exit,
142 + .detect_delay = 500,
143 + .ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
146 +static struct spi_board_info simone_spi_devices[] __initdata = {
148 + .modalias = "mmc_spi",
149 +#ifdef MMC_CHIP_SELECT_GPIO
150 + .controller_data = &simone_mmc_spi_ops,
152 + .platform_data = &simone_mmc_spi_data,
154 + * We use 10 MHz even though the maximum is 3.7 MHz. The driver
155 + * will limit it automatically to max. frequency.
157 + .max_speed_hz = 10 * 1000 * 1000,
160 + .mode = SPI_MODE_3,
164 +static struct ep93xx_spi_info simone_spi_info __initdata = {
165 + .num_chipselect = ARRAY_SIZE(simone_spi_devices),
168 static struct i2c_gpio_platform_data __initdata simone_i2c_gpio_data = {
169 .sda_pin = EP93XX_GPIO_LINE_EEDAT,
170 .sda_is_open_drain = 0,
171 @@ -61,6 +194,8 @@ static void __init simone_init_machine(v
172 ep93xx_register_fb(&simone_fb_info);
173 ep93xx_register_i2c(&simone_i2c_gpio_data, simone_i2c_board_info,
174 ARRAY_SIZE(simone_i2c_board_info));
175 + ep93xx_register_spi(&simone_spi_info, simone_spi_devices,
176 + ARRAY_SIZE(simone_spi_devices));
179 MACHINE_START(SIM_ONE, "Simplemachines Sim.One Board")