clk: rockchip: add a type from SGRF-controlled gate clocks
authorHeiko Stuebner <heiko@sntech.de>
Thu, 6 Jun 2019 08:05:40 +0000 (10:05 +0200)
committerHeiko Stuebner <heiko@sntech.de>
Fri, 14 Jun 2019 16:56:07 +0000 (18:56 +0200)
Some clk gates on Rockchip SoCs are part of the SGRF (secure general
register files) and thus only controllable from secure mode, with the
most prominent example being the watchdog.

In most cases we still want to define this as a real clock though,
to have complete clock tree and not reference the generic base-clock
from the devicetree.

So far we've just defined this as factor-1-1 clocks in the clock init,
so define a special clock-type for it so that this definition can be
part of the general tree-definition and save some boilerplate code.

Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/clk/rockchip/clk.h

index 1b527075543108256c4bca2d0aa960c482ae12f5..2a911923cf81a0c96da0be723292e2062db5315e 100644 (file)
@@ -820,6 +820,10 @@ struct rockchip_clk_branch {
                .gate_offset    = -1,                           \
        }
 
+/* SGRF clocks are only accessible from secure mode, so not controllable */
+#define SGRF_GATE(_id, cname, pname)                           \
+               FACTOR(_id, cname, pname, 0, 1, 1)
+
 struct rockchip_clk_provider *rockchip_clk_init(struct device_node *np,
                        void __iomem *base, unsigned long nr_clks);
 void rockchip_clk_of_add_provider(struct device_node *np,