blob: 55a40b9c97969078730c7206752c235cf5ce2e44 [file] [log] [blame]
Sean Anderson019ef9a2020-06-24 06:41:09 -04001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (C) 2019-20 Sean Anderson <seanga2@gmail.com>
4 */
5#ifndef K210_PLL_H
6#define K210_PLL_H
7
8#include <clk.h>
9#include <test/export.h>
Heinrich Schuchardt183f1e22020-07-28 17:52:23 +020010#include <asm/io.h>
Sean Anderson019ef9a2020-06-24 06:41:09 -040011
12#define K210_PLL_CLKR GENMASK(3, 0)
13#define K210_PLL_CLKF GENMASK(9, 4)
14#define K210_PLL_CLKOD GENMASK(13, 10) /* Output Divider */
15#define K210_PLL_BWADJ GENMASK(19, 14) /* BandWidth Adjust */
16#define K210_PLL_RESET BIT(20)
17#define K210_PLL_PWRD BIT(21) /* PoWeReD */
18#define K210_PLL_INTFB BIT(22) /* Internal FeedBack */
19#define K210_PLL_BYPASS BIT(23)
20#define K210_PLL_TEST BIT(24)
21#define K210_PLL_EN BIT(25)
22#define K210_PLL_TEST_EN BIT(26)
23
24#define K210_PLL_LOCK 0
25#define K210_PLL_CLEAR_SLIP 2
26#define K210_PLL_TEST_OUT 3
27
28struct k210_pll {
29 struct clk clk;
30 void __iomem *reg; /* Base PLL register */
31 void __iomem *lock; /* Common PLL lock register */
32 u8 shift; /* Offset of bits in lock register */
33 u8 width; /* Width of lock bits to test against */
34};
35
36#define to_k210_pll(_clk) container_of(_clk, struct k210_pll, clk)
37
38struct k210_pll_config {
39 u8 r;
40 u8 f;
41 u8 od;
42};
43
44#ifdef CONFIG_UNIT_TEST
45TEST_STATIC int k210_pll_calc_config(u32 rate, u32 rate_in,
46 struct k210_pll_config *best);
Heinrich Schuchardt183f1e22020-07-28 17:52:23 +020047
48#ifndef nop
Sean Anderson019ef9a2020-06-24 06:41:09 -040049#define nop()
50#endif
51
Heinrich Schuchardt183f1e22020-07-28 17:52:23 +020052#endif
53
Sean Anderson019ef9a2020-06-24 06:41:09 -040054extern const struct clk_ops k210_pll_ops;
55
56struct clk *k210_register_pll_struct(const char *name, const char *parent_name,
57 struct k210_pll *pll);
58struct clk *k210_register_pll(const char *name, const char *parent_name,
59 void __iomem *reg, void __iomem *lock, u8 shift,
60 u8 width);
61
62#endif /* K210_PLL_H */