blob: 9600672e071320c83880d9071afb620823c880c0 [file] [log] [blame]
Peng Fan5e80d5a2018-10-18 14:28:30 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright 2018 NXP
4 * Peng Fan <peng.fan@nxp.com>
5 */
6
7#include <common.h>
8#include <clk-uclass.h>
9#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070011#include <malloc.h>
Peng Fan2e0644a2023-04-28 12:08:09 +080012#include <firmware/imx/sci/sci.h>
Peng Fan5e80d5a2018-10-18 14:28:30 +020013#include <asm/arch/clock.h>
14#include <dt-bindings/clock/imx8qxp-clock.h>
15#include <dt-bindings/soc/imx_rsrc.h>
16#include <misc.h>
17
Peng Fan6a8e5f92019-03-05 02:32:33 +000018#include "clk-imx8.h"
Peng Fan5e80d5a2018-10-18 14:28:30 +020019
Peng Fan6a8e5f92019-03-05 02:32:33 +000020__weak ulong imx8_clk_get_rate(struct clk *clk)
Peng Fan5e80d5a2018-10-18 14:28:30 +020021{
Peng Fan6a8e5f92019-03-05 02:32:33 +000022 return 0;
Peng Fan5e80d5a2018-10-18 14:28:30 +020023}
24
Peng Fan6a8e5f92019-03-05 02:32:33 +000025__weak ulong imx8_clk_set_rate(struct clk *clk, unsigned long rate)
Peng Fan5e80d5a2018-10-18 14:28:30 +020026{
Peng Fan6a8e5f92019-03-05 02:32:33 +000027 return 0;
Peng Fan5e80d5a2018-10-18 14:28:30 +020028}
29
Peng Fan6a8e5f92019-03-05 02:32:33 +000030__weak int __imx8_clk_enable(struct clk *clk, bool enable)
Peng Fan5e80d5a2018-10-18 14:28:30 +020031{
Simon Glass29ff16a2021-03-25 10:26:08 +130032 return -EINVAL;
Peng Fan5e80d5a2018-10-18 14:28:30 +020033}
34
35static int imx8_clk_disable(struct clk *clk)
36{
37 return __imx8_clk_enable(clk, 0);
38}
39
40static int imx8_clk_enable(struct clk *clk)
41{
42 return __imx8_clk_enable(clk, 1);
43}
44
Simon Glass495e80f2023-02-05 15:36:26 -070045#if IS_ENABLED(CONFIG_CMD_CLK)
Igor Prusov1a3427b2023-11-09 13:55:15 +030046static void imx8_clk_dump(struct udevice *dev)
Peng Fan5e80d5a2018-10-18 14:28:30 +020047{
Peng Fan5e80d5a2018-10-18 14:28:30 +020048 struct clk clk;
49 unsigned long rate;
50 int i, ret;
51
Peng Fan5e80d5a2018-10-18 14:28:30 +020052 printf("Clk\t\tHz\n");
53
Peng Fan6a8e5f92019-03-05 02:32:33 +000054 for (i = 0; i < num_clks; i++) {
Peng Fan5e80d5a2018-10-18 14:28:30 +020055 clk.id = imx8_clk_names[i].id;
56 ret = clk_request(dev, &clk);
57 if (ret < 0) {
58 debug("%s clk_request() failed: %d\n", __func__, ret);
59 continue;
60 }
61
62 ret = clk_get_rate(&clk);
63 rate = ret;
64
65 clk_free(&clk);
66
Simon Glass29ff16a2021-03-25 10:26:08 +130067 if (ret == -EINVAL) {
Peng Fan5e80d5a2018-10-18 14:28:30 +020068 printf("clk ID %lu not supported yet\n",
69 imx8_clk_names[i].id);
70 continue;
71 }
72 if (ret < 0) {
73 printf("%s %lu: get_rate err: %d\n",
74 __func__, imx8_clk_names[i].id, ret);
75 continue;
76 }
77
78 printf("%s(%3lu):\t%lu\n",
79 imx8_clk_names[i].name, imx8_clk_names[i].id, rate);
80 }
Peng Fan5e80d5a2018-10-18 14:28:30 +020081}
82#endif
83
84static struct clk_ops imx8_clk_ops = {
85 .set_rate = imx8_clk_set_rate,
86 .get_rate = imx8_clk_get_rate,
87 .enable = imx8_clk_enable,
88 .disable = imx8_clk_disable,
Igor Prusov1a3427b2023-11-09 13:55:15 +030089#if IS_ENABLED(CONFIG_CMD_CLK)
90 .dump = imx8_clk_dump,
91#endif
Peng Fan5e80d5a2018-10-18 14:28:30 +020092};
93
94static int imx8_clk_probe(struct udevice *dev)
95{
96 return 0;
97}
98
99static const struct udevice_id imx8_clk_ids[] = {
100 { .compatible = "fsl,imx8qxp-clk" },
Peng Fan9a0dc912019-03-05 02:32:35 +0000101 { .compatible = "fsl,imx8qm-clk" },
Peng Fan5e80d5a2018-10-18 14:28:30 +0200102 { },
103};
104
105U_BOOT_DRIVER(imx8_clk) = {
106 .name = "clk_imx8",
107 .id = UCLASS_CLK,
108 .of_match = imx8_clk_ids,
109 .ops = &imx8_clk_ops,
110 .probe = imx8_clk_probe,
111 .flags = DM_FLAG_PRE_RELOC,
112};