Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | #include <linux/clk-provider.h> |
| 3 | #include <linux/mfd/syscon.h> |
| 4 | #include <linux/slab.h> |
| 5 | |
| 6 | #include <dt-bindings/clock/at91.h> |
| 7 | |
| 8 | #include "pmc.h" |
| 9 | |
| 10 | static const struct clk_master_characteristics mck_characteristics = { |
| 11 | .output = { .min = 0, .max = 133333333 }, |
| 12 | .divisors = { 1, 2, 4, 3 }, |
| 13 | .have_div3_pres = 1, |
| 14 | }; |
| 15 | |
| 16 | static u8 plla_out[] = { 0, 1, 2, 3, 0, 1, 2, 3 }; |
| 17 | |
| 18 | static u16 plla_icpll[] = { 0, 0, 0, 0, 1, 1, 1, 1 }; |
| 19 | |
| 20 | static const struct clk_range plla_outputs[] = { |
| 21 | { .min = 745000000, .max = 800000000 }, |
| 22 | { .min = 695000000, .max = 750000000 }, |
| 23 | { .min = 645000000, .max = 700000000 }, |
| 24 | { .min = 595000000, .max = 650000000 }, |
| 25 | { .min = 545000000, .max = 600000000 }, |
| 26 | { .min = 495000000, .max = 555000000 }, |
| 27 | { .min = 445000000, .max = 500000000 }, |
| 28 | { .min = 400000000, .max = 450000000 }, |
| 29 | }; |
| 30 | |
| 31 | static const struct clk_pll_characteristics plla_characteristics = { |
| 32 | .input = { .min = 2000000, .max = 32000000 }, |
| 33 | .num_output = ARRAY_SIZE(plla_outputs), |
| 34 | .output = plla_outputs, |
| 35 | .icpll = plla_icpll, |
| 36 | .out = plla_out, |
| 37 | }; |
| 38 | |
| 39 | static u8 pllb_out[] = { 0 }; |
| 40 | |
| 41 | static const struct clk_range pllb_outputs[] = { |
| 42 | { .min = 30000000, .max = 100000000 }, |
| 43 | }; |
| 44 | |
| 45 | static const struct clk_pll_characteristics pllb_characteristics = { |
| 46 | .input = { .min = 2000000, .max = 32000000 }, |
| 47 | .num_output = ARRAY_SIZE(pllb_outputs), |
| 48 | .output = pllb_outputs, |
| 49 | .out = pllb_out, |
| 50 | }; |
| 51 | |
| 52 | static const struct { |
| 53 | char *n; |
| 54 | char *p; |
| 55 | u8 id; |
| 56 | } at91sam9n12_systemck[] = { |
| 57 | { .n = "ddrck", .p = "masterck", .id = 2 }, |
| 58 | { .n = "lcdck", .p = "masterck", .id = 3 }, |
| 59 | { .n = "uhpck", .p = "usbck", .id = 6 }, |
| 60 | { .n = "udpck", .p = "usbck", .id = 7 }, |
| 61 | { .n = "pck0", .p = "prog0", .id = 8 }, |
| 62 | { .n = "pck1", .p = "prog1", .id = 9 }, |
| 63 | }; |
| 64 | |
| 65 | static const struct clk_pcr_layout at91sam9n12_pcr_layout = { |
| 66 | .offset = 0x10c, |
| 67 | .cmd = BIT(12), |
| 68 | .pid_mask = GENMASK(5, 0), |
| 69 | .div_mask = GENMASK(17, 16), |
| 70 | }; |
| 71 | |
| 72 | struct pck { |
| 73 | char *n; |
| 74 | u8 id; |
| 75 | }; |
| 76 | |
| 77 | static const struct pck at91sam9n12_periphck[] = { |
| 78 | { .n = "pioAB_clk", .id = 2, }, |
| 79 | { .n = "pioCD_clk", .id = 3, }, |
| 80 | { .n = "fuse_clk", .id = 4, }, |
| 81 | { .n = "usart0_clk", .id = 5, }, |
| 82 | { .n = "usart1_clk", .id = 6, }, |
| 83 | { .n = "usart2_clk", .id = 7, }, |
| 84 | { .n = "usart3_clk", .id = 8, }, |
| 85 | { .n = "twi0_clk", .id = 9, }, |
| 86 | { .n = "twi1_clk", .id = 10, }, |
| 87 | { .n = "mci0_clk", .id = 12, }, |
| 88 | { .n = "spi0_clk", .id = 13, }, |
| 89 | { .n = "spi1_clk", .id = 14, }, |
| 90 | { .n = "uart0_clk", .id = 15, }, |
| 91 | { .n = "uart1_clk", .id = 16, }, |
| 92 | { .n = "tcb_clk", .id = 17, }, |
| 93 | { .n = "pwm_clk", .id = 18, }, |
| 94 | { .n = "adc_clk", .id = 19, }, |
| 95 | { .n = "dma0_clk", .id = 20, }, |
| 96 | { .n = "uhphs_clk", .id = 22, }, |
| 97 | { .n = "udphs_clk", .id = 23, }, |
| 98 | { .n = "lcdc_clk", .id = 25, }, |
| 99 | { .n = "sha_clk", .id = 27, }, |
| 100 | { .n = "ssc0_clk", .id = 28, }, |
| 101 | { .n = "aes_clk", .id = 29, }, |
| 102 | { .n = "trng_clk", .id = 30, }, |
| 103 | }; |
| 104 | |
| 105 | static void __init at91sam9n12_pmc_setup(struct device_node *np) |
| 106 | { |
| 107 | struct clk_range range = CLK_RANGE(0, 0); |
| 108 | const char *slck_name, *mainxtal_name; |
| 109 | struct pmc_data *at91sam9n12_pmc; |
| 110 | const char *parent_names[6]; |
| 111 | struct regmap *regmap; |
| 112 | struct clk_hw *hw; |
| 113 | int i; |
| 114 | bool bypass; |
| 115 | |
| 116 | i = of_property_match_string(np, "clock-names", "slow_clk"); |
| 117 | if (i < 0) |
| 118 | return; |
| 119 | |
| 120 | slck_name = of_clk_get_parent_name(np, i); |
| 121 | |
| 122 | i = of_property_match_string(np, "clock-names", "main_xtal"); |
| 123 | if (i < 0) |
| 124 | return; |
| 125 | mainxtal_name = of_clk_get_parent_name(np, i); |
| 126 | |
Ahmad Fatoum | 153bc1c | 2020-07-03 09:32:35 +0200 | [diff] [blame] | 127 | regmap = device_node_to_regmap(np); |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 128 | if (IS_ERR(regmap)) |
| 129 | return; |
| 130 | |
Michał Mirosław | 03a1ee1 | 2020-05-05 00:37:57 +0200 | [diff] [blame] | 131 | at91sam9n12_pmc = pmc_data_allocate(PMC_PLLBCK + 1, |
Michał Mirosław | 99767cd | 2020-05-05 00:37:56 +0200 | [diff] [blame] | 132 | nck(at91sam9n12_systemck), 31, 0, 2); |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 133 | if (!at91sam9n12_pmc) |
| 134 | return; |
| 135 | |
| 136 | hw = at91_clk_register_main_rc_osc(regmap, "main_rc_osc", 12000000, |
| 137 | 50000000); |
| 138 | if (IS_ERR(hw)) |
| 139 | goto err_free; |
| 140 | |
| 141 | bypass = of_property_read_bool(np, "atmel,osc-bypass"); |
| 142 | |
| 143 | hw = at91_clk_register_main_osc(regmap, "main_osc", mainxtal_name, |
| 144 | bypass); |
| 145 | if (IS_ERR(hw)) |
| 146 | goto err_free; |
| 147 | |
| 148 | parent_names[0] = "main_rc_osc"; |
| 149 | parent_names[1] = "main_osc"; |
| 150 | hw = at91_clk_register_sam9x5_main(regmap, "mainck", parent_names, 2); |
| 151 | if (IS_ERR(hw)) |
| 152 | goto err_free; |
| 153 | |
| 154 | at91sam9n12_pmc->chws[PMC_MAIN] = hw; |
| 155 | |
| 156 | hw = at91_clk_register_pll(regmap, "pllack", "mainck", 0, |
| 157 | &at91rm9200_pll_layout, &plla_characteristics); |
| 158 | if (IS_ERR(hw)) |
| 159 | goto err_free; |
| 160 | |
| 161 | hw = at91_clk_register_plldiv(regmap, "plladivck", "pllack"); |
| 162 | if (IS_ERR(hw)) |
| 163 | goto err_free; |
| 164 | |
Michał Mirosław | 03a1ee1 | 2020-05-05 00:37:57 +0200 | [diff] [blame] | 165 | at91sam9n12_pmc->chws[PMC_PLLACK] = hw; |
| 166 | |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 167 | hw = at91_clk_register_pll(regmap, "pllbck", "mainck", 1, |
| 168 | &at91rm9200_pll_layout, &pllb_characteristics); |
| 169 | if (IS_ERR(hw)) |
| 170 | goto err_free; |
| 171 | |
Michał Mirosław | 03a1ee1 | 2020-05-05 00:37:57 +0200 | [diff] [blame] | 172 | at91sam9n12_pmc->chws[PMC_PLLBCK] = hw; |
| 173 | |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 174 | parent_names[0] = slck_name; |
| 175 | parent_names[1] = "mainck"; |
| 176 | parent_names[2] = "plladivck"; |
| 177 | parent_names[3] = "pllbck"; |
| 178 | hw = at91_clk_register_master(regmap, "masterck", 4, parent_names, |
| 179 | &at91sam9x5_master_layout, |
| 180 | &mck_characteristics); |
| 181 | if (IS_ERR(hw)) |
| 182 | goto err_free; |
| 183 | |
| 184 | at91sam9n12_pmc->chws[PMC_MCK] = hw; |
| 185 | |
| 186 | hw = at91sam9n12_clk_register_usb(regmap, "usbck", "pllbck"); |
| 187 | if (IS_ERR(hw)) |
| 188 | goto err_free; |
| 189 | |
| 190 | parent_names[0] = slck_name; |
| 191 | parent_names[1] = "mainck"; |
| 192 | parent_names[2] = "plladivck"; |
| 193 | parent_names[3] = "pllbck"; |
| 194 | parent_names[4] = "masterck"; |
| 195 | for (i = 0; i < 2; i++) { |
| 196 | char name[6]; |
| 197 | |
| 198 | snprintf(name, sizeof(name), "prog%d", i); |
| 199 | |
| 200 | hw = at91_clk_register_programmable(regmap, name, |
| 201 | parent_names, 5, i, |
Claudiu Beznea | c57aaaa | 2020-07-22 10:38:22 +0300 | [diff] [blame] | 202 | &at91sam9x5_programmable_layout, |
| 203 | NULL); |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 204 | if (IS_ERR(hw)) |
| 205 | goto err_free; |
Michał Mirosław | 99767cd | 2020-05-05 00:37:56 +0200 | [diff] [blame] | 206 | |
| 207 | at91sam9n12_pmc->pchws[i] = hw; |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | for (i = 0; i < ARRAY_SIZE(at91sam9n12_systemck); i++) { |
| 211 | hw = at91_clk_register_system(regmap, at91sam9n12_systemck[i].n, |
| 212 | at91sam9n12_systemck[i].p, |
| 213 | at91sam9n12_systemck[i].id); |
| 214 | if (IS_ERR(hw)) |
| 215 | goto err_free; |
| 216 | |
| 217 | at91sam9n12_pmc->shws[at91sam9n12_systemck[i].id] = hw; |
| 218 | } |
| 219 | |
| 220 | for (i = 0; i < ARRAY_SIZE(at91sam9n12_periphck); i++) { |
| 221 | hw = at91_clk_register_sam9x5_peripheral(regmap, &pmc_pcr_lock, |
| 222 | &at91sam9n12_pcr_layout, |
| 223 | at91sam9n12_periphck[i].n, |
| 224 | "masterck", |
| 225 | at91sam9n12_periphck[i].id, |
Claudiu Beznea | b4c115c | 2020-07-22 10:38:21 +0300 | [diff] [blame] | 226 | &range, INT_MIN); |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 227 | if (IS_ERR(hw)) |
| 228 | goto err_free; |
| 229 | |
| 230 | at91sam9n12_pmc->phws[at91sam9n12_periphck[i].id] = hw; |
| 231 | } |
| 232 | |
| 233 | of_clk_add_hw_provider(np, of_clk_hw_pmc_get, at91sam9n12_pmc); |
| 234 | |
| 235 | return; |
| 236 | |
| 237 | err_free: |
Michał Mirosław | 7425f24 | 2020-05-05 00:37:56 +0200 | [diff] [blame] | 238 | kfree(at91sam9n12_pmc); |
Alexandre Belloni | 143e04d | 2020-01-16 18:23:16 +0100 | [diff] [blame] | 239 | } |
| 240 | /* |
| 241 | * The TCB is used as the clocksource so its clock is needed early. This means |
| 242 | * this can't be a platform driver. |
| 243 | */ |
| 244 | CLK_OF_DECLARE_DRIVER(at91sam9n12_pmc, "atmel,at91sam9n12-pmc", |
| 245 | at91sam9n12_pmc_setup); |