From patchwork Wed Dec 19 11:00:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Ujfalusi X-Patchwork-Id: 1895281 Return-Path: X-Original-To: patchwork-linux-mmc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id C9ACEDF230 for ; Wed, 19 Dec 2012 11:00:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751403Ab2LSLAl (ORCPT ); Wed, 19 Dec 2012 06:00:41 -0500 Received: from comal.ext.ti.com ([198.47.26.152]:52979 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750922Ab2LSLAk (ORCPT ); Wed, 19 Dec 2012 06:00:40 -0500 Received: from dlelxv30.itg.ti.com ([172.17.2.17]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id qBJB0b4d017360; Wed, 19 Dec 2012 05:00:37 -0600 Received: from DLEE74.ent.ti.com (dlee74.ent.ti.com [157.170.170.8]) by dlelxv30.itg.ti.com (8.13.8/8.13.8) with ESMTP id qBJB0bA7020100; Wed, 19 Dec 2012 05:00:37 -0600 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DLEE74.ent.ti.com (157.170.170.8) with Microsoft SMTP Server id 14.1.323.3; Wed, 19 Dec 2012 05:00:37 -0600 Received: from [137.167.122.43] (barack.emea.dhcp.ti.com [137.167.122.43]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id qBJB0Zdt017819; Wed, 19 Dec 2012 05:00:35 -0600 Message-ID: <50D19E52.9030003@ti.com> Date: Wed, 19 Dec 2012 12:00:34 +0100 From: Peter Ujfalusi User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: Luciano Coelho CC: Mark Brown , Felipe Balbi , , , , , , , Tony Lindgren Subject: Re: 32kHz clock removal causes problems omap_hsmmc References: <1352968293.10872.51.camel@cumari.coelho.fi> <20121218095450.GB27751@arwen.pp.htv.fi> <20121219094552.GN4985@opensource.wolfsonmicro.com> <50D19040.5090404@ti.com> <20121219100909.GO4985@opensource.wolfsonmicro.com> <50D19463.5010605@ti.com> <20121219103206.GQ4985@opensource.wolfsonmicro.com> <1355913954.5273.21.camel@cumari.coelho.fi> <50D19D54.2000307@ti.com> In-Reply-To: <50D19D54.2000307@ti.com> Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org On 12/19/2012 11:56 AM, Peter Ujfalusi wrote: > BTW: have you happened to ubdate u-boot recently? There is a nice easter egg > added there: > f3f98bb ARM: OMAP4/5: Do not configure non essential pads, clocks, dplls. > > Which means that _essential_ clocks and pads are no longer configured. Meanwhile you can try to hack the u-boot to enable the 32k from there. It is going to stay up since we do not have code to control it in the kernel anymore. Also do something like this at the same time to get things working: diff --git a/include/configs/omap4_common.h b/include/configs/omap4_common.h index cbc9bdb..b0ff1ec 100644 --- a/include/configs/omap4_common.h +++ b/include/configs/omap4_common.h @@ -271,4 +271,8 @@ #define CONFIG_SYS_THUMB_BUILD +/* Configure all pins and clocks */ +#define CONFIG_SYS_ENABLE_PADS_ALL +#define CONFIG_SYS_CLOCKS_ENABLE_ALL + #endif /* __CONFIG_OMAP4_COMMON_H */