From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6DD4FC3A5A1 for ; Wed, 28 Aug 2019 13:02:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4A2B822CF8 for ; Wed, 28 Aug 2019 13:02:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726583AbfH1NCo (ORCPT ); Wed, 28 Aug 2019 09:02:44 -0400 Received: from mga06.intel.com ([134.134.136.31]:60481 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726253AbfH1NCo (ORCPT ); Wed, 28 Aug 2019 09:02:44 -0400 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Aug 2019 06:02:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,441,1559545200"; d="scan'208";a="182022481" Received: from ahunter-desktop.fi.intel.com (HELO [10.237.72.66]) ([10.237.72.66]) by fmsmga007.fm.intel.com with ESMTP; 28 Aug 2019 06:02:41 -0700 Subject: Re: [PATCH] mmc: sdhci: use lower/upper_32_bits() macros for DMA addresses To: Masahiro Yamada , linux-mmc@vger.kernel.org, Ulf Hansson Cc: linux-kernel@vger.kernel.org References: <20190828111453.4023-1-yamada.masahiro@socionext.com> From: Adrian Hunter Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Message-ID: <0d5da294-61f8-4b9f-1a6e-7212da40f572@intel.com> Date: Wed, 28 Aug 2019 16:01:37 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 In-Reply-To: <20190828111453.4023-1-yamada.masahiro@socionext.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 28/08/19 2:14 PM, Masahiro Yamada wrote: > Currently, the DMA addresses are casted to (u64) for the upper 32bits > to avoid "right shift count >= width of type" warning. > > provides macros to address this, and the macro names > are self-documenting. > > Signed-off-by: Masahiro Yamada > --- > > drivers/mmc/host/sdhci.c | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) > > diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c > index a5dc5aae973e..07144a195a9f 100644 > --- a/drivers/mmc/host/sdhci.c > +++ b/drivers/mmc/host/sdhci.c > @@ -668,10 +668,10 @@ void sdhci_adma_write_desc(struct sdhci_host *host, void **desc, > /* 32-bit and 64-bit descriptors have these members in same position */ > dma_desc->cmd = cpu_to_le16(cmd); > dma_desc->len = cpu_to_le16(len); > - dma_desc->addr_lo = cpu_to_le32((u32)addr); > + dma_desc->addr_lo = cpu_to_le32(lower_32_bits(addr)); > > if (host->flags & SDHCI_USE_64_BIT_DMA) > - dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32); > + dma_desc->addr_hi = cpu_to_le32(upper_32_bits(addr)); > > *desc += host->desc_sz; > } > @@ -827,9 +827,10 @@ static dma_addr_t sdhci_sdma_address(struct sdhci_host *host) > static void sdhci_set_sdma_addr(struct sdhci_host *host, dma_addr_t addr) > { > if (host->v4_mode) { To reduce line wrapping, how about using: u32 lo = lower_32_bits(addr); u32 hi = upper_32_bits(addr); > - sdhci_writel(host, addr, SDHCI_ADMA_ADDRESS); > + sdhci_writel(host, lower_32_bits(addr), SDHCI_ADMA_ADDRESS); > if (host->flags & SDHCI_USE_64_BIT_DMA) > - sdhci_writel(host, (u64)addr >> 32, SDHCI_ADMA_ADDRESS_HI); > + sdhci_writel(host, upper_32_bits(addr), > + SDHCI_ADMA_ADDRESS_HI); > } else { > sdhci_writel(host, addr, SDHCI_DMA_ADDRESS); > } > @@ -1096,10 +1097,11 @@ static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd) > } else if (host->flags & SDHCI_USE_ADMA) { To reduce line wrapping, how about using: u32 lo = lower_32_bits(host->adma_addr); u32 hi = upper_32_bits(host->adma_addr); > sdhci_adma_table_pre(host, data, sg_cnt); > > - sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS); > + sdhci_writel(host, lower_32_bits(host->adma_addr), > + SDHCI_ADMA_ADDRESS); > if (host->flags & SDHCI_USE_64_BIT_DMA) > sdhci_writel(host, > - (u64)host->adma_addr >> 32, > + upper_32_bits(host->adma_addr), > SDHCI_ADMA_ADDRESS_HI); > } else { > WARN_ON(sg_cnt != 1); >