From: alexandre.belloni@free-electrons.com (Alexandre Belloni)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/7] clk: add clk-asm9260 driver
Date: Wed, 17 Sep 2014 15:54:41 +0200 [thread overview]
Message-ID: <20140917135440.GG27054@piout.net> (raw)
In-Reply-To: <1410646408-28901-5-git-send-email-linux@rempel-privat.de>
Hi,
Please have a look at https://lkml.org/lkml/2014/5/14/598 which describe
the preferred way of implementing clocks in the CCF where you only
declare the clock generator in the DT instead of each separate clocks.
On 14/09/2014 at 00:13:25 +0200, Oleksij Rempel wrote :
> Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
> ---
> drivers/clk/Makefile | 1 +
> drivers/clk/clk-asm9260.c | 159 ++++++++++++++++++++++++++++++++++++++++++++++
> 2 files changed, 160 insertions(+)
> create mode 100644 drivers/clk/clk-asm9260.c
>
> diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
> index 567f102..351dd48 100644
> --- a/drivers/clk/Makefile
> +++ b/drivers/clk/Makefile
> @@ -38,6 +38,7 @@ obj-$(CONFIG_ARCH_HI3xxx) += hisilicon/
> obj-$(CONFIG_ARCH_HIP04) += hisilicon/
> obj-$(CONFIG_ARCH_HIX5HD2) += hisilicon/
> obj-$(CONFIG_COMMON_CLK_KEYSTONE) += keystone/
> +obj-$(CONFIG_MACH_ASM9260) += clk-asm9260.o
> ifeq ($(CONFIG_COMMON_CLK), y)
> obj-$(CONFIG_ARCH_MMP) += mmp/
> endif
> diff --git a/drivers/clk/clk-asm9260.c b/drivers/clk/clk-asm9260.c
> new file mode 100644
> index 0000000..396cc09
> --- /dev/null
> +++ b/drivers/clk/clk-asm9260.c
> @@ -0,0 +1,159 @@
> +/*
> + * U300 clock implementation
> + * Copyright (C) 2007-2012 ST-Ericsson AB
> + * License terms: GNU General Public License (GPL) version 2
> + * Author: Linus Walleij <linus.walleij@stericsson.com>
> + * Author: Jonas Aaberg <jonas.aberg@stericsson.com>
> + */
> +#include <linux/clk.h>
> +#include <linux/clkdev.h>
> +#include <linux/err.h>
> +#include <linux/io.h>
> +#include <linux/clk-provider.h>
> +#include <linux/spinlock.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +
> +static DEFINE_SPINLOCK(asm9260_clk_lock);
> +
> +struct asm9260_clk {
> + void __iomem *reg;
> + char *parent_name;
> +};
> +
> +static void __iomem *asm9260_get_sreg(struct device_node *node)
> +{
> + u32 reg;
> + void __iomem *iomem;
> + struct device_node *srnp;
> + int ret;
> +
> + ret = of_property_read_u32(node, "reg", ®);
> + if (WARN_ON(ret))
> + return NULL;
> +
> + srnp = of_find_compatible_node(NULL, NULL, "alpscale,asm9260-sregs");
> + iomem = of_iomap(srnp, 0);
> + iomem += reg;
> +
> + return iomem;
> +}
> +
> +/*
> + * On this chip gate used to disable or to update clock
> + * after new source was selected
> + */
> +
> +static void __init asm9260_gate_init(struct device_node *node)
> +{
> + struct clk *clk;
> + const char *clk_name = node->name;
> + void __iomem *iomem;
> + const char *parent_name;
> + u32 bit;
> + int ret;
> +
> + iomem = asm9260_get_sreg(node);
> + parent_name = of_clk_get_parent_name(node, 0);
> +
> + ret = of_property_read_u32(node, "bit-index", &bit);
> + if (WARN_ON(ret))
> + return;
> +
> + clk = clk_register_gate(NULL, clk_name, parent_name,
> + CLK_SET_RATE_PARENT, iomem, bit, 0,
> + &asm9260_clk_lock);
> +
> + if (!IS_ERR(clk))
> + of_clk_add_provider(node, of_clk_src_simple_get, clk);
> +}
> +CLK_OF_DECLARE(asm9260_gate, "alpscale,asm9260-gate-clock", asm9260_gate_init);
> +
> +
> +static void __init asm9260_div_init(struct device_node *node)
> +{
> + struct clk *clk;
> + const char *clk_name = node->name;
> + void __iomem *iomem;
> + const char *parent_name;
> +
> + iomem = asm9260_get_sreg(node);
> +
> + parent_name = of_clk_get_parent_name(node, 0);
> + clk = clk_register_divider(NULL, clk_name, parent_name,
> + CLK_SET_RATE_PARENT, iomem, 0, 8, CLK_DIVIDER_ONE_BASED,
> + &asm9260_clk_lock);
> +
> + if (!IS_ERR(clk))
> + of_clk_add_provider(node, of_clk_src_simple_get, clk);
> +}
> +CLK_OF_DECLARE(asm9260_div, "alpscale,asm9260-div-clock", asm9260_div_init);
> +
> +/*
> + * Simple one bit MUX for two sources
> + */
> +static void __init asm9260_bimux_init(struct device_node *node)
> +{
> + struct clk *clk;
> + const char *clk_name = node->name;
> + u8 num_parents;
> + void __iomem *iomem;
> + const char **parent_names;
> + int ret, i;
> + u32 *table;
> +
> + iomem = asm9260_get_sreg(node);
> + if (!iomem)
> + return;
> +
> + num_parents = of_clk_get_parent_count(node);
> + if (WARN_ON(!num_parents || num_parents > 2))
> + return;
> +
> + parent_names = kzalloc(sizeof(char *) * num_parents, GFP_KERNEL);
> + if (WARN_ON(!parent_names))
> + return;
> +
> + table = kzalloc(sizeof(u32) * num_parents, GFP_KERNEL);
> + if (WARN_ON(!table))
> + return;
> +
> + ret = of_property_read_u32_array(node, "mux-table", table,
> + num_parents);
> + if (WARN_ON(ret))
> + return;
> +
> + for (i = 0; i < num_parents; i++)
> + parent_names[i] = of_clk_get_parent_name(node, i);
> +
> + clk = clk_register_mux_table(NULL, clk_name, parent_names,
> + num_parents, 0, iomem, 0, 1, 0, table,
> + &asm9260_clk_lock);
> +
> + if (!IS_ERR(clk))
> + of_clk_add_provider(node, of_clk_src_simple_get, clk);
> +}
> +CLK_OF_DECLARE(asm9260_bimux, "alpscale,asm9260-bimux-clock", asm9260_bimux_init);
> +
> +static void __init asm9260_pll_init(struct device_node *node)
> +{
> + struct clk *clk;
> + const char *clk_name = node->name;
> + u32 rate;
> + void __iomem *iomem;
> + const char *parent_name;
> + u32 accuracy = 0;
> +
> + iomem = asm9260_get_sreg(node);
> + rate = (ioread32(iomem) & 0xffff) * 1000000;
> +
> + parent_name = of_clk_get_parent_name(node, 0);
> + accuracy = clk_get_accuracy(__clk_lookup(parent_name));
> + clk = clk_register_fixed_rate_with_accuracy(NULL, clk_name, parent_name,
> + 0, rate,
> + accuracy);
> +
> + if (!IS_ERR(clk))
> + of_clk_add_provider(node, of_clk_src_simple_get, clk);
> +}
> +CLK_OF_DECLARE(asm9260_pll, "alpscale,asm9260-pll-clock", asm9260_pll_init);
> --
> 1.9.1
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
next prev parent reply other threads:[~2014-09-17 13:54 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-13 22:13 [PATCH 0/7] initial suport for Alpscale ASM9260 Oleksij Rempel
2014-09-13 22:13 ` [PATCH 1/7] ARM: add mach-asm9260 Oleksij Rempel
2014-09-14 7:12 ` Jason Cooper
2014-09-14 7:45 ` Oleksij Rempel
2014-09-14 9:05 ` Jason Cooper
2014-09-17 13:46 ` Alexandre Belloni
2014-09-17 13:53 ` Nicolas Ferre
2014-09-18 6:29 ` Oleksij Rempel
2014-09-13 22:13 ` [PATCH 2/7] add include/debug/asm9260.S Oleksij Rempel
2014-09-13 22:13 ` [PATCH 3/7] ARM: dts: add DT for Alpscale ASM9260 SoC Oleksij Rempel
2014-09-13 22:13 ` [PATCH 4/7] clk: add clk-asm9260 driver Oleksij Rempel
2014-09-17 13:54 ` Alexandre Belloni [this message]
2014-09-18 6:46 ` Oleksij Rempel
2014-09-18 7:56 ` Alexandre Belloni
2014-09-18 8:46 ` Oleksij Rempel
2014-09-20 18:06 ` Oleksij Rempel
2014-09-20 18:43 ` Alexandre Belloni
2014-09-13 22:13 ` [PATCH 5/7] clocksource: add asm9260_timer driver Oleksij Rempel
2014-09-13 22:13 ` [PATCH 6/7] irqchip: add irq-asm9260 driver Oleksij Rempel
2014-09-14 7:37 ` Jason Cooper
2014-09-15 5:52 ` Oleksij Rempel
2014-09-17 12:59 ` Jason Cooper
2014-09-13 22:13 ` [PATCH 7/7] tty/serial: add asm9260-serial driver Oleksij Rempel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140917135440.GG27054@piout.net \
--to=alexandre.belloni@free-electrons.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.