Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com> |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | #include <linux/clk-provider.h> |
| 12 | #include <linux/clkdev.h> |
| 13 | #include <linux/clk/at91_pmc.h> |
| 14 | #include <linux/of.h> |
| 15 | #include <linux/of_address.h> |
| 16 | #include <linux/io.h> |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 17 | #include <linux/irq.h> |
| 18 | #include <linux/of_irq.h> |
| 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/wait.h> |
| 21 | #include <linux/sched.h> |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 22 | |
| 23 | #include "pmc.h" |
| 24 | |
| 25 | #define SYSTEM_MAX_ID 31 |
| 26 | |
| 27 | #define SYSTEM_MAX_NAME_SZ 32 |
| 28 | |
| 29 | #define to_clk_system(hw) container_of(hw, struct clk_system, hw) |
| 30 | struct clk_system { |
| 31 | struct clk_hw hw; |
| 32 | struct at91_pmc *pmc; |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 33 | unsigned int irq; |
| 34 | wait_queue_head_t wait; |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 35 | u8 id; |
| 36 | }; |
| 37 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 38 | static inline int is_pck(int id) |
| 39 | { |
| 40 | return (id >= 8) && (id <= 15); |
| 41 | } |
| 42 | static irqreturn_t clk_system_irq_handler(int irq, void *dev_id) |
| 43 | { |
| 44 | struct clk_system *sys = (struct clk_system *)dev_id; |
| 45 | |
| 46 | wake_up(&sys->wait); |
| 47 | disable_irq_nosync(sys->irq); |
| 48 | |
| 49 | return IRQ_HANDLED; |
| 50 | } |
| 51 | |
| 52 | static int clk_system_prepare(struct clk_hw *hw) |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 53 | { |
| 54 | struct clk_system *sys = to_clk_system(hw); |
| 55 | struct at91_pmc *pmc = sys->pmc; |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 56 | u32 mask = 1 << sys->id; |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 57 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 58 | pmc_write(pmc, AT91_PMC_SCER, mask); |
| 59 | |
| 60 | if (!is_pck(sys->id)) |
| 61 | return 0; |
| 62 | |
| 63 | while (!(pmc_read(pmc, AT91_PMC_SR) & mask)) { |
| 64 | if (sys->irq) { |
| 65 | enable_irq(sys->irq); |
| 66 | wait_event(sys->wait, |
| 67 | pmc_read(pmc, AT91_PMC_SR) & mask); |
| 68 | } else |
| 69 | cpu_relax(); |
| 70 | } |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 74 | static void clk_system_unprepare(struct clk_hw *hw) |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 75 | { |
| 76 | struct clk_system *sys = to_clk_system(hw); |
| 77 | struct at91_pmc *pmc = sys->pmc; |
| 78 | |
| 79 | pmc_write(pmc, AT91_PMC_SCDR, 1 << sys->id); |
| 80 | } |
| 81 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 82 | static int clk_system_is_prepared(struct clk_hw *hw) |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 83 | { |
| 84 | struct clk_system *sys = to_clk_system(hw); |
| 85 | struct at91_pmc *pmc = sys->pmc; |
| 86 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 87 | if (!(pmc_read(pmc, AT91_PMC_SCSR) & (1 << sys->id))) |
| 88 | return 0; |
| 89 | |
| 90 | if (!is_pck(sys->id)) |
| 91 | return 1; |
| 92 | |
| 93 | return !!(pmc_read(pmc, AT91_PMC_SR) & (1 << sys->id)); |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static const struct clk_ops system_ops = { |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 97 | .prepare = clk_system_prepare, |
| 98 | .unprepare = clk_system_unprepare, |
| 99 | .is_prepared = clk_system_is_prepared, |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | static struct clk * __init |
| 103 | at91_clk_register_system(struct at91_pmc *pmc, const char *name, |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 104 | const char *parent_name, u8 id, int irq) |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 105 | { |
| 106 | struct clk_system *sys; |
| 107 | struct clk *clk = NULL; |
| 108 | struct clk_init_data init; |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 109 | int ret; |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 110 | |
| 111 | if (!parent_name || id > SYSTEM_MAX_ID) |
| 112 | return ERR_PTR(-EINVAL); |
| 113 | |
| 114 | sys = kzalloc(sizeof(*sys), GFP_KERNEL); |
| 115 | if (!sys) |
| 116 | return ERR_PTR(-ENOMEM); |
| 117 | |
| 118 | init.name = name; |
| 119 | init.ops = &system_ops; |
| 120 | init.parent_names = &parent_name; |
| 121 | init.num_parents = 1; |
Alexandre Belloni | b736bcb | 2014-07-08 18:21:16 +0200 | [diff] [blame] | 122 | init.flags = CLK_SET_RATE_PARENT; |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 123 | |
| 124 | sys->id = id; |
| 125 | sys->hw.init = &init; |
| 126 | sys->pmc = pmc; |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 127 | sys->irq = irq; |
| 128 | if (irq) { |
| 129 | init_waitqueue_head(&sys->wait); |
| 130 | irq_set_status_flags(sys->irq, IRQ_NOAUTOEN); |
| 131 | ret = request_irq(sys->irq, clk_system_irq_handler, |
| 132 | IRQF_TRIGGER_HIGH, name, sys); |
| 133 | if (ret) |
| 134 | return ERR_PTR(ret); |
| 135 | } |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 136 | |
| 137 | clk = clk_register(NULL, &sys->hw); |
| 138 | if (IS_ERR(clk)) |
| 139 | kfree(sys); |
| 140 | |
| 141 | return clk; |
| 142 | } |
| 143 | |
| 144 | static void __init |
| 145 | of_at91_clk_sys_setup(struct device_node *np, struct at91_pmc *pmc) |
| 146 | { |
| 147 | int num; |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 148 | int irq = 0; |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 149 | u32 id; |
| 150 | struct clk *clk; |
| 151 | const char *name; |
| 152 | struct device_node *sysclknp; |
| 153 | const char *parent_name; |
| 154 | |
| 155 | num = of_get_child_count(np); |
| 156 | if (num > (SYSTEM_MAX_ID + 1)) |
| 157 | return; |
| 158 | |
| 159 | for_each_child_of_node(np, sysclknp) { |
| 160 | if (of_property_read_u32(sysclknp, "reg", &id)) |
| 161 | continue; |
| 162 | |
| 163 | if (of_property_read_string(np, "clock-output-names", &name)) |
| 164 | name = sysclknp->name; |
| 165 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 166 | if (is_pck(id)) |
| 167 | irq = irq_of_parse_and_map(sysclknp, 0); |
| 168 | |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 169 | parent_name = of_clk_get_parent_name(sysclknp, 0); |
| 170 | |
Jean-Jacques Hiblot | cce6db8 | 2014-03-11 10:00:34 +0100 | [diff] [blame] | 171 | clk = at91_clk_register_system(pmc, name, parent_name, id, irq); |
Boris BREZILLON | 5fba62e | 2013-10-11 11:41:41 +0200 | [diff] [blame] | 172 | if (IS_ERR(clk)) |
| 173 | continue; |
| 174 | |
| 175 | of_clk_add_provider(sysclknp, of_clk_src_simple_get, clk); |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | void __init of_at91rm9200_clk_sys_setup(struct device_node *np, |
| 180 | struct at91_pmc *pmc) |
| 181 | { |
| 182 | of_at91_clk_sys_setup(np, pmc); |
| 183 | } |