Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752363AbdLUJPf (ORCPT ); Thu, 21 Dec 2017 04:15:35 -0500 Received: from mga06.intel.com ([134.134.136.31]:14257 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751947AbdLUJPb (ORCPT ); Thu, 21 Dec 2017 04:15:31 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,435,1508828400"; d="scan'208";a="15444603" Subject: Re: [PATCH 11/12] mmc: sdhci-omap: Add support for MMC/SD controller in k2g SoC To: Kishon Vijay Abraham I , Ulf Hansson , Rob Herring , Tony Lindgren Cc: Mark Rutland , Russell King , linux-mmc@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, nsekhar@ti.com References: <20171214130941.26666-1-kishon@ti.com> <20171214130941.26666-12-kishon@ti.com> From: Adrian Hunter Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Message-ID: <4d04e881-2756-184b-1909-49f9d4a68efd@intel.com> Date: Thu, 21 Dec 2017 11:15:03 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20171214130941.26666-12-kishon@ti.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1801 Lines: 54 On 14/12/17 15:09, Kishon Vijay Abraham I wrote: > Add support for the new compatible added specifically to support > k2g's MMC/SD controller. > > Signed-off-by: Kishon Vijay Abraham I Acked-by: Adrian Hunter > --- > drivers/mmc/host/sdhci-omap.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/drivers/mmc/host/sdhci-omap.c b/drivers/mmc/host/sdhci-omap.c > index cddc3ad1331f..5e81e29383d9 100644 > --- a/drivers/mmc/host/sdhci-omap.c > +++ b/drivers/mmc/host/sdhci-omap.c > @@ -767,6 +767,10 @@ static const struct sdhci_pltfm_data sdhci_omap_pdata = { > .ops = &sdhci_omap_ops, > }; > > +static const struct sdhci_omap_data k2g_data = { > + .offset = 0x200, > +}; > + > static const struct sdhci_omap_data dra7_data = { > .offset = 0x200, > .flags = SDHCI_OMAP_REQUIRE_IODELAY, > @@ -774,6 +778,7 @@ static const struct sdhci_omap_data dra7_data = { > > static const struct of_device_id omap_sdhci_match[] = { > { .compatible = "ti,dra7-sdhci", .data = &dra7_data }, > + { .compatible = "ti,k2g-sdhci", .data = &k2g_data }, > {}, > }; > MODULE_DEVICE_TABLE(of, omap_sdhci_match); > @@ -882,6 +887,7 @@ static int sdhci_omap_probe(struct platform_device *pdev) > int ret; > u32 offset; > struct device *dev = &pdev->dev; > + struct device_node *node = dev->of_node; > struct sdhci_host *host; > struct sdhci_pltfm_host *pltfm_host; > struct sdhci_omap_host *omap_host; > @@ -908,6 +914,9 @@ static int sdhci_omap_probe(struct platform_device *pdev) > return PTR_ERR(host); > } > > + if (of_device_is_compatible(node, "ti,k2g-sdhci")) > + host->quirks2 |= SDHCI_QUIRK2_NO_1_8_V; > + > pltfm_host = sdhci_priv(host); > omap_host = sdhci_pltfm_priv(pltfm_host); > omap_host->host = host; >