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 | |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 62 | int __weak soc_clk_dump(void) |
| 63 | { |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 64 | struct udevice *dev; |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 65 | |
| 66 | printf(" Rate Usecnt Name\n"); |
| 67 | printf("------------------------------------------\n"); |
| 68 | |
Patrick Delaunay | c40251c | 2022-12-13 14:57:10 +0100 | [diff] [blame] | 69 | uclass_foreach_dev_probe(UCLASS_CLK, dev) |
Tero Kristo | 1a725e2 | 2021-06-11 11:45:07 +0300 | [diff] [blame] | 70 | show_clks(dev, -1, 0); |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 71 | |
| 72 | return 0; |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 73 | } |
Marek Vasut | ff8eee0 | 2018-08-08 22:10:44 +0200 | [diff] [blame] | 74 | #else |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 75 | int __weak soc_clk_dump(void) |
| 76 | { |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 77 | puts("Not implemented\n"); |
| 78 | return 1; |
| 79 | } |
Peng Fan | aeeb2e6 | 2019-08-21 13:35:14 +0000 | [diff] [blame] | 80 | #endif |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 81 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 82 | 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] | 83 | char *const argv[]) |
| 84 | { |
Michal Simek | ebc675b | 2018-04-19 15:15:25 +0200 | [diff] [blame] | 85 | int ret; |
| 86 | |
| 87 | ret = soc_clk_dump(); |
| 88 | if (ret < 0) { |
| 89 | printf("Clock dump error %d\n", ret); |
| 90 | ret = CMD_RET_FAILURE; |
| 91 | } |
| 92 | |
| 93 | return ret; |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 94 | } |
| 95 | |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 96 | #if CONFIG_IS_ENABLED(DM) && CONFIG_IS_ENABLED(CLK) |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 97 | static int do_clk_setfreq(struct cmd_tbl *cmdtp, int flag, int argc, |
| 98 | char *const argv[]) |
| 99 | { |
| 100 | struct clk *clk = NULL; |
| 101 | s32 freq; |
| 102 | struct udevice *dev; |
| 103 | |
Patrick Delaunay | 3386fb1 | 2022-01-31 17:21:37 +0100 | [diff] [blame] | 104 | if (argc != 3) |
| 105 | return CMD_RET_USAGE; |
| 106 | |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 107 | freq = dectoul(argv[2], NULL); |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 108 | |
Patrick Delaunay | afcc261 | 2022-01-31 17:21:38 +0100 | [diff] [blame] | 109 | if (!uclass_get_device_by_name(UCLASS_CLK, argv[1], &dev)) |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 110 | clk = dev_get_clk_ptr(dev); |
| 111 | |
| 112 | if (!clk) { |
| 113 | printf("clock '%s' not found.\n", argv[1]); |
Patrick Delaunay | 534859a | 2022-01-31 17:21:39 +0100 | [diff] [blame] | 114 | return CMD_RET_FAILURE; |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | freq = clk_set_rate(clk, freq); |
| 118 | if (freq < 0) { |
| 119 | printf("set_rate failed: %d\n", freq); |
| 120 | return CMD_RET_FAILURE; |
| 121 | } |
| 122 | |
| 123 | printf("set_rate returns %u\n", freq); |
| 124 | return 0; |
| 125 | } |
| 126 | #endif |
| 127 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 128 | static struct cmd_tbl cmd_clk_sub[] = { |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 129 | U_BOOT_CMD_MKENT(dump, 1, 1, do_clk_dump, "", ""), |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 130 | #if CONFIG_IS_ENABLED(DM) && CONFIG_IS_ENABLED(CLK) |
| 131 | U_BOOT_CMD_MKENT(setfreq, 3, 1, do_clk_setfreq, "", ""), |
| 132 | #endif |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 133 | }; |
| 134 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 135 | static int do_clk(struct cmd_tbl *cmdtp, int flag, int argc, |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 136 | char *const argv[]) |
| 137 | { |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 138 | struct cmd_tbl *c; |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 139 | |
| 140 | if (argc < 2) |
| 141 | return CMD_RET_USAGE; |
| 142 | |
| 143 | /* Strip off leading 'clk' command argument */ |
| 144 | argc--; |
| 145 | argv++; |
| 146 | |
| 147 | c = find_cmd_tbl(argv[0], &cmd_clk_sub[0], ARRAY_SIZE(cmd_clk_sub)); |
| 148 | |
| 149 | if (c) |
| 150 | return c->cmd(cmdtp, flag, argc, argv); |
| 151 | else |
| 152 | return CMD_RET_USAGE; |
| 153 | } |
| 154 | |
| 155 | #ifdef CONFIG_SYS_LONGHELP |
| 156 | static char clk_help_text[] = |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 157 | "dump - Print clock frequencies\n" |
Patrick Delaunay | 92a1bba | 2022-01-31 17:21:40 +0100 | [diff] [blame] | 158 | "clk setfreq [clk] [freq] - Set clock frequency"; |
Michal Simek | 08d0d6f | 2013-11-21 13:39:02 -0800 | [diff] [blame] | 159 | #endif |
| 160 | |
Tero Kristo | 7ab418f | 2021-06-11 11:45:09 +0300 | [diff] [blame] | 161 | U_BOOT_CMD(clk, 4, 1, do_clk, "CLK sub-system", clk_help_text); |