/* * Helper module for board specific I2C bus registration * * Copyright (C) 2009 Nokia Corporation. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * */ #include <linux/i2c-omap.h> #include <mach/mux.h> #include "soc.h" #include <plat/i2c.h> #define OMAP_I2C_SIZE 0x3f #define OMAP1_I2C_BASE 0xfffb3800 static const char name[] = "omap_i2c"; static struct resource i2c_resources[2] = { }; static struct platform_device omap_i2c_devices[1] = { };
static void __init omap1_i2c_mux_pins(int bus_id) { if (cpu_is_omap7xx()) { omap_cfg_reg(I2C_7XX_SDA); omap_cfg_reg(I2C_7XX_SCL); } else { omap_cfg_reg(I2C_SDA); omap_cfg_reg(I2C_SCL); } }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
cory maccarrone | cory maccarrone | 20 | 50.00% | 1 | 25.00% |
tony lindgren | tony lindgren | 18 | 45.00% | 2 | 50.00% |
jarkko nikula | jarkko nikula | 2 | 5.00% | 1 | 25.00% |
Total | 40 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
tony lindgren | tony lindgren | 185 | 100.00% | 3 | 100.00% |
Total | 185 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
tony lindgren | tony lindgren | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
tony lindgren | tony lindgren | 268 | 91.78% | 8 | 80.00% |
cory maccarrone | cory maccarrone | 22 | 7.53% | 1 | 10.00% |
jarkko nikula | jarkko nikula | 2 | 0.68% | 1 | 10.00% |
Total | 292 | 100.00% | 10 | 100.00% |