Linux Audio

Check our new training course

Loading...
v6.8
   1// SPDX-License-Identifier: GPL-2.0
   2#include <linux/clk-provider.h>
   3#include <linux/clk/at91_pmc.h>
   4#include <linux/of.h>
   5#include <linux/mfd/syscon.h>
   6#include <linux/regmap.h>
   7#include <linux/slab.h>
   8
   9#include "pmc.h"
  10
  11#define MASTER_SOURCE_MAX	4
  12
  13#define PERIPHERAL_AT91RM9200	0
  14#define PERIPHERAL_AT91SAM9X5	1
  15
  16#define PERIPHERAL_MAX		64
  17
  18#define PERIPHERAL_ID_MIN	2
  19
  20#define PROG_SOURCE_MAX		5
  21#define PROG_ID_MAX		7
  22
  23#define SYSTEM_MAX_ID		31
  24
  25#define GCK_INDEX_DT_AUDIO_PLL	5
  26
  27static DEFINE_SPINLOCK(mck_lock);
  28
  29#ifdef CONFIG_HAVE_AT91_AUDIO_PLL
  30static void __init of_sama5d2_clk_audio_pll_frac_setup(struct device_node *np)
  31{
  32	struct clk_hw *hw;
  33	const char *name = np->name;
  34	const char *parent_name;
  35	struct regmap *regmap;
  36	struct device_node *parent_np;
  37
  38	parent_np = of_get_parent(np);
  39	regmap = syscon_node_to_regmap(parent_np);
  40	of_node_put(parent_np);
  41	if (IS_ERR(regmap))
  42		return;
  43
  44	parent_name = of_clk_get_parent_name(np, 0);
  45
  46	hw = at91_clk_register_audio_pll_frac(regmap, name, parent_name);
  47	if (IS_ERR(hw))
  48		return;
  49
  50	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
  51}
  52CLK_OF_DECLARE(of_sama5d2_clk_audio_pll_frac_setup,
  53	       "atmel,sama5d2-clk-audio-pll-frac",
  54	       of_sama5d2_clk_audio_pll_frac_setup);
  55
  56static void __init of_sama5d2_clk_audio_pll_pad_setup(struct device_node *np)
  57{
  58	struct clk_hw *hw;
  59	const char *name = np->name;
  60	const char *parent_name;
  61	struct regmap *regmap;
  62	struct device_node *parent_np;
  63
  64	parent_np = of_get_parent(np);
  65	regmap = syscon_node_to_regmap(parent_np);
  66	of_node_put(parent_np);
  67	if (IS_ERR(regmap))
  68		return;
  69
  70	parent_name = of_clk_get_parent_name(np, 0);
  71
  72	hw = at91_clk_register_audio_pll_pad(regmap, name, parent_name);
  73	if (IS_ERR(hw))
  74		return;
  75
  76	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
  77}
  78CLK_OF_DECLARE(of_sama5d2_clk_audio_pll_pad_setup,
  79	       "atmel,sama5d2-clk-audio-pll-pad",
  80	       of_sama5d2_clk_audio_pll_pad_setup);
  81
  82static void __init of_sama5d2_clk_audio_pll_pmc_setup(struct device_node *np)
  83{
  84	struct clk_hw *hw;
  85	const char *name = np->name;
  86	const char *parent_name;
  87	struct regmap *regmap;
  88	struct device_node *parent_np;
  89
  90	parent_np = of_get_parent(np);
  91	regmap = syscon_node_to_regmap(parent_np);
  92	of_node_put(parent_np);
  93	if (IS_ERR(regmap))
  94		return;
  95
  96	parent_name = of_clk_get_parent_name(np, 0);
  97
  98	hw = at91_clk_register_audio_pll_pmc(regmap, name, parent_name);
  99	if (IS_ERR(hw))
 100		return;
 101
 102	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 103}
 104CLK_OF_DECLARE(of_sama5d2_clk_audio_pll_pmc_setup,
 105	       "atmel,sama5d2-clk-audio-pll-pmc",
 106	       of_sama5d2_clk_audio_pll_pmc_setup);
 107#endif /* CONFIG_HAVE_AT91_AUDIO_PLL */
 108
 109static const struct clk_pcr_layout dt_pcr_layout = {
 110	.offset = 0x10c,
 111	.cmd = BIT(12),
 112	.pid_mask = GENMASK(5, 0),
 113	.div_mask = GENMASK(17, 16),
 114	.gckcss_mask = GENMASK(10, 8),
 115};
 116
 117#ifdef CONFIG_HAVE_AT91_GENERATED_CLK
 118#define GENERATED_SOURCE_MAX	6
 119
 120#define GCK_ID_I2S0		54
 121#define GCK_ID_I2S1		55
 122#define GCK_ID_CLASSD		59
 123
 124static void __init of_sama5d2_clk_generated_setup(struct device_node *np)
 125{
 126	int num;
 127	u32 id;
 128	const char *name;
 129	struct clk_hw *hw;
 130	unsigned int num_parents;
 131	const char *parent_names[GENERATED_SOURCE_MAX];
 132	struct device_node *gcknp, *parent_np;
 133	struct clk_range range = CLK_RANGE(0, 0);
 134	struct regmap *regmap;
 135
 136	num_parents = of_clk_get_parent_count(np);
 137	if (num_parents == 0 || num_parents > GENERATED_SOURCE_MAX)
 138		return;
 139
 140	of_clk_parent_fill(np, parent_names, num_parents);
 141
 142	num = of_get_child_count(np);
 143	if (!num || num > PERIPHERAL_MAX)
 144		return;
 145
 146	parent_np = of_get_parent(np);
 147	regmap = syscon_node_to_regmap(parent_np);
 148	of_node_put(parent_np);
 149	if (IS_ERR(regmap))
 150		return;
 151
 152	for_each_child_of_node(np, gcknp) {
 153		int chg_pid = INT_MIN;
 154
 155		if (of_property_read_u32(gcknp, "reg", &id))
 156			continue;
 157
 158		if (id < PERIPHERAL_ID_MIN || id >= PERIPHERAL_MAX)
 159			continue;
 160
 161		if (of_property_read_string(np, "clock-output-names", &name))
 162			name = gcknp->name;
 163
 164		of_at91_get_clk_range(gcknp, "atmel,clk-output-range",
 165				      &range);
 166
 167		if (of_device_is_compatible(np, "atmel,sama5d2-clk-generated") &&
 168		    (id == GCK_ID_I2S0 || id == GCK_ID_I2S1 ||
 169		     id == GCK_ID_CLASSD))
 170			chg_pid = GCK_INDEX_DT_AUDIO_PLL;
 171
 172		hw = at91_clk_register_generated(regmap, &pmc_pcr_lock,
 173						 &dt_pcr_layout, name,
 174						 parent_names, NULL, NULL,
 175						 num_parents, id, &range,
 176						 chg_pid);
 177		if (IS_ERR(hw))
 178			continue;
 179
 180		of_clk_add_hw_provider(gcknp, of_clk_hw_simple_get, hw);
 181	}
 182}
 183CLK_OF_DECLARE(of_sama5d2_clk_generated_setup, "atmel,sama5d2-clk-generated",
 184	       of_sama5d2_clk_generated_setup);
 185#endif /* CONFIG_HAVE_AT91_GENERATED_CLK */
 186
 187#ifdef CONFIG_HAVE_AT91_H32MX
 188static void __init of_sama5d4_clk_h32mx_setup(struct device_node *np)
 189{
 190	struct clk_hw *hw;
 191	const char *name = np->name;
 192	const char *parent_name;
 193	struct regmap *regmap;
 194	struct device_node *parent_np;
 195
 196	parent_np = of_get_parent(np);
 197	regmap = syscon_node_to_regmap(parent_np);
 198	of_node_put(parent_np);
 199	if (IS_ERR(regmap))
 200		return;
 201
 202	parent_name = of_clk_get_parent_name(np, 0);
 203
 204	hw = at91_clk_register_h32mx(regmap, name, parent_name);
 205	if (IS_ERR(hw))
 206		return;
 207
 208	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 209}
 210CLK_OF_DECLARE(of_sama5d4_clk_h32mx_setup, "atmel,sama5d4-clk-h32mx",
 211	       of_sama5d4_clk_h32mx_setup);
 212#endif /* CONFIG_HAVE_AT91_H32MX */
 213
 214#ifdef CONFIG_HAVE_AT91_I2S_MUX_CLK
 215#define	I2S_BUS_NR	2
 216
 217static void __init of_sama5d2_clk_i2s_mux_setup(struct device_node *np)
 218{
 219	struct regmap *regmap_sfr;
 220	u8 bus_id;
 221	const char *parent_names[2];
 222	struct device_node *i2s_mux_np;
 223	struct clk_hw *hw;
 224	int ret;
 225
 226	regmap_sfr = syscon_regmap_lookup_by_compatible("atmel,sama5d2-sfr");
 227	if (IS_ERR(regmap_sfr))
 228		return;
 229
 230	for_each_child_of_node(np, i2s_mux_np) {
 231		if (of_property_read_u8(i2s_mux_np, "reg", &bus_id))
 232			continue;
 233
 234		if (bus_id > I2S_BUS_NR)
 235			continue;
 236
 237		ret = of_clk_parent_fill(i2s_mux_np, parent_names, 2);
 238		if (ret != 2)
 239			continue;
 240
 241		hw = at91_clk_i2s_mux_register(regmap_sfr, i2s_mux_np->name,
 242					       parent_names, 2, bus_id);
 243		if (IS_ERR(hw))
 244			continue;
 245
 246		of_clk_add_hw_provider(i2s_mux_np, of_clk_hw_simple_get, hw);
 247	}
 248}
 249CLK_OF_DECLARE(sama5d2_clk_i2s_mux, "atmel,sama5d2-clk-i2s-mux",
 250	       of_sama5d2_clk_i2s_mux_setup);
 251#endif /* CONFIG_HAVE_AT91_I2S_MUX_CLK */
 252
 253static void __init of_at91rm9200_clk_main_osc_setup(struct device_node *np)
 254{
 255	struct clk_hw *hw;
 256	const char *name = np->name;
 257	const char *parent_name;
 258	struct regmap *regmap;
 259	bool bypass;
 260	struct device_node *parent_np;
 261
 262	of_property_read_string(np, "clock-output-names", &name);
 263	bypass = of_property_read_bool(np, "atmel,osc-bypass");
 264	parent_name = of_clk_get_parent_name(np, 0);
 265
 266	parent_np = of_get_parent(np);
 267	regmap = syscon_node_to_regmap(parent_np);
 268	of_node_put(parent_np);
 269	if (IS_ERR(regmap))
 270		return;
 271
 272	hw = at91_clk_register_main_osc(regmap, name, parent_name, NULL, bypass);
 273	if (IS_ERR(hw))
 274		return;
 275
 276	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 277}
 278CLK_OF_DECLARE(at91rm9200_clk_main_osc, "atmel,at91rm9200-clk-main-osc",
 279	       of_at91rm9200_clk_main_osc_setup);
 280
 281static void __init of_at91sam9x5_clk_main_rc_osc_setup(struct device_node *np)
 282{
 283	struct clk_hw *hw;
 284	u32 frequency = 0;
 285	u32 accuracy = 0;
 286	const char *name = np->name;
 287	struct regmap *regmap;
 288	struct device_node *parent_np;
 289
 290	of_property_read_string(np, "clock-output-names", &name);
 291	of_property_read_u32(np, "clock-frequency", &frequency);
 292	of_property_read_u32(np, "clock-accuracy", &accuracy);
 293
 294	parent_np = of_get_parent(np);
 295	regmap = syscon_node_to_regmap(parent_np);
 296	of_node_put(parent_np);
 297	if (IS_ERR(regmap))
 298		return;
 299
 300	hw = at91_clk_register_main_rc_osc(regmap, name, frequency, accuracy);
 301	if (IS_ERR(hw))
 302		return;
 303
 304	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 305}
 306CLK_OF_DECLARE(at91sam9x5_clk_main_rc_osc, "atmel,at91sam9x5-clk-main-rc-osc",
 307	       of_at91sam9x5_clk_main_rc_osc_setup);
 308
 309static void __init of_at91rm9200_clk_main_setup(struct device_node *np)
 310{
 311	struct clk_hw *hw;
 312	const char *parent_name;
 313	const char *name = np->name;
 314	struct regmap *regmap;
 315	struct device_node *parent_np;
 316
 317	parent_name = of_clk_get_parent_name(np, 0);
 318	of_property_read_string(np, "clock-output-names", &name);
 319
 320	parent_np = of_get_parent(np);
 321	regmap = syscon_node_to_regmap(parent_np);
 322	of_node_put(parent_np);
 323	if (IS_ERR(regmap))
 324		return;
 325
 326	hw = at91_clk_register_rm9200_main(regmap, name, parent_name, NULL);
 327	if (IS_ERR(hw))
 328		return;
 329
 330	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 331}
 332CLK_OF_DECLARE(at91rm9200_clk_main, "atmel,at91rm9200-clk-main",
 333	       of_at91rm9200_clk_main_setup);
 334
 335static void __init of_at91sam9x5_clk_main_setup(struct device_node *np)
 336{
 337	struct clk_hw *hw;
 338	const char *parent_names[2];
 339	unsigned int num_parents;
 340	const char *name = np->name;
 341	struct regmap *regmap;
 342	struct device_node *parent_np;
 343
 344	num_parents = of_clk_get_parent_count(np);
 345	if (num_parents == 0 || num_parents > 2)
 346		return;
 347
 348	of_clk_parent_fill(np, parent_names, num_parents);
 349	parent_np = of_get_parent(np);
 350	regmap = syscon_node_to_regmap(parent_np);
 351	of_node_put(parent_np);
 352	if (IS_ERR(regmap))
 353		return;
 354
 355	of_property_read_string(np, "clock-output-names", &name);
 356
 357	hw = at91_clk_register_sam9x5_main(regmap, name, parent_names, NULL,
 358					   num_parents);
 359	if (IS_ERR(hw))
 360		return;
 361
 362	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 363}
 364CLK_OF_DECLARE(at91sam9x5_clk_main, "atmel,at91sam9x5-clk-main",
 365	       of_at91sam9x5_clk_main_setup);
 366
 367static struct clk_master_characteristics * __init
 368of_at91_clk_master_get_characteristics(struct device_node *np)
 369{
 370	struct clk_master_characteristics *characteristics;
 371
 372	characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL);
 373	if (!characteristics)
 374		return NULL;
 375
 376	if (of_at91_get_clk_range(np, "atmel,clk-output-range", &characteristics->output))
 377		goto out_free_characteristics;
 378
 379	of_property_read_u32_array(np, "atmel,clk-divisors",
 380				   characteristics->divisors, 4);
 381
 382	characteristics->have_div3_pres =
 383		of_property_read_bool(np, "atmel,master-clk-have-div3-pres");
 384
 385	return characteristics;
 386
 387out_free_characteristics:
 388	kfree(characteristics);
 389	return NULL;
 390}
 391
 392static void __init
 393of_at91_clk_master_setup(struct device_node *np,
 394			 const struct clk_master_layout *layout)
 395{
 396	struct clk_hw *hw;
 397	unsigned int num_parents;
 398	const char *parent_names[MASTER_SOURCE_MAX];
 399	const char *name = np->name;
 400	struct clk_master_characteristics *characteristics;
 401	struct regmap *regmap;
 402	struct device_node *parent_np;
 403
 404	num_parents = of_clk_get_parent_count(np);
 405	if (num_parents == 0 || num_parents > MASTER_SOURCE_MAX)
 406		return;
 407
 408	of_clk_parent_fill(np, parent_names, num_parents);
 409
 410	of_property_read_string(np, "clock-output-names", &name);
 411
 412	characteristics = of_at91_clk_master_get_characteristics(np);
 413	if (!characteristics)
 414		return;
 415
 416	parent_np = of_get_parent(np);
 417	regmap = syscon_node_to_regmap(parent_np);
 418	of_node_put(parent_np);
 419	if (IS_ERR(regmap))
 420		return;
 421
 422	hw = at91_clk_register_master_pres(regmap, "masterck_pres", num_parents,
 423					   parent_names, NULL, layout,
 424					   characteristics, &mck_lock);
 425	if (IS_ERR(hw))
 426		goto out_free_characteristics;
 427
 428	hw = at91_clk_register_master_div(regmap, name, "masterck_pres", NULL,
 429					  layout, characteristics,
 430					  &mck_lock, CLK_SET_RATE_GATE, 0);
 431	if (IS_ERR(hw))
 432		goto out_free_characteristics;
 433
 434	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 435	return;
 436
 437out_free_characteristics:
 438	kfree(characteristics);
 439}
 440
 441static void __init of_at91rm9200_clk_master_setup(struct device_node *np)
 442{
 443	of_at91_clk_master_setup(np, &at91rm9200_master_layout);
 444}
 445CLK_OF_DECLARE(at91rm9200_clk_master, "atmel,at91rm9200-clk-master",
 446	       of_at91rm9200_clk_master_setup);
 447
 448static void __init of_at91sam9x5_clk_master_setup(struct device_node *np)
 449{
 450	of_at91_clk_master_setup(np, &at91sam9x5_master_layout);
 451}
 452CLK_OF_DECLARE(at91sam9x5_clk_master, "atmel,at91sam9x5-clk-master",
 453	       of_at91sam9x5_clk_master_setup);
 454
 455static void __init
 456of_at91_clk_periph_setup(struct device_node *np, u8 type)
 457{
 458	int num;
 459	u32 id;
 460	struct clk_hw *hw;
 461	const char *parent_name;
 462	const char *name;
 463	struct device_node *periphclknp;
 464	struct regmap *regmap;
 465	struct device_node *parent_np;
 466
 467	parent_name = of_clk_get_parent_name(np, 0);
 468	if (!parent_name)
 469		return;
 470
 471	num = of_get_child_count(np);
 472	if (!num || num > PERIPHERAL_MAX)
 473		return;
 474
 475	parent_np = of_get_parent(np);
 476	regmap = syscon_node_to_regmap(parent_np);
 477	of_node_put(parent_np);
 478	if (IS_ERR(regmap))
 479		return;
 480
 481	for_each_child_of_node(np, periphclknp) {
 482		if (of_property_read_u32(periphclknp, "reg", &id))
 483			continue;
 484
 485		if (id >= PERIPHERAL_MAX)
 486			continue;
 487
 488		if (of_property_read_string(np, "clock-output-names", &name))
 489			name = periphclknp->name;
 490
 491		if (type == PERIPHERAL_AT91RM9200) {
 492			hw = at91_clk_register_peripheral(regmap, name,
 493							  parent_name, NULL, id);
 494		} else {
 495			struct clk_range range = CLK_RANGE(0, 0);
 496			unsigned long flags = 0;
 497
 498			of_at91_get_clk_range(periphclknp,
 499					      "atmel,clk-output-range",
 500					      &range);
 501
 502			/*
 503			 * mpddr_clk feed DDR controller and is enabled by
 504			 * bootloader thus we need to keep it enabled in case
 505			 * there is no Linux consumer for it.
 506			 */
 507			if (!strcmp(periphclknp->name, "mpddr_clk"))
 508				flags = CLK_IS_CRITICAL;
 509
 510			hw = at91_clk_register_sam9x5_peripheral(regmap,
 511								 &pmc_pcr_lock,
 512								 &dt_pcr_layout,
 513								 name,
 514								 parent_name,
 515								 NULL,
 516								 id, &range,
 517								 INT_MIN,
 518								 flags);
 519		}
 520
 521		if (IS_ERR(hw))
 522			continue;
 523
 524		of_clk_add_hw_provider(periphclknp, of_clk_hw_simple_get, hw);
 525	}
 526}
 527
 528static void __init of_at91rm9200_clk_periph_setup(struct device_node *np)
 529{
 530	of_at91_clk_periph_setup(np, PERIPHERAL_AT91RM9200);
 531}
 532CLK_OF_DECLARE(at91rm9200_clk_periph, "atmel,at91rm9200-clk-peripheral",
 533	       of_at91rm9200_clk_periph_setup);
 534
 535static void __init of_at91sam9x5_clk_periph_setup(struct device_node *np)
 536{
 537	of_at91_clk_periph_setup(np, PERIPHERAL_AT91SAM9X5);
 538}
 539CLK_OF_DECLARE(at91sam9x5_clk_periph, "atmel,at91sam9x5-clk-peripheral",
 540	       of_at91sam9x5_clk_periph_setup);
 541
 542static struct clk_pll_characteristics * __init
 543of_at91_clk_pll_get_characteristics(struct device_node *np)
 544{
 545	int i;
 546	int offset;
 547	u32 tmp;
 548	int num_output;
 549	u32 num_cells;
 550	struct clk_range input;
 551	struct clk_range *output;
 552	u8 *out = NULL;
 553	u16 *icpll = NULL;
 554	struct clk_pll_characteristics *characteristics;
 555
 556	if (of_at91_get_clk_range(np, "atmel,clk-input-range", &input))
 557		return NULL;
 558
 559	if (of_property_read_u32(np, "#atmel,pll-clk-output-range-cells",
 560				 &num_cells))
 561		return NULL;
 562
 563	if (num_cells < 2 || num_cells > 4)
 564		return NULL;
 565
 566	if (!of_get_property(np, "atmel,pll-clk-output-ranges", &tmp))
 567		return NULL;
 568	num_output = tmp / (sizeof(u32) * num_cells);
 569
 570	characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL);
 571	if (!characteristics)
 572		return NULL;
 573
 574	output = kcalloc(num_output, sizeof(*output), GFP_KERNEL);
 575	if (!output)
 576		goto out_free_characteristics;
 577
 578	if (num_cells > 2) {
 579		out = kcalloc(num_output, sizeof(*out), GFP_KERNEL);
 580		if (!out)
 581			goto out_free_output;
 582	}
 583
 584	if (num_cells > 3) {
 585		icpll = kcalloc(num_output, sizeof(*icpll), GFP_KERNEL);
 586		if (!icpll)
 587			goto out_free_output;
 588	}
 589
 590	for (i = 0; i < num_output; i++) {
 591		offset = i * num_cells;
 592		if (of_property_read_u32_index(np,
 593					       "atmel,pll-clk-output-ranges",
 594					       offset, &tmp))
 595			goto out_free_output;
 596		output[i].min = tmp;
 597		if (of_property_read_u32_index(np,
 598					       "atmel,pll-clk-output-ranges",
 599					       offset + 1, &tmp))
 600			goto out_free_output;
 601		output[i].max = tmp;
 602
 603		if (num_cells == 2)
 604			continue;
 605
 606		if (of_property_read_u32_index(np,
 607					       "atmel,pll-clk-output-ranges",
 608					       offset + 2, &tmp))
 609			goto out_free_output;
 610		out[i] = tmp;
 611
 612		if (num_cells == 3)
 613			continue;
 614
 615		if (of_property_read_u32_index(np,
 616					       "atmel,pll-clk-output-ranges",
 617					       offset + 3, &tmp))
 618			goto out_free_output;
 619		icpll[i] = tmp;
 620	}
 621
 622	characteristics->input = input;
 623	characteristics->num_output = num_output;
 624	characteristics->output = output;
 625	characteristics->out = out;
 626	characteristics->icpll = icpll;
 627	return characteristics;
 628
 629out_free_output:
 630	kfree(icpll);
 631	kfree(out);
 632	kfree(output);
 633out_free_characteristics:
 634	kfree(characteristics);
 635	return NULL;
 636}
 637
 638static void __init
 639of_at91_clk_pll_setup(struct device_node *np,
 640		      const struct clk_pll_layout *layout)
 641{
 642	u32 id;
 643	struct clk_hw *hw;
 644	struct regmap *regmap;
 645	const char *parent_name;
 646	const char *name = np->name;
 647	struct device_node *parent_np;
 648	struct clk_pll_characteristics *characteristics;
 649
 650	if (of_property_read_u32(np, "reg", &id))
 651		return;
 652
 653	parent_name = of_clk_get_parent_name(np, 0);
 654
 655	of_property_read_string(np, "clock-output-names", &name);
 656
 657	parent_np = of_get_parent(np);
 658	regmap = syscon_node_to_regmap(parent_np);
 659	of_node_put(parent_np);
 660	if (IS_ERR(regmap))
 661		return;
 662
 663	characteristics = of_at91_clk_pll_get_characteristics(np);
 664	if (!characteristics)
 665		return;
 666
 667	hw = at91_clk_register_pll(regmap, name, parent_name, id, layout,
 668				   characteristics);
 669	if (IS_ERR(hw))
 670		goto out_free_characteristics;
 671
 672	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 673	return;
 674
 675out_free_characteristics:
 676	kfree(characteristics);
 677}
 678
 679static void __init of_at91rm9200_clk_pll_setup(struct device_node *np)
 680{
 681	of_at91_clk_pll_setup(np, &at91rm9200_pll_layout);
 682}
 683CLK_OF_DECLARE(at91rm9200_clk_pll, "atmel,at91rm9200-clk-pll",
 684	       of_at91rm9200_clk_pll_setup);
 685
 686static void __init of_at91sam9g45_clk_pll_setup(struct device_node *np)
 687{
 688	of_at91_clk_pll_setup(np, &at91sam9g45_pll_layout);
 689}
 690CLK_OF_DECLARE(at91sam9g45_clk_pll, "atmel,at91sam9g45-clk-pll",
 691	       of_at91sam9g45_clk_pll_setup);
 692
 693static void __init of_at91sam9g20_clk_pllb_setup(struct device_node *np)
 694{
 695	of_at91_clk_pll_setup(np, &at91sam9g20_pllb_layout);
 696}
 697CLK_OF_DECLARE(at91sam9g20_clk_pllb, "atmel,at91sam9g20-clk-pllb",
 698	       of_at91sam9g20_clk_pllb_setup);
 699
 700static void __init of_sama5d3_clk_pll_setup(struct device_node *np)
 701{
 702	of_at91_clk_pll_setup(np, &sama5d3_pll_layout);
 703}
 704CLK_OF_DECLARE(sama5d3_clk_pll, "atmel,sama5d3-clk-pll",
 705	       of_sama5d3_clk_pll_setup);
 706
 707static void __init
 708of_at91sam9x5_clk_plldiv_setup(struct device_node *np)
 709{
 710	struct clk_hw *hw;
 711	const char *parent_name;
 712	const char *name = np->name;
 713	struct regmap *regmap;
 714	struct device_node *parent_np;
 715
 716	parent_name = of_clk_get_parent_name(np, 0);
 717
 718	of_property_read_string(np, "clock-output-names", &name);
 719
 720	parent_np = of_get_parent(np);
 721	regmap = syscon_node_to_regmap(parent_np);
 722	of_node_put(parent_np);
 723	if (IS_ERR(regmap))
 724		return;
 725
 726	hw = at91_clk_register_plldiv(regmap, name, parent_name);
 727	if (IS_ERR(hw))
 728		return;
 729
 730	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 731}
 732CLK_OF_DECLARE(at91sam9x5_clk_plldiv, "atmel,at91sam9x5-clk-plldiv",
 733	       of_at91sam9x5_clk_plldiv_setup);
 734
 735static void __init
 736of_at91_clk_prog_setup(struct device_node *np,
 737		       const struct clk_programmable_layout *layout,
 738		       u32 *mux_table)
 739{
 740	int num;
 741	u32 id;
 742	struct clk_hw *hw;
 743	unsigned int num_parents;
 744	const char *parent_names[PROG_SOURCE_MAX];
 745	const char *name;
 746	struct device_node *progclknp, *parent_np;
 747	struct regmap *regmap;
 748
 749	num_parents = of_clk_get_parent_count(np);
 750	if (num_parents == 0 || num_parents > PROG_SOURCE_MAX)
 751		return;
 752
 753	of_clk_parent_fill(np, parent_names, num_parents);
 754
 755	num = of_get_child_count(np);
 756	if (!num || num > (PROG_ID_MAX + 1))
 757		return;
 758
 759	parent_np = of_get_parent(np);
 760	regmap = syscon_node_to_regmap(parent_np);
 761	of_node_put(parent_np);
 762	if (IS_ERR(regmap))
 763		return;
 764
 765	for_each_child_of_node(np, progclknp) {
 766		if (of_property_read_u32(progclknp, "reg", &id))
 767			continue;
 768
 769		if (of_property_read_string(np, "clock-output-names", &name))
 770			name = progclknp->name;
 771
 772		hw = at91_clk_register_programmable(regmap, name,
 773						    parent_names, NULL, num_parents,
 774						    id, layout, mux_table);
 775		if (IS_ERR(hw))
 776			continue;
 777
 778		of_clk_add_hw_provider(progclknp, of_clk_hw_simple_get, hw);
 779	}
 780}
 781
 782static void __init of_at91rm9200_clk_prog_setup(struct device_node *np)
 783{
 784	of_at91_clk_prog_setup(np, &at91rm9200_programmable_layout, NULL);
 785}
 786CLK_OF_DECLARE(at91rm9200_clk_prog, "atmel,at91rm9200-clk-programmable",
 787	       of_at91rm9200_clk_prog_setup);
 788
 789static void __init of_at91sam9g45_clk_prog_setup(struct device_node *np)
 790{
 791	of_at91_clk_prog_setup(np, &at91sam9g45_programmable_layout, NULL);
 792}
 793CLK_OF_DECLARE(at91sam9g45_clk_prog, "atmel,at91sam9g45-clk-programmable",
 794	       of_at91sam9g45_clk_prog_setup);
 795
 796static void __init of_at91sam9x5_clk_prog_setup(struct device_node *np)
 797{
 798	of_at91_clk_prog_setup(np, &at91sam9x5_programmable_layout, NULL);
 799}
 800CLK_OF_DECLARE(at91sam9x5_clk_prog, "atmel,at91sam9x5-clk-programmable",
 801	       of_at91sam9x5_clk_prog_setup);
 802
 803static void __init of_at91sam9260_clk_slow_setup(struct device_node *np)
 804{
 805	struct clk_hw *hw;
 806	const char *parent_names[2];
 807	unsigned int num_parents;
 808	const char *name = np->name;
 809	struct regmap *regmap;
 810	struct device_node *parent_np;
 811
 812	num_parents = of_clk_get_parent_count(np);
 813	if (num_parents != 2)
 814		return;
 815
 816	of_clk_parent_fill(np, parent_names, num_parents);
 817	parent_np = of_get_parent(np);
 818	regmap = syscon_node_to_regmap(parent_np);
 819	of_node_put(parent_np);
 820	if (IS_ERR(regmap))
 821		return;
 822
 823	of_property_read_string(np, "clock-output-names", &name);
 824
 825	hw = at91_clk_register_sam9260_slow(regmap, name, parent_names,
 826					    num_parents);
 827	if (IS_ERR(hw))
 828		return;
 829
 830	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 831}
 832CLK_OF_DECLARE(at91sam9260_clk_slow, "atmel,at91sam9260-clk-slow",
 833	       of_at91sam9260_clk_slow_setup);
 834
 835#ifdef CONFIG_HAVE_AT91_SMD
 836#define SMD_SOURCE_MAX		2
 837
 838static void __init of_at91sam9x5_clk_smd_setup(struct device_node *np)
 839{
 840	struct clk_hw *hw;
 841	unsigned int num_parents;
 842	const char *parent_names[SMD_SOURCE_MAX];
 843	const char *name = np->name;
 844	struct regmap *regmap;
 845	struct device_node *parent_np;
 846
 847	num_parents = of_clk_get_parent_count(np);
 848	if (num_parents == 0 || num_parents > SMD_SOURCE_MAX)
 849		return;
 850
 851	of_clk_parent_fill(np, parent_names, num_parents);
 852
 853	of_property_read_string(np, "clock-output-names", &name);
 854
 855	parent_np = of_get_parent(np);
 856	regmap = syscon_node_to_regmap(parent_np);
 857	of_node_put(parent_np);
 858	if (IS_ERR(regmap))
 859		return;
 860
 861	hw = at91sam9x5_clk_register_smd(regmap, name, parent_names,
 862					 num_parents);
 863	if (IS_ERR(hw))
 864		return;
 865
 866	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 867}
 868CLK_OF_DECLARE(at91sam9x5_clk_smd, "atmel,at91sam9x5-clk-smd",
 869	       of_at91sam9x5_clk_smd_setup);
 870#endif /* CONFIG_HAVE_AT91_SMD */
 871
 872static void __init of_at91rm9200_clk_sys_setup(struct device_node *np)
 873{
 874	int num;
 875	u32 id;
 876	struct clk_hw *hw;
 877	const char *name;
 878	struct device_node *sysclknp, *parent_np;
 879	const char *parent_name;
 880	struct regmap *regmap;
 881
 882	num = of_get_child_count(np);
 883	if (num > (SYSTEM_MAX_ID + 1))
 884		return;
 885
 886	parent_np = of_get_parent(np);
 887	regmap = syscon_node_to_regmap(parent_np);
 888	of_node_put(parent_np);
 889	if (IS_ERR(regmap))
 890		return;
 891
 892	for_each_child_of_node(np, sysclknp) {
 893		unsigned long flags = 0;
 894
 895		if (of_property_read_u32(sysclknp, "reg", &id))
 896			continue;
 897
 898		if (of_property_read_string(np, "clock-output-names", &name))
 899			name = sysclknp->name;
 900
 901		parent_name = of_clk_get_parent_name(sysclknp, 0);
 902
 903		/*
 904		 * ddrck feeds DDR controller and is enabled by bootloader thus
 905		 * we need to keep it enabled in case there is no Linux consumer
 906		 * for it.
 907		 */
 908		if (!strcmp(sysclknp->name, "ddrck"))
 909			flags = CLK_IS_CRITICAL;
 910
 911		hw = at91_clk_register_system(regmap, name, parent_name, NULL,
 912					      id, flags);
 913		if (IS_ERR(hw))
 914			continue;
 915
 916		of_clk_add_hw_provider(sysclknp, of_clk_hw_simple_get, hw);
 917	}
 918}
 919CLK_OF_DECLARE(at91rm9200_clk_sys, "atmel,at91rm9200-clk-system",
 920	       of_at91rm9200_clk_sys_setup);
 921
 922#ifdef CONFIG_HAVE_AT91_USB_CLK
 923#define USB_SOURCE_MAX		2
 924
 925static void __init of_at91sam9x5_clk_usb_setup(struct device_node *np)
 926{
 927	struct clk_hw *hw;
 928	unsigned int num_parents;
 929	const char *parent_names[USB_SOURCE_MAX];
 930	const char *name = np->name;
 931	struct regmap *regmap;
 932	struct device_node *parent_np;
 933
 934	num_parents = of_clk_get_parent_count(np);
 935	if (num_parents == 0 || num_parents > USB_SOURCE_MAX)
 936		return;
 937
 938	of_clk_parent_fill(np, parent_names, num_parents);
 939
 940	of_property_read_string(np, "clock-output-names", &name);
 941
 942	parent_np = of_get_parent(np);
 943	regmap = syscon_node_to_regmap(parent_np);
 944	of_node_put(parent_np);
 945	if (IS_ERR(regmap))
 946		return;
 947
 948	hw = at91sam9x5_clk_register_usb(regmap, name, parent_names,
 949					 num_parents);
 950	if (IS_ERR(hw))
 951		return;
 952
 953	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 954}
 955CLK_OF_DECLARE(at91sam9x5_clk_usb, "atmel,at91sam9x5-clk-usb",
 956	       of_at91sam9x5_clk_usb_setup);
 957
 958static void __init of_at91sam9n12_clk_usb_setup(struct device_node *np)
 959{
 960	struct clk_hw *hw;
 961	const char *parent_name;
 962	const char *name = np->name;
 963	struct regmap *regmap;
 964	struct device_node *parent_np;
 965
 966	parent_name = of_clk_get_parent_name(np, 0);
 967	if (!parent_name)
 968		return;
 969
 970	of_property_read_string(np, "clock-output-names", &name);
 971
 972	parent_np = of_get_parent(np);
 973	regmap = syscon_node_to_regmap(parent_np);
 974	of_node_put(parent_np);
 975	if (IS_ERR(regmap))
 976		return;
 977
 978	hw = at91sam9n12_clk_register_usb(regmap, name, parent_name);
 979	if (IS_ERR(hw))
 980		return;
 981
 982	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 983}
 984CLK_OF_DECLARE(at91sam9n12_clk_usb, "atmel,at91sam9n12-clk-usb",
 985	       of_at91sam9n12_clk_usb_setup);
 986
 987static void __init of_at91rm9200_clk_usb_setup(struct device_node *np)
 988{
 989	struct clk_hw *hw;
 990	const char *parent_name;
 991	const char *name = np->name;
 992	u32 divisors[4] = {0, 0, 0, 0};
 993	struct regmap *regmap;
 994	struct device_node *parent_np;
 995
 996	parent_name = of_clk_get_parent_name(np, 0);
 997	if (!parent_name)
 998		return;
 999
1000	of_property_read_u32_array(np, "atmel,clk-divisors", divisors, 4);
1001	if (!divisors[0])
1002		return;
1003
1004	of_property_read_string(np, "clock-output-names", &name);
1005
1006	parent_np = of_get_parent(np);
1007	regmap = syscon_node_to_regmap(parent_np);
1008	of_node_put(parent_np);
1009	if (IS_ERR(regmap))
1010		return;
1011	hw = at91rm9200_clk_register_usb(regmap, name, parent_name, divisors);
1012	if (IS_ERR(hw))
1013		return;
1014
1015	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
1016}
1017CLK_OF_DECLARE(at91rm9200_clk_usb, "atmel,at91rm9200-clk-usb",
1018	       of_at91rm9200_clk_usb_setup);
1019#endif /* CONFIG_HAVE_AT91_USB_CLK */
1020
1021#ifdef CONFIG_HAVE_AT91_UTMI
1022static void __init of_at91sam9x5_clk_utmi_setup(struct device_node *np)
1023{
1024	struct clk_hw *hw;
1025	const char *parent_name;
1026	const char *name = np->name;
1027	struct regmap *regmap_pmc, *regmap_sfr;
1028	struct device_node *parent_np;
1029
1030	parent_name = of_clk_get_parent_name(np, 0);
1031
1032	of_property_read_string(np, "clock-output-names", &name);
1033
1034	parent_np = of_get_parent(np);
1035	regmap_pmc = syscon_node_to_regmap(parent_np);
1036	of_node_put(parent_np);
1037	if (IS_ERR(regmap_pmc))
1038		return;
1039
1040	/*
1041	 * If the device supports different mainck rates, this value has to be
1042	 * set in the UTMI Clock Trimming register.
1043	 * - 9x5: mainck supports several rates but it is indicated that a
1044	 *   12 MHz is needed in case of USB.
1045	 * - sama5d3 and sama5d2: mainck supports several rates. Configuring
1046	 *   the FREQ field of the UTMI Clock Trimming register is mandatory.
1047	 * - sama5d4: mainck is at 12 MHz.
1048	 *
1049	 * We only need to retrieve sama5d3 or sama5d2 sfr regmap.
1050	 */
1051	regmap_sfr = syscon_regmap_lookup_by_compatible("atmel,sama5d3-sfr");
1052	if (IS_ERR(regmap_sfr)) {
1053		regmap_sfr = syscon_regmap_lookup_by_compatible("atmel,sama5d2-sfr");
1054		if (IS_ERR(regmap_sfr))
1055			regmap_sfr = NULL;
1056	}
1057
1058	hw = at91_clk_register_utmi(regmap_pmc, regmap_sfr, name, parent_name, NULL);
1059	if (IS_ERR(hw))
1060		return;
1061
1062	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
1063}
1064CLK_OF_DECLARE(at91sam9x5_clk_utmi, "atmel,at91sam9x5-clk-utmi",
1065	       of_at91sam9x5_clk_utmi_setup);
1066#endif /* CONFIG_HAVE_AT91_UTMI */
v5.4
  1// SPDX-License-Identifier: GPL-2.0
  2#include <linux/clk-provider.h>
  3#include <linux/clk/at91_pmc.h>
  4#include <linux/of.h>
  5#include <linux/mfd/syscon.h>
  6#include <linux/regmap.h>
  7#include <linux/slab.h>
  8
  9#include "pmc.h"
 10
 11#define MASTER_SOURCE_MAX	4
 12
 13#define PERIPHERAL_AT91RM9200	0
 14#define PERIPHERAL_AT91SAM9X5	1
 15
 16#define PERIPHERAL_MAX		64
 17
 18#define PERIPHERAL_ID_MIN	2
 19
 20#define PROG_SOURCE_MAX		5
 21#define PROG_ID_MAX		7
 22
 23#define SYSTEM_MAX_ID		31
 24
 
 
 
 
 25#ifdef CONFIG_HAVE_AT91_AUDIO_PLL
 26static void __init of_sama5d2_clk_audio_pll_frac_setup(struct device_node *np)
 27{
 28	struct clk_hw *hw;
 29	const char *name = np->name;
 30	const char *parent_name;
 31	struct regmap *regmap;
 
 32
 33	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
 34	if (IS_ERR(regmap))
 35		return;
 36
 37	parent_name = of_clk_get_parent_name(np, 0);
 38
 39	hw = at91_clk_register_audio_pll_frac(regmap, name, parent_name);
 40	if (IS_ERR(hw))
 41		return;
 42
 43	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 44}
 45CLK_OF_DECLARE(of_sama5d2_clk_audio_pll_frac_setup,
 46	       "atmel,sama5d2-clk-audio-pll-frac",
 47	       of_sama5d2_clk_audio_pll_frac_setup);
 48
 49static void __init of_sama5d2_clk_audio_pll_pad_setup(struct device_node *np)
 50{
 51	struct clk_hw *hw;
 52	const char *name = np->name;
 53	const char *parent_name;
 54	struct regmap *regmap;
 
 55
 56	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
 57	if (IS_ERR(regmap))
 58		return;
 59
 60	parent_name = of_clk_get_parent_name(np, 0);
 61
 62	hw = at91_clk_register_audio_pll_pad(regmap, name, parent_name);
 63	if (IS_ERR(hw))
 64		return;
 65
 66	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 67}
 68CLK_OF_DECLARE(of_sama5d2_clk_audio_pll_pad_setup,
 69	       "atmel,sama5d2-clk-audio-pll-pad",
 70	       of_sama5d2_clk_audio_pll_pad_setup);
 71
 72static void __init of_sama5d2_clk_audio_pll_pmc_setup(struct device_node *np)
 73{
 74	struct clk_hw *hw;
 75	const char *name = np->name;
 76	const char *parent_name;
 77	struct regmap *regmap;
 
 78
 79	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
 80	if (IS_ERR(regmap))
 81		return;
 82
 83	parent_name = of_clk_get_parent_name(np, 0);
 84
 85	hw = at91_clk_register_audio_pll_pmc(regmap, name, parent_name);
 86	if (IS_ERR(hw))
 87		return;
 88
 89	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
 90}
 91CLK_OF_DECLARE(of_sama5d2_clk_audio_pll_pmc_setup,
 92	       "atmel,sama5d2-clk-audio-pll-pmc",
 93	       of_sama5d2_clk_audio_pll_pmc_setup);
 94#endif /* CONFIG_HAVE_AT91_AUDIO_PLL */
 95
 96static const struct clk_pcr_layout dt_pcr_layout = {
 97	.offset = 0x10c,
 98	.cmd = BIT(12),
 99	.pid_mask = GENMASK(5, 0),
100	.div_mask = GENMASK(17, 16),
101	.gckcss_mask = GENMASK(10, 8),
102};
103
104#ifdef CONFIG_HAVE_AT91_GENERATED_CLK
105#define GENERATED_SOURCE_MAX	6
106
107#define GCK_ID_I2S0		54
108#define GCK_ID_I2S1		55
109#define GCK_ID_CLASSD		59
110
111static void __init of_sama5d2_clk_generated_setup(struct device_node *np)
112{
113	int num;
114	u32 id;
115	const char *name;
116	struct clk_hw *hw;
117	unsigned int num_parents;
118	const char *parent_names[GENERATED_SOURCE_MAX];
119	struct device_node *gcknp;
120	struct clk_range range = CLK_RANGE(0, 0);
121	struct regmap *regmap;
122
123	num_parents = of_clk_get_parent_count(np);
124	if (num_parents == 0 || num_parents > GENERATED_SOURCE_MAX)
125		return;
126
127	of_clk_parent_fill(np, parent_names, num_parents);
128
129	num = of_get_child_count(np);
130	if (!num || num > PERIPHERAL_MAX)
131		return;
132
133	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
134	if (IS_ERR(regmap))
135		return;
136
137	for_each_child_of_node(np, gcknp) {
138		bool pll_audio = false;
139
140		if (of_property_read_u32(gcknp, "reg", &id))
141			continue;
142
143		if (id < PERIPHERAL_ID_MIN || id >= PERIPHERAL_MAX)
144			continue;
145
146		if (of_property_read_string(np, "clock-output-names", &name))
147			name = gcknp->name;
148
149		of_at91_get_clk_range(gcknp, "atmel,clk-output-range",
150				      &range);
151
152		if (of_device_is_compatible(np, "atmel,sama5d2-clk-generated") &&
153		    (id == GCK_ID_I2S0 || id == GCK_ID_I2S1 ||
154		     id == GCK_ID_CLASSD))
155			pll_audio = true;
156
157		hw = at91_clk_register_generated(regmap, &pmc_pcr_lock,
158						 &dt_pcr_layout, name,
159						 parent_names, num_parents,
160						 id, pll_audio, &range);
 
161		if (IS_ERR(hw))
162			continue;
163
164		of_clk_add_hw_provider(gcknp, of_clk_hw_simple_get, hw);
165	}
166}
167CLK_OF_DECLARE(of_sama5d2_clk_generated_setup, "atmel,sama5d2-clk-generated",
168	       of_sama5d2_clk_generated_setup);
169#endif /* CONFIG_HAVE_AT91_GENERATED_CLK */
170
171#ifdef CONFIG_HAVE_AT91_H32MX
172static void __init of_sama5d4_clk_h32mx_setup(struct device_node *np)
173{
174	struct clk_hw *hw;
175	const char *name = np->name;
176	const char *parent_name;
177	struct regmap *regmap;
 
178
179	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
180	if (IS_ERR(regmap))
181		return;
182
183	parent_name = of_clk_get_parent_name(np, 0);
184
185	hw = at91_clk_register_h32mx(regmap, name, parent_name);
186	if (IS_ERR(hw))
187		return;
188
189	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
190}
191CLK_OF_DECLARE(of_sama5d4_clk_h32mx_setup, "atmel,sama5d4-clk-h32mx",
192	       of_sama5d4_clk_h32mx_setup);
193#endif /* CONFIG_HAVE_AT91_H32MX */
194
195#ifdef CONFIG_HAVE_AT91_I2S_MUX_CLK
196#define	I2S_BUS_NR	2
197
198static void __init of_sama5d2_clk_i2s_mux_setup(struct device_node *np)
199{
200	struct regmap *regmap_sfr;
201	u8 bus_id;
202	const char *parent_names[2];
203	struct device_node *i2s_mux_np;
204	struct clk_hw *hw;
205	int ret;
206
207	regmap_sfr = syscon_regmap_lookup_by_compatible("atmel,sama5d2-sfr");
208	if (IS_ERR(regmap_sfr))
209		return;
210
211	for_each_child_of_node(np, i2s_mux_np) {
212		if (of_property_read_u8(i2s_mux_np, "reg", &bus_id))
213			continue;
214
215		if (bus_id > I2S_BUS_NR)
216			continue;
217
218		ret = of_clk_parent_fill(i2s_mux_np, parent_names, 2);
219		if (ret != 2)
220			continue;
221
222		hw = at91_clk_i2s_mux_register(regmap_sfr, i2s_mux_np->name,
223					       parent_names, 2, bus_id);
224		if (IS_ERR(hw))
225			continue;
226
227		of_clk_add_hw_provider(i2s_mux_np, of_clk_hw_simple_get, hw);
228	}
229}
230CLK_OF_DECLARE(sama5d2_clk_i2s_mux, "atmel,sama5d2-clk-i2s-mux",
231	       of_sama5d2_clk_i2s_mux_setup);
232#endif /* CONFIG_HAVE_AT91_I2S_MUX_CLK */
233
234static void __init of_at91rm9200_clk_main_osc_setup(struct device_node *np)
235{
236	struct clk_hw *hw;
237	const char *name = np->name;
238	const char *parent_name;
239	struct regmap *regmap;
240	bool bypass;
 
241
242	of_property_read_string(np, "clock-output-names", &name);
243	bypass = of_property_read_bool(np, "atmel,osc-bypass");
244	parent_name = of_clk_get_parent_name(np, 0);
245
246	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
247	if (IS_ERR(regmap))
248		return;
249
250	hw = at91_clk_register_main_osc(regmap, name, parent_name, bypass);
251	if (IS_ERR(hw))
252		return;
253
254	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
255}
256CLK_OF_DECLARE(at91rm9200_clk_main_osc, "atmel,at91rm9200-clk-main-osc",
257	       of_at91rm9200_clk_main_osc_setup);
258
259static void __init of_at91sam9x5_clk_main_rc_osc_setup(struct device_node *np)
260{
261	struct clk_hw *hw;
262	u32 frequency = 0;
263	u32 accuracy = 0;
264	const char *name = np->name;
265	struct regmap *regmap;
 
266
267	of_property_read_string(np, "clock-output-names", &name);
268	of_property_read_u32(np, "clock-frequency", &frequency);
269	of_property_read_u32(np, "clock-accuracy", &accuracy);
270
271	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
272	if (IS_ERR(regmap))
273		return;
274
275	hw = at91_clk_register_main_rc_osc(regmap, name, frequency, accuracy);
276	if (IS_ERR(hw))
277		return;
278
279	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
280}
281CLK_OF_DECLARE(at91sam9x5_clk_main_rc_osc, "atmel,at91sam9x5-clk-main-rc-osc",
282	       of_at91sam9x5_clk_main_rc_osc_setup);
283
284static void __init of_at91rm9200_clk_main_setup(struct device_node *np)
285{
286	struct clk_hw *hw;
287	const char *parent_name;
288	const char *name = np->name;
289	struct regmap *regmap;
 
290
291	parent_name = of_clk_get_parent_name(np, 0);
292	of_property_read_string(np, "clock-output-names", &name);
293
294	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
295	if (IS_ERR(regmap))
296		return;
297
298	hw = at91_clk_register_rm9200_main(regmap, name, parent_name);
299	if (IS_ERR(hw))
300		return;
301
302	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
303}
304CLK_OF_DECLARE(at91rm9200_clk_main, "atmel,at91rm9200-clk-main",
305	       of_at91rm9200_clk_main_setup);
306
307static void __init of_at91sam9x5_clk_main_setup(struct device_node *np)
308{
309	struct clk_hw *hw;
310	const char *parent_names[2];
311	unsigned int num_parents;
312	const char *name = np->name;
313	struct regmap *regmap;
 
314
315	num_parents = of_clk_get_parent_count(np);
316	if (num_parents == 0 || num_parents > 2)
317		return;
318
319	of_clk_parent_fill(np, parent_names, num_parents);
320	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
321	if (IS_ERR(regmap))
322		return;
323
324	of_property_read_string(np, "clock-output-names", &name);
325
326	hw = at91_clk_register_sam9x5_main(regmap, name, parent_names,
327					   num_parents);
328	if (IS_ERR(hw))
329		return;
330
331	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
332}
333CLK_OF_DECLARE(at91sam9x5_clk_main, "atmel,at91sam9x5-clk-main",
334	       of_at91sam9x5_clk_main_setup);
335
336static struct clk_master_characteristics * __init
337of_at91_clk_master_get_characteristics(struct device_node *np)
338{
339	struct clk_master_characteristics *characteristics;
340
341	characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL);
342	if (!characteristics)
343		return NULL;
344
345	if (of_at91_get_clk_range(np, "atmel,clk-output-range", &characteristics->output))
346		goto out_free_characteristics;
347
348	of_property_read_u32_array(np, "atmel,clk-divisors",
349				   characteristics->divisors, 4);
350
351	characteristics->have_div3_pres =
352		of_property_read_bool(np, "atmel,master-clk-have-div3-pres");
353
354	return characteristics;
355
356out_free_characteristics:
357	kfree(characteristics);
358	return NULL;
359}
360
361static void __init
362of_at91_clk_master_setup(struct device_node *np,
363			 const struct clk_master_layout *layout)
364{
365	struct clk_hw *hw;
366	unsigned int num_parents;
367	const char *parent_names[MASTER_SOURCE_MAX];
368	const char *name = np->name;
369	struct clk_master_characteristics *characteristics;
370	struct regmap *regmap;
 
371
372	num_parents = of_clk_get_parent_count(np);
373	if (num_parents == 0 || num_parents > MASTER_SOURCE_MAX)
374		return;
375
376	of_clk_parent_fill(np, parent_names, num_parents);
377
378	of_property_read_string(np, "clock-output-names", &name);
379
380	characteristics = of_at91_clk_master_get_characteristics(np);
381	if (!characteristics)
382		return;
383
384	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
385	if (IS_ERR(regmap))
386		return;
387
388	hw = at91_clk_register_master(regmap, name, num_parents,
389				      parent_names, layout,
390				      characteristics);
 
 
 
 
 
 
391	if (IS_ERR(hw))
392		goto out_free_characteristics;
393
394	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
395	return;
396
397out_free_characteristics:
398	kfree(characteristics);
399}
400
401static void __init of_at91rm9200_clk_master_setup(struct device_node *np)
402{
403	of_at91_clk_master_setup(np, &at91rm9200_master_layout);
404}
405CLK_OF_DECLARE(at91rm9200_clk_master, "atmel,at91rm9200-clk-master",
406	       of_at91rm9200_clk_master_setup);
407
408static void __init of_at91sam9x5_clk_master_setup(struct device_node *np)
409{
410	of_at91_clk_master_setup(np, &at91sam9x5_master_layout);
411}
412CLK_OF_DECLARE(at91sam9x5_clk_master, "atmel,at91sam9x5-clk-master",
413	       of_at91sam9x5_clk_master_setup);
414
415static void __init
416of_at91_clk_periph_setup(struct device_node *np, u8 type)
417{
418	int num;
419	u32 id;
420	struct clk_hw *hw;
421	const char *parent_name;
422	const char *name;
423	struct device_node *periphclknp;
424	struct regmap *regmap;
 
425
426	parent_name = of_clk_get_parent_name(np, 0);
427	if (!parent_name)
428		return;
429
430	num = of_get_child_count(np);
431	if (!num || num > PERIPHERAL_MAX)
432		return;
433
434	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
435	if (IS_ERR(regmap))
436		return;
437
438	for_each_child_of_node(np, periphclknp) {
439		if (of_property_read_u32(periphclknp, "reg", &id))
440			continue;
441
442		if (id >= PERIPHERAL_MAX)
443			continue;
444
445		if (of_property_read_string(np, "clock-output-names", &name))
446			name = periphclknp->name;
447
448		if (type == PERIPHERAL_AT91RM9200) {
449			hw = at91_clk_register_peripheral(regmap, name,
450							  parent_name, id);
451		} else {
452			struct clk_range range = CLK_RANGE(0, 0);
 
453
454			of_at91_get_clk_range(periphclknp,
455					      "atmel,clk-output-range",
456					      &range);
457
 
 
 
 
 
 
 
 
458			hw = at91_clk_register_sam9x5_peripheral(regmap,
459								 &pmc_pcr_lock,
460								 &dt_pcr_layout,
461								 name,
462								 parent_name,
463								 id, &range);
 
 
 
464		}
465
466		if (IS_ERR(hw))
467			continue;
468
469		of_clk_add_hw_provider(periphclknp, of_clk_hw_simple_get, hw);
470	}
471}
472
473static void __init of_at91rm9200_clk_periph_setup(struct device_node *np)
474{
475	of_at91_clk_periph_setup(np, PERIPHERAL_AT91RM9200);
476}
477CLK_OF_DECLARE(at91rm9200_clk_periph, "atmel,at91rm9200-clk-peripheral",
478	       of_at91rm9200_clk_periph_setup);
479
480static void __init of_at91sam9x5_clk_periph_setup(struct device_node *np)
481{
482	of_at91_clk_periph_setup(np, PERIPHERAL_AT91SAM9X5);
483}
484CLK_OF_DECLARE(at91sam9x5_clk_periph, "atmel,at91sam9x5-clk-peripheral",
485	       of_at91sam9x5_clk_periph_setup);
486
487static struct clk_pll_characteristics * __init
488of_at91_clk_pll_get_characteristics(struct device_node *np)
489{
490	int i;
491	int offset;
492	u32 tmp;
493	int num_output;
494	u32 num_cells;
495	struct clk_range input;
496	struct clk_range *output;
497	u8 *out = NULL;
498	u16 *icpll = NULL;
499	struct clk_pll_characteristics *characteristics;
500
501	if (of_at91_get_clk_range(np, "atmel,clk-input-range", &input))
502		return NULL;
503
504	if (of_property_read_u32(np, "#atmel,pll-clk-output-range-cells",
505				 &num_cells))
506		return NULL;
507
508	if (num_cells < 2 || num_cells > 4)
509		return NULL;
510
511	if (!of_get_property(np, "atmel,pll-clk-output-ranges", &tmp))
512		return NULL;
513	num_output = tmp / (sizeof(u32) * num_cells);
514
515	characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL);
516	if (!characteristics)
517		return NULL;
518
519	output = kcalloc(num_output, sizeof(*output), GFP_KERNEL);
520	if (!output)
521		goto out_free_characteristics;
522
523	if (num_cells > 2) {
524		out = kcalloc(num_output, sizeof(*out), GFP_KERNEL);
525		if (!out)
526			goto out_free_output;
527	}
528
529	if (num_cells > 3) {
530		icpll = kcalloc(num_output, sizeof(*icpll), GFP_KERNEL);
531		if (!icpll)
532			goto out_free_output;
533	}
534
535	for (i = 0; i < num_output; i++) {
536		offset = i * num_cells;
537		if (of_property_read_u32_index(np,
538					       "atmel,pll-clk-output-ranges",
539					       offset, &tmp))
540			goto out_free_output;
541		output[i].min = tmp;
542		if (of_property_read_u32_index(np,
543					       "atmel,pll-clk-output-ranges",
544					       offset + 1, &tmp))
545			goto out_free_output;
546		output[i].max = tmp;
547
548		if (num_cells == 2)
549			continue;
550
551		if (of_property_read_u32_index(np,
552					       "atmel,pll-clk-output-ranges",
553					       offset + 2, &tmp))
554			goto out_free_output;
555		out[i] = tmp;
556
557		if (num_cells == 3)
558			continue;
559
560		if (of_property_read_u32_index(np,
561					       "atmel,pll-clk-output-ranges",
562					       offset + 3, &tmp))
563			goto out_free_output;
564		icpll[i] = tmp;
565	}
566
567	characteristics->input = input;
568	characteristics->num_output = num_output;
569	characteristics->output = output;
570	characteristics->out = out;
571	characteristics->icpll = icpll;
572	return characteristics;
573
574out_free_output:
575	kfree(icpll);
576	kfree(out);
577	kfree(output);
578out_free_characteristics:
579	kfree(characteristics);
580	return NULL;
581}
582
583static void __init
584of_at91_clk_pll_setup(struct device_node *np,
585		      const struct clk_pll_layout *layout)
586{
587	u32 id;
588	struct clk_hw *hw;
589	struct regmap *regmap;
590	const char *parent_name;
591	const char *name = np->name;
 
592	struct clk_pll_characteristics *characteristics;
593
594	if (of_property_read_u32(np, "reg", &id))
595		return;
596
597	parent_name = of_clk_get_parent_name(np, 0);
598
599	of_property_read_string(np, "clock-output-names", &name);
600
601	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
602	if (IS_ERR(regmap))
603		return;
604
605	characteristics = of_at91_clk_pll_get_characteristics(np);
606	if (!characteristics)
607		return;
608
609	hw = at91_clk_register_pll(regmap, name, parent_name, id, layout,
610				   characteristics);
611	if (IS_ERR(hw))
612		goto out_free_characteristics;
613
614	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
615	return;
616
617out_free_characteristics:
618	kfree(characteristics);
619}
620
621static void __init of_at91rm9200_clk_pll_setup(struct device_node *np)
622{
623	of_at91_clk_pll_setup(np, &at91rm9200_pll_layout);
624}
625CLK_OF_DECLARE(at91rm9200_clk_pll, "atmel,at91rm9200-clk-pll",
626	       of_at91rm9200_clk_pll_setup);
627
628static void __init of_at91sam9g45_clk_pll_setup(struct device_node *np)
629{
630	of_at91_clk_pll_setup(np, &at91sam9g45_pll_layout);
631}
632CLK_OF_DECLARE(at91sam9g45_clk_pll, "atmel,at91sam9g45-clk-pll",
633	       of_at91sam9g45_clk_pll_setup);
634
635static void __init of_at91sam9g20_clk_pllb_setup(struct device_node *np)
636{
637	of_at91_clk_pll_setup(np, &at91sam9g20_pllb_layout);
638}
639CLK_OF_DECLARE(at91sam9g20_clk_pllb, "atmel,at91sam9g20-clk-pllb",
640	       of_at91sam9g20_clk_pllb_setup);
641
642static void __init of_sama5d3_clk_pll_setup(struct device_node *np)
643{
644	of_at91_clk_pll_setup(np, &sama5d3_pll_layout);
645}
646CLK_OF_DECLARE(sama5d3_clk_pll, "atmel,sama5d3-clk-pll",
647	       of_sama5d3_clk_pll_setup);
648
649static void __init
650of_at91sam9x5_clk_plldiv_setup(struct device_node *np)
651{
652	struct clk_hw *hw;
653	const char *parent_name;
654	const char *name = np->name;
655	struct regmap *regmap;
 
656
657	parent_name = of_clk_get_parent_name(np, 0);
658
659	of_property_read_string(np, "clock-output-names", &name);
660
661	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
662	if (IS_ERR(regmap))
663		return;
664
665	hw = at91_clk_register_plldiv(regmap, name, parent_name);
666	if (IS_ERR(hw))
667		return;
668
669	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
670}
671CLK_OF_DECLARE(at91sam9x5_clk_plldiv, "atmel,at91sam9x5-clk-plldiv",
672	       of_at91sam9x5_clk_plldiv_setup);
673
674static void __init
675of_at91_clk_prog_setup(struct device_node *np,
676		       const struct clk_programmable_layout *layout)
 
677{
678	int num;
679	u32 id;
680	struct clk_hw *hw;
681	unsigned int num_parents;
682	const char *parent_names[PROG_SOURCE_MAX];
683	const char *name;
684	struct device_node *progclknp;
685	struct regmap *regmap;
686
687	num_parents = of_clk_get_parent_count(np);
688	if (num_parents == 0 || num_parents > PROG_SOURCE_MAX)
689		return;
690
691	of_clk_parent_fill(np, parent_names, num_parents);
692
693	num = of_get_child_count(np);
694	if (!num || num > (PROG_ID_MAX + 1))
695		return;
696
697	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
698	if (IS_ERR(regmap))
699		return;
700
701	for_each_child_of_node(np, progclknp) {
702		if (of_property_read_u32(progclknp, "reg", &id))
703			continue;
704
705		if (of_property_read_string(np, "clock-output-names", &name))
706			name = progclknp->name;
707
708		hw = at91_clk_register_programmable(regmap, name,
709						    parent_names, num_parents,
710						    id, layout);
711		if (IS_ERR(hw))
712			continue;
713
714		of_clk_add_hw_provider(progclknp, of_clk_hw_simple_get, hw);
715	}
716}
717
718static void __init of_at91rm9200_clk_prog_setup(struct device_node *np)
719{
720	of_at91_clk_prog_setup(np, &at91rm9200_programmable_layout);
721}
722CLK_OF_DECLARE(at91rm9200_clk_prog, "atmel,at91rm9200-clk-programmable",
723	       of_at91rm9200_clk_prog_setup);
724
725static void __init of_at91sam9g45_clk_prog_setup(struct device_node *np)
726{
727	of_at91_clk_prog_setup(np, &at91sam9g45_programmable_layout);
728}
729CLK_OF_DECLARE(at91sam9g45_clk_prog, "atmel,at91sam9g45-clk-programmable",
730	       of_at91sam9g45_clk_prog_setup);
731
732static void __init of_at91sam9x5_clk_prog_setup(struct device_node *np)
733{
734	of_at91_clk_prog_setup(np, &at91sam9x5_programmable_layout);
735}
736CLK_OF_DECLARE(at91sam9x5_clk_prog, "atmel,at91sam9x5-clk-programmable",
737	       of_at91sam9x5_clk_prog_setup);
738
739static void __init of_at91sam9260_clk_slow_setup(struct device_node *np)
740{
741	struct clk_hw *hw;
742	const char *parent_names[2];
743	unsigned int num_parents;
744	const char *name = np->name;
745	struct regmap *regmap;
 
746
747	num_parents = of_clk_get_parent_count(np);
748	if (num_parents != 2)
749		return;
750
751	of_clk_parent_fill(np, parent_names, num_parents);
752	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
753	if (IS_ERR(regmap))
754		return;
755
756	of_property_read_string(np, "clock-output-names", &name);
757
758	hw = at91_clk_register_sam9260_slow(regmap, name, parent_names,
759					    num_parents);
760	if (IS_ERR(hw))
761		return;
762
763	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
764}
765CLK_OF_DECLARE(at91sam9260_clk_slow, "atmel,at91sam9260-clk-slow",
766	       of_at91sam9260_clk_slow_setup);
767
768#ifdef CONFIG_HAVE_AT91_SMD
769#define SMD_SOURCE_MAX		2
770
771static void __init of_at91sam9x5_clk_smd_setup(struct device_node *np)
772{
773	struct clk_hw *hw;
774	unsigned int num_parents;
775	const char *parent_names[SMD_SOURCE_MAX];
776	const char *name = np->name;
777	struct regmap *regmap;
 
778
779	num_parents = of_clk_get_parent_count(np);
780	if (num_parents == 0 || num_parents > SMD_SOURCE_MAX)
781		return;
782
783	of_clk_parent_fill(np, parent_names, num_parents);
784
785	of_property_read_string(np, "clock-output-names", &name);
786
787	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
788	if (IS_ERR(regmap))
789		return;
790
791	hw = at91sam9x5_clk_register_smd(regmap, name, parent_names,
792					 num_parents);
793	if (IS_ERR(hw))
794		return;
795
796	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
797}
798CLK_OF_DECLARE(at91sam9x5_clk_smd, "atmel,at91sam9x5-clk-smd",
799	       of_at91sam9x5_clk_smd_setup);
800#endif /* CONFIG_HAVE_AT91_SMD */
801
802static void __init of_at91rm9200_clk_sys_setup(struct device_node *np)
803{
804	int num;
805	u32 id;
806	struct clk_hw *hw;
807	const char *name;
808	struct device_node *sysclknp;
809	const char *parent_name;
810	struct regmap *regmap;
811
812	num = of_get_child_count(np);
813	if (num > (SYSTEM_MAX_ID + 1))
814		return;
815
816	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
817	if (IS_ERR(regmap))
818		return;
819
820	for_each_child_of_node(np, sysclknp) {
 
 
821		if (of_property_read_u32(sysclknp, "reg", &id))
822			continue;
823
824		if (of_property_read_string(np, "clock-output-names", &name))
825			name = sysclknp->name;
826
827		parent_name = of_clk_get_parent_name(sysclknp, 0);
828
829		hw = at91_clk_register_system(regmap, name, parent_name, id);
 
 
 
 
 
 
 
 
 
830		if (IS_ERR(hw))
831			continue;
832
833		of_clk_add_hw_provider(sysclknp, of_clk_hw_simple_get, hw);
834	}
835}
836CLK_OF_DECLARE(at91rm9200_clk_sys, "atmel,at91rm9200-clk-system",
837	       of_at91rm9200_clk_sys_setup);
838
839#ifdef CONFIG_HAVE_AT91_USB_CLK
840#define USB_SOURCE_MAX		2
841
842static void __init of_at91sam9x5_clk_usb_setup(struct device_node *np)
843{
844	struct clk_hw *hw;
845	unsigned int num_parents;
846	const char *parent_names[USB_SOURCE_MAX];
847	const char *name = np->name;
848	struct regmap *regmap;
 
849
850	num_parents = of_clk_get_parent_count(np);
851	if (num_parents == 0 || num_parents > USB_SOURCE_MAX)
852		return;
853
854	of_clk_parent_fill(np, parent_names, num_parents);
855
856	of_property_read_string(np, "clock-output-names", &name);
857
858	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
859	if (IS_ERR(regmap))
860		return;
861
862	hw = at91sam9x5_clk_register_usb(regmap, name, parent_names,
863					 num_parents);
864	if (IS_ERR(hw))
865		return;
866
867	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
868}
869CLK_OF_DECLARE(at91sam9x5_clk_usb, "atmel,at91sam9x5-clk-usb",
870	       of_at91sam9x5_clk_usb_setup);
871
872static void __init of_at91sam9n12_clk_usb_setup(struct device_node *np)
873{
874	struct clk_hw *hw;
875	const char *parent_name;
876	const char *name = np->name;
877	struct regmap *regmap;
 
878
879	parent_name = of_clk_get_parent_name(np, 0);
880	if (!parent_name)
881		return;
882
883	of_property_read_string(np, "clock-output-names", &name);
884
885	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
886	if (IS_ERR(regmap))
887		return;
888
889	hw = at91sam9n12_clk_register_usb(regmap, name, parent_name);
890	if (IS_ERR(hw))
891		return;
892
893	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
894}
895CLK_OF_DECLARE(at91sam9n12_clk_usb, "atmel,at91sam9n12-clk-usb",
896	       of_at91sam9n12_clk_usb_setup);
897
898static void __init of_at91rm9200_clk_usb_setup(struct device_node *np)
899{
900	struct clk_hw *hw;
901	const char *parent_name;
902	const char *name = np->name;
903	u32 divisors[4] = {0, 0, 0, 0};
904	struct regmap *regmap;
 
905
906	parent_name = of_clk_get_parent_name(np, 0);
907	if (!parent_name)
908		return;
909
910	of_property_read_u32_array(np, "atmel,clk-divisors", divisors, 4);
911	if (!divisors[0])
912		return;
913
914	of_property_read_string(np, "clock-output-names", &name);
915
916	regmap = syscon_node_to_regmap(of_get_parent(np));
 
 
917	if (IS_ERR(regmap))
918		return;
919	hw = at91rm9200_clk_register_usb(regmap, name, parent_name, divisors);
920	if (IS_ERR(hw))
921		return;
922
923	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
924}
925CLK_OF_DECLARE(at91rm9200_clk_usb, "atmel,at91rm9200-clk-usb",
926	       of_at91rm9200_clk_usb_setup);
927#endif /* CONFIG_HAVE_AT91_USB_CLK */
928
929#ifdef CONFIG_HAVE_AT91_UTMI
930static void __init of_at91sam9x5_clk_utmi_setup(struct device_node *np)
931{
932	struct clk_hw *hw;
933	const char *parent_name;
934	const char *name = np->name;
935	struct regmap *regmap_pmc, *regmap_sfr;
 
936
937	parent_name = of_clk_get_parent_name(np, 0);
938
939	of_property_read_string(np, "clock-output-names", &name);
940
941	regmap_pmc = syscon_node_to_regmap(of_get_parent(np));
 
 
942	if (IS_ERR(regmap_pmc))
943		return;
944
945	/*
946	 * If the device supports different mainck rates, this value has to be
947	 * set in the UTMI Clock Trimming register.
948	 * - 9x5: mainck supports several rates but it is indicated that a
949	 *   12 MHz is needed in case of USB.
950	 * - sama5d3 and sama5d2: mainck supports several rates. Configuring
951	 *   the FREQ field of the UTMI Clock Trimming register is mandatory.
952	 * - sama5d4: mainck is at 12 MHz.
953	 *
954	 * We only need to retrieve sama5d3 or sama5d2 sfr regmap.
955	 */
956	regmap_sfr = syscon_regmap_lookup_by_compatible("atmel,sama5d3-sfr");
957	if (IS_ERR(regmap_sfr)) {
958		regmap_sfr = syscon_regmap_lookup_by_compatible("atmel,sama5d2-sfr");
959		if (IS_ERR(regmap_sfr))
960			regmap_sfr = NULL;
961	}
962
963	hw = at91_clk_register_utmi(regmap_pmc, regmap_sfr, name, parent_name);
964	if (IS_ERR(hw))
965		return;
966
967	of_clk_add_hw_provider(np, of_clk_hw_simple_get, hw);
968}
969CLK_OF_DECLARE(at91sam9x5_clk_utmi, "atmel,at91sam9x5-clk-utmi",
970	       of_at91sam9x5_clk_utmi_setup);
971#endif /* CONFIG_HAVE_AT91_UTMI */