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>
22 #include <linux/platform_device.h>
23 #include <linux/property.h>
24 #include <linux/pm_clock.h>
25 #include <linux/pm_domain.h>
26 #include <linux/regmap.h>
27 #include <linux/reset-controller.h>
28 #include <linux/slab.h>
29 #include <linux/types.h>
33 /* PSC register offsets */
37 #define PDSTAT(n) (0x200 + 4 * (n))
38 #define PDCTL(n) (0x300 + 4 * (n))
39 #define MDSTAT(n) (0x800 + 4 * (n))
40 #define MDCTL(n) (0xa00 + 4 * (n))
42 /* PSC module states */
43 enum davinci_lpsc_state
{
44 LPSC_STATE_SWRSTDISABLE
= 0,
45 LPSC_STATE_SYNCRST
= 1,
46 LPSC_STATE_DISABLE
= 2,
47 LPSC_STATE_ENABLE
= 3,
50 #define MDSTAT_STATE_MASK GENMASK(5, 0)
51 #define MDSTAT_MCKOUT BIT(12)
52 #define PDSTAT_STATE_MASK GENMASK(4, 0)
53 #define MDCTL_FORCE BIT(31)
54 #define MDCTL_LRESET BIT(8)
55 #define PDCTL_EPCGOOD BIT(8)
56 #define PDCTL_NEXT BIT(0)
58 struct davinci_psc_data
{
59 struct clk_onecell_data clk_data
;
60 struct genpd_onecell_data pm_data
;
61 struct reset_controller_dev rcdev
;
65 * struct davinci_lpsc_clk - LPSC clock structure
66 * @dev: the device that provides this LPSC or NULL
67 * @hw: clk_hw for the LPSC
68 * @pm_domain: power domain for the LPSC
69 * @genpd_clk: clock reference owned by @pm_domain
70 * @regmap: PSC MMIO region
71 * @md: Module domain (LPSC module id)
73 * @flags: LPSC_* quirk flags
75 struct davinci_lpsc_clk
{
78 struct generic_pm_domain pm_domain
;
79 struct clk
*genpd_clk
;
80 struct regmap
*regmap
;
86 #define to_davinci_psc_data(x) container_of(x, struct davinci_psc_data, x)
87 #define to_davinci_lpsc_clk(x) container_of(x, struct davinci_lpsc_clk, x)
90 * best_dev_name - get the "best" device name.
93 * Returns the device tree compatible name if the device has a DT node,
94 * otherwise return the device name. This is mainly needed because clkdev
95 * lookups are limited to 20 chars for dev_id and when using device tree,
96 * dev_name(dev) is much longer than that.
98 static inline const char *best_dev_name(struct device
*dev
)
100 const char *compatible
;
102 if (!of_property_read_string(dev
->of_node
, "compatible", &compatible
))
105 return dev_name(dev
);
108 static void davinci_lpsc_config(struct davinci_lpsc_clk
*lpsc
,
109 enum davinci_lpsc_state next_state
)
111 u32 epcpr
, pdstat
, mdstat
, ptstat
;
113 regmap_write_bits(lpsc
->regmap
, MDCTL(lpsc
->md
), MDSTAT_STATE_MASK
,
116 if (lpsc
->flags
& LPSC_FORCE
)
117 regmap_write_bits(lpsc
->regmap
, MDCTL(lpsc
->md
), MDCTL_FORCE
,
120 regmap_read(lpsc
->regmap
, PDSTAT(lpsc
->pd
), &pdstat
);
121 if ((pdstat
& PDSTAT_STATE_MASK
) == 0) {
122 regmap_write_bits(lpsc
->regmap
, PDCTL(lpsc
->pd
), PDCTL_NEXT
,
125 regmap_write(lpsc
->regmap
, PTCMD
, BIT(lpsc
->pd
));
127 regmap_read_poll_timeout(lpsc
->regmap
, EPCPR
, epcpr
,
128 epcpr
& BIT(lpsc
->pd
), 0, 0);
130 regmap_write_bits(lpsc
->regmap
, PDCTL(lpsc
->pd
), PDCTL_EPCGOOD
,
133 regmap_write(lpsc
->regmap
, PTCMD
, BIT(lpsc
->pd
));
136 regmap_read_poll_timeout(lpsc
->regmap
, PTSTAT
, ptstat
,
137 !(ptstat
& BIT(lpsc
->pd
)), 0, 0);
139 regmap_read_poll_timeout(lpsc
->regmap
, MDSTAT(lpsc
->md
), mdstat
,
140 (mdstat
& MDSTAT_STATE_MASK
) == next_state
,
144 static int davinci_lpsc_clk_enable(struct clk_hw
*hw
)
146 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
148 davinci_lpsc_config(lpsc
, LPSC_STATE_ENABLE
);
153 static void davinci_lpsc_clk_disable(struct clk_hw
*hw
)
155 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
157 davinci_lpsc_config(lpsc
, LPSC_STATE_DISABLE
);
160 static int davinci_lpsc_clk_is_enabled(struct clk_hw
*hw
)
162 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
165 regmap_read(lpsc
->regmap
, MDSTAT(lpsc
->md
), &mdstat
);
167 return (mdstat
& MDSTAT_MCKOUT
) ? 1 : 0;
170 static const struct clk_ops davinci_lpsc_clk_ops
= {
171 .enable
= davinci_lpsc_clk_enable
,
172 .disable
= davinci_lpsc_clk_disable
,
173 .is_enabled
= davinci_lpsc_clk_is_enabled
,
176 static int davinci_psc_genpd_attach_dev(struct generic_pm_domain
*pm_domain
,
179 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(pm_domain
);
184 * pm_clk_remove_clk() will call clk_put(), so we have to use clk_get()
185 * to get the clock instead of using lpsc->hw.clk directly.
187 clk
= clk_get_sys(best_dev_name(lpsc
->dev
), clk_hw_get_name(&lpsc
->hw
));
189 return (PTR_ERR(clk
));
191 ret
= pm_clk_create(dev
);
195 ret
= pm_clk_add_clk(dev
, clk
);
197 goto fail_pm_clk_destroy
;
199 lpsc
->genpd_clk
= clk
;
211 static void davinci_psc_genpd_detach_dev(struct generic_pm_domain
*pm_domain
,
214 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(pm_domain
);
216 pm_clk_remove_clk(dev
, lpsc
->genpd_clk
);
219 lpsc
->genpd_clk
= NULL
;
223 * davinci_lpsc_clk_register - register LPSC clock
224 * @dev: the clocks's device or NULL
225 * @name: name of this clock
226 * @parent_name: name of clock's parent
227 * @regmap: PSC MMIO region
228 * @md: local PSC number
230 * @flags: LPSC_* flags
232 static struct davinci_lpsc_clk
*
233 davinci_lpsc_clk_register(struct device
*dev
, const char *name
,
234 const char *parent_name
, struct regmap
*regmap
,
235 u32 md
, u32 pd
, u32 flags
)
237 struct clk_init_data init
;
238 struct davinci_lpsc_clk
*lpsc
;
242 lpsc
= kzalloc(sizeof(*lpsc
), GFP_KERNEL
);
244 return ERR_PTR(-ENOMEM
);
247 init
.ops
= &davinci_lpsc_clk_ops
;
248 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
249 init
.num_parents
= (parent_name
? 1 : 0);
252 if (flags
& LPSC_ALWAYS_ENABLED
)
253 init
.flags
|= CLK_IS_CRITICAL
;
255 if (flags
& LPSC_SET_RATE_PARENT
)
256 init
.flags
|= CLK_SET_RATE_PARENT
;
259 lpsc
->regmap
= regmap
;
260 lpsc
->hw
.init
= &init
;
265 ret
= clk_hw_register(dev
, &lpsc
->hw
);
271 /* for now, genpd is only registered when using device-tree */
272 if (!dev
|| !dev
->of_node
)
275 /* genpd attach needs a way to look up this clock */
276 ret
= clk_hw_register_clkdev(&lpsc
->hw
, name
, best_dev_name(dev
));
278 lpsc
->pm_domain
.name
= devm_kasprintf(dev
, GFP_KERNEL
, "%s: %s",
279 best_dev_name(dev
), name
);
280 lpsc
->pm_domain
.attach_dev
= davinci_psc_genpd_attach_dev
;
281 lpsc
->pm_domain
.detach_dev
= davinci_psc_genpd_detach_dev
;
282 lpsc
->pm_domain
.flags
= GENPD_FLAG_PM_CLK
;
284 is_on
= davinci_lpsc_clk_is_enabled(&lpsc
->hw
);
285 pm_genpd_init(&lpsc
->pm_domain
, NULL
, is_on
);
290 static int davinci_lpsc_clk_reset(struct clk
*clk
, bool reset
)
292 struct clk_hw
*hw
= __clk_get_hw(clk
);
293 struct davinci_lpsc_clk
*lpsc
= to_davinci_lpsc_clk(hw
);
296 if (IS_ERR_OR_NULL(lpsc
))
299 mdctl
= reset
? 0 : MDCTL_LRESET
;
300 regmap_write_bits(lpsc
->regmap
, MDCTL(lpsc
->md
), MDCTL_LRESET
, mdctl
);
305 static int davinci_psc_reset_assert(struct reset_controller_dev
*rcdev
,
308 struct davinci_psc_data
*psc
= to_davinci_psc_data(rcdev
);
309 struct clk
*clk
= psc
->clk_data
.clks
[id
];
311 return davinci_lpsc_clk_reset(clk
, true);
314 static int davinci_psc_reset_deassert(struct reset_controller_dev
*rcdev
,
317 struct davinci_psc_data
*psc
= to_davinci_psc_data(rcdev
);
318 struct clk
*clk
= psc
->clk_data
.clks
[id
];
320 return davinci_lpsc_clk_reset(clk
, false);
323 static const struct reset_control_ops davinci_psc_reset_ops
= {
324 .assert = davinci_psc_reset_assert
,
325 .deassert
= davinci_psc_reset_deassert
,
328 static int davinci_psc_reset_of_xlate(struct reset_controller_dev
*rcdev
,
329 const struct of_phandle_args
*reset_spec
)
331 struct of_phandle_args clkspec
= *reset_spec
; /* discard const qualifier */
334 struct davinci_lpsc_clk
*lpsc
;
336 /* the clock node is the same as the reset node */
337 clk
= of_clk_get_from_provider(&clkspec
);
341 hw
= __clk_get_hw(clk
);
342 lpsc
= to_davinci_lpsc_clk(hw
);
345 /* not all modules support local reset */
346 if (!(lpsc
->flags
& LPSC_LOCAL_RESET
))
352 static const struct regmap_config davinci_psc_regmap_config
= {
358 static struct davinci_psc_data
*
359 __davinci_psc_register_clocks(struct device
*dev
,
360 const struct davinci_lpsc_clk_info
*info
,
364 struct davinci_psc_data
*psc
;
366 struct generic_pm_domain
**pm_domains
;
367 struct regmap
*regmap
;
370 psc
= kzalloc(sizeof(*psc
), GFP_KERNEL
);
372 return ERR_PTR(-ENOMEM
);
374 clks
= kmalloc_array(num_clks
, sizeof(*clks
), GFP_KERNEL
);
380 psc
->clk_data
.clks
= clks
;
381 psc
->clk_data
.clk_num
= num_clks
;
384 * init array with error so that of_clk_src_onecell_get() doesn't
385 * return NULL for gaps in the sparse array
387 for (i
= 0; i
< num_clks
; i
++)
388 clks
[i
] = ERR_PTR(-ENOENT
);
390 pm_domains
= kcalloc(num_clks
, sizeof(*pm_domains
), GFP_KERNEL
);
396 psc
->pm_data
.domains
= pm_domains
;
397 psc
->pm_data
.num_domains
= num_clks
;
399 regmap
= regmap_init_mmio(dev
, base
, &davinci_psc_regmap_config
);
400 if (IS_ERR(regmap
)) {
401 ret
= PTR_ERR(regmap
);
402 goto err_free_pm_domains
;
405 for (; info
->name
; info
++) {
406 struct davinci_lpsc_clk
*lpsc
;
408 lpsc
= davinci_lpsc_clk_register(dev
, info
->name
, info
->parent
,
409 regmap
, info
->md
, info
->pd
,
412 dev_warn(dev
, "Failed to register %s (%ld)\n",
413 info
->name
, PTR_ERR(lpsc
));
417 clks
[info
->md
] = lpsc
->hw
.clk
;
418 pm_domains
[info
->md
] = &lpsc
->pm_domain
;
422 * for now, a reset controller is only registered when there is a device
423 * to associate it with.
428 psc
->rcdev
.ops
= &davinci_psc_reset_ops
;
429 psc
->rcdev
.owner
= THIS_MODULE
;
430 psc
->rcdev
.dev
= dev
;
431 psc
->rcdev
.of_node
= dev
->of_node
;
432 psc
->rcdev
.of_reset_n_cells
= 1;
433 psc
->rcdev
.of_xlate
= davinci_psc_reset_of_xlate
;
434 psc
->rcdev
.nr_resets
= num_clks
;
436 ret
= devm_reset_controller_register(dev
, &psc
->rcdev
);
438 dev_warn(dev
, "Failed to register reset controller (%d)\n", ret
);
452 int davinci_psc_register_clocks(struct device
*dev
,
453 const struct davinci_lpsc_clk_info
*info
,
457 struct davinci_psc_data
*psc
;
459 psc
= __davinci_psc_register_clocks(dev
, info
, num_clks
, base
);
463 for (; info
->name
; info
++) {
464 const struct davinci_lpsc_clkdev_info
*cdevs
= info
->cdevs
;
465 struct clk
*clk
= psc
->clk_data
.clks
[info
->md
];
467 if (!cdevs
|| IS_ERR_OR_NULL(clk
))
470 for (; cdevs
->con_id
|| cdevs
->dev_id
; cdevs
++)
471 clk_register_clkdev(clk
, cdevs
->con_id
, cdevs
->dev_id
);
477 int of_davinci_psc_clk_init(struct device
*dev
,
478 const struct davinci_lpsc_clk_info
*info
,
482 struct device_node
*node
= dev
->of_node
;
483 struct davinci_psc_data
*psc
;
485 psc
= __davinci_psc_register_clocks(dev
, info
, num_clks
, base
);
489 of_genpd_add_provider_onecell(node
, &psc
->pm_data
);
491 of_clk_add_provider(node
, of_clk_src_onecell_get
, &psc
->clk_data
);
496 static const struct of_device_id davinci_psc_of_match
[] = {
497 #ifdef CONFIG_ARCH_DAVINCI_DA850
498 { .compatible
= "ti,da850-psc0", .data
= &of_da850_psc0_init_data
},
499 { .compatible
= "ti,da850-psc1", .data
= &of_da850_psc1_init_data
},
504 static const struct platform_device_id davinci_psc_id_table
[] = {
505 #ifdef CONFIG_ARCH_DAVINCI_DA830
506 { .name
= "da830-psc0", .driver_data
= (kernel_ulong_t
)&da830_psc0_init_data
},
507 { .name
= "da830-psc1", .driver_data
= (kernel_ulong_t
)&da830_psc1_init_data
},
509 #ifdef CONFIG_ARCH_DAVINCI_DA850
510 { .name
= "da850-psc0", .driver_data
= (kernel_ulong_t
)&da850_psc0_init_data
},
511 { .name
= "da850-psc1", .driver_data
= (kernel_ulong_t
)&da850_psc1_init_data
},
516 static int davinci_psc_probe(struct platform_device
*pdev
)
518 struct device
*dev
= &pdev
->dev
;
519 const struct davinci_psc_init_data
*init_data
= NULL
;
523 init_data
= device_get_match_data(dev
);
524 if (!init_data
&& pdev
->id_entry
)
525 init_data
= (void *)pdev
->id_entry
->driver_data
;
528 dev_err(dev
, "unable to find driver init data\n");
532 base
= devm_platform_ioremap_resource(pdev
, 0);
534 return PTR_ERR(base
);
536 ret
= devm_clk_bulk_get(dev
, init_data
->num_parent_clks
,
537 init_data
->parent_clks
);
541 return init_data
->psc_init(dev
, base
);
544 static struct platform_driver davinci_psc_driver
= {
545 .probe
= davinci_psc_probe
,
547 .name
= "davinci-psc-clk",
548 .of_match_table
= davinci_psc_of_match
,
550 .id_table
= davinci_psc_id_table
,
553 static int __init
davinci_psc_driver_init(void)
555 return platform_driver_register(&davinci_psc_driver
);
558 /* has to be postcore_initcall because davinci_gpio depend on PSC clocks */
559 postcore_initcall(davinci_psc_driver_init
);