Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | // SPDX-License-Identifier: GPL-2.0-only /* * Hisilicon hi6220 SoC divider clock driver * * Copyright (c) 2015 Hisilicon Limited. * * Author: Bintian Wang <bintian.wang@huawei.com> */ #include <linux/kernel.h> #include <linux/clk-provider.h> #include <linux/slab.h> #include <linux/io.h> #include <linux/err.h> #include <linux/spinlock.h> #include "clk.h" #define div_mask(width) ((1 << (width)) - 1) /** * struct hi6220_clk_divider - divider clock for hi6220 * * @hw: handle between common and hardware-specific interfaces * @reg: register containing divider * @shift: shift to the divider bit field * @width: width of the divider bit field * @mask: mask for setting divider rate * @table: the div table that the divider supports * @lock: register lock */ struct hi6220_clk_divider { struct clk_hw hw; void __iomem *reg; u8 shift; u8 width; u32 mask; const struct clk_div_table *table; spinlock_t *lock; }; #define to_hi6220_clk_divider(_hw) \ container_of(_hw, struct hi6220_clk_divider, hw) static unsigned long hi6220_clkdiv_recalc_rate(struct clk_hw *hw, unsigned long parent_rate) { unsigned int val; struct hi6220_clk_divider *dclk = to_hi6220_clk_divider(hw); val = readl_relaxed(dclk->reg) >> dclk->shift; val &= div_mask(dclk->width); return divider_recalc_rate(hw, parent_rate, val, dclk->table, CLK_DIVIDER_ROUND_CLOSEST, dclk->width); } static long hi6220_clkdiv_round_rate(struct clk_hw *hw, unsigned long rate, unsigned long *prate) { struct hi6220_clk_divider *dclk = to_hi6220_clk_divider(hw); return divider_round_rate(hw, rate, prate, dclk->table, dclk->width, CLK_DIVIDER_ROUND_CLOSEST); } static int hi6220_clkdiv_set_rate(struct clk_hw *hw, unsigned long rate, unsigned long parent_rate) { int value; unsigned long flags = 0; u32 data; struct hi6220_clk_divider *dclk = to_hi6220_clk_divider(hw); value = divider_get_val(rate, parent_rate, dclk->table, dclk->width, CLK_DIVIDER_ROUND_CLOSEST); if (dclk->lock) spin_lock_irqsave(dclk->lock, flags); data = readl_relaxed(dclk->reg); data &= ~(div_mask(dclk->width) << dclk->shift); data |= value << dclk->shift; data |= dclk->mask; writel_relaxed(data, dclk->reg); if (dclk->lock) spin_unlock_irqrestore(dclk->lock, flags); return 0; } static const struct clk_ops hi6220_clkdiv_ops = { .recalc_rate = hi6220_clkdiv_recalc_rate, .round_rate = hi6220_clkdiv_round_rate, .set_rate = hi6220_clkdiv_set_rate, }; struct clk *hi6220_register_clkdiv(struct device *dev, const char *name, const char *parent_name, unsigned long flags, void __iomem *reg, u8 shift, u8 width, u32 mask_bit, spinlock_t *lock) { struct hi6220_clk_divider *div; struct clk *clk; struct clk_init_data init; struct clk_div_table *table; u32 max_div, min_div; int i; /* allocate the divider */ div = kzalloc(sizeof(*div), GFP_KERNEL); if (!div) return ERR_PTR(-ENOMEM); /* Init the divider table */ max_div = div_mask(width) + 1; min_div = 1; table = kcalloc(max_div + 1, sizeof(*table), GFP_KERNEL); if (!table) { kfree(div); return ERR_PTR(-ENOMEM); } for (i = 0; i < max_div; i++) { table[i].div = min_div + i; table[i].val = table[i].div - 1; } init.name = name; init.ops = &hi6220_clkdiv_ops; init.flags = flags; init.parent_names = parent_name ? &parent_name : NULL; init.num_parents = parent_name ? 1 : 0; /* struct hi6220_clk_divider assignments */ div->reg = reg; div->shift = shift; div->width = width; div->mask = mask_bit ? BIT(mask_bit) : 0; div->lock = lock; div->hw.init = &init; div->table = table; /* register the clock */ clk = clk_register(dev, &div->hw); if (IS_ERR(clk)) { kfree(table); kfree(div); } return clk; } |