Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp6445273imm; Mon, 27 Aug 2018 16:22:10 -0700 (PDT) X-Google-Smtp-Source: ANB0Vda2NFL4xykmHPDt2YF/Si9sLz5bmAACkcscTBIJe04qIRoLi86bgy2Reu7ocqCSXoVpNkW2 X-Received: by 2002:a63:a745:: with SMTP id w5-v6mr13873779pgo.374.1535412130086; Mon, 27 Aug 2018 16:22:10 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1535412130; cv=none; d=google.com; s=arc-20160816; b=JFsBnFRxJVjVNo6scxlaB1rIuBEdZYdcXs6AyCnkPDQX4DfdQdAR1ujIncWRdJKzFJ C+5t+GRr75NbJs1t4J09fDacQ9n1y8Rrhcsk9yFeVjfyPIE5goxMGnB6lpJFZ2jY6l1W DiKhtQQq6RssTCbBkUbQqU47GMFX5Wwfb4PCrNESgtj4jMg7jE7qui+tHOkvG9czi7bw xqgEfznIVThEbGJWE+VKJTzbLL5gmRvlgBWrB0qyvE/PMcU+vSQfvpH5xUDqPmM/7P6Q no1wADFDVrUnyu2g7r4meQxGqjRhLUZ47l3iJoVepu7Iq+HxMVBW4wGZ7NYJk2JDKy57 xGdA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:from:cc:to:subject :content-transfer-encoding:mime-version:references:in-reply-to:date :arc-authentication-results; bh=uzUd2oDSe/+twRr6waLQWtX3MaFB2Vf77f03ANyWNe8=; b=H9UKcAKJOXlm9Xpm2TSqP6wFXR5b+kkPSKaaNwbGdfNCgcBvb76as+dT9iTS0rcAC1 5U+sLYOw6yTiOD7hHjkxmCA9hSZRRS2ftu3vOoNbEw2FY6f7TJzTn0J0KnP5iiUVIlpd Mjulvy6N8EuKBC124t3oMu00SSwQlTeApngdqE3YTwXwEumRknnrnePCT+DHhoQ2wZ3K PlOZhNCieVDDeWKkUbLfc9up/QNqMj9/Gy5dG73IGKmSY1oBUJuD/GoJlJNzbkPC3+Ec NQJjgwoOhHsLJe+Fyr1KdN85AGkZ2BbobsaletHpOkXUPyJ8CzIAV+I/nIcGBa46nOHu tGaA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q12-v6si579596pfc.349.2018.08.27.16.21.54; Mon, 27 Aug 2018 16:22:10 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727368AbeH1DJf convert rfc822-to-8bit (ORCPT + 99 others); Mon, 27 Aug 2018 23:09:35 -0400 Received: from hermes.aosc.io ([199.195.250.187]:44722 "EHLO hermes.aosc.io" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727128AbeH1DJe (ORCPT ); Mon, 27 Aug 2018 23:09:34 -0400 Received: from localhost (localhost [127.0.0.1]) (Authenticated sender: icenowy@aosc.io) by hermes.aosc.io (Postfix) with ESMTPSA id 9755FFEE51; Mon, 27 Aug 2018 23:20:42 +0000 (UTC) Date: Tue, 28 Aug 2018 07:08:22 +0800 In-Reply-To: <153540143478.129321.8502068006504989469@swboyd.mtv.corp.google.com> References: <20180820134013.16527-1-icenowy@aosc.io> <153540143478.129321.8502068006504989469@swboyd.mtv.corp.google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8BIT Subject: Re: [PATCH] clk: sunxi-ng: sun50i: h6: Add 2x fixed post-divider to MMC module clocks To: linux-arm-kernel@lists.infradead.org, Stephen Boyd , Chen-Yu Tsai , Maxime Ripard CC: linux-kernel@vger.kernel.org, linux-sunxi@googlegroups.com, linux-clk@vger.kernel.org From: Icenowy Zheng Message-ID: Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 于 2018年8月28日 GMT+08:00 上午4:23:54, Stephen Boyd 写到: >Quoting Icenowy Zheng (2018-08-20 06:40:13) >> On the H6, the MMC module clocks are fixed in the new timing mode, >> i.e. they do not have a bit to select the mode. These clocks have >> a 2x divider somewhere between the clock and the MMC module. >> >> To be consistent with other SoCs supporting the new timing mode, >> we model the 2x divider as a fixed post-divider on the MMC module >> clocks. >> >> This patch adds the post-dividers to the MMC clocks, following the >> approach on A64. >> >> Fixes: 542353ea ("clk: sunxi-ng: add support for the Allwinner H6 >CCU") > >This commit doesn't exist. Did you mean: > >524353ea48 > >instead? Yes, it is. Thanks! > >_______________________________________________ >linux-arm-kernel mailing list >linux-arm-kernel@lists.infradead.org >http://lists.infradead.org/mailman/listinfo/linux-arm-kernel