]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/clk.c
Merge tag 'dm-pull-30may20' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
[thirdparty/u-boot.git] / cmd / clk.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
08d0d6f3
MS
2/*
3 * Copyright (C) 2013 Xilinx, Inc.
08d0d6f3
MS
4 */
5#include <common.h>
6#include <command.h>
7#include <clk.h>
ff8eee03
MV
8#if defined(CONFIG_DM) && defined(CONFIG_CLK)
9#include <dm.h>
aeeb2e6d
PF
10#include <dm/device.h>
11#include <dm/root.h>
ff8eee03 12#include <dm/device-internal.h>
aeeb2e6d 13#include <linux/clk-provider.h>
ff8eee03 14#endif
08d0d6f3 15
ff8eee03 16#if defined(CONFIG_DM) && defined(CONFIG_CLK)
aeeb2e6d
PF
17static void show_clks(struct udevice *dev, int depth, int last_flag)
18{
19 int i, is_last;
20 struct udevice *child;
21 struct clk *clkp;
22 u32 rate;
23
24 clkp = dev_get_clk_ptr(dev);
25 if (device_get_uclass_id(dev) == UCLASS_CLK && clkp) {
26 rate = clk_get_rate(clkp);
27
28 printf(" %-12u %8d ", rate, clkp->enable_count);
29
30 for (i = depth; i >= 0; i--) {
31 is_last = (last_flag >> i) & 1;
32 if (i) {
33 if (is_last)
34 printf(" ");
35 else
36 printf("| ");
37 } else {
38 if (is_last)
39 printf("`-- ");
40 else
41 printf("|-- ");
42 }
43 }
ff8eee03 44
aeeb2e6d
PF
45 printf("%s\n", dev->name);
46 }
ff8eee03 47
aeeb2e6d
PF
48 list_for_each_entry(child, &dev->child_head, sibling_node) {
49 is_last = list_is_last(&child->sibling_node, &dev->child_head);
50 show_clks(child, depth + 1, (last_flag << 1) | is_last);
51 }
52}
80b44fb3 53
aeeb2e6d
PF
54int __weak soc_clk_dump(void)
55{
56 struct udevice *root;
80b44fb3 57
aeeb2e6d
PF
58 root = dm_root();
59 if (root) {
60 printf(" Rate Usecnt Name\n");
61 printf("------------------------------------------\n");
62 show_clks(root, -1, 0);
ff8eee03
MV
63 }
64
65 return 0;
aeeb2e6d 66}
ff8eee03 67#else
aeeb2e6d
PF
68int __weak soc_clk_dump(void)
69{
08d0d6f3
MS
70 puts("Not implemented\n");
71 return 1;
72}
aeeb2e6d 73#endif
08d0d6f3 74
09140113 75static int do_clk_dump(struct cmd_tbl *cmdtp, int flag, int argc,
08d0d6f3
MS
76 char *const argv[])
77{
ebc675b9
MS
78 int ret;
79
80 ret = soc_clk_dump();
81 if (ret < 0) {
82 printf("Clock dump error %d\n", ret);
83 ret = CMD_RET_FAILURE;
84 }
85
86 return ret;
08d0d6f3
MS
87}
88
09140113 89static struct cmd_tbl cmd_clk_sub[] = {
08d0d6f3
MS
90 U_BOOT_CMD_MKENT(dump, 1, 1, do_clk_dump, "", ""),
91};
92
09140113 93static int do_clk(struct cmd_tbl *cmdtp, int flag, int argc,
08d0d6f3
MS
94 char *const argv[])
95{
09140113 96 struct cmd_tbl *c;
08d0d6f3
MS
97
98 if (argc < 2)
99 return CMD_RET_USAGE;
100
101 /* Strip off leading 'clk' command argument */
102 argc--;
103 argv++;
104
105 c = find_cmd_tbl(argv[0], &cmd_clk_sub[0], ARRAY_SIZE(cmd_clk_sub));
106
107 if (c)
108 return c->cmd(cmdtp, flag, argc, argv);
109 else
110 return CMD_RET_USAGE;
111}
112
113#ifdef CONFIG_SYS_LONGHELP
114static char clk_help_text[] =
115 "dump - Print clock frequencies";
116#endif
117
118U_BOOT_CMD(clk, 2, 1, do_clk, "CLK sub-system", clk_help_text);