Commit 5a4a2387 authored by Michael-Luke Jones's avatar Michael-Luke Jones Committed by Jean Delvare

ixp4xx-i2c-gpio

Migrate all ixp4xx devices to the bitbanging I2C bus driver utilizing
the arch-neutral GPIO API (linux/i2c-gpio.h).

Tested by the nslu2-linux and openwrt projects in public firmware releases.
Signed-off-by: default avatarMichael-Luke Jones <mlj28@cam.ac.uk>
Acked-by: default avatarRod Whitby <rod@whitby.id.au>
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent eee87d31
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/tty.h> #include <linux/tty.h>
#include <linux/serial_8250.h> #include <linux/serial_8250.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/i2c-gpio.h>
#include <asm/types.h> #include <asm/types.h>
#include <asm/setup.h> #include <asm/setup.h>
...@@ -47,18 +48,17 @@ static struct platform_device avila_flash = { ...@@ -47,18 +48,17 @@ static struct platform_device avila_flash = {
.resource = &avila_flash_resource, .resource = &avila_flash_resource,
}; };
static struct ixp4xx_i2c_pins avila_i2c_gpio_pins = { static struct i2c_gpio_platform_data avila_i2c_gpio_data = {
.sda_pin = AVILA_SDA_PIN, .sda_pin = AVILA_SDA_PIN,
.scl_pin = AVILA_SCL_PIN, .scl_pin = AVILA_SCL_PIN,
}; };
static struct platform_device avila_i2c_controller = { static struct platform_device avila_i2c_gpio = {
.name = "IXP4XX-I2C", .name = "i2c-gpio",
.id = 0, .id = 0,
.dev = { .dev = {
.platform_data = &avila_i2c_gpio_pins, .platform_data = &avila_i2c_gpio_data,
}, },
.num_resources = 0
}; };
static struct resource avila_uart_resources[] = { static struct resource avila_uart_resources[] = {
...@@ -133,7 +133,7 @@ static struct platform_device avila_pata = { ...@@ -133,7 +133,7 @@ static struct platform_device avila_pata = {
}; };
static struct platform_device *avila_devices[] __initdata = { static struct platform_device *avila_devices[] __initdata = {
&avila_i2c_controller, &avila_i2c_gpio,
&avila_flash, &avila_flash,
&avila_uart &avila_uart
}; };
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/serial.h> #include <linux/serial.h>
#include <linux/serial_8250.h> #include <linux/serial_8250.h>
#include <linux/i2c-gpio.h>
#include <asm/mach-types.h> #include <asm/mach-types.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
...@@ -37,15 +38,17 @@ static struct platform_device dsmg600_flash = { ...@@ -37,15 +38,17 @@ static struct platform_device dsmg600_flash = {
.resource = &dsmg600_flash_resource, .resource = &dsmg600_flash_resource,
}; };
static struct ixp4xx_i2c_pins dsmg600_i2c_gpio_pins = { static struct i2c_gpio_platform_data dsmg600_i2c_gpio_data = {
.sda_pin = DSMG600_SDA_PIN, .sda_pin = DSMG600_SDA_PIN,
.scl_pin = DSMG600_SCL_PIN, .scl_pin = DSMG600_SCL_PIN,
}; };
static struct platform_device dsmg600_i2c_controller = { static struct platform_device dsmg600_i2c_gpio = {
.name = "IXP4XX-I2C", .name = "i2c-gpio",
.id = 0, .id = 0,
.dev.platform_data = &dsmg600_i2c_gpio_pins, .dev = {
.platform_data = &dsmg600_i2c_gpio_data,
},
}; };
#ifdef CONFIG_LEDS_CLASS #ifdef CONFIG_LEDS_CLASS
...@@ -116,7 +119,7 @@ static struct platform_device dsmg600_uart = { ...@@ -116,7 +119,7 @@ static struct platform_device dsmg600_uart = {
}; };
static struct platform_device *dsmg600_devices[] __initdata = { static struct platform_device *dsmg600_devices[] __initdata = {
&dsmg600_i2c_controller, &dsmg600_i2c_gpio,
&dsmg600_flash, &dsmg600_flash,
}; };
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <linux/tty.h> #include <linux/tty.h>
#include <linux/serial_8250.h> #include <linux/serial_8250.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/i2c-gpio.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/mtd/mtd.h> #include <linux/mtd/mtd.h>
#include <linux/mtd/nand.h> #include <linux/mtd/nand.h>
...@@ -120,18 +121,17 @@ static struct platform_device ixdp425_flash_nand = { ...@@ -120,18 +121,17 @@ static struct platform_device ixdp425_flash_nand = {
}; };
#endif /* CONFIG_MTD_NAND_PLATFORM */ #endif /* CONFIG_MTD_NAND_PLATFORM */
static struct ixp4xx_i2c_pins ixdp425_i2c_gpio_pins = { static struct i2c_gpio_platform_data ixdp425_i2c_gpio_data = {
.sda_pin = IXDP425_SDA_PIN, .sda_pin = IXDP425_SDA_PIN,
.scl_pin = IXDP425_SCL_PIN, .scl_pin = IXDP425_SCL_PIN,
}; };
static struct platform_device ixdp425_i2c_controller = { static struct platform_device ixdp425_i2c_gpio = {
.name = "IXP4XX-I2C", .name = "i2c-gpio",
.id = 0, .id = 0,
.dev = { .dev = {
.platform_data = &ixdp425_i2c_gpio_pins, .platform_data = &ixdp425_i2c_gpio_data,
}, },
.num_resources = 0
}; };
static struct resource ixdp425_uart_resources[] = { static struct resource ixdp425_uart_resources[] = {
...@@ -178,7 +178,7 @@ static struct platform_device ixdp425_uart = { ...@@ -178,7 +178,7 @@ static struct platform_device ixdp425_uart = {
}; };
static struct platform_device *ixdp425_devices[] __initdata = { static struct platform_device *ixdp425_devices[] __initdata = {
&ixdp425_i2c_controller, &ixdp425_i2c_gpio,
&ixdp425_flash, &ixdp425_flash,
#if defined(CONFIG_MTD_NAND_PLATFORM) || \ #if defined(CONFIG_MTD_NAND_PLATFORM) || \
defined(CONFIG_MTD_NAND_PLATFORM_MODULE) defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/serial.h> #include <linux/serial.h>
#include <linux/serial_8250.h> #include <linux/serial_8250.h>
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/i2c-gpio.h>
#include <asm/mach-types.h> #include <asm/mach-types.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
...@@ -68,16 +69,17 @@ static struct platform_device nas100d_leds = { ...@@ -68,16 +69,17 @@ static struct platform_device nas100d_leds = {
}; };
#endif #endif
static struct ixp4xx_i2c_pins nas100d_i2c_gpio_pins = { static struct i2c_gpio_platform_data nas100d_i2c_gpio_data = {
.sda_pin = NAS100D_SDA_PIN, .sda_pin = NAS100D_SDA_PIN,
.scl_pin = NAS100D_SCL_PIN, .scl_pin = NAS100D_SCL_PIN,
}; };
static struct platform_device nas100d_i2c_controller = { static struct platform_device nas100d_i2c_gpio = {
.name = "IXP4XX-I2C", .name = "i2c-gpio",
.id = 0, .id = 0,
.dev.platform_data = &nas100d_i2c_gpio_pins, .dev = {
.num_resources = 0, .platform_data = &nas100d_i2c_gpio_data,
},
}; };
static struct resource nas100d_uart_resources[] = { static struct resource nas100d_uart_resources[] = {
...@@ -124,7 +126,7 @@ static struct platform_device nas100d_uart = { ...@@ -124,7 +126,7 @@ static struct platform_device nas100d_uart = {
}; };
static struct platform_device *nas100d_devices[] __initdata = { static struct platform_device *nas100d_devices[] __initdata = {
&nas100d_i2c_controller, &nas100d_i2c_gpio,
&nas100d_flash, &nas100d_flash,
#ifdef CONFIG_LEDS_IXP4XX #ifdef CONFIG_LEDS_IXP4XX
&nas100d_leds, &nas100d_leds,
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/serial.h> #include <linux/serial.h>
#include <linux/serial_8250.h> #include <linux/serial_8250.h>
#include <linux/leds.h> #include <linux/leds.h>
#include <linux/i2c-gpio.h>
#include <asm/mach-types.h> #include <asm/mach-types.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
...@@ -41,7 +42,7 @@ static struct platform_device nslu2_flash = { ...@@ -41,7 +42,7 @@ static struct platform_device nslu2_flash = {
.resource = &nslu2_flash_resource, .resource = &nslu2_flash_resource,
}; };
static struct ixp4xx_i2c_pins nslu2_i2c_gpio_pins = { static struct i2c_gpio_platform_data nslu2_i2c_gpio_data = {
.sda_pin = NSLU2_SDA_PIN, .sda_pin = NSLU2_SDA_PIN,
.scl_pin = NSLU2_SCL_PIN, .scl_pin = NSLU2_SCL_PIN,
}; };
...@@ -82,11 +83,12 @@ static struct platform_device nslu2_leds = { ...@@ -82,11 +83,12 @@ static struct platform_device nslu2_leds = {
}; };
#endif #endif
static struct platform_device nslu2_i2c_controller = { static struct platform_device nslu2_i2c_gpio = {
.name = "IXP4XX-I2C", .name = "i2c-gpio",
.id = 0, .id = 0,
.dev.platform_data = &nslu2_i2c_gpio_pins, .dev = {
.num_resources = 0, .platform_data = &nslu2_i2c_gpio_data,
},
}; };
static struct platform_device nslu2_beeper = { static struct platform_device nslu2_beeper = {
...@@ -139,7 +141,7 @@ static struct platform_device nslu2_uart = { ...@@ -139,7 +141,7 @@ static struct platform_device nslu2_uart = {
}; };
static struct platform_device *nslu2_devices[] __initdata = { static struct platform_device *nslu2_devices[] __initdata = {
&nslu2_i2c_controller, &nslu2_i2c_gpio,
&nslu2_flash, &nslu2_flash,
&nslu2_beeper, &nslu2_beeper,
#ifdef CONFIG_LEDS_IXP4XX #ifdef CONFIG_LEDS_IXP4XX
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment