10ad6125bSBoris BREZILLON /* 20ad6125bSBoris BREZILLON * drivers/clk/at91/pmc.h 30ad6125bSBoris BREZILLON * 40ad6125bSBoris BREZILLON * Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com> 50ad6125bSBoris BREZILLON * 60ad6125bSBoris BREZILLON * This program is free software; you can redistribute it and/or modify 70ad6125bSBoris BREZILLON * it under the terms of the GNU General Public License as published by 80ad6125bSBoris BREZILLON * the Free Software Foundation; either version 2 of the License, or 90ad6125bSBoris BREZILLON * (at your option) any later version. 100ad6125bSBoris BREZILLON */ 110ad6125bSBoris BREZILLON 120ad6125bSBoris BREZILLON #ifndef __PMC_H_ 130ad6125bSBoris BREZILLON #define __PMC_H_ 140ad6125bSBoris BREZILLON 150ad6125bSBoris BREZILLON #include <linux/io.h> 160ad6125bSBoris BREZILLON #include <linux/irqdomain.h> 17863a81c3SBoris Brezillon #include <linux/regmap.h> 180ad6125bSBoris BREZILLON #include <linux/spinlock.h> 190ad6125bSBoris BREZILLON 201bdf0232SBoris Brezillon extern spinlock_t pmc_pcr_lock; 211bdf0232SBoris Brezillon 22b00cd8e4SAlexandre Belloni struct pmc_data { 23b00cd8e4SAlexandre Belloni unsigned int ncore; 24b00cd8e4SAlexandre Belloni struct clk_hw **chws; 25b00cd8e4SAlexandre Belloni unsigned int nsystem; 26b00cd8e4SAlexandre Belloni struct clk_hw **shws; 27b00cd8e4SAlexandre Belloni unsigned int nperiph; 28b00cd8e4SAlexandre Belloni struct clk_hw **phws; 29b00cd8e4SAlexandre Belloni unsigned int ngck; 30b00cd8e4SAlexandre Belloni struct clk_hw **ghws; 31b00cd8e4SAlexandre Belloni }; 32b00cd8e4SAlexandre Belloni 330ad6125bSBoris BREZILLON struct clk_range { 340ad6125bSBoris BREZILLON unsigned long min; 350ad6125bSBoris BREZILLON unsigned long max; 360ad6125bSBoris BREZILLON }; 370ad6125bSBoris BREZILLON 380ad6125bSBoris BREZILLON #define CLK_RANGE(MIN, MAX) {.min = MIN, .max = MAX,} 390ad6125bSBoris BREZILLON 40b2e39dc0SAlexandre Belloni struct clk_master_layout { 41e5be5370SAlexandre Belloni u32 offset; 42b2e39dc0SAlexandre Belloni u32 mask; 43b2e39dc0SAlexandre Belloni u8 pres_shift; 44b2e39dc0SAlexandre Belloni }; 45b2e39dc0SAlexandre Belloni 46b2e39dc0SAlexandre Belloni extern const struct clk_master_layout at91rm9200_master_layout; 47b2e39dc0SAlexandre Belloni extern const struct clk_master_layout at91sam9x5_master_layout; 48b2e39dc0SAlexandre Belloni 49b2e39dc0SAlexandre Belloni struct clk_master_characteristics { 50b2e39dc0SAlexandre Belloni struct clk_range output; 51b2e39dc0SAlexandre Belloni u32 divisors[4]; 52b2e39dc0SAlexandre Belloni u8 have_div3_pres; 53b2e39dc0SAlexandre Belloni }; 54b2e39dc0SAlexandre Belloni 55b2e39dc0SAlexandre Belloni struct clk_pll_layout { 56b2e39dc0SAlexandre Belloni u32 pllr_mask; 57b2e39dc0SAlexandre Belloni u16 mul_mask; 58b2e39dc0SAlexandre Belloni u8 mul_shift; 59b2e39dc0SAlexandre Belloni }; 60b2e39dc0SAlexandre Belloni 61b2e39dc0SAlexandre Belloni extern const struct clk_pll_layout at91rm9200_pll_layout; 62b2e39dc0SAlexandre Belloni extern const struct clk_pll_layout at91sam9g45_pll_layout; 63b2e39dc0SAlexandre Belloni extern const struct clk_pll_layout at91sam9g20_pllb_layout; 64b2e39dc0SAlexandre Belloni extern const struct clk_pll_layout sama5d3_pll_layout; 65b2e39dc0SAlexandre Belloni 66b2e39dc0SAlexandre Belloni struct clk_pll_characteristics { 67b2e39dc0SAlexandre Belloni struct clk_range input; 68b2e39dc0SAlexandre Belloni int num_output; 69*7b4c162eSStephen Boyd const struct clk_range *output; 70b2e39dc0SAlexandre Belloni u16 *icpll; 71b2e39dc0SAlexandre Belloni u8 *out; 72a436c2a4SAlexandre Belloni u8 upll : 1; 73b2e39dc0SAlexandre Belloni }; 74b2e39dc0SAlexandre Belloni 75b2e39dc0SAlexandre Belloni struct clk_programmable_layout { 76b2e39dc0SAlexandre Belloni u8 pres_shift; 77b2e39dc0SAlexandre Belloni u8 css_mask; 78b2e39dc0SAlexandre Belloni u8 have_slck_mck; 79b2e39dc0SAlexandre Belloni }; 80b2e39dc0SAlexandre Belloni 81b2e39dc0SAlexandre Belloni extern const struct clk_programmable_layout at91rm9200_programmable_layout; 82b2e39dc0SAlexandre Belloni extern const struct clk_programmable_layout at91sam9g45_programmable_layout; 83b2e39dc0SAlexandre Belloni extern const struct clk_programmable_layout at91sam9x5_programmable_layout; 84b2e39dc0SAlexandre Belloni 85cb4f4949SAlexandre Belloni struct clk_pcr_layout { 86cb4f4949SAlexandre Belloni u32 offset; 87cb4f4949SAlexandre Belloni u32 cmd; 88cb4f4949SAlexandre Belloni u32 div_mask; 89cb4f4949SAlexandre Belloni u32 gckcss_mask; 90cb4f4949SAlexandre Belloni u32 pid_mask; 91cb4f4949SAlexandre Belloni }; 92cb4f4949SAlexandre Belloni 93cb4f4949SAlexandre Belloni #define field_get(_mask, _reg) (((_reg) & (_mask)) >> (ffs(_mask) - 1)) 94cb4f4949SAlexandre Belloni #define field_prep(_mask, _val) (((_val) << (ffs(_mask) - 1)) & (_mask)) 95cb4f4949SAlexandre Belloni 96b00cd8e4SAlexandre Belloni #define ndck(a, s) (a[s - 1].id + 1) 97b00cd8e4SAlexandre Belloni #define nck(a) (a[ARRAY_SIZE(a) - 1].id + 1) 98b00cd8e4SAlexandre Belloni struct pmc_data *pmc_data_allocate(unsigned int ncore, unsigned int nsystem, 99b00cd8e4SAlexandre Belloni unsigned int nperiph, unsigned int ngck); 100b00cd8e4SAlexandre Belloni void pmc_data_free(struct pmc_data *pmc_data); 101b00cd8e4SAlexandre Belloni 1020ad6125bSBoris BREZILLON int of_at91_get_clk_range(struct device_node *np, const char *propname, 1030ad6125bSBoris BREZILLON struct clk_range *range); 1040ad6125bSBoris BREZILLON 105b2e39dc0SAlexandre Belloni struct clk_hw *of_clk_hw_pmc_get(struct of_phandle_args *clkspec, void *data); 106b2e39dc0SAlexandre Belloni 107b2e39dc0SAlexandre Belloni struct clk_hw * __init 108b2e39dc0SAlexandre Belloni at91_clk_register_audio_pll_frac(struct regmap *regmap, const char *name, 109b2e39dc0SAlexandre Belloni const char *parent_name); 110b2e39dc0SAlexandre Belloni 111b2e39dc0SAlexandre Belloni struct clk_hw * __init 112b2e39dc0SAlexandre Belloni at91_clk_register_audio_pll_pad(struct regmap *regmap, const char *name, 113b2e39dc0SAlexandre Belloni const char *parent_name); 114b2e39dc0SAlexandre Belloni 115b2e39dc0SAlexandre Belloni struct clk_hw * __init 116b2e39dc0SAlexandre Belloni at91_clk_register_audio_pll_pmc(struct regmap *regmap, const char *name, 117b2e39dc0SAlexandre Belloni const char *parent_name); 118b2e39dc0SAlexandre Belloni 119b2e39dc0SAlexandre Belloni struct clk_hw * __init 120b2e39dc0SAlexandre Belloni at91_clk_register_generated(struct regmap *regmap, spinlock_t *lock, 121e4cfb823SAlexandre Belloni const struct clk_pcr_layout *layout, 122b2e39dc0SAlexandre Belloni const char *name, const char **parent_names, 123b2e39dc0SAlexandre Belloni u8 num_parents, u8 id, bool pll_audio, 124b2e39dc0SAlexandre Belloni const struct clk_range *range); 125b2e39dc0SAlexandre Belloni 126b2e39dc0SAlexandre Belloni struct clk_hw * __init 127b2e39dc0SAlexandre Belloni at91_clk_register_h32mx(struct regmap *regmap, const char *name, 128b2e39dc0SAlexandre Belloni const char *parent_name); 129b2e39dc0SAlexandre Belloni 130b2e39dc0SAlexandre Belloni struct clk_hw * __init 131b2e39dc0SAlexandre Belloni at91_clk_i2s_mux_register(struct regmap *regmap, const char *name, 132b2e39dc0SAlexandre Belloni const char * const *parent_names, 133b2e39dc0SAlexandre Belloni unsigned int num_parents, u8 bus_id); 134b2e39dc0SAlexandre Belloni 135b2e39dc0SAlexandre Belloni struct clk_hw * __init 136b2e39dc0SAlexandre Belloni at91_clk_register_main_rc_osc(struct regmap *regmap, const char *name, 137b2e39dc0SAlexandre Belloni u32 frequency, u32 accuracy); 138b2e39dc0SAlexandre Belloni struct clk_hw * __init 139b2e39dc0SAlexandre Belloni at91_clk_register_main_osc(struct regmap *regmap, const char *name, 140b2e39dc0SAlexandre Belloni const char *parent_name, bool bypass); 141b2e39dc0SAlexandre Belloni struct clk_hw * __init 142b2e39dc0SAlexandre Belloni at91_clk_register_rm9200_main(struct regmap *regmap, 143b2e39dc0SAlexandre Belloni const char *name, 144b2e39dc0SAlexandre Belloni const char *parent_name); 145b2e39dc0SAlexandre Belloni struct clk_hw * __init 146b2e39dc0SAlexandre Belloni at91_clk_register_sam9x5_main(struct regmap *regmap, const char *name, 147b2e39dc0SAlexandre Belloni const char **parent_names, int num_parents); 148b2e39dc0SAlexandre Belloni 149b2e39dc0SAlexandre Belloni struct clk_hw * __init 150b2e39dc0SAlexandre Belloni at91_clk_register_master(struct regmap *regmap, const char *name, 151b2e39dc0SAlexandre Belloni int num_parents, const char **parent_names, 152b2e39dc0SAlexandre Belloni const struct clk_master_layout *layout, 153b2e39dc0SAlexandre Belloni const struct clk_master_characteristics *characteristics); 154b2e39dc0SAlexandre Belloni 155b2e39dc0SAlexandre Belloni struct clk_hw * __init 156b2e39dc0SAlexandre Belloni at91_clk_register_peripheral(struct regmap *regmap, const char *name, 157b2e39dc0SAlexandre Belloni const char *parent_name, u32 id); 158b2e39dc0SAlexandre Belloni struct clk_hw * __init 159b2e39dc0SAlexandre Belloni at91_clk_register_sam9x5_peripheral(struct regmap *regmap, spinlock_t *lock, 160cb4f4949SAlexandre Belloni const struct clk_pcr_layout *layout, 161b2e39dc0SAlexandre Belloni const char *name, const char *parent_name, 162b2e39dc0SAlexandre Belloni u32 id, const struct clk_range *range); 163b2e39dc0SAlexandre Belloni 164b2e39dc0SAlexandre Belloni struct clk_hw * __init 165b2e39dc0SAlexandre Belloni at91_clk_register_pll(struct regmap *regmap, const char *name, 166b2e39dc0SAlexandre Belloni const char *parent_name, u8 id, 167b2e39dc0SAlexandre Belloni const struct clk_pll_layout *layout, 168b2e39dc0SAlexandre Belloni const struct clk_pll_characteristics *characteristics); 169b2e39dc0SAlexandre Belloni struct clk_hw * __init 170b2e39dc0SAlexandre Belloni at91_clk_register_plldiv(struct regmap *regmap, const char *name, 171b2e39dc0SAlexandre Belloni const char *parent_name); 172b2e39dc0SAlexandre Belloni 173b2e39dc0SAlexandre Belloni struct clk_hw * __init 174a436c2a4SAlexandre Belloni sam9x60_clk_register_pll(struct regmap *regmap, spinlock_t *lock, 175a436c2a4SAlexandre Belloni const char *name, const char *parent_name, u8 id, 176a436c2a4SAlexandre Belloni const struct clk_pll_characteristics *characteristics); 177a436c2a4SAlexandre Belloni 178a436c2a4SAlexandre Belloni struct clk_hw * __init 179b2e39dc0SAlexandre Belloni at91_clk_register_programmable(struct regmap *regmap, const char *name, 180b2e39dc0SAlexandre Belloni const char **parent_names, u8 num_parents, u8 id, 181b2e39dc0SAlexandre Belloni const struct clk_programmable_layout *layout); 182b2e39dc0SAlexandre Belloni 183b2e39dc0SAlexandre Belloni struct clk_hw * __init 184b2e39dc0SAlexandre Belloni at91_clk_register_sam9260_slow(struct regmap *regmap, 185b2e39dc0SAlexandre Belloni const char *name, 186b2e39dc0SAlexandre Belloni const char **parent_names, 187b2e39dc0SAlexandre Belloni int num_parents); 188b2e39dc0SAlexandre Belloni 189b2e39dc0SAlexandre Belloni struct clk_hw * __init 190b2e39dc0SAlexandre Belloni at91sam9x5_clk_register_smd(struct regmap *regmap, const char *name, 191b2e39dc0SAlexandre Belloni const char **parent_names, u8 num_parents); 192b2e39dc0SAlexandre Belloni 193b2e39dc0SAlexandre Belloni struct clk_hw * __init 194b2e39dc0SAlexandre Belloni at91_clk_register_system(struct regmap *regmap, const char *name, 195b2e39dc0SAlexandre Belloni const char *parent_name, u8 id); 196b2e39dc0SAlexandre Belloni 197b2e39dc0SAlexandre Belloni struct clk_hw * __init 198b2e39dc0SAlexandre Belloni at91sam9x5_clk_register_usb(struct regmap *regmap, const char *name, 199b2e39dc0SAlexandre Belloni const char **parent_names, u8 num_parents); 200b2e39dc0SAlexandre Belloni struct clk_hw * __init 201b2e39dc0SAlexandre Belloni at91sam9n12_clk_register_usb(struct regmap *regmap, const char *name, 202b2e39dc0SAlexandre Belloni const char *parent_name); 203b2e39dc0SAlexandre Belloni struct clk_hw * __init 2042423eeaeSAlexandre Belloni sam9x60_clk_register_usb(struct regmap *regmap, const char *name, 2052423eeaeSAlexandre Belloni const char **parent_names, u8 num_parents); 2062423eeaeSAlexandre Belloni struct clk_hw * __init 207b2e39dc0SAlexandre Belloni at91rm9200_clk_register_usb(struct regmap *regmap, const char *name, 208b2e39dc0SAlexandre Belloni const char *parent_name, const u32 *divisors); 209b2e39dc0SAlexandre Belloni 210b2e39dc0SAlexandre Belloni struct clk_hw * __init 211b2e39dc0SAlexandre Belloni at91_clk_register_utmi(struct regmap *regmap_pmc, struct regmap *regmap_sfr, 212b2e39dc0SAlexandre Belloni const char *name, const char *parent_name); 213b2e39dc0SAlexandre Belloni 214b3b02eacSAlexandre Belloni #ifdef CONFIG_PM 215b3b02eacSAlexandre Belloni void pmc_register_id(u8 id); 21613967beaSRomain Izard void pmc_register_pck(u8 pck); 217b3b02eacSAlexandre Belloni #else 218b3b02eacSAlexandre Belloni static inline void pmc_register_id(u8 id) {} 21913967beaSRomain Izard static inline void pmc_register_pck(u8 pck) {} 220b3b02eacSAlexandre Belloni #endif 221b3b02eacSAlexandre Belloni 2220ad6125bSBoris BREZILLON #endif /* __PMC_H_ */ 223