From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeongbae Seo Subject: RE: [PATCH V2 1/3] ARM: S5PV310: Add support HSMMC and SDHCI configuration Date: Wed, 06 Oct 2010 18:00:09 +0900 Message-ID: <001a01cb6534$ebe96f40$c3bc4dc0$%seo@samsung.com> References: <1286344846-21244-1-git-send-email-jeongbae.seo@samsung.com> <1286344846-21244-2-git-send-email-jeongbae.seo@samsung.com> <000b01cb652f$ab6125d0$02237170$%kim@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset=Windows-1252 Content-Transfer-Encoding: 7BIT Return-path: Received: from mailout2.samsung.com ([203.254.224.25]:18922 "EHLO mailout2.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754360Ab0JFJAI (ORCPT ); Wed, 6 Oct 2010 05:00:08 -0400 In-reply-to: <000b01cb652f$ab6125d0$02237170$%kim@samsung.com> Content-language: ko Sender: linux-samsung-soc-owner@vger.kernel.org List-Id: linux-samsung-soc@vger.kernel.org To: 'Kukjin Kim' , linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-mmc@vger.kernel.org Cc: akpm@linux-foundation.org, cjb@laptop.org, 'Hyuk Lee' , ben-linux@fluff.org Kukjin Kim wrote: > Jeongbae Seo wrote: > > > > From: Hyuk Lee > > > > This patch adds support HSMMC for S5PV310 and S5PC210 and > > setup for HSMMC host controller and also related GPIO. > > At most 4 channel can be used at the same time. > > A user can configure SDHCI data bus as 8bit or 4bit. > > > > Signed-off-by: Hyuk Lee > > Signed-off-by: Jeongbae Seo > > --- > > (snip) > > > + /* Set all the necessary GPK0[0:1] pins to special-function 2 */ > > + for (gpio = S5PV310_GPK0(0); gpio < S5PV310_GPK0(2); gpio++) { > > + s3c_gpio_cfgpin(gpio, S3C_GPIO_SFN(2)); > > + s3c_gpio_setpull(gpio, S3C_GPIO_PULL_NONE); > > Hi > > Maybe as you know, above lines can be changed like below. > > s3c_gpio_cfgrange_nopull(S5PV310_GPK0(0), 2, S3C_GPIO_SFN(2)); > > Of course regarding gpio update patches are not pulled in my for-next yet, > because under reviewing in ML now. > But I think, you can do it against dev/gpio-update. > > Anyway could you please make additional patch for it? > It would be nice if you could do it :-) > > Others ok to me...but I will sort out regarding sdhci gpio configuration > in > future time. Hi, Kukjin I will check what you mentioned and make additional patch. Thanks Best Regards Jeongbae Seo