From patchwork Wed Mar 4 18:30:29 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Lindgren X-Patchwork-Id: 9887 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n24IUbrK018153 for ; Wed, 4 Mar 2009 18:30:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753914AbZCDSaf (ORCPT ); Wed, 4 Mar 2009 13:30:35 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753923AbZCDSaf (ORCPT ); Wed, 4 Mar 2009 13:30:35 -0500 Received: from mho-01-bos.mailhop.org ([63.208.196.178]:51733 "EHLO mho-01-bos.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753914AbZCDSae (ORCPT ); Wed, 4 Mar 2009 13:30:34 -0500 Received: from c-69-181-40-92.hsd1.ca.comcast.net ([69.181.40.92] helo=[127.0.0.1]) by mho-01-bos.mailhop.org with esmtpa (Exim 4.68) (envelope-from ) id 1LevrT-000MUz-LF; Wed, 04 Mar 2009 18:30:32 +0000 X-Mail-Handler: MailHop Outbound by DynDNS X-Originating-IP: 69.181.40.92 X-Report-Abuse-To: abuse@dyndns.com (see http://www.dyndns.com/services/mailhop/outbound_abuse.html for abuse reporting information) X-MHO-User: U2FsdGVkX19VNQEsK2vCPQ6sd3lhQvDj Subject: [PATCH 4/4] ARM: OMAP: board-omap3beagle: set i2c-3 to 100kHz To: linux-arm-kernel@lists.arm.linux.org.uk From: Tony Lindgren Cc: David Brownell , linux-omap@vger.kernel.org, Koen Kooi Date: Wed, 04 Mar 2009 10:30:29 -0800 Message-ID: <20090304183029.27331.54848.stgit@localhost> In-Reply-To: <20090304182342.27331.35004.stgit@localhost> References: <20090304182342.27331.35004.stgit@localhost> User-Agent: StGit/0.14.3.343.g0584 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From: Koen Kooi Changing it do 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 Acked-by: David Brownell Signed-off-by: Tony Lindgren --- arch/arm/mach-omap2/board-omap3beagle.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 38c88fb..e39cd2c 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -178,7 +178,9 @@ 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); + /* Bus 3 is attached to the DVI port where devices like the pico DLP + * projector don't work reliably with 400kHz */ + omap_register_i2c_bus(3, 100, NULL, 0); return 0; }