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
);
307 * REVISIT: These exported functions can be removed after a non-DT lookup is
308 * added to the reset controller framework and the davinci-rproc driver is
309 * updated to use the generic reset controller framework.
312 int davinci_clk_reset_assert(struct clk
*clk
)
314 return davinci_lpsc_clk_reset(clk
, true);
316 EXPORT_SYMBOL(davinci_clk_reset_assert
);
318 int davinci_clk_reset_deassert(struct clk
*clk
)
320 return davinci_lpsc_clk_reset(clk
, false);
322 EXPORT_SYMBOL(davinci_clk_reset_deassert
);
324 static int davinci_psc_reset_assert(struct reset_controller_dev
*rcdev
,
327 struct davinci_psc_data
*psc
= to_davinci_psc_data(rcdev
);
328 struct clk
*clk
= psc
->clk_data
.clks
[id
];
330 return davinci_lpsc_clk_reset(clk
, true);
333 static int davinci_psc_reset_deassert(struct reset_controller_dev
*rcdev
,
336 struct davinci_psc_data
*psc
= to_davinci_psc_data(rcdev
);
337 struct clk
*clk
= psc
->clk_data
.clks
[id
];
339 return davinci_lpsc_clk_reset(clk
, false);
342 static const struct reset_control_ops davinci_psc_reset_ops
= {
343 .assert = davinci_psc_reset_assert
,
344 .deassert
= davinci_psc_reset_deassert
,
347 static int davinci_psc_reset_of_xlate(struct reset_controller_dev
*rcdev
,
348 const struct of_phandle_args
*reset_spec
)
350 struct of_phandle_args clkspec
= *reset_spec
; /* discard const qualifier */
353 struct davinci_lpsc_clk
*lpsc
;
355 /* the clock node is the same as the reset node */
356 clk
= of_clk_get_from_provider(&clkspec
);
360 hw
= __clk_get_hw(clk
);
361 lpsc
= to_davinci_lpsc_clk(hw
);
364 /* not all modules support local reset */
365 if (!(lpsc
->flags
& LPSC_LOCAL_RESET
))
371 static const struct regmap_config davinci_psc_regmap_config
= {
377 static struct davinci_psc_data
*
378 __davinci_psc_register_clocks(struct device
*dev
,
379 const struct davinci_lpsc_clk_info
*info
,
383 struct davinci_psc_data
*psc
;
385 struct generic_pm_domain
**pm_domains
;
386 struct regmap
*regmap
;
389 psc
= kzalloc(sizeof(*psc
), GFP_KERNEL
);
391 return ERR_PTR(-ENOMEM
);
393 clks
= kmalloc_array(num_clks
, sizeof(*clks
), GFP_KERNEL
);
399 psc
->clk_data
.clks
= clks
;
400 psc
->clk_data
.clk_num
= num_clks
;
403 * init array with error so that of_clk_src_onecell_get() doesn't
404 * return NULL for gaps in the sparse array
406 for (i
= 0; i
< num_clks
; i
++)
407 clks
[i
] = ERR_PTR(-ENOENT
);
409 pm_domains
= kcalloc(num_clks
, sizeof(*pm_domains
), GFP_KERNEL
);
415 psc
->pm_data
.domains
= pm_domains
;
416 psc
->pm_data
.num_domains
= num_clks
;
418 regmap
= regmap_init_mmio(dev
, base
, &davinci_psc_regmap_config
);
419 if (IS_ERR(regmap
)) {
420 ret
= PTR_ERR(regmap
);
421 goto err_free_pm_domains
;
424 for (; info
->name
; info
++) {
425 struct davinci_lpsc_clk
*lpsc
;
427 lpsc
= davinci_lpsc_clk_register(dev
, info
->name
, info
->parent
,
428 regmap
, info
->md
, info
->pd
,
431 dev_warn(dev
, "Failed to register %s (%ld)\n",
432 info
->name
, PTR_ERR(lpsc
));
436 clks
[info
->md
] = lpsc
->hw
.clk
;
437 pm_domains
[info
->md
] = &lpsc
->pm_domain
;
441 * for now, a reset controller is only registered when there is a device
442 * to associate it with.
447 psc
->rcdev
.ops
= &davinci_psc_reset_ops
;
448 psc
->rcdev
.owner
= THIS_MODULE
;
449 psc
->rcdev
.dev
= dev
;
450 psc
->rcdev
.of_node
= dev
->of_node
;
451 psc
->rcdev
.of_reset_n_cells
= 1;
452 psc
->rcdev
.of_xlate
= davinci_psc_reset_of_xlate
;
453 psc
->rcdev
.nr_resets
= num_clks
;
455 ret
= devm_reset_controller_register(dev
, &psc
->rcdev
);
457 dev_warn(dev
, "Failed to register reset controller (%d)\n", ret
);
471 int davinci_psc_register_clocks(struct device
*dev
,
472 const struct davinci_lpsc_clk_info
*info
,
476 struct davinci_psc_data
*psc
;
478 psc
= __davinci_psc_register_clocks(dev
, info
, num_clks
, base
);
482 for (; info
->name
; info
++) {
483 const struct davinci_lpsc_clkdev_info
*cdevs
= info
->cdevs
;
484 struct clk
*clk
= psc
->clk_data
.clks
[info
->md
];
486 if (!cdevs
|| IS_ERR_OR_NULL(clk
))
489 for (; cdevs
->con_id
|| cdevs
->dev_id
; cdevs
++)
490 clk_register_clkdev(clk
, cdevs
->con_id
, cdevs
->dev_id
);
496 int of_davinci_psc_clk_init(struct device
*dev
,
497 const struct davinci_lpsc_clk_info
*info
,
501 struct device_node
*node
= dev
->of_node
;
502 struct davinci_psc_data
*psc
;
504 psc
= __davinci_psc_register_clocks(dev
, info
, num_clks
, base
);
508 of_genpd_add_provider_onecell(node
, &psc
->pm_data
);
510 of_clk_add_provider(node
, of_clk_src_onecell_get
, &psc
->clk_data
);
515 static const struct of_device_id davinci_psc_of_match
[] = {
516 #ifdef CONFIG_ARCH_DAVINCI_DA850
517 { .compatible
= "ti,da850-psc0", .data
= &of_da850_psc0_init_data
},
518 { .compatible
= "ti,da850-psc1", .data
= &of_da850_psc1_init_data
},
523 static const struct platform_device_id davinci_psc_id_table
[] = {
524 #ifdef CONFIG_ARCH_DAVINCI_DA830
525 { .name
= "da830-psc0", .driver_data
= (kernel_ulong_t
)&da830_psc0_init_data
},
526 { .name
= "da830-psc1", .driver_data
= (kernel_ulong_t
)&da830_psc1_init_data
},
528 #ifdef CONFIG_ARCH_DAVINCI_DA850
529 { .name
= "da850-psc0", .driver_data
= (kernel_ulong_t
)&da850_psc0_init_data
},
530 { .name
= "da850-psc1", .driver_data
= (kernel_ulong_t
)&da850_psc1_init_data
},
532 #ifdef CONFIG_ARCH_DAVINCI_DM355
533 { .name
= "dm355-psc", .driver_data
= (kernel_ulong_t
)&dm355_psc_init_data
},
535 #ifdef CONFIG_ARCH_DAVINCI_DM365
536 { .name
= "dm365-psc", .driver_data
= (kernel_ulong_t
)&dm365_psc_init_data
},
538 #ifdef CONFIG_ARCH_DAVINCI_DM644x
539 { .name
= "dm644x-psc", .driver_data
= (kernel_ulong_t
)&dm644x_psc_init_data
},
541 #ifdef CONFIG_ARCH_DAVINCI_DM646x
542 { .name
= "dm646x-psc", .driver_data
= (kernel_ulong_t
)&dm646x_psc_init_data
},
547 static int davinci_psc_probe(struct platform_device
*pdev
)
549 struct device
*dev
= &pdev
->dev
;
550 const struct of_device_id
*of_id
;
551 const struct davinci_psc_init_data
*init_data
= NULL
;
552 struct resource
*res
;
556 of_id
= of_match_device(davinci_psc_of_match
, dev
);
558 init_data
= of_id
->data
;
559 else if (pdev
->id_entry
)
560 init_data
= (void *)pdev
->id_entry
->driver_data
;
563 dev_err(dev
, "unable to find driver init data\n");
567 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
568 base
= devm_ioremap_resource(dev
, res
);
570 return PTR_ERR(base
);
572 ret
= devm_clk_bulk_get(dev
, init_data
->num_parent_clks
,
573 init_data
->parent_clks
);
577 return init_data
->psc_init(dev
, base
);
580 static struct platform_driver davinci_psc_driver
= {
581 .probe
= davinci_psc_probe
,
583 .name
= "davinci-psc-clk",
584 .of_match_table
= davinci_psc_of_match
,
586 .id_table
= davinci_psc_id_table
,
589 static int __init
davinci_psc_driver_init(void)
591 return platform_driver_register(&davinci_psc_driver
);
594 /* has to be postcore_initcall because davinci_gpio depend on PSC clocks */
595 postcore_initcall(davinci_psc_driver_init
);