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=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS 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 9D93DC43381 for ; Tue, 26 Feb 2019 18:09:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 64F69217F5 for ; Tue, 26 Feb 2019 18:09:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551204564; bh=MalEI9AY4Y/lho68rO7QHAD5Yp5TvsZQXjlzR1sv20g=; h=To:References:Cc:Subject:From:In-Reply-To:Date:List-ID:From; b=Z+gssvsnYAFd/N0BNZ4BrHITbOU2+BtwXx/gnNsGx2DvSYiib4BPPgZPSZjIMrMwd SKwppxMwqr1B51nupRXQHB3tCnVgMtf4Z82wLY2Nmb9gaHe3XqVeB3wXmQXHGPmsYn vKFsP11F1DQKo+r0FpYDSITHYXPTau7xzIof4tqU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728944AbfBZSJY (ORCPT ); Tue, 26 Feb 2019 13:09:24 -0500 Received: from mail.kernel.org ([198.145.29.99]:46912 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727801AbfBZSJY (ORCPT ); Tue, 26 Feb 2019 13:09:24 -0500 Received: from localhost (unknown [104.132.0.74]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 4E55D206B8; Tue, 26 Feb 2019 18:09:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551204563; bh=MalEI9AY4Y/lho68rO7QHAD5Yp5TvsZQXjlzR1sv20g=; h=To:References:Cc:Subject:From:In-Reply-To:Date:From; b=cgCIy9er+0cLpv/pqFMEkg/ppnJvpB+ctidOVRaUpmAnHlt2hapu2RHuGTYqAKOZD 0KlrEsZbjiMB9y1kdyTw+GD924mow06LOVCprwDKkyYx/dZI8y0hWkt7UIZsHJ8l7M 7SVR5ZWKilwwNLY4XIOfXLkJGLwYy4ZsF5ieagKM= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable To: Abel Vesa , Aisheng Dong , Anson Huang , Fabio Estevam , Fabio Estevam , Jacky Bai , Lucas Stach , Sascha Hauer , Shawn Guo References: <1550855235-31528-1-git-send-email-abel.vesa@nxp.com> Message-ID: <155120456259.260864.486515032059106989@swboyd.mtv.corp.google.com> User-Agent: alot/0.8 Cc: dl-linux-imx , "linux-clk@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , Linux Kernel Mailing List , Abel Vesa Subject: Re: [PATCH v2] clk: imx: Refactor entire sccg pll clk From: Stephen Boyd In-Reply-To: <1550855235-31528-1-git-send-email-abel.vesa@nxp.com> Date: Tue, 26 Feb 2019 10:09:22 -0800 Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Abel Vesa (2019-02-22 09:07:32) > Make the entire combination of plls to be one single clock. The parents u= sed > for bypasses are specified each as an index in the parents list. > The determine_rate does a lookup throughout all the possible combinations > for all the divs and returns the best possible 'setup' which in turn is u= sed > by set_rate later to set up all the divs and bypasses. >=20 > Signed-off-by: Abel Vesa > Tested-by: Lucas Stach > Acked-by: Lucas Stach > --- Applied to clk-next