1 // SPDX-License-Identifier: GPL-2.0
3 * Clock driver for TI Davinci PSC controllers
5 * Copyright (C) 2017 David Lechner <david@lechnology.com>
7 * Based on: drivers/clk/keystone/gate.c
8 * Copyright (C) 2013 Texas Instruments.
9 * Murali Karicheri <m-karicheri2@ti.com>
10 * Santosh Shilimkar <santosh.shilimkar@ti.com>
12 * And: arch/arm/mach-davinci/psc.c
13 * Copyright (C) 2006 Texas Instruments.
16 #include <linux/clk-provider.h>
17 #include <linux/clk.h>
18 #include <linux/clk/davinci.h>
19 #include <linux/clkdev.h>
20 #include <linux/err.h>
21 #include <linux/of_address.h>
22 #include <linux/of_device.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_clock.h>
26 #include <linux/pm_domain.h>
27 #include <linux/regmap.h>
28 #include <linux/reset-controller.h>
29 #include <linux/slab.h>
30 #include <linux/types.h>
34 /* PSC register offsets */
38 #define PDSTAT(n) (0x200 + 4 * (n))
39 #define PDCTL(n) (0x300 + 4 * (n))
40 #define MDSTAT(n) (0x800 + 4 * (n))
41 #define MDCTL(n) (0xa00 + 4 * (n))
43 /* PSC module states */
44 enum davinci_lpsc_state
{
45 LPSC_STATE_SWRSTDISABLE
= 0,
46 LPSC_STATE_SYNCRST
= 1,
47 LPSC_STATE_DISABLE
= 2,
48 LPSC_STATE_ENABLE
= 3,
51 #define MDSTAT_STATE_MASK GENMASK(5, 0)
52 #define MDSTAT_MCKOUT BIT(12)
53 #define PDSTAT_STATE_MASK GENMASK(4, 0)
54 #define MDCTL_FORCE BIT(31)
55 #define MDCTL_LRESET BIT(8)
56 #define PDCTL_EPCGOOD BIT(8)
57 #define PDCTL_NEXT BIT(0)
59 struct davinci_psc_data
{
60 struct clk_onecell_data clk_data
;
61 struct genpd_onecell_data pm_data
;
62 struct reset_controller_dev rcdev
;
66 * struct davinci_lpsc_clk - LPSC clock structure
67 * @dev: the device that provides this LPSC or NULL
68 * @hw: clk_hw for the LPSC
69 * @pm_domain: power domain for the LPSC
70 * @genpd_clk: clock reference owned by @pm_domain
71 * @regmap: PSC MMIO region
72 * @md: Module domain (LPSC module id)
74 * @flags: LPSC_* quirk flags
76 struct davinci_lpsc_clk
{
79 struct generic_pm_domain pm_domain
;
80 struct clk
*genpd_clk
;
81 struct regmap
*regmap
;
87 #define to_davinci_psc_data(x) container_of(x, struct davinci_psc_data, x)
88 #define to_davinci_lpsc_clk(x) container_of(x, struct davinci_lpsc_clk, x)
91 * best_dev_name - get the "best" device name.
94 * Returns the device tree compatible name if the device has a DT node,
95 * otherwise return the device name. This is mainly needed because clkdev
96 * lookups are limited to 20 chars for dev_id and when using device tree,
97 * dev_name(dev) is much longer than that.
99 static inline const char *best_dev_name(struct device
*dev
)
101 const char *compatible
;
103 if (!of_property_read_string(dev
->of_node
, "compatible", &compatible
))
106 return dev_name(dev
);
109 static void davinci_lpsc_config(struct davinci_lpsc_clk
*lpsc
,
110 enum davinci_lpsc_state next_state
)
112 u32 epcpr
, pdstat
, mdstat
, ptstat
;
114 regmap_write_bits(lpsc
->regmap
, MDCTL(lpsc
->md
), MDSTAT_STATE_MASK
,
117 if (lpsc
->flags
& LPSC_FORCE
)
118 regmap_write_bits(lpsc
->regmap
, MDCTL(lpsc
->md
), MDCTL_FORCE
,
121 regmap_read(lpsc
->regmap
, PDSTAT(lpsc
->pd
), &pdstat
);
122 if ((pdstat
& PDSTAT_STATE_MASK
) == 0) {
123 regmap_write_bits(lpsc
->regmap
, PDCTL(lpsc
->pd
), PDCTL_NEXT
,
126 regmap_write(lpsc
->regmap
, PTCMD
, BIT(lpsc
->pd
));
128 regmap_read_poll_timeout(lpsc
->regmap
, EPCPR
, epcpr
,
129 epcpr
& BIT(lpsc
->pd
), 0, 0);
131 regmap_write_bits(lpsc
->regmap
, PDCTL(lpsc
->pd
), PDCTL_EPCGOOD
,
134 regmap_write(lpsc
->regmap
, PTCMD
, BIT(lpsc
->pd
));
137 regmap_read_poll_timeout(lpsc
->regmap
, PTSTAT
, ptstat
,
138 !(ptstat
& BIT(lpsc
->pd
)), 0, 0);
140 regmap_read_poll_timeout(lpsc
->regmap
, MDSTAT(lpsc
->md
), mdstat
,
141 (mdstat
& MDSTAT_STATE_MASK
) == next_state
,
145 static int davinci_lpsc_clk_enable(struct clk_hw
*hw
)
147 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
149 davinci_lpsc_config(lpsc
, LPSC_STATE_ENABLE
);
154 static void davinci_lpsc_clk_disable(struct clk_hw
*hw
)
156 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
158 davinci_lpsc_config(lpsc
, LPSC_STATE_DISABLE
);
161 static int davinci_lpsc_clk_is_enabled(struct clk_hw
*hw
)
163 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
166 regmap_read(lpsc
->regmap
, MDSTAT(lpsc
->md
), &mdstat
);
168 return (mdstat
& MDSTAT_MCKOUT
) ? 1 : 0;
171 static const struct clk_ops davinci_lpsc_clk_ops
= {
172 .enable
= davinci_lpsc_clk_enable
,
173 .disable
= davinci_lpsc_clk_disable
,
174 .is_enabled
= davinci_lpsc_clk_is_enabled
,
177 static int davinci_psc_genpd_attach_dev(struct generic_pm_domain
*pm_domain
,
180 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(pm_domain
);
185 * pm_clk_remove_clk() will call clk_put(), so we have to use clk_get()
186 * to get the clock instead of using lpsc->hw.clk directly.
188 clk
= clk_get_sys(best_dev_name(lpsc
->dev
), clk_hw_get_name(&lpsc
->hw
));
190 return (PTR_ERR(clk
));
192 ret
= pm_clk_create(dev
);
196 ret
= pm_clk_add_clk(dev
, clk
);
198 goto fail_pm_clk_destroy
;
200 lpsc
->genpd_clk
= clk
;
212 static void davinci_psc_genpd_detach_dev(struct generic_pm_domain
*pm_domain
,
215 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(pm_domain
);
217 pm_clk_remove_clk(dev
, lpsc
->genpd_clk
);
220 lpsc
->genpd_clk
= NULL
;
224 * davinci_lpsc_clk_register - register LPSC clock
225 * @dev: the clocks's device or NULL
226 * @name: name of this clock
227 * @parent_name: name of clock's parent
228 * @regmap: PSC MMIO region
229 * @md: local PSC number
231 * @flags: LPSC_* flags
233 static struct davinci_lpsc_clk
*
234 davinci_lpsc_clk_register(struct device
*dev
, const char *name
,
235 const char *parent_name
, struct regmap
*regmap
,
236 u32 md
, u32 pd
, u32 flags
)
238 struct clk_init_data init
;
239 struct davinci_lpsc_clk
*lpsc
;
243 lpsc
= kzalloc(sizeof(*lpsc
), GFP_KERNEL
);
245 return ERR_PTR(-ENOMEM
);
248 init
.ops
= &davinci_lpsc_clk_ops
;
249 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
250 init
.num_parents
= (parent_name
? 1 : 0);
253 if (flags
& LPSC_ALWAYS_ENABLED
)
254 init
.flags
|= CLK_IS_CRITICAL
;
256 if (flags
& LPSC_SET_RATE_PARENT
)
257 init
.flags
|= CLK_SET_RATE_PARENT
;
260 lpsc
->regmap
= regmap
;
261 lpsc
->hw
.init
= &init
;
266 ret
= clk_hw_register(dev
, &lpsc
->hw
);
272 /* for now, genpd is only registered when using device-tree */
273 if (!dev
|| !dev
->of_node
)
276 /* genpd attach needs a way to look up this clock */
277 ret
= clk_hw_register_clkdev(&lpsc
->hw
, name
, best_dev_name(dev
));
279 lpsc
->pm_domain
.name
= devm_kasprintf(dev
, GFP_KERNEL
, "%s: %s",
280 best_dev_name(dev
), name
);
281 lpsc
->pm_domain
.attach_dev
= davinci_psc_genpd_attach_dev
;
282 lpsc
->pm_domain
.detach_dev
= davinci_psc_genpd_detach_dev
;
283 lpsc
->pm_domain
.flags
= GENPD_FLAG_PM_CLK
;
285 is_on
= davinci_lpsc_clk_is_enabled(&lpsc
->hw
);
286 pm_genpd_init(&lpsc
->pm_domain
, NULL
, is_on
);
291 static int davinci_lpsc_clk_reset(struct clk
*clk
, bool reset
)
293 struct clk_hw
*hw
= __clk_get_hw(clk
);
294 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
297 if (IS_ERR_OR_NULL(lpsc
))
300 mdctl
= reset
? 0 : MDCTL_LRESET
;
301 regmap_write_bits(lpsc
->regmap
, MDCTL(lpsc
->md
), MDCTL_LRESET
, mdctl
);
306 static int davinci_psc_reset_assert(struct reset_controller_dev
*rcdev
,
309 struct davinci_psc_data
*psc
= to_davinci_psc_data(rcdev
);
310 struct clk
*clk
= psc
->clk_data
.clks
[id
];
312 return davinci_lpsc_clk_reset(clk
, true);
315 static int davinci_psc_reset_deassert(struct reset_controller_dev
*rcdev
,
318 struct davinci_psc_data
*psc
= to_davinci_psc_data(rcdev
);
319 struct clk
*clk
= psc
->clk_data
.clks
[id
];
321 return davinci_lpsc_clk_reset(clk
, false);
324 static const struct reset_control_ops davinci_psc_reset_ops
= {
325 .assert = davinci_psc_reset_assert
,
326 .deassert
= davinci_psc_reset_deassert
,
329 static int davinci_psc_reset_of_xlate(struct reset_controller_dev
*rcdev
,
330 const struct of_phandle_args
*reset_spec
)
332 struct of_phandle_args clkspec
= *reset_spec
; /* discard const qualifier */
335 struct davinci_lpsc_clk
*lpsc
;
337 /* the clock node is the same as the reset node */
338 clk
= of_clk_get_from_provider(&clkspec
);
342 hw
= __clk_get_hw(clk
);
343 lpsc
= to_davinci_lpsc_clk(hw
);
346 /* not all modules support local reset */
347 if (!(lpsc
->flags
& LPSC_LOCAL_RESET
))
353 static const struct regmap_config davinci_psc_regmap_config
= {
359 static struct davinci_psc_data
*
360 __davinci_psc_register_clocks(struct device
*dev
,
361 const struct davinci_lpsc_clk_info
*info
,
365 struct davinci_psc_data
*psc
;
367 struct generic_pm_domain
**pm_domains
;
368 struct regmap
*regmap
;
371 psc
= kzalloc(sizeof(*psc
), GFP_KERNEL
);
373 return ERR_PTR(-ENOMEM
);
375 clks
= kmalloc_array(num_clks
, sizeof(*clks
), GFP_KERNEL
);
381 psc
->clk_data
.clks
= clks
;
382 psc
->clk_data
.clk_num
= num_clks
;
385 * init array with error so that of_clk_src_onecell_get() doesn't
386 * return NULL for gaps in the sparse array
388 for (i
= 0; i
< num_clks
; i
++)
389 clks
[i
] = ERR_PTR(-ENOENT
);
391 pm_domains
= kcalloc(num_clks
, sizeof(*pm_domains
), GFP_KERNEL
);
397 psc
->pm_data
.domains
= pm_domains
;
398 psc
->pm_data
.num_domains
= num_clks
;
400 regmap
= regmap_init_mmio(dev
, base
, &davinci_psc_regmap_config
);
401 if (IS_ERR(regmap
)) {
402 ret
= PTR_ERR(regmap
);
403 goto err_free_pm_domains
;
406 for (; info
->name
; info
++) {
407 struct davinci_lpsc_clk
*lpsc
;
409 lpsc
= davinci_lpsc_clk_register(dev
, info
->name
, info
->parent
,
410 regmap
, info
->md
, info
->pd
,
413 dev_warn(dev
, "Failed to register %s (%ld)\n",
414 info
->name
, PTR_ERR(lpsc
));
418 clks
[info
->md
] = lpsc
->hw
.clk
;
419 pm_domains
[info
->md
] = &lpsc
->pm_domain
;
423 * for now, a reset controller is only registered when there is a device
424 * to associate it with.
429 psc
->rcdev
.ops
= &davinci_psc_reset_ops
;
430 psc
->rcdev
.owner
= THIS_MODULE
;
431 psc
->rcdev
.dev
= dev
;
432 psc
->rcdev
.of_node
= dev
->of_node
;
433 psc
->rcdev
.of_reset_n_cells
= 1;
434 psc
->rcdev
.of_xlate
= davinci_psc_reset_of_xlate
;
435 psc
->rcdev
.nr_resets
= num_clks
;
437 ret
= devm_reset_controller_register(dev
, &psc
->rcdev
);
439 dev_warn(dev
, "Failed to register reset controller (%d)\n", ret
);
453 int davinci_psc_register_clocks(struct device
*dev
,
454 const struct davinci_lpsc_clk_info
*info
,
458 struct davinci_psc_data
*psc
;
460 psc
= __davinci_psc_register_clocks(dev
, info
, num_clks
, base
);
464 for (; info
->name
; info
++) {
465 const struct davinci_lpsc_clkdev_info
*cdevs
= info
->cdevs
;
466 struct clk
*clk
= psc
->clk_data
.clks
[info
->md
];
468 if (!cdevs
|| IS_ERR_OR_NULL(clk
))
471 for (; cdevs
->con_id
|| cdevs
->dev_id
; cdevs
++)
472 clk_register_clkdev(clk
, cdevs
->con_id
, cdevs
->dev_id
);
478 int of_davinci_psc_clk_init(struct device
*dev
,
479 const struct davinci_lpsc_clk_info
*info
,
483 struct device_node
*node
= dev
->of_node
;
484 struct davinci_psc_data
*psc
;
486 psc
= __davinci_psc_register_clocks(dev
, info
, num_clks
, base
);
490 of_genpd_add_provider_onecell(node
, &psc
->pm_data
);
492 of_clk_add_provider(node
, of_clk_src_onecell_get
, &psc
->clk_data
);
497 static const struct of_device_id davinci_psc_of_match
[] = {
498 #ifdef CONFIG_ARCH_DAVINCI_DA850
499 { .compatible
= "ti,da850-psc0", .data
= &of_da850_psc0_init_data
},
500 { .compatible
= "ti,da850-psc1", .data
= &of_da850_psc1_init_data
},
505 static const struct platform_device_id davinci_psc_id_table
[] = {
506 #ifdef CONFIG_ARCH_DAVINCI_DA830
507 { .name
= "da830-psc0", .driver_data
= (kernel_ulong_t
)&da830_psc0_init_data
},
508 { .name
= "da830-psc1", .driver_data
= (kernel_ulong_t
)&da830_psc1_init_data
},
510 #ifdef CONFIG_ARCH_DAVINCI_DA850
511 { .name
= "da850-psc0", .driver_data
= (kernel_ulong_t
)&da850_psc0_init_data
},
512 { .name
= "da850-psc1", .driver_data
= (kernel_ulong_t
)&da850_psc1_init_data
},
514 #ifdef CONFIG_ARCH_DAVINCI_DM355
515 { .name
= "dm355-psc", .driver_data
= (kernel_ulong_t
)&dm355_psc_init_data
},
517 #ifdef CONFIG_ARCH_DAVINCI_DM365
518 { .name
= "dm365-psc", .driver_data
= (kernel_ulong_t
)&dm365_psc_init_data
},
520 #ifdef CONFIG_ARCH_DAVINCI_DM644x
521 { .name
= "dm644x-psc", .driver_data
= (kernel_ulong_t
)&dm644x_psc_init_data
},
523 #ifdef CONFIG_ARCH_DAVINCI_DM646x
524 { .name
= "dm646x-psc", .driver_data
= (kernel_ulong_t
)&dm646x_psc_init_data
},
529 static int davinci_psc_probe(struct platform_device
*pdev
)
531 struct device
*dev
= &pdev
->dev
;
532 const struct of_device_id
*of_id
;
533 const struct davinci_psc_init_data
*init_data
= NULL
;
537 of_id
= of_match_device(davinci_psc_of_match
, dev
);
539 init_data
= of_id
->data
;
540 else if (pdev
->id_entry
)
541 init_data
= (void *)pdev
->id_entry
->driver_data
;
544 dev_err(dev
, "unable to find driver init data\n");
548 base
= devm_platform_ioremap_resource(pdev
, 0);
550 return PTR_ERR(base
);
552 ret
= devm_clk_bulk_get(dev
, init_data
->num_parent_clks
,
553 init_data
->parent_clks
);
557 return init_data
->psc_init(dev
, base
);
560 static struct platform_driver davinci_psc_driver
= {
561 .probe
= davinci_psc_probe
,
563 .name
= "davinci-psc-clk",
564 .of_match_table
= davinci_psc_of_match
,
566 .id_table
= davinci_psc_id_table
,
569 static int __init
davinci_psc_driver_init(void)
571 return platform_driver_register(&davinci_psc_driver
);
574 /* has to be postcore_initcall because davinci_gpio depend on PSC clocks */
575 postcore_initcall(davinci_psc_driver_init
);