blob: 970bcd4a17e7791e6fb52d2ad3c8ca130ec374ea [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Eugeniy Paltsev24e026e2018-03-26 15:57:37 +03002/*
3 * Copyright (C) 2018 Synopsys, Inc. All rights reserved.
4 * Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
Eugeniy Paltsev24e026e2018-03-26 15:57:37 +03005 */
6
7#ifndef __BOARD_CLK_LIB_H
8#define __BOARD_CLK_LIB_H
9
10#include <common.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060011#include <linux/bitops.h>
Eugeniy Paltsev24e026e2018-03-26 15:57:37 +030012
13enum clk_ctl_ops {
14 CLK_SET = BIT(0), /* set frequency */
15 CLK_GET = BIT(1), /* get frequency */
16 CLK_ON = BIT(2), /* enable clock */
17 CLK_OFF = BIT(3), /* disable clock */
18 CLK_PRINT = BIT(4), /* print frequency */
19 CLK_MHZ = BIT(5) /* all values in MHZ instead of HZ */
20};
21
22/*
23 * Depending on the clk_ctl_ops enable / disable /
24 * set clock rate from 'rate' argument / read clock to 'rate' argument /
25 * print clock rate. If CLK_MHZ flag set in clk_ctl_ops 'rate' is in MHz,
26 * otherwise - in Hz.
27 *
28 * This function expects "clk-fmeas" node in device tree:
29 * / {
30 * clk-fmeas {
31 * clocks = <&cpu_pll>, <&sys_pll>;
32 * clock-names = "cpu-pll", "sys-pll";
33 * };
34 * };
35 */
36int soc_clk_ctl(const char *name, ulong *rate, enum clk_ctl_ops ctl);
37
38#endif /* __BOARD_CLK_LIB_H */