From patchwork Fri Dec 29 17:00:04 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 853964 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=nifty.com header.i=@nifty.com header.b="SApsgfGC"; dkim-atps=neutral Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 3z7Xym668nz9s72 for ; Sat, 30 Dec 2017 04:05:20 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 89EB8C21DC8; Fri, 29 Dec 2017 17:02:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_BLOCKED, T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 9FA74C21DE7; Fri, 29 Dec 2017 17:01:15 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 1995CC21DBA; Fri, 29 Dec 2017 17:00:54 +0000 (UTC) Received: from conuserg-08.nifty.com (conuserg-08.nifty.com [210.131.2.75]) by lists.denx.de (Postfix) with ESMTPS id 153D1C21DDB for ; Fri, 29 Dec 2017 17:00:48 +0000 (UTC) Received: from grover.sesame (FL1-125-199-20-195.osk.mesh.ad.jp [125.199.20.195]) (authenticated) by conuserg-08.nifty.com with ESMTP id vBTH0O9H000541; Sat, 30 Dec 2017 02:00:24 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com vBTH0O9H000541 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1514566825; bh=nAnYQCadiM+uzbhIUhyl5YSS8Xx4oxDyBXBinVhRcAM=; h=From:To:Cc:Subject:Date:From; b=SApsgfGCBucD5fl0ygcQVt3Xvu3gCM8zEaLL9gWgVzCrOQ1xgNxMPhvKq34N9N0Id 1CIFj7qdMnn7jDdbF1AJpNPRT7HiLp7quRHdRWjU25P+Ks2xRDH4soBWayrx5gjqOo Ieig9LKFkntijDYrQai+1CKZAgrXkpirIhrU80oNTEgolBvHlaLoYqRKwezBB7+iM2 06qX4EtIDDtwtme6+gi3wvua7ridbKPywUW7o8gK5js7T0V+tYKUusjEHH3XMWThQJ YLPuFlCaHDhy00oLP/SXxITL8dUBZWtM4AqDMu399YjPnqhoc3aU6AiW0Ht/gZbdqE 2om8fQ0as2w0Q== X-Nifty-SrcIP: [125.199.20.195] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Sat, 30 Dec 2017 02:00:04 +0900 Message-Id: <1514566812-16781-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Subject: [U-Boot] [PATCH 0/8] mmc: some fixes for core and add HS200 support for sdhci-cadence X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This series can be cleanly applied to u-boot-mmc/next. I really hope the HS200 support will be pulled in the next MW. Masahiro Yamada (8): dm: add dev_read_u32() mmc: do not overwrite cfg->f_max if "max-frequency" if missing mmc: let mmc_of_parse() fail for insane bus-width value mmc: sdhci: do not overwrite host_caps in sdhci_setup_cfg() mmc: sdhci-cadence: use bitfield access macros for cleanup mmc: sdhci-cadence: call mmc_of_parse() mmc: sdhci-cadence: add HS200 support mmc: sdhci: change data transfer failure into debug message drivers/core/read.c | 5 ++ drivers/mmc/mmc-uclass.c | 9 ++-- drivers/mmc/sdhci-cadence.c | 111 ++++++++++++++++++++++++++++++++++++-------- drivers/mmc/sdhci.c | 6 +-- include/dm/read.h | 16 +++++++ 5 files changed, 120 insertions(+), 27 deletions(-)