[PATCH 3/3] clk: sunxi: Add sun8i PLL audio support
Maxime Ripard
maxime.ripard at free-electrons.com
Sun Apr 10 02:53:22 PDT 2016
Hi,
On Wed, Mar 30, 2016 at 06:57:16PM +0200, Jean-Francois Moine wrote:
> Add the PLL type which is used by the sun8i family for audio.
>
> Signed-off-by: Jean-Francois Moine <moinejf at free.fr>
> ---
> Documentation/devicetree/bindings/clock/sunxi.txt | 1 +
> drivers/clk/sunxi/clk-sunxi.c | 48 +++++++++++++++++++++++
> 2 files changed, 49 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/clock/sunxi.txt b/Documentation/devicetree/bindings/clock/sunxi.txt
> index ff93aee..917d4aa 100644
> --- a/Documentation/devicetree/bindings/clock/sunxi.txt
> +++ b/Documentation/devicetree/bindings/clock/sunxi.txt
> @@ -10,6 +10,7 @@ Required properties:
> "allwinner,sun4i-a10-pll1-clk" - for the main PLL clock and PLL4
> "allwinner,sun6i-a31-pll1-clk" - for the main PLL clock on A31
> "allwinner,sun8i-a23-pll1-clk" - for the main PLL clock on A23
> + "allwinner,sun8i-pll2-clk" - for the audio PLL clock
You should mention the name of the first SoC that introduced it.
> "allwinner,sun6i-a31-pll3-clk" - for the video PLL clock
> "allwinner,sun9i-a80-pll4-clk" - for the peripheral PLLs on A80
> "allwinner,sun4i-a10-pll5-clk" - for the PLL5 clock
> diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c
> index 270f2a9..7386141 100644
> --- a/drivers/clk/sunxi/clk-sunxi.c
> +++ b/drivers/clk/sunxi/clk-sunxi.c
> @@ -1130,6 +1130,54 @@ CLK_OF_DECLARE(sun6i_pll6, "allwinner,sun6i-a31-pll6-clk",
> sun6i_pll6_clk_setup);
>
> /*
> + * sun8i pll2
> + *
> + * rate = parent_rate / (m + 1) * (n + 1) / (p + 1);
^ I'm guessing it's a "*" instead?
> + */
> +static void sun8i_pll2_factors(struct factors_request *req)
> +{
> + unsigned long n, m;
> +
> + /* set p = 4 so that pll2 = pll2x8 / 8 */
> + req->p = 4 - 1;
> + rational_best_approximation(req->rate,
> + req->parent_rate / 4,
> + 1 << 7, 1 << 5, &n, &m);
> + req->rate = req->parent_rate / m * n / 4;
> + req->m = m - 1;
> + req->n = n - 1;
> +}
> +
> +static void sun8i_pll2_recalc(struct factors_request *req)
> +{
> + req->rate = req->parent_rate / (req->m + 1) * (req->n + 1) /
> + (req->p + 1);
> +}
> +
> +static const struct clk_factors_config sun8i_pll2_config = {
> + .mshift = 0,
> + .mwidth = 5,
> + .nshift = 8,
> + .nwidth = 7,
> + .pshift = 16,
> + .pwidth = 4,
> +};
> +
> +static const struct factors_data sun8i_pll2_data __initconst = {
> + .enable = 31,
> + .table = &sun8i_pll2_config,
> + .getter = sun8i_pll2_factors,
> + .recalc = sun8i_pll2_recalc,
> +};
> +
> +static void __init sun8i_pll2_setup(struct device_node *node)
> +{
> + sunxi_factors_clk_setup(node, &sun8i_pll2_data);
> +}
> +CLK_OF_DECLARE(sun8i_pll2, "allwinner,sun8i-pll2-clk",
> + sun8i_pll2_setup);
How do you plan on supporting the multiple pll2 output?
Thanks,
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160410/1d3f6c27/attachment.sig>
More information about the linux-arm-kernel
mailing list