From patchwork Wed Sep 23 08:23:29 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Koen Kooi X-Patchwork-Id: 49494 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 n8N8Nshv000329 for ; Wed, 23 Sep 2009 08:23:54 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754537AbZIWIXg (ORCPT ); Wed, 23 Sep 2009 04:23:36 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754535AbZIWIXe (ORCPT ); Wed, 23 Sep 2009 04:23:34 -0400 Received: from mail-fx0-f218.google.com ([209.85.220.218]:34482 "EHLO mail-fx0-f218.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754477AbZIWIXb (ORCPT ); Wed, 23 Sep 2009 04:23:31 -0400 Received: by fxm18 with SMTP id 18so390937fxm.17 for ; Wed, 23 Sep 2009 01:23:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:date :message-id:x-mailer; bh=5YqfSSkeTKxY4zrS6PU/qch6xzzKypxet6/81Pl/ChA=; b=cM3jf4+cFBdcDi/QA5mMqd0R5JcBlmll7xQ1xRG2m6C5pkYky3kkKGqY88LDjsPX4w adIVgD/SHpuiwzAk08Z12DIiryyRPl0kSlM7zWDJ6hvoHT0lrM9nibcpgLmkjDqyivY/ aic5rXyFl6xQI+reokkunatPToAEi2d3tB0HE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=xaqFdIULAkG+lVEmqqV1+JWhIsvNuI2IDdywATXJAPgBgUCdd8JImVTI3MlMdqMZp7 s/RzFIWrbcnqD3WDPJO1bVQutmLWhbSngb+XHLekfyo4V7qtgFg+TuwMGuGnWi7TXjop IqUxsKQDbzu3ueLbQmsxljHELNtkcds3CKGGc= Received: by 10.86.10.36 with SMTP id 36mr1771220fgj.61.1253694214243; Wed, 23 Sep 2009 01:23:34 -0700 (PDT) Received: from localhost (s55917625.adsl.wanadoo.nl [85.145.118.37]) by mx.google.com with ESMTPS id 4sm1693041fge.27.2009.09.23.01.23.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 23 Sep 2009 01:23:32 -0700 (PDT) From: Koen Kooi To: linux-omap@vger.kernel.org Cc: Koen Kooi Subject: [PATCH] ARM: OMAP: Fix beagleboard EHCI setup Date: Wed, 23 Sep 2009 10:23:29 +0200 Message-Id: <1253694209-55128-1-git-send-email-k.kooi@student.utwente.nl> X-Mailer: git-send-email 1.6.1 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org From: Koen Kooi The EHCI configuration in the beagleboard board file was copy/pasted from the sdp one and hence wrong. The beagleboard only used one port and lacks a charge pump. Tested on revision C1D and C3 boards Signed-off-by: Koen Kooi --- arch/arm/mach-omap2/board-omap3beagle.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 496b4a0..aa403e6 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -406,10 +406,10 @@ static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = { .port_mode[1] = EHCI_HCD_OMAP_MODE_PHY, .port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN, - .chargepump = true, + .chargepump = false, .phy_reset = true, - .reset_gpio_port[0] = 57, - .reset_gpio_port[1] = 61, + .reset_gpio_port[0] = -EINVAL, + .reset_gpio_port[1] = 147, .reset_gpio_port[2] = -EINVAL };