public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: OMAP: board-omap3beagle: set i2c-3 to 100kHz
@ 2009-01-15 19:30 Koen Kooi
  2009-01-15 19:54 ` Koen Kooi
  2009-01-23  8:00 ` Koen Kooi
  0 siblings, 2 replies; 18+ messages in thread
From: Koen Kooi @ 2009-01-15 19:30 UTC (permalink / raw)
  To: linux-omap; +Cc: beagleboard, Koen Kooi

From: Koen Kooi <koen@beagleboard.org>

Changing it to 100kHz is needed to make more devices works properly. Controlling the TI DLP Pico projector[1] doesn't work properly at 400kHz, 100kHz and lower work fine. EDID readout is unaffected by this change.

[1] http://focus.ti.com/dlpdmd/docs/dlpdiscovery.tsp?sectionId=60&tabId=2234

Signed-off-by: Koen Kooi <koen@beagleboard.org>
---
 arch/arm/mach-omap2/board-omap3beagle.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
index fe97bab..f279404 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -227,7 +227,7 @@ static int __init omap3_beagle_i2c_init(void)
 #ifdef CONFIG_I2C2_OMAP_BEAGLE
 	omap_register_i2c_bus(2, 400, NULL, 0);
 #endif
-	omap_register_i2c_bus(3, 400, NULL, 0);
+	omap_register_i2c_bus(3, 100, NULL, 0);
 	return 0;
 }
 
-- 
1.5.6.3


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [PATCH] ARM: OMAP: board-omap3beagle: set i2c-3 to 100kHz
@ 2009-01-15 19:34 Koen Kooi
  0 siblings, 0 replies; 18+ messages in thread
From: Koen Kooi @ 2009-01-15 19:34 UTC (permalink / raw)
  To: linux-omap; +Cc: Koen Kooi

From: Koen Kooi <koen@beagleboard.org>

Changing it to 100kHz is needed to make more devices works properly. Controlling the TI DLP Pico projector[1] doesn't work properly at 400kHz, 100kHz and lower work fine. EDID readout is unaffected by this change.

[1] http://focus.ti.com/dlpdmd/docs/dlpdiscovery.tsp?sectionId=60&tabId=2234

Signed-off-by: Koen Kooi <koen@beagleboard.org>
---
 arch/arm/mach-omap2/board-omap3beagle.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
index fe97bab..f279404 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -227,7 +227,7 @@ static int __init omap3_beagle_i2c_init(void)
 #ifdef CONFIG_I2C2_OMAP_BEAGLE
 	omap_register_i2c_bus(2, 400, NULL, 0);
 #endif
-	omap_register_i2c_bus(3, 400, NULL, 0);
+	omap_register_i2c_bus(3, 100, NULL, 0);
 	return 0;
 }
 
-- 
1.5.6.3


^ permalink raw reply related	[flat|nested] 18+ messages in thread
* [PATCH] ARM: OMAP: board-omap3beagle: set i2c-3 to 100kHz
@ 2009-01-15 19:43 Koen Kooi
  0 siblings, 0 replies; 18+ messages in thread
From: Koen Kooi @ 2009-01-15 19:43 UTC (permalink / raw)
  To: linux-omap; +Cc: Koen Kooi

From: Koen Kooi <koen@beagleboard.org>

Changing it to 100kHz is needed to make more devices works properly. Controlling the TI DLP Pico projector[1] doesn't work properly at 400kHz, 100kHz and lower work fine. EDID readout is unaffected by this change.

[1] http://focus.ti.com/dlpdmd/docs/dlpdiscovery.tsp?sectionId=60&tabId=2234

Signed-off-by: Koen Kooi <koen@beagleboard.org>
---
 arch/arm/mach-omap2/board-omap3beagle.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
index fe97bab..f279404 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -227,7 +227,7 @@ static int __init omap3_beagle_i2c_init(void)
 #ifdef CONFIG_I2C2_OMAP_BEAGLE
 	omap_register_i2c_bus(2, 400, NULL, 0);
 #endif
-	omap_register_i2c_bus(3, 400, NULL, 0);
+	omap_register_i2c_bus(3, 100, NULL, 0);
 	return 0;
 }
 
-- 
1.5.6.3


^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2009-01-27 11:08 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-15 19:30 [PATCH] ARM: OMAP: board-omap3beagle: set i2c-3 to 100kHz Koen Kooi
2009-01-15 19:54 ` Koen Kooi
2009-01-23  8:00 ` Koen Kooi
2009-01-23  9:52   ` David Brownell
2009-01-23 10:48     ` Koen Kooi
2009-01-24 15:06       ` Jason Kridner
2009-01-24 20:30         ` David Brownell
2009-01-24 21:09           ` Koen Kooi
2009-01-24 22:33             ` David Brownell
     [not found]           ` <bd7b27490901250616q2363c5b4wf422d32831bd3638@mail.gmail.com>
2009-01-27  9:18             ` No audio support for BeagleBoard in Latest GIT tree? ndno72-omap
2009-01-27  9:38               ` Peter Ujfalusi
2009-01-27 10:35                 ` ndno72-omap
2009-01-27 10:51                   ` Peter Ujfalusi
2009-01-27 11:08                   ` Arun KS
2009-01-27  9:55               ` Jarkko Nikula
2009-01-27 10:37                 ` ndno72-omap
  -- strict thread matches above, loose matches on Subject: below --
2009-01-15 19:34 [PATCH] ARM: OMAP: board-omap3beagle: set i2c-3 to 100kHz Koen Kooi
2009-01-15 19:43 Koen Kooi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox