|
@@ -39,6 +39,7 @@
|
|
|
#include <linux/usb/isp1362.h>
|
|
|
#endif
|
|
|
#include <linux/ata_platform.h>
|
|
|
+#include <linux/i2c.h>
|
|
|
#include <linux/irq.h>
|
|
|
#include <linux/interrupt.h>
|
|
|
#include <linux/usb/sl811.h>
|
|
@@ -797,6 +798,24 @@ static struct platform_device i2c_bfin_twi_device = {
|
|
|
};
|
|
|
#endif
|
|
|
|
|
|
+#ifdef CONFIG_I2C_BOARDINFO
|
|
|
+static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
|
|
|
+#if defined(CONFIG_TWI_LCD) || defined(CONFIG_TWI_LCD_MODULE)
|
|
|
+ {
|
|
|
+ I2C_BOARD_INFO("pcf8574_lcd", 0x22),
|
|
|
+ .type = "pcf8574_lcd",
|
|
|
+ },
|
|
|
+#endif
|
|
|
+#if defined(CONFIG_TWI_KEYPAD) || defined(CONFIG_TWI_KEYPAD_MODULE)
|
|
|
+ {
|
|
|
+ I2C_BOARD_INFO("pcf8574_keypad", 0x27),
|
|
|
+ .type = "pcf8574_keypad",
|
|
|
+ .irq = IRQ_PF8,
|
|
|
+ },
|
|
|
+#endif
|
|
|
+};
|
|
|
+#endif
|
|
|
+
|
|
|
#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
|
|
|
static struct platform_device bfin_sport0_uart_device = {
|
|
|
.name = "bfin-sport-uart",
|
|
@@ -998,6 +1017,12 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|
|
static int __init stamp_init(void)
|
|
|
{
|
|
|
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
|
|
+
|
|
|
+#ifdef CONFIG_I2C_BOARDINFO
|
|
|
+ i2c_register_board_info(0, bfin_i2c_board_info,
|
|
|
+ ARRAY_SIZE(bfin_i2c_board_info));
|
|
|
+#endif
|
|
|
+
|
|
|
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
|
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
|
spi_register_board_info(bfin_spi_board_info,
|