Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'sunxi-clk-for-3.16-2' of https://github.com/mripard/linux into clk-next

Rebase of Emilio's clk-sunxi-for-3.16 on top of clk-next

Fixed a few compilation warnings exposed by a patch introduced during the 3.16
merge window.

Original tag message:

Allwinner sunXi SoCs clock changes

This pull contains some new code to add support for A31 clocks by Maxime
and Boris. It also reworks the driver a bit to avoid having a huge
single file when we have a full folder for ourselves, and separating
different functional units makes sense.

+661 -187
+4
Documentation/devicetree/bindings/clock/sunxi.txt
··· 20 20 "allwinner,sun5i-a13-ahb-gates-clk" - for the AHB gates on A13 21 21 "allwinner,sun5i-a10s-ahb-gates-clk" - for the AHB gates on A10s 22 22 "allwinner,sun7i-a20-ahb-gates-clk" - for the AHB gates on A20 23 + "allwinner,sun6i-a31-ar100-clk" - for the AR100 on A31 23 24 "allwinner,sun6i-a31-ahb1-mux-clk" - for the AHB1 multiplexer on A31 24 25 "allwinner,sun6i-a31-ahb1-gates-clk" - for the AHB1 gates on A31 25 26 "allwinner,sun4i-a10-apb0-clk" - for the APB0 clock 27 + "allwinner,sun6i-a31-apb0-clk" - for the APB0 clock on A31 26 28 "allwinner,sun4i-a10-apb0-gates-clk" - for the APB0 gates on A10 27 29 "allwinner,sun5i-a13-apb0-gates-clk" - for the APB0 gates on A13 28 30 "allwinner,sun5i-a10s-apb0-gates-clk" - for the APB0 gates on A10s 31 + "allwinner,sun6i-a31-apb0-gates-clk" - for the APB0 gates on A31 29 32 "allwinner,sun7i-a20-apb0-gates-clk" - for the APB0 gates on A20 30 33 "allwinner,sun4i-a10-apb1-clk" - for the APB1 clock 31 34 "allwinner,sun4i-a10-apb1-mux-clk" - for the APB1 clock muxing ··· 44 41 "allwinner,sun7i-a20-gmac-clk" - for the GMAC clock module on A20/A31 45 42 "allwinner,sun4i-a10-usb-clk" - for usb gates + resets on A10 / A20 46 43 "allwinner,sun5i-a13-usb-clk" - for usb gates + resets on A13 44 + "allwinner,sun6i-a31-usb-clk" - for usb gates + resets on A31 47 45 48 46 Required properties for all clocks: 49 47 - reg : shall be the control register address for the clock.
+4
drivers/clk/sunxi/Makefile
··· 3 3 # 4 4 5 5 obj-y += clk-sunxi.o clk-factors.o 6 + obj-y += clk-a10-hosc.o 7 + obj-y += clk-a20-gmac.o 8 + 9 + obj-$(CONFIG_MFD_SUN6I_PRCM) += clk-sun6i-ar100.o clk-sun6i-apb0.o clk-sun6i-apb0-gates.o
+73
drivers/clk/sunxi/clk-a10-hosc.c
··· 1 + /* 2 + * Copyright 2013 Emilio López 3 + * 4 + * Emilio López <emilio@elopez.com.ar> 5 + * 6 + * This program is free software; you can redistribute it and/or modify 7 + * it under the terms of the GNU General Public License as published by 8 + * the Free Software Foundation; either version 2 of the License, or 9 + * (at your option) any later version. 10 + * 11 + * This program is distributed in the hope that it will be useful, 12 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + * GNU General Public License for more details. 15 + */ 16 + 17 + #include <linux/clk-provider.h> 18 + #include <linux/clkdev.h> 19 + #include <linux/of.h> 20 + #include <linux/of_address.h> 21 + 22 + #define SUNXI_OSC24M_GATE 0 23 + 24 + static DEFINE_SPINLOCK(hosc_lock); 25 + 26 + static void __init sun4i_osc_clk_setup(struct device_node *node) 27 + { 28 + struct clk *clk; 29 + struct clk_fixed_rate *fixed; 30 + struct clk_gate *gate; 31 + const char *clk_name = node->name; 32 + u32 rate; 33 + 34 + if (of_property_read_u32(node, "clock-frequency", &rate)) 35 + return; 36 + 37 + /* allocate fixed-rate and gate clock structs */ 38 + fixed = kzalloc(sizeof(struct clk_fixed_rate), GFP_KERNEL); 39 + if (!fixed) 40 + return; 41 + gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL); 42 + if (!gate) 43 + goto err_free_fixed; 44 + 45 + of_property_read_string(node, "clock-output-names", &clk_name); 46 + 47 + /* set up gate and fixed rate properties */ 48 + gate->reg = of_iomap(node, 0); 49 + gate->bit_idx = SUNXI_OSC24M_GATE; 50 + gate->lock = &hosc_lock; 51 + fixed->fixed_rate = rate; 52 + 53 + clk = clk_register_composite(NULL, clk_name, 54 + NULL, 0, 55 + NULL, NULL, 56 + &fixed->hw, &clk_fixed_rate_ops, 57 + &gate->hw, &clk_gate_ops, 58 + CLK_IS_ROOT); 59 + 60 + if (IS_ERR(clk)) 61 + goto err_free_gate; 62 + 63 + of_clk_add_provider(node, of_clk_src_simple_get, clk); 64 + clk_register_clkdev(clk, clk_name, NULL); 65 + 66 + return; 67 + 68 + err_free_gate: 69 + kfree(gate); 70 + err_free_fixed: 71 + kfree(fixed); 72 + } 73 + CLK_OF_DECLARE(sun4i_osc, "allwinner,sun4i-a10-osc-clk", sun4i_osc_clk_setup);
+119
drivers/clk/sunxi/clk-a20-gmac.c
··· 1 + /* 2 + * Copyright 2013 Emilio López 3 + * Emilio López <emilio@elopez.com.ar> 4 + * 5 + * Copyright 2013 Chen-Yu Tsai 6 + * Chen-Yu Tsai <wens@csie.org> 7 + * 8 + * This program is free software; you can redistribute it and/or modify 9 + * it under the terms of the GNU General Public License as published by 10 + * the Free Software Foundation; either version 2 of the License, or 11 + * (at your option) any later version. 12 + * 13 + * This program is distributed in the hope that it will be useful, 14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 + * GNU General Public License for more details. 17 + */ 18 + 19 + #include <linux/clk-provider.h> 20 + #include <linux/clkdev.h> 21 + #include <linux/of.h> 22 + #include <linux/of_address.h> 23 + #include <linux/slab.h> 24 + 25 + static DEFINE_SPINLOCK(gmac_lock); 26 + 27 + /** 28 + * sun7i_a20_gmac_clk_setup - Setup function for A20/A31 GMAC clock module 29 + * 30 + * This clock looks something like this 31 + * ________________________ 32 + * MII TX clock from PHY >-----|___________ _________|----> to GMAC core 33 + * GMAC Int. RGMII TX clk >----|___________\__/__gate---|----> to PHY 34 + * Ext. 125MHz RGMII TX clk >--|__divider__/ | 35 + * |________________________| 36 + * 37 + * The external 125 MHz reference is optional, i.e. GMAC can use its 38 + * internal TX clock just fine. The A31 GMAC clock module does not have 39 + * the divider controls for the external reference. 40 + * 41 + * To keep it simple, let the GMAC use either the MII TX clock for MII mode, 42 + * and its internal TX clock for GMII and RGMII modes. The GMAC driver should 43 + * select the appropriate source and gate/ungate the output to the PHY. 44 + * 45 + * Only the GMAC should use this clock. Altering the clock so that it doesn't 46 + * match the GMAC's operation parameters will result in the GMAC not being 47 + * able to send traffic out. The GMAC driver should set the clock rate and 48 + * enable/disable this clock to configure the required state. The clock 49 + * driver then responds by auto-reparenting the clock. 50 + */ 51 + 52 + #define SUN7I_A20_GMAC_GPIT 2 53 + #define SUN7I_A20_GMAC_MASK 0x3 54 + #define SUN7I_A20_GMAC_PARENTS 2 55 + 56 + static void __init sun7i_a20_gmac_clk_setup(struct device_node *node) 57 + { 58 + struct clk *clk; 59 + struct clk_mux *mux; 60 + struct clk_gate *gate; 61 + const char *clk_name = node->name; 62 + const char *parents[SUN7I_A20_GMAC_PARENTS]; 63 + void *reg; 64 + 65 + if (of_property_read_string(node, "clock-output-names", &clk_name)) 66 + return; 67 + 68 + /* allocate mux and gate clock structs */ 69 + mux = kzalloc(sizeof(struct clk_mux), GFP_KERNEL); 70 + if (!mux) 71 + return; 72 + 73 + gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL); 74 + if (!gate) 75 + goto free_mux; 76 + 77 + /* gmac clock requires exactly 2 parents */ 78 + parents[0] = of_clk_get_parent_name(node, 0); 79 + parents[1] = of_clk_get_parent_name(node, 1); 80 + if (!parents[0] || !parents[1]) 81 + goto free_gate; 82 + 83 + reg = of_iomap(node, 0); 84 + if (!reg) 85 + goto free_gate; 86 + 87 + /* set up gate and fixed rate properties */ 88 + gate->reg = reg; 89 + gate->bit_idx = SUN7I_A20_GMAC_GPIT; 90 + gate->lock = &gmac_lock; 91 + mux->reg = reg; 92 + mux->mask = SUN7I_A20_GMAC_MASK; 93 + mux->flags = CLK_MUX_INDEX_BIT; 94 + mux->lock = &gmac_lock; 95 + 96 + clk = clk_register_composite(NULL, clk_name, 97 + parents, SUN7I_A20_GMAC_PARENTS, 98 + &mux->hw, &clk_mux_ops, 99 + NULL, NULL, 100 + &gate->hw, &clk_gate_ops, 101 + 0); 102 + 103 + if (IS_ERR(clk)) 104 + goto iounmap_reg; 105 + 106 + of_clk_add_provider(node, of_clk_src_simple_get, clk); 107 + clk_register_clkdev(clk, clk_name, NULL); 108 + 109 + return; 110 + 111 + iounmap_reg: 112 + iounmap(reg); 113 + free_gate: 114 + kfree(gate); 115 + free_mux: 116 + kfree(mux); 117 + } 118 + CLK_OF_DECLARE(sun7i_a20_gmac, "allwinner,sun7i-a20-gmac-clk", 119 + sun7i_a20_gmac_clk_setup);
+99
drivers/clk/sunxi/clk-sun6i-apb0-gates.c
··· 1 + /* 2 + * Copyright (C) 2014 Free Electrons 3 + * 4 + * License Terms: GNU General Public License v2 5 + * Author: Boris BREZILLON <boris.brezillon@free-electrons.com> 6 + * 7 + * Allwinner A31 APB0 clock gates driver 8 + * 9 + */ 10 + 11 + #include <linux/clk-provider.h> 12 + #include <linux/module.h> 13 + #include <linux/of.h> 14 + #include <linux/platform_device.h> 15 + 16 + #define SUN6I_APB0_GATES_MAX_SIZE 32 17 + 18 + static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev) 19 + { 20 + struct device_node *np = pdev->dev.of_node; 21 + struct clk_onecell_data *clk_data; 22 + const char *clk_parent; 23 + const char *clk_name; 24 + struct resource *r; 25 + void __iomem *reg; 26 + int gate_id; 27 + int ngates; 28 + int i; 29 + 30 + r = platform_get_resource(pdev, IORESOURCE_MEM, 0); 31 + reg = devm_ioremap_resource(&pdev->dev, r); 32 + if (!reg) 33 + return PTR_ERR(reg); 34 + 35 + clk_parent = of_clk_get_parent_name(np, 0); 36 + if (!clk_parent) 37 + return -EINVAL; 38 + 39 + ngates = of_property_count_strings(np, "clock-output-names"); 40 + if (ngates < 0) 41 + return ngates; 42 + 43 + if (!ngates || ngates > SUN6I_APB0_GATES_MAX_SIZE) 44 + return -EINVAL; 45 + 46 + clk_data = devm_kzalloc(&pdev->dev, sizeof(struct clk_onecell_data), 47 + GFP_KERNEL); 48 + if (!clk_data) 49 + return -ENOMEM; 50 + 51 + clk_data->clks = devm_kzalloc(&pdev->dev, 52 + SUN6I_APB0_GATES_MAX_SIZE * 53 + sizeof(struct clk *), 54 + GFP_KERNEL); 55 + if (!clk_data->clks) 56 + return -ENOMEM; 57 + 58 + for (i = 0; i < ngates; i++) { 59 + of_property_read_string_index(np, "clock-output-names", 60 + i, &clk_name); 61 + 62 + gate_id = i; 63 + of_property_read_u32_index(np, "clock-indices", i, &gate_id); 64 + 65 + WARN_ON(gate_id >= SUN6I_APB0_GATES_MAX_SIZE); 66 + if (gate_id >= SUN6I_APB0_GATES_MAX_SIZE) 67 + continue; 68 + 69 + clk_data->clks[gate_id] = clk_register_gate(&pdev->dev, 70 + clk_name, 71 + clk_parent, 0, 72 + reg, gate_id, 73 + 0, NULL); 74 + WARN_ON(IS_ERR(clk_data->clks[gate_id])); 75 + } 76 + 77 + clk_data->clk_num = ngates; 78 + 79 + return of_clk_add_provider(np, of_clk_src_onecell_get, clk_data); 80 + } 81 + 82 + const struct of_device_id sun6i_a31_apb0_gates_clk_dt_ids[] = { 83 + { .compatible = "allwinner,sun6i-a31-apb0-gates-clk" }, 84 + { /* sentinel */ } 85 + }; 86 + 87 + static struct platform_driver sun6i_a31_apb0_gates_clk_driver = { 88 + .driver = { 89 + .name = "sun6i-a31-apb0-gates-clk", 90 + .owner = THIS_MODULE, 91 + .of_match_table = sun6i_a31_apb0_gates_clk_dt_ids, 92 + }, 93 + .probe = sun6i_a31_apb0_gates_clk_probe, 94 + }; 95 + module_platform_driver(sun6i_a31_apb0_gates_clk_driver); 96 + 97 + MODULE_AUTHOR("Boris BREZILLON <boris.brezillon@free-electrons.com>"); 98 + MODULE_DESCRIPTION("Allwinner A31 APB0 gate clocks driver"); 99 + MODULE_LICENSE("GPL v2");
+77
drivers/clk/sunxi/clk-sun6i-apb0.c
··· 1 + /* 2 + * Copyright (C) 2014 Free Electrons 3 + * 4 + * License Terms: GNU General Public License v2 5 + * Author: Boris BREZILLON <boris.brezillon@free-electrons.com> 6 + * 7 + * Allwinner A31 APB0 clock driver 8 + * 9 + */ 10 + 11 + #include <linux/clk-provider.h> 12 + #include <linux/module.h> 13 + #include <linux/of.h> 14 + #include <linux/platform_device.h> 15 + 16 + /* 17 + * The APB0 clk has a configurable divisor. 18 + * 19 + * We must use a clk_div_table and not a regular power of 2 20 + * divisor here, because the first 2 values divide the clock 21 + * by 2. 22 + */ 23 + static const struct clk_div_table sun6i_a31_apb0_divs[] = { 24 + { .val = 0, .div = 2, }, 25 + { .val = 1, .div = 2, }, 26 + { .val = 2, .div = 4, }, 27 + { .val = 3, .div = 8, }, 28 + { /* sentinel */ }, 29 + }; 30 + 31 + static int sun6i_a31_apb0_clk_probe(struct platform_device *pdev) 32 + { 33 + struct device_node *np = pdev->dev.of_node; 34 + const char *clk_name = np->name; 35 + const char *clk_parent; 36 + struct resource *r; 37 + void __iomem *reg; 38 + struct clk *clk; 39 + 40 + r = platform_get_resource(pdev, IORESOURCE_MEM, 0); 41 + reg = devm_ioremap_resource(&pdev->dev, r); 42 + if (IS_ERR(reg)) 43 + return PTR_ERR(reg); 44 + 45 + clk_parent = of_clk_get_parent_name(np, 0); 46 + if (!clk_parent) 47 + return -EINVAL; 48 + 49 + of_property_read_string(np, "clock-output-names", &clk_name); 50 + 51 + clk = clk_register_divider_table(&pdev->dev, clk_name, clk_parent, 52 + 0, reg, 0, 2, 0, sun6i_a31_apb0_divs, 53 + NULL); 54 + if (IS_ERR(clk)) 55 + return PTR_ERR(clk); 56 + 57 + return of_clk_add_provider(np, of_clk_src_simple_get, clk); 58 + } 59 + 60 + const struct of_device_id sun6i_a31_apb0_clk_dt_ids[] = { 61 + { .compatible = "allwinner,sun6i-a31-apb0-clk" }, 62 + { /* sentinel */ } 63 + }; 64 + 65 + static struct platform_driver sun6i_a31_apb0_clk_driver = { 66 + .driver = { 67 + .name = "sun6i-a31-apb0-clk", 68 + .owner = THIS_MODULE, 69 + .of_match_table = sun6i_a31_apb0_clk_dt_ids, 70 + }, 71 + .probe = sun6i_a31_apb0_clk_probe, 72 + }; 73 + module_platform_driver(sun6i_a31_apb0_clk_driver); 74 + 75 + MODULE_AUTHOR("Boris BREZILLON <boris.brezillon@free-electrons.com>"); 76 + MODULE_DESCRIPTION("Allwinner A31 APB0 clock Driver"); 77 + MODULE_LICENSE("GPL v2");
+233
drivers/clk/sunxi/clk-sun6i-ar100.c
··· 1 + /* 2 + * Copyright (C) 2014 Free Electrons 3 + * 4 + * License Terms: GNU General Public License v2 5 + * Author: Boris BREZILLON <boris.brezillon@free-electrons.com> 6 + * 7 + * Allwinner A31 AR100 clock driver 8 + * 9 + */ 10 + 11 + #include <linux/clk-provider.h> 12 + #include <linux/module.h> 13 + #include <linux/of.h> 14 + #include <linux/platform_device.h> 15 + 16 + #define SUN6I_AR100_MAX_PARENTS 4 17 + #define SUN6I_AR100_SHIFT_MASK 0x3 18 + #define SUN6I_AR100_SHIFT_MAX SUN6I_AR100_SHIFT_MASK 19 + #define SUN6I_AR100_SHIFT_SHIFT 4 20 + #define SUN6I_AR100_DIV_MASK 0x1f 21 + #define SUN6I_AR100_DIV_MAX (SUN6I_AR100_DIV_MASK + 1) 22 + #define SUN6I_AR100_DIV_SHIFT 8 23 + #define SUN6I_AR100_MUX_MASK 0x3 24 + #define SUN6I_AR100_MUX_SHIFT 16 25 + 26 + struct ar100_clk { 27 + struct clk_hw hw; 28 + void __iomem *reg; 29 + }; 30 + 31 + static inline struct ar100_clk *to_ar100_clk(struct clk_hw *hw) 32 + { 33 + return container_of(hw, struct ar100_clk, hw); 34 + } 35 + 36 + static unsigned long ar100_recalc_rate(struct clk_hw *hw, 37 + unsigned long parent_rate) 38 + { 39 + struct ar100_clk *clk = to_ar100_clk(hw); 40 + u32 val = readl(clk->reg); 41 + int shift = (val >> SUN6I_AR100_SHIFT_SHIFT) & SUN6I_AR100_SHIFT_MASK; 42 + int div = (val >> SUN6I_AR100_DIV_SHIFT) & SUN6I_AR100_DIV_MASK; 43 + 44 + return (parent_rate >> shift) / (div + 1); 45 + } 46 + 47 + static long ar100_determine_rate(struct clk_hw *hw, unsigned long rate, 48 + unsigned long *best_parent_rate, 49 + struct clk **best_parent_clk) 50 + { 51 + int nparents = __clk_get_num_parents(hw->clk); 52 + long best_rate = -EINVAL; 53 + int i; 54 + 55 + *best_parent_clk = NULL; 56 + 57 + for (i = 0; i < nparents; i++) { 58 + unsigned long parent_rate; 59 + unsigned long tmp_rate; 60 + struct clk *parent; 61 + unsigned long div; 62 + int shift; 63 + 64 + parent = clk_get_parent_by_index(hw->clk, i); 65 + parent_rate = __clk_get_rate(parent); 66 + div = DIV_ROUND_UP(parent_rate, rate); 67 + 68 + /* 69 + * The AR100 clk contains 2 divisors: 70 + * - one power of 2 divisor 71 + * - one regular divisor 72 + * 73 + * First check if we can safely shift (or divide by a power 74 + * of 2) without losing precision on the requested rate. 75 + */ 76 + shift = ffs(div) - 1; 77 + if (shift > SUN6I_AR100_SHIFT_MAX) 78 + shift = SUN6I_AR100_SHIFT_MAX; 79 + 80 + div >>= shift; 81 + 82 + /* 83 + * Then if the divisor is still bigger than what the HW 84 + * actually supports, use a bigger shift (or power of 2 85 + * divider) value and accept to lose some precision. 86 + */ 87 + while (div > SUN6I_AR100_DIV_MAX) { 88 + shift++; 89 + div >>= 1; 90 + if (shift > SUN6I_AR100_SHIFT_MAX) 91 + break; 92 + } 93 + 94 + /* 95 + * If the shift value (or power of 2 divider) is bigger 96 + * than what the HW actually support, skip this parent. 97 + */ 98 + if (shift > SUN6I_AR100_SHIFT_MAX) 99 + continue; 100 + 101 + tmp_rate = (parent_rate >> shift) / div; 102 + if (!*best_parent_clk || tmp_rate > best_rate) { 103 + *best_parent_clk = parent; 104 + *best_parent_rate = parent_rate; 105 + best_rate = tmp_rate; 106 + } 107 + } 108 + 109 + return best_rate; 110 + } 111 + 112 + static int ar100_set_parent(struct clk_hw *hw, u8 index) 113 + { 114 + struct ar100_clk *clk = to_ar100_clk(hw); 115 + u32 val = readl(clk->reg); 116 + 117 + if (index >= SUN6I_AR100_MAX_PARENTS) 118 + return -EINVAL; 119 + 120 + val &= ~(SUN6I_AR100_MUX_MASK << SUN6I_AR100_MUX_SHIFT); 121 + val |= (index << SUN6I_AR100_MUX_SHIFT); 122 + writel(val, clk->reg); 123 + 124 + return 0; 125 + } 126 + 127 + static u8 ar100_get_parent(struct clk_hw *hw) 128 + { 129 + struct ar100_clk *clk = to_ar100_clk(hw); 130 + return (readl(clk->reg) >> SUN6I_AR100_MUX_SHIFT) & 131 + SUN6I_AR100_MUX_MASK; 132 + } 133 + 134 + static int ar100_set_rate(struct clk_hw *hw, unsigned long rate, 135 + unsigned long parent_rate) 136 + { 137 + unsigned long div = parent_rate / rate; 138 + struct ar100_clk *clk = to_ar100_clk(hw); 139 + u32 val = readl(clk->reg); 140 + int shift; 141 + 142 + if (parent_rate % rate) 143 + return -EINVAL; 144 + 145 + shift = ffs(div) - 1; 146 + if (shift > SUN6I_AR100_SHIFT_MAX) 147 + shift = SUN6I_AR100_SHIFT_MAX; 148 + 149 + div >>= shift; 150 + 151 + if (div > SUN6I_AR100_DIV_MAX) 152 + return -EINVAL; 153 + 154 + val &= ~((SUN6I_AR100_SHIFT_MASK << SUN6I_AR100_SHIFT_SHIFT) | 155 + (SUN6I_AR100_DIV_MASK << SUN6I_AR100_DIV_SHIFT)); 156 + val |= (shift << SUN6I_AR100_SHIFT_SHIFT) | 157 + (div << SUN6I_AR100_DIV_SHIFT); 158 + writel(val, clk->reg); 159 + 160 + return 0; 161 + } 162 + 163 + struct clk_ops ar100_ops = { 164 + .recalc_rate = ar100_recalc_rate, 165 + .determine_rate = ar100_determine_rate, 166 + .set_parent = ar100_set_parent, 167 + .get_parent = ar100_get_parent, 168 + .set_rate = ar100_set_rate, 169 + }; 170 + 171 + static int sun6i_a31_ar100_clk_probe(struct platform_device *pdev) 172 + { 173 + const char *parents[SUN6I_AR100_MAX_PARENTS]; 174 + struct device_node *np = pdev->dev.of_node; 175 + const char *clk_name = np->name; 176 + struct clk_init_data init; 177 + struct ar100_clk *ar100; 178 + struct resource *r; 179 + struct clk *clk; 180 + int nparents; 181 + int i; 182 + 183 + ar100 = devm_kzalloc(&pdev->dev, sizeof(*ar100), GFP_KERNEL); 184 + if (!ar100) 185 + return -ENOMEM; 186 + 187 + r = platform_get_resource(pdev, IORESOURCE_MEM, 0); 188 + ar100->reg = devm_ioremap_resource(&pdev->dev, r); 189 + if (IS_ERR(ar100->reg)) 190 + return PTR_ERR(ar100->reg); 191 + 192 + nparents = of_clk_get_parent_count(np); 193 + if (nparents > SUN6I_AR100_MAX_PARENTS) 194 + nparents = SUN6I_AR100_MAX_PARENTS; 195 + 196 + for (i = 0; i < nparents; i++) 197 + parents[i] = of_clk_get_parent_name(np, i); 198 + 199 + of_property_read_string(np, "clock-output-names", &clk_name); 200 + 201 + init.name = clk_name; 202 + init.ops = &ar100_ops; 203 + init.parent_names = parents; 204 + init.num_parents = nparents; 205 + init.flags = 0; 206 + 207 + ar100->hw.init = &init; 208 + 209 + clk = clk_register(&pdev->dev, &ar100->hw); 210 + if (IS_ERR(clk)) 211 + return PTR_ERR(clk); 212 + 213 + return of_clk_add_provider(np, of_clk_src_simple_get, clk); 214 + } 215 + 216 + const struct of_device_id sun6i_a31_ar100_clk_dt_ids[] = { 217 + { .compatible = "allwinner,sun6i-a31-ar100-clk" }, 218 + { /* sentinel */ } 219 + }; 220 + 221 + static struct platform_driver sun6i_a31_ar100_clk_driver = { 222 + .driver = { 223 + .name = "sun6i-a31-ar100-clk", 224 + .owner = THIS_MODULE, 225 + .of_match_table = sun6i_a31_ar100_clk_dt_ids, 226 + }, 227 + .probe = sun6i_a31_ar100_clk_probe, 228 + }; 229 + module_platform_driver(sun6i_a31_ar100_clk_driver); 230 + 231 + MODULE_AUTHOR("Boris BREZILLON <boris.brezillon@free-electrons.com>"); 232 + MODULE_DESCRIPTION("Allwinner A31 AR100 clock Driver"); 233 + MODULE_LICENSE("GPL v2");
+52 -187
drivers/clk/sunxi/clk-sunxi.c
··· 28 28 #define SUNXI_MAX_PARENTS 5 29 29 30 30 /** 31 - * sun4i_osc_clk_setup() - Setup function for gatable oscillator 32 - */ 33 - 34 - #define SUNXI_OSC24M_GATE 0 35 - 36 - static void __init sun4i_osc_clk_setup(struct device_node *node) 37 - { 38 - struct clk *clk; 39 - struct clk_fixed_rate *fixed; 40 - struct clk_gate *gate; 41 - const char *clk_name = node->name; 42 - u32 rate; 43 - 44 - if (of_property_read_u32(node, "clock-frequency", &rate)) 45 - return; 46 - 47 - /* allocate fixed-rate and gate clock structs */ 48 - fixed = kzalloc(sizeof(struct clk_fixed_rate), GFP_KERNEL); 49 - if (!fixed) 50 - return; 51 - gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL); 52 - if (!gate) 53 - goto err_free_fixed; 54 - 55 - of_property_read_string(node, "clock-output-names", &clk_name); 56 - 57 - /* set up gate and fixed rate properties */ 58 - gate->reg = of_iomap(node, 0); 59 - gate->bit_idx = SUNXI_OSC24M_GATE; 60 - gate->lock = &clk_lock; 61 - fixed->fixed_rate = rate; 62 - 63 - clk = clk_register_composite(NULL, clk_name, 64 - NULL, 0, 65 - NULL, NULL, 66 - &fixed->hw, &clk_fixed_rate_ops, 67 - &gate->hw, &clk_gate_ops, 68 - CLK_IS_ROOT); 69 - 70 - if (IS_ERR(clk)) 71 - goto err_free_gate; 72 - 73 - of_clk_add_provider(node, of_clk_src_simple_get, clk); 74 - clk_register_clkdev(clk, clk_name, NULL); 75 - 76 - return; 77 - 78 - err_free_gate: 79 - kfree(gate); 80 - err_free_fixed: 81 - kfree(fixed); 82 - } 83 - CLK_OF_DECLARE(sun4i_osc, "allwinner,sun4i-a10-osc-clk", sun4i_osc_clk_setup); 84 - 85 - 86 - 87 - /** 88 31 * sun4i_get_pll1_factors() - calculates n, k, m, p factors for PLL1 89 32 * PLL1 rate is calculated as follows 90 33 * rate = (parent_rate * n * (k + 1) >> p) / (m + 1); ··· 350 407 *m = calcm - 1; 351 408 *p = calcp; 352 409 } 353 - 354 - 355 - 356 - /** 357 - * sun7i_a20_gmac_clk_setup - Setup function for A20/A31 GMAC clock module 358 - * 359 - * This clock looks something like this 360 - * ________________________ 361 - * MII TX clock from PHY >-----|___________ _________|----> to GMAC core 362 - * GMAC Int. RGMII TX clk >----|___________\__/__gate---|----> to PHY 363 - * Ext. 125MHz RGMII TX clk >--|__divider__/ | 364 - * |________________________| 365 - * 366 - * The external 125 MHz reference is optional, i.e. GMAC can use its 367 - * internal TX clock just fine. The A31 GMAC clock module does not have 368 - * the divider controls for the external reference. 369 - * 370 - * To keep it simple, let the GMAC use either the MII TX clock for MII mode, 371 - * and its internal TX clock for GMII and RGMII modes. The GMAC driver should 372 - * select the appropriate source and gate/ungate the output to the PHY. 373 - * 374 - * Only the GMAC should use this clock. Altering the clock so that it doesn't 375 - * match the GMAC's operation parameters will result in the GMAC not being 376 - * able to send traffic out. The GMAC driver should set the clock rate and 377 - * enable/disable this clock to configure the required state. The clock 378 - * driver then responds by auto-reparenting the clock. 379 - */ 380 - 381 - #define SUN7I_A20_GMAC_GPIT 2 382 - #define SUN7I_A20_GMAC_MASK 0x3 383 - #define SUN7I_A20_GMAC_PARENTS 2 384 - 385 - static void __init sun7i_a20_gmac_clk_setup(struct device_node *node) 386 - { 387 - struct clk *clk; 388 - struct clk_mux *mux; 389 - struct clk_gate *gate; 390 - const char *clk_name = node->name; 391 - const char *parents[SUN7I_A20_GMAC_PARENTS]; 392 - void *reg; 393 - 394 - if (of_property_read_string(node, "clock-output-names", &clk_name)) 395 - return; 396 - 397 - /* allocate mux and gate clock structs */ 398 - mux = kzalloc(sizeof(struct clk_mux), GFP_KERNEL); 399 - if (!mux) 400 - return; 401 - 402 - gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL); 403 - if (!gate) 404 - goto free_mux; 405 - 406 - /* gmac clock requires exactly 2 parents */ 407 - parents[0] = of_clk_get_parent_name(node, 0); 408 - parents[1] = of_clk_get_parent_name(node, 1); 409 - if (!parents[0] || !parents[1]) 410 - goto free_gate; 411 - 412 - reg = of_iomap(node, 0); 413 - if (!reg) 414 - goto free_gate; 415 - 416 - /* set up gate and fixed rate properties */ 417 - gate->reg = reg; 418 - gate->bit_idx = SUN7I_A20_GMAC_GPIT; 419 - gate->lock = &clk_lock; 420 - mux->reg = reg; 421 - mux->mask = SUN7I_A20_GMAC_MASK; 422 - mux->flags = CLK_MUX_INDEX_BIT; 423 - mux->lock = &clk_lock; 424 - 425 - clk = clk_register_composite(NULL, clk_name, 426 - parents, SUN7I_A20_GMAC_PARENTS, 427 - &mux->hw, &clk_mux_ops, 428 - NULL, NULL, 429 - &gate->hw, &clk_gate_ops, 430 - 0); 431 - 432 - if (IS_ERR(clk)) 433 - goto iounmap_reg; 434 - 435 - of_clk_add_provider(node, of_clk_src_simple_get, clk); 436 - clk_register_clkdev(clk, clk_name, NULL); 437 - 438 - return; 439 - 440 - iounmap_reg: 441 - iounmap(reg); 442 - free_gate: 443 - kfree(gate); 444 - free_mux: 445 - kfree(mux); 446 - } 447 - CLK_OF_DECLARE(sun7i_a20_gmac, "allwinner,sun7i-a20-gmac-clk", 448 - sun7i_a20_gmac_clk_setup); 449 - 450 - 451 410 452 411 /** 453 412 * clk_sunxi_mmc_phase_control() - configures MMC clock phase control ··· 854 1009 .reset_mask = 0x03, 855 1010 }; 856 1011 1012 + static const struct gates_data sun6i_a31_usb_gates_data __initconst = { 1013 + .mask = { BIT(18) | BIT(17) | BIT(16) | BIT(10) | BIT(9) | BIT(8) }, 1014 + .reset_mask = BIT(2) | BIT(1) | BIT(0), 1015 + }; 1016 + 857 1017 static void __init sunxi_gates_clk_setup(struct device_node *node, 858 1018 struct gates_data *data) 859 1019 { ··· 1154 1304 {.compatible = "allwinner,sun6i-a31-apb2-gates-clk", .data = &sun6i_a31_apb2_gates_data,}, 1155 1305 {.compatible = "allwinner,sun4i-a10-usb-clk", .data = &sun4i_a10_usb_gates_data,}, 1156 1306 {.compatible = "allwinner,sun5i-a13-usb-clk", .data = &sun5i_a13_usb_gates_data,}, 1307 + {.compatible = "allwinner,sun6i-a31-usb-clk", .data = &sun6i_a31_usb_gates_data,}, 1157 1308 {} 1158 1309 }; 1159 1310 ··· 1172 1321 } 1173 1322 } 1174 1323 1175 - /** 1176 - * System clock protection 1177 - * 1178 - * By enabling these critical clocks, we prevent their accidental gating 1179 - * by the framework 1180 - */ 1181 - static void __init sunxi_clock_protect(void) 1324 + static void __init sunxi_init_clocks(const char *clocks[], int nclocks) 1182 1325 { 1183 - struct clk *clk; 1326 + unsigned int i; 1184 1327 1185 - /* memory bus clock - sun5i+ */ 1186 - clk = clk_get(NULL, "mbus"); 1187 - if (!IS_ERR(clk)) { 1188 - clk_prepare_enable(clk); 1189 - clk_put(clk); 1190 - } 1191 - 1192 - /* DDR clock - sun4i+ */ 1193 - clk = clk_get(NULL, "pll5_ddr"); 1194 - if (!IS_ERR(clk)) { 1195 - clk_prepare_enable(clk); 1196 - clk_put(clk); 1197 - } 1198 - } 1199 - 1200 - static void __init sunxi_init_clocks(struct device_node *np) 1201 - { 1202 1328 /* Register factor clocks */ 1203 1329 of_sunxi_table_clock_setup(clk_factors_match, sunxi_factors_clk_setup); 1204 1330 ··· 1191 1363 /* Register gate clocks */ 1192 1364 of_sunxi_table_clock_setup(clk_gates_match, sunxi_gates_clk_setup); 1193 1365 1194 - /* Enable core system clocks */ 1195 - sunxi_clock_protect(); 1366 + /* Protect the clocks that needs to stay on */ 1367 + for (i = 0; i < nclocks; i++) { 1368 + struct clk *clk = clk_get(NULL, clocks[i]); 1369 + 1370 + if (!IS_ERR(clk)) 1371 + clk_prepare_enable(clk); 1372 + } 1196 1373 } 1197 - CLK_OF_DECLARE(sun4i_a10_clk_init, "allwinner,sun4i-a10", sunxi_init_clocks); 1198 - CLK_OF_DECLARE(sun5i_a10s_clk_init, "allwinner,sun5i-a10s", sunxi_init_clocks); 1199 - CLK_OF_DECLARE(sun5i_a13_clk_init, "allwinner,sun5i-a13", sunxi_init_clocks); 1200 - CLK_OF_DECLARE(sun6i_a31_clk_init, "allwinner,sun6i-a31", sunxi_init_clocks); 1201 - CLK_OF_DECLARE(sun7i_a20_clk_init, "allwinner,sun7i-a20", sunxi_init_clocks); 1374 + 1375 + static const char *sun4i_a10_critical_clocks[] __initdata = { 1376 + "pll5_ddr", 1377 + }; 1378 + 1379 + static void __init sun4i_a10_init_clocks(struct device_node *node) 1380 + { 1381 + sunxi_init_clocks(sun4i_a10_critical_clocks, 1382 + ARRAY_SIZE(sun4i_a10_critical_clocks)); 1383 + } 1384 + CLK_OF_DECLARE(sun4i_a10_clk_init, "allwinner,sun4i-a10", sun4i_a10_init_clocks); 1385 + 1386 + static const char *sun5i_critical_clocks[] __initdata = { 1387 + "mbus", 1388 + "pll5_ddr", 1389 + }; 1390 + 1391 + static void __init sun5i_init_clocks(struct device_node *node) 1392 + { 1393 + sunxi_init_clocks(sun5i_critical_clocks, 1394 + ARRAY_SIZE(sun5i_critical_clocks)); 1395 + } 1396 + CLK_OF_DECLARE(sun5i_a10s_clk_init, "allwinner,sun5i-a10s", sun5i_init_clocks); 1397 + CLK_OF_DECLARE(sun5i_a13_clk_init, "allwinner,sun5i-a13", sun5i_init_clocks); 1398 + CLK_OF_DECLARE(sun7i_a20_clk_init, "allwinner,sun7i-a20", sun5i_init_clocks); 1399 + 1400 + static const char *sun6i_critical_clocks[] __initdata = { 1401 + "cpu", 1402 + "ahb1_sdram", 1403 + }; 1404 + 1405 + static void __init sun6i_init_clocks(struct device_node *node) 1406 + { 1407 + sunxi_init_clocks(sun6i_critical_clocks, 1408 + ARRAY_SIZE(sun6i_critical_clocks)); 1409 + } 1410 + CLK_OF_DECLARE(sun6i_a31_clk_init, "allwinner,sun6i-a31", sun6i_init_clocks);