Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2013 Xilinx, Inc. |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 4 | */ |
| 5 | #include <common.h> |
| 6 | #include <command.h> |
| 7 | #include <clk.h> |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 8 | #if defined(CONFIG_DM) && defined(CONFIG_CLK) |
| 9 | #include <dm.h> |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 10 | #include <dm/device.h> |
| 11 | #include <dm/root.h> |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 12 | #include <dm/device-internal.h> |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 13 | #include <linux/clk-provider.h> |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 14 | #endif |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 15 | |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 16 | #if defined(CONFIG_DM) && defined(CONFIG_CLK) |
| 17 | static void show_clks(struct udevice *dev, int depth, int last_flag) |
| 18 | { |
| 19 | int i, is_last; |
| 20 | struct udevice *child; |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 21 | struct clk *clkp, *parent; |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 22 | u32 rate; |
| 23 | |
| 24 | clkp = dev_get_clk_ptr(dev); |
Patrick Delaunay | c40251c | 2022-12-13 14:57:10 +0100 | [diff] [blame] | 25 | if (clkp) { |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 26 | parent = clk_get_parent(clkp); |
| 27 | if (!IS_ERR(parent) && depth == -1) |
| 28 | return; |
Patrick Delaunay | 689ca8c | 2020-07-30 14:04:10 +0200 | [diff] [blame] | 29 | depth++; |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 30 | rate = clk_get_rate(clkp); |
| 31 | |
Patrick Delaunay | cc63284 | 2020-07-30 14:04:09 +0200 | [diff] [blame] | 32 | printf(" %-12u %8d ", rate, clkp->enable_count); |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 33 | |
Patrick Delaunay | cc63284 | 2020-07-30 14:04:09 +0200 | [diff] [blame] | 34 | for (i = depth; i >= 0; i--) { |
| 35 | is_last = (last_flag >> i) & 1; |
| 36 | if (i) { |
| 37 | if (is_last) |
| 38 | printf(" "); |
| 39 | else |
| 40 | printf("| "); |
| 41 | } else { |
| 42 | if (is_last) |
| 43 | printf("`-- "); |
| 44 | else |
| 45 | printf("|-- "); |
| 46 | } |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 47 | } |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 48 | |
Patrick Delaunay | cc63284 | 2020-07-30 14:04:09 +0200 | [diff] [blame] | 49 | printf("%s\n", dev->name); |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Patrick Delaunay | c40251c | 2022-12-13 14:57:10 +0100 | [diff] [blame] | 52 | device_foreach_child_probe(child, dev) { |
| 53 | if (device_get_uclass_id(child) != UCLASS_CLK) |
| 54 | continue; |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 55 | if (child == dev) |
| 56 | continue; |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 57 | is_last = list_is_last(&child->sibling_node, &dev->child_head); |
Patrick Delaunay | 689ca8c | 2020-07-30 14:04:10 +0200 | [diff] [blame] | 58 | show_clks(child, depth, (last_flag << 1) | is_last); |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 59 | } |
| 60 | } |
| 61 | |
Igor Prusov | 5666558 | 2023-11-09 13:55:16 +0300 | [diff] [blame] | 62 | static int soc_clk_dump(void) |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 63 | { |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 64 | struct udevice *dev; |
Igor Prusov | 258c100 | 2023-11-09 13:55:14 +0300 | [diff] [blame] | 65 | const struct clk_ops *ops; |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 66 | |
| 67 | printf(" Rate Usecnt Name\n"); |
| 68 | printf("------------------------------------------\n"); |
| 69 | |
Patrick Delaunay | c40251c | 2022-12-13 14:57:10 +0100 | [diff] [blame] | 70 | uclass_foreach_dev_probe(UCLASS_CLK, dev) |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 71 | show_clks(dev, -1, 0); |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 72 | |
Igor Prusov | 258c100 | 2023-11-09 13:55:14 +0300 | [diff] [blame] | 73 | uclass_foreach_dev_probe(UCLASS_CLK, dev) { |
| 74 | ops = dev_get_driver_ops(dev); |
| 75 | if (ops && ops->dump) { |
| 76 | printf("\n%s %s:\n", dev->driver->name, dev->name); |
| 77 | ops->dump(dev); |
| 78 | } |
| 79 | } |
| 80 | |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 81 | return 0; |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 82 | } |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 83 | #else |
Igor Prusov | 5666558 | 2023-11-09 13:55:16 +0300 | [diff] [blame] | 84 | static int soc_clk_dump(void) |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 85 | { |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 86 | puts("Not implemented\n"); |
| 87 | return 1; |
| 88 | } |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 89 | #endif |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 90 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 91 | static int do_clk_dump(struct cmd_tbl *cmdtp, int flag, int argc, |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 92 | char *const argv[]) |
| 93 | { |
Michal Simek | ebc675b | 2018-04-19 15:15:25 +0200 | [diff] [blame] | 94 | int ret; |
| 95 | |
| 96 | ret = soc_clk_dump(); |
| 97 | if (ret < 0) { |
| 98 | printf("Clock dump error %d\n", ret); |
| 99 | ret = CMD_RET_FAILURE; |
| 100 | } |
| 101 | |
| 102 | return ret; |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 103 | } |
| 104 | |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 105 | #if CONFIG_IS_ENABLED(DM) && CONFIG_IS_ENABLED(CLK) |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 106 | static int do_clk_setfreq(struct cmd_tbl *cmdtp, int flag, int argc, |
| 107 | char *const argv[]) |
| 108 | { |
| 109 | struct clk *clk = NULL; |
| 110 | s32 freq; |
| 111 | struct udevice *dev; |
| 112 | |
Patrick Delaunay | 3386fb1 | 2022-01-31 17:21:37 +0100 | [diff] [blame] | 113 | if (argc != 3) |
| 114 | return CMD_RET_USAGE; |
| 115 | |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 116 | freq = dectoul(argv[2], NULL); |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 117 | |
Patrick Delaunay | afcc261 | 2022-01-31 17:21:38 +0100 | [diff] [blame] | 118 | if (!uclass_get_device_by_name(UCLASS_CLK, argv[1], &dev)) |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 119 | clk = dev_get_clk_ptr(dev); |
| 120 | |
| 121 | if (!clk) { |
| 122 | printf("clock '%s' not found.\n", argv[1]); |
Patrick Delaunay | 534859a | 2022-01-31 17:21:39 +0100 | [diff] [blame] | 123 | return CMD_RET_FAILURE; |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | freq = clk_set_rate(clk, freq); |
| 127 | if (freq < 0) { |
| 128 | printf("set_rate failed: %d\n", freq); |
| 129 | return CMD_RET_FAILURE; |
| 130 | } |
| 131 | |
| 132 | printf("set_rate returns %u\n", freq); |
| 133 | return 0; |
| 134 | } |
| 135 | #endif |
| 136 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 137 | static struct cmd_tbl cmd_clk_sub[] = { |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 138 | U_BOOT_CMD_MKENT(dump, 1, 1, do_clk_dump, "", ""), |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 139 | #if CONFIG_IS_ENABLED(DM) && CONFIG_IS_ENABLED(CLK) |
| 140 | U_BOOT_CMD_MKENT(setfreq, 3, 1, do_clk_setfreq, "", ""), |
| 141 | #endif |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 142 | }; |
| 143 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 144 | static int do_clk(struct cmd_tbl *cmdtp, int flag, int argc, |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 145 | char *const argv[]) |
| 146 | { |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 147 | struct cmd_tbl *c; |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 148 | |
| 149 | if (argc < 2) |
| 150 | return CMD_RET_USAGE; |
| 151 | |
| 152 | /* Strip off leading 'clk' command argument */ |
| 153 | argc--; |
| 154 | argv++; |
| 155 | |
| 156 | c = find_cmd_tbl(argv[0], &cmd_clk_sub[0], ARRAY_SIZE(cmd_clk_sub)); |
| 157 | |
| 158 | if (c) |
| 159 | return c->cmd(cmdtp, flag, argc, argv); |
| 160 | else |
| 161 | return CMD_RET_USAGE; |
| 162 | } |
| 163 | |
Tom Rini | 3616218 | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 164 | U_BOOT_LONGHELP(clk, |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 165 | "dump - Print clock frequencies\n" |
Tom Rini | 3616218 | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 166 | "clk setfreq [clk] [freq] - Set clock frequency"); |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 167 | |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 168 | U_BOOT_CMD(clk, 4, 1, do_clk, "CLK sub-system", clk_help_text); |