On Mon, 1 Sep 2008 12:35:09 +0100 "ext Mark Brown" <broonie@xxxxxxxxxxxxx> wrote: > On Mon, Sep 01, 2008 at 02:31:14PM +0300, Jarkko Nikula wrote: > > "ext Jean Delvare" <khali@xxxxxxxxxxxx> wrote: > > > Thanks. In N810 it's connected into second i2c bus so this makes it > > working > > > + .i2c_bus = 2, > > Should that be 1? Normally the buses are numbered from zero... > Good question. By some historical reason we are registering busses starting from number one in OMAP and short hack below (in linux-omap tree) trying to register them starting from zero didn't work out. But yeah, that's another issue in linux-omap and Jean's patch is working on N810 if changing this i2c_bus to 2. Jarkko --- a/arch/arm/mach-omap2/board-n800.c +++ b/arch/arm/mach-omap2/board-n800.c @@ -691,15 +691,15 @@ void __init nokia_n800_common_init(void) ARRAY_SIZE(n810_spi_board_info)); } omap_serial_init(); - omap_register_i2c_bus(1, 400, n800_i2c_board_info_1, + omap_register_i2c_bus(0, 400, n800_i2c_board_info_1, ARRAY_SIZE(n800_i2c_board_info_1)); - omap_register_i2c_bus(2, 400, n8x0_i2c_board_info_2, + omap_register_i2c_bus(1, 400, n8x0_i2c_board_info_2, ARRAY_SIZE(n800_i2c_board_info_2)); if (machine_is_nokia_n800()) - i2c_register_board_info(2, n800_i2c_board_info_2, + i2c_register_board_info(1, n800_i2c_board_info_2, ARRAY_SIZE(n800_i2c_board_info_2)); if (machine_is_nokia_n810()) - i2c_register_board_info(2, n810_i2c_board_info_2, + i2c_register_board_info(1, n810_i2c_board_info_2, ARRAY_SIZE(n810_i2c_board_info_2)); mipid_dev_init(); diff --git a/arch/arm/plat-omap/i2c.c b/arch/arm/plat-omap/i2c.c index 89a6ab0..83ef7cf 100644 --- a/arch/arm/plat-omap/i2c.c +++ b/arch/arm/plat-omap/i2c.c @@ -134,7 +134,7 @@ int __init omap_register_i2c_bus(int bus_id, u32 clkrate, else if (cpu_is_omap34xx()) ports = 3; - BUG_ON(bus_id < 1 || bus_id > ports); +// BUG_ON(bus_id < 1 || bus_id > ports); if (info) { err = i2c_register_board_info(bus_id, info, len); @@ -142,10 +142,10 @@ int __init omap_register_i2c_bus(int bus_id, u32 clkrate, return err; } - pdev = &omap_i2c_devices[bus_id - 1]; + pdev = &omap_i2c_devices[bus_id /*- 1*/]; *(u32 *)pdev->dev.platform_data = clkrate; - if (bus_id == 1) { + if (bus_id == /*1*/0) { res = pdev->resource; if (cpu_class_is_omap1()) { base = OMAP1_I2C_BASE; @@ -159,6 +159,6 @@ int __init omap_register_i2c_bus(int bus_id, u32 clkrate, res[1].start = irq; } - omap_i2c_mux_pins(bus_id - 1); + omap_i2c_mux_pins(bus_id /*- 1*/); return platform_device_register(pdev); } -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html