blob: 81fe47a9d7b3a649d4d811810e4aeddfdb1157b2 [file] [log] [blame]
Wenyou Yang8c772bd2016-07-20 17:55:12 +08001/*
2 * Copyright (C) 2016 Atmel Corporation
3 * Wenyou.Yang <wenyou.yang@atmel.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <clk-uclass.h>
Simon Glass11c89f32017-05-17 17:18:03 -060010#include <dm.h>
Wenyou Yang8c772bd2016-07-20 17:55:12 +080011#include <linux/io.h>
12#include <mach/at91_pmc.h>
13#include "pmc.h"
14
15#define SYSTEM_MAX_ID 31
16
Wenyou Yang9a71d392016-09-27 11:00:29 +080017/**
18 * at91_system_clk_bind() - for the system clock driver
19 * Recursively bind its children as clk devices.
20 *
21 * @return: 0 on success, or negative error code on failure
22 */
23static int at91_system_clk_bind(struct udevice *dev)
24{
25 return at91_clk_sub_device_bind(dev, "system-clk");
26}
27
28static const struct udevice_id at91_system_clk_match[] = {
29 { .compatible = "atmel,at91rm9200-clk-system" },
30 {}
31};
32
33U_BOOT_DRIVER(at91_system_clk) = {
34 .name = "at91-system-clk",
35 .id = UCLASS_MISC,
36 .of_match = at91_system_clk_match,
37 .bind = at91_system_clk_bind,
38};
39
40/*----------------------------------------------------------*/
41
Wenyou Yang8c772bd2016-07-20 17:55:12 +080042static inline int is_pck(int id)
43{
44 return (id >= 8) && (id <= 15);
45}
46
Wenyou Yang512898b2018-02-09 11:34:52 +080047static ulong system_clk_get_rate(struct clk *clk)
48{
49 struct clk clk_dev;
50 int ret;
51
52 ret = clk_get_by_index(clk->dev, 0, &clk_dev);
53 if (ret)
54 return -EINVAL;
55
56 return clk_get_rate(&clk_dev);
57}
58
59static ulong system_clk_set_rate(struct clk *clk, ulong rate)
60{
61 struct clk clk_dev;
62 int ret;
63
64 ret = clk_get_by_index(clk->dev, 0, &clk_dev);
65 if (ret)
66 return -EINVAL;
67
68 return clk_set_rate(&clk_dev, rate);
69}
70
Wenyou Yang9a71d392016-09-27 11:00:29 +080071static int system_clk_enable(struct clk *clk)
Wenyou Yang8c772bd2016-07-20 17:55:12 +080072{
73 struct pmc_platdata *plat = dev_get_platdata(clk->dev);
74 struct at91_pmc *pmc = plat->reg_base;
75 u32 mask;
76
77 if (clk->id > SYSTEM_MAX_ID)
78 return -EINVAL;
79
80 mask = BIT(clk->id);
81
82 writel(mask, &pmc->scer);
83
84 /**
85 * For the programmable clocks the Ready status in the PMC
86 * status register should be checked after enabling.
87 * For other clocks this is unnecessary.
88 */
89 if (!is_pck(clk->id))
90 return 0;
91
92 while (!(readl(&pmc->sr) & mask))
93 ;
94
95 return 0;
96}
97
Wenyou Yang9a71d392016-09-27 11:00:29 +080098static struct clk_ops system_clk_ops = {
99 .of_xlate = at91_clk_of_xlate,
Wenyou Yang512898b2018-02-09 11:34:52 +0800100 .get_rate = system_clk_get_rate,
101 .set_rate = system_clk_set_rate,
Wenyou Yang9a71d392016-09-27 11:00:29 +0800102 .enable = system_clk_enable,
Wenyou Yang8c772bd2016-07-20 17:55:12 +0800103};
104
Wenyou Yang9a71d392016-09-27 11:00:29 +0800105U_BOOT_DRIVER(system_clk) = {
106 .name = "system-clk",
Wenyou Yang8c772bd2016-07-20 17:55:12 +0800107 .id = UCLASS_CLK,
Wenyou Yang9a71d392016-09-27 11:00:29 +0800108 .probe = at91_clk_probe,
Wenyou Yang8c772bd2016-07-20 17:55:12 +0800109 .platdata_auto_alloc_size = sizeof(struct pmc_platdata),
Wenyou Yang9a71d392016-09-27 11:00:29 +0800110 .ops = &system_clk_ops,
Wenyou Yang8c772bd2016-07-20 17:55:12 +0800111};