diff options
author | Alexandros C. Couloumbis <alex@ozo.com> | 2010-04-11 09:01:36 +0000 |
---|---|---|
committer | Alexandros C. Couloumbis <alex@ozo.com> | 2010-04-11 09:01:36 +0000 |
commit | 3c48fb6ff9dbe5898be0c988ce8a2c4680b75dc2 (patch) | |
tree | cc769c14c8a1586a839d0243c6a9f40d3cea9e56 /target/linux/ixp4xx/patches-2.6.33/310-gtwx5717_spi_bus.patch | |
parent | f4d71f5e8167a72e086dee9ab5f872240bdf2a17 (diff) | |
download | mtk-20170518-3c48fb6ff9dbe5898be0c988ce8a2c4680b75dc2.zip mtk-20170518-3c48fb6ff9dbe5898be0c988ce8a2c4680b75dc2.tar.gz mtk-20170518-3c48fb6ff9dbe5898be0c988ce8a2c4680b75dc2.tar.bz2 |
ixp4xx: add 2.6.33 support
SVN-Revision: 20792
Diffstat (limited to 'target/linux/ixp4xx/patches-2.6.33/310-gtwx5717_spi_bus.patch')
-rw-r--r-- | target/linux/ixp4xx/patches-2.6.33/310-gtwx5717_spi_bus.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/target/linux/ixp4xx/patches-2.6.33/310-gtwx5717_spi_bus.patch b/target/linux/ixp4xx/patches-2.6.33/310-gtwx5717_spi_bus.patch new file mode 100644 index 0000000..d778c88 --- /dev/null +++ b/target/linux/ixp4xx/patches-2.6.33/310-gtwx5717_spi_bus.patch @@ -0,0 +1,52 @@ +--- a/arch/arm/mach-ixp4xx/gtwx5715-setup.c ++++ b/arch/arm/mach-ixp4xx/gtwx5715-setup.c +@@ -28,6 +28,7 @@ + #include <linux/tty.h> + #include <linux/serial_8250.h> + #include <linux/slab.h> ++#include <linux/spi/spi_gpio_old.h> + #include <asm/types.h> + #include <asm/setup.h> + #include <asm/memory.h> +@@ -147,9 +148,41 @@ + .resource = >wx5715_flash_resource, + }; + ++static int gtwx5715_spi_boardinfo_setup(struct spi_board_info *bi, ++ struct spi_master *master, void *data) ++{ ++ ++ strlcpy(bi->modalias, "spi-ks8995", sizeof(bi->modalias)); ++ ++ bi->max_speed_hz = 5000000 /* Hz */; ++ bi->bus_num = master->bus_num; ++ bi->mode = SPI_MODE_0; ++ ++ return 0; ++} ++ ++static struct spi_gpio_platform_data gtwx5715_spi_bus_data = { ++ .pin_cs = GTWX5715_KSSPI_SELECT, ++ .pin_clk = GTWX5715_KSSPI_CLOCK, ++ .pin_miso = GTWX5715_KSSPI_RXD, ++ .pin_mosi = GTWX5715_KSSPI_TXD, ++ .cs_activelow = 1, ++ .no_spi_delay = 1, ++ .boardinfo_setup = gtwx5715_spi_boardinfo_setup, ++}; ++ ++static struct platform_device gtwx5715_spi_bus = { ++ .name = "spi-gpio", ++ .id = 0, ++ .dev = { ++ .platform_data = >wx5715_spi_bus_data, ++ }, ++}; ++ + static struct platform_device *gtwx5715_devices[] __initdata = { + >wx5715_uart_device, + >wx5715_flash, ++ >wx5715_spi_bus, + }; + + static void __init gtwx5715_init(void) |