Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright 2018 NXP |
| 4 | * Peng Fan <peng.fan@nxp.com> |
| 5 | */ |
| 6 | |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 7 | #include <clk-uclass.h> |
| 8 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 10 | #include <malloc.h> |
Peng Fan | 2e0644a | 2023-04-28 12:08:09 +0800 | [diff] [blame] | 11 | #include <firmware/imx/sci/sci.h> |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 12 | #include <asm/arch/clock.h> |
| 13 | #include <dt-bindings/clock/imx8qxp-clock.h> |
| 14 | #include <dt-bindings/soc/imx_rsrc.h> |
| 15 | #include <misc.h> |
| 16 | |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 17 | #include "clk-imx8.h" |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 18 | |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 19 | __weak ulong imx8_clk_get_rate(struct clk *clk) |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 20 | { |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 21 | return 0; |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 22 | } |
| 23 | |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 24 | __weak ulong imx8_clk_set_rate(struct clk *clk, unsigned long rate) |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 25 | { |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 26 | return 0; |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 27 | } |
| 28 | |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 29 | __weak int __imx8_clk_enable(struct clk *clk, bool enable) |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 30 | { |
Simon Glass | 29ff16a | 2021-03-25 10:26:08 +1300 | [diff] [blame] | 31 | return -EINVAL; |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | static int imx8_clk_disable(struct clk *clk) |
| 35 | { |
| 36 | return __imx8_clk_enable(clk, 0); |
| 37 | } |
| 38 | |
| 39 | static int imx8_clk_enable(struct clk *clk) |
| 40 | { |
| 41 | return __imx8_clk_enable(clk, 1); |
| 42 | } |
| 43 | |
Simon Glass | 495e80f | 2023-02-05 15:36:26 -0700 | [diff] [blame] | 44 | #if IS_ENABLED(CONFIG_CMD_CLK) |
Igor Prusov | 1a3427b | 2023-11-09 13:55:15 +0300 | [diff] [blame] | 45 | static void imx8_clk_dump(struct udevice *dev) |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 46 | { |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 47 | struct clk clk; |
| 48 | unsigned long rate; |
| 49 | int i, ret; |
| 50 | |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 51 | printf("Clk\t\tHz\n"); |
| 52 | |
Peng Fan | 6a8e5f9 | 2019-03-05 02:32:33 +0000 | [diff] [blame] | 53 | for (i = 0; i < num_clks; i++) { |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 54 | clk.id = imx8_clk_names[i].id; |
| 55 | ret = clk_request(dev, &clk); |
| 56 | if (ret < 0) { |
| 57 | debug("%s clk_request() failed: %d\n", __func__, ret); |
| 58 | continue; |
| 59 | } |
| 60 | |
| 61 | ret = clk_get_rate(&clk); |
| 62 | rate = ret; |
| 63 | |
Simon Glass | 29ff16a | 2021-03-25 10:26:08 +1300 | [diff] [blame] | 64 | if (ret == -EINVAL) { |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 65 | printf("clk ID %lu not supported yet\n", |
| 66 | imx8_clk_names[i].id); |
| 67 | continue; |
| 68 | } |
| 69 | if (ret < 0) { |
| 70 | printf("%s %lu: get_rate err: %d\n", |
| 71 | __func__, imx8_clk_names[i].id, ret); |
| 72 | continue; |
| 73 | } |
| 74 | |
| 75 | printf("%s(%3lu):\t%lu\n", |
| 76 | imx8_clk_names[i].name, imx8_clk_names[i].id, rate); |
| 77 | } |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 78 | } |
| 79 | #endif |
| 80 | |
| 81 | static struct clk_ops imx8_clk_ops = { |
| 82 | .set_rate = imx8_clk_set_rate, |
| 83 | .get_rate = imx8_clk_get_rate, |
| 84 | .enable = imx8_clk_enable, |
| 85 | .disable = imx8_clk_disable, |
Igor Prusov | 1a3427b | 2023-11-09 13:55:15 +0300 | [diff] [blame] | 86 | #if IS_ENABLED(CONFIG_CMD_CLK) |
| 87 | .dump = imx8_clk_dump, |
| 88 | #endif |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 89 | }; |
| 90 | |
| 91 | static int imx8_clk_probe(struct udevice *dev) |
| 92 | { |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | static const struct udevice_id imx8_clk_ids[] = { |
| 97 | { .compatible = "fsl,imx8qxp-clk" }, |
Peng Fan | 9a0dc91 | 2019-03-05 02:32:35 +0000 | [diff] [blame] | 98 | { .compatible = "fsl,imx8qm-clk" }, |
Peng Fan | 5e80d5a | 2018-10-18 14:28:30 +0200 | [diff] [blame] | 99 | { }, |
| 100 | }; |
| 101 | |
| 102 | U_BOOT_DRIVER(imx8_clk) = { |
| 103 | .name = "clk_imx8", |
| 104 | .id = UCLASS_CLK, |
| 105 | .of_match = imx8_clk_ids, |
| 106 | .ops = &imx8_clk_ops, |
| 107 | .probe = imx8_clk_probe, |
| 108 | .flags = DM_FLAG_PRE_RELOC, |
| 109 | }; |