From patchwork Wed Aug 26 11:21:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 11737963 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 0B5D41751 for ; Wed, 26 Aug 2020 11:35:16 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 818162087D for ; Wed, 26 Aug 2020 11:35:15 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="nM8IHqJp" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 818162087D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=bp.renesas.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5263+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id wbsRYY4521763xZPFPfU2P5b; Wed, 26 Aug 2020 04:35:15 -0700 X-Received: from relmlie5.idc.renesas.com (relmlie5.idc.renesas.com []) by mx.groups.io with SMTP id smtpd.web10.10103.1598440898295323947 for ; Wed, 26 Aug 2020 04:21:42 -0700 X-IronPort-AV: E=Sophos;i="5.76,355,1592838000"; d="scan'208";a="55588062" X-Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 26 Aug 2020 20:21:41 +0900 X-Received: from localhost.localdomain (unknown [172.29.51.148]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 67A67429693C; Wed, 26 Aug 2020 20:21:40 +0900 (JST) From: Biju Das To: cip-dev@lists.cip-project.org, Nobuhiro Iwamatsu , Pavel Machek Cc: Chris Paterson , Biju Das , Prabhakar Mahadev Lad Subject: [cip-dev] [PATCH 4.19.y-cip 02/10] mmc: renesas_sdhi_internal_dmac: Add r8a774e1 support Date: Wed, 26 Aug 2020 12:21:24 +0100 Message-Id: <20200826112132.4090-3-biju.das.jz@bp.renesas.com> In-Reply-To: <20200826112132.4090-1-biju.das.jz@bp.renesas.com> References: <20200826112132.4090-1-biju.das.jz@bp.renesas.com> Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: pROKR30y3yD8lYTkCnUCXNg9x4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1598441715; bh=FeQQdbpK7WZgXwIRg9LhRwFYLfa7h1lwXVkb9VdfQ1M=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=nM8IHqJpD9Bq6Fp1wK9PtRYari+dVkgr9fwc9PoXnBj2St/xwP5hjTt2SjYKHfmN+MX axQYWZ0gMicaUvfDDF2fgjjG9RXy2R01an7oaWPbQNBD8qQh0gwCyQ3sUrc0eWaIrvZP6 5lMKA9ZjwGvdjwO3ep1sFQbwk5q07++y1R8= This patch adds SDHI support for RZ/G2H (R8A774E1) SoC. Based on the work done for R8A7795 SoC. Signed-off-by: Biju Das --- drivers/mmc/host/renesas_sdhi_internal_dmac.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/host/renesas_sdhi_internal_dmac.c b/drivers/mmc/host/renesas_sdhi_internal_dmac.c index d15615852de6..a492e226a262 100644 --- a/drivers/mmc/host/renesas_sdhi_internal_dmac.c +++ b/drivers/mmc/host/renesas_sdhi_internal_dmac.c @@ -302,6 +302,7 @@ static const struct soc_device_attribute gen3_soc_whitelist[] = { { .soc_id = "r8a774a1" }, { .soc_id = "r8a774b1" }, { .soc_id = "r8a774c0" }, + { .soc_id = "r8a774e1" }, { .soc_id = "r8a7795" }, { .soc_id = "r8a7796" }, { .soc_id = "r8a77965" },