clk: sunxi: Add sun6i/8i display support
authorJean-Francois Moine <moinejf@free.fr>
Wed, 30 Mar 2016 16:43:29 +0000 (18:43 +0200)
committerMaxime Ripard <maxime.ripard@free-electrons.com>
Thu, 21 Apr 2016 22:29:22 +0000 (00:29 +0200)
Add the clock type which is used by the sun6i/8i families for video display.

Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Documentation/devicetree/bindings/clock/sunxi.txt
drivers/clk/sunxi/clk-sunxi.c

index 834436fbe83d50539914108a79b0b814c144ad9e..9de34a83202308dfabdb16644fdc4c38fae6661f 100644 (file)
@@ -81,6 +81,7 @@ Required properties:
        "allwinner,sun9i-a80-usb-mod-clk" - for usb gates + resets on A80
        "allwinner,sun9i-a80-usb-phy-clk" - for usb phy gates + resets on A80
        "allwinner,sun4i-a10-ve-clk" - for the Video Engine clock
+       "allwinner,sun6i-a31-display-clk" - for the display clocks
 
 Required properties for all clocks:
 - reg : shall be the control register address for the clock.
index 91de0a0067734c184c26c92d49f08ce285ab6e8c..6ea7cf80a0ab5f472748e1b373a76c7dcb9c026f 100644 (file)
@@ -1127,3 +1127,41 @@ static void __init sun6i_pll6_clk_setup(struct device_node *node)
 }
 CLK_OF_DECLARE(sun6i_pll6, "allwinner,sun6i-a31-pll6-clk",
               sun6i_pll6_clk_setup);
+
+/*
+ * sun6i display
+ *
+ * rate = parent_rate / (m + 1);
+ */
+static void sun6i_display_factors(struct factors_request *req)
+{
+       u8 m;
+
+       if (req->rate > req->parent_rate)
+               req->rate = req->parent_rate;
+
+       m = DIV_ROUND_UP(req->parent_rate, req->rate);
+
+       req->rate = req->parent_rate / m;
+       req->m = m - 1;
+}
+
+static const struct clk_factors_config sun6i_display_config = {
+       .mshift = 0,
+       .mwidth = 4,
+};
+
+static const struct factors_data sun6i_display_data __initconst = {
+       .enable = 31,
+       .mux = 24,
+       .muxmask = BIT(2) | BIT(1) | BIT(0),
+       .table = &sun6i_display_config,
+       .getter = sun6i_display_factors,
+};
+
+static void __init sun6i_display_setup(struct device_node *node)
+{
+       sunxi_factors_clk_setup(node, &sun6i_display_data);
+}
+CLK_OF_DECLARE(sun6i_display, "allwinner,sun6i-a31-display-clk",
+              sun6i_display_setup);
This page took 0.026427 seconds and 5 git commands to generate.