projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b344d87
)
AM3517: Enable basic I2C Support
author
Vaibhav Hiremath
<hvaibhav@ti.com>
Wed, 17 Feb 2010 22:09:28 +0000
(14:09 -0800)
committer
Tony Lindgren
<tony@atomide.com>
Fri, 19 Feb 2010 23:22:17 +0000
(15:22 -0800)
Add basic I2C board Hook-up support, where all the 3 I2C instances
are getting registered.
Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/board-am3517evm.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-omap2/board-am3517evm.c
b/arch/arm/mach-omap2/board-am3517evm.c
index ad323b46477df3b2de872d0b7e27999dc7f8dcf6..af99faf2cced4743a31dcef30cdf37c01dc6834c 100644
(file)
--- a/
arch/arm/mach-omap2/board-am3517evm.c
+++ b/
arch/arm/mach-omap2/board-am3517evm.c
@@
-38,6
+38,15
@@
#define LCD_PANEL_BKLIGHT_PWR 182
#define LCD_PANEL_PWM 181
+static int __init am3517_evm_i2c_init(void)
+{
+ omap_register_i2c_bus(1, 400, NULL, 0);
+ omap_register_i2c_bus(2, 400, NULL, 0);
+ omap_register_i2c_bus(3, 400, NULL, 0);
+
+ return 0;
+}
+
static int lcd_enabled;
static int dvi_enabled;
@@
-216,6
+225,8
@@
static struct omap_board_mux board_mux[] __initdata = {
static void __init am3517_evm_init(void)
{
+ am3517_evm_i2c_init();
+
omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
platform_add_devices(am3517_evm_devices,
ARRAY_SIZE(am3517_evm_devices));