Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 2 | /* |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 3 | * (C) Copyright 2017 Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 4 | */ |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 5 | #ifndef _CLOCK_QCOM_H |
| 6 | #define _CLOCK_QCOM_H |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 7 | |
Caleb Connolly | 7a63294 | 2023-11-07 12:41:02 +0000 | [diff] [blame] | 8 | #include <asm/io.h> |
| 9 | |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 10 | #define CFG_CLK_SRC_CXO (0 << 8) |
| 11 | #define CFG_CLK_SRC_GPLL0 (1 << 8) |
Dzmitry Sankouski | 038f2b9 | 2021-10-17 13:44:30 +0300 | [diff] [blame] | 12 | #define CFG_CLK_SRC_GPLL0_EVEN (6 << 8) |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 13 | #define CFG_CLK_SRC_MASK (7 << 8) |
| 14 | |
Caleb Connolly | cbdad44 | 2024-04-03 14:07:40 +0200 | [diff] [blame] | 15 | #define RCG_CFG_REG 0x4 |
| 16 | #define RCG_M_REG 0x8 |
| 17 | #define RCG_N_REG 0xc |
| 18 | #define RCG_D_REG 0x10 |
| 19 | |
Ramon Fried | ae29977 | 2018-05-16 12:13:39 +0300 | [diff] [blame] | 20 | struct pll_vote_clk { |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 21 | uintptr_t status; |
| 22 | int status_bit; |
| 23 | uintptr_t ena_vote; |
| 24 | int vote_bit; |
| 25 | }; |
| 26 | |
Ramon Fried | ae29977 | 2018-05-16 12:13:39 +0300 | [diff] [blame] | 27 | struct vote_clk { |
| 28 | uintptr_t cbcr_reg; |
| 29 | uintptr_t ena_vote; |
| 30 | int vote_bit; |
| 31 | }; |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 32 | |
Caleb Connolly | 397c84f | 2023-11-07 12:41:05 +0000 | [diff] [blame] | 33 | struct freq_tbl { |
| 34 | uint freq; |
| 35 | uint src; |
| 36 | u8 pre_div; |
| 37 | u16 m; |
| 38 | u16 n; |
| 39 | }; |
| 40 | |
| 41 | #define F(f, s, h, m, n) { (f), (s), (2 * (h) - 1), (m), (n) } |
| 42 | |
Caleb Connolly | 7a63294 | 2023-11-07 12:41:02 +0000 | [diff] [blame] | 43 | struct gate_clk { |
| 44 | uintptr_t reg; |
| 45 | u32 en_val; |
| 46 | const char *name; |
| 47 | }; |
| 48 | |
| 49 | #ifdef DEBUG |
| 50 | #define GATE_CLK(clk, reg, val) [clk] = { reg, val, #clk } |
| 51 | #else |
| 52 | #define GATE_CLK(clk, reg, val) [clk] = { reg, val, NULL } |
| 53 | #endif |
| 54 | |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 55 | struct qcom_reset_map { |
| 56 | unsigned int reg; |
| 57 | u8 bit; |
| 58 | }; |
| 59 | |
Volodymyr Babchuk | aae4649 | 2024-03-11 21:33:45 +0000 | [diff] [blame] | 60 | struct qcom_power_map { |
| 61 | unsigned int reg; |
| 62 | }; |
| 63 | |
Caleb Connolly | 10a0abb | 2023-11-07 12:41:03 +0000 | [diff] [blame] | 64 | struct clk; |
| 65 | |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 66 | struct msm_clk_data { |
Volodymyr Babchuk | aae4649 | 2024-03-11 21:33:45 +0000 | [diff] [blame] | 67 | const struct qcom_power_map *power_domains; |
| 68 | unsigned long num_power_domains; |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 69 | const struct qcom_reset_map *resets; |
| 70 | unsigned long num_resets; |
Caleb Connolly | 7a63294 | 2023-11-07 12:41:02 +0000 | [diff] [blame] | 71 | const struct gate_clk *clks; |
| 72 | unsigned long num_clks; |
Caleb Connolly | 10a0abb | 2023-11-07 12:41:03 +0000 | [diff] [blame] | 73 | |
| 74 | int (*enable)(struct clk *clk); |
| 75 | unsigned long (*set_rate)(struct clk *clk, unsigned long rate); |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 76 | }; |
| 77 | |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 78 | struct msm_clk_priv { |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 79 | phys_addr_t base; |
| 80 | struct msm_clk_data *data; |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 81 | }; |
| 82 | |
Konrad Dybcio | 6c0b844 | 2023-11-07 12:41:01 +0000 | [diff] [blame] | 83 | int qcom_cc_bind(struct udevice *parent); |
Ramon Fried | ae29977 | 2018-05-16 12:13:39 +0300 | [diff] [blame] | 84 | void clk_enable_gpll0(phys_addr_t base, const struct pll_vote_clk *gpll0); |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 85 | void clk_bcr_update(phys_addr_t apps_cmd_rgcr); |
| 86 | void clk_enable_cbc(phys_addr_t cbcr); |
Ramon Fried | ae29977 | 2018-05-16 12:13:39 +0300 | [diff] [blame] | 87 | void clk_enable_vote_clk(phys_addr_t base, const struct vote_clk *vclk); |
Caleb Connolly | 397c84f | 2023-11-07 12:41:05 +0000 | [diff] [blame] | 88 | const struct freq_tbl *qcom_find_freq(const struct freq_tbl *f, uint rate); |
Caleb Connolly | cbdad44 | 2024-04-03 14:07:40 +0200 | [diff] [blame] | 89 | void clk_rcg_set_rate_mnd(phys_addr_t base, uint32_t cmd_rcgr, |
Caleb Connolly | fbacc67 | 2023-11-07 12:41:04 +0000 | [diff] [blame] | 90 | int div, int m, int n, int source, u8 mnd_width); |
Caleb Connolly | cbdad44 | 2024-04-03 14:07:40 +0200 | [diff] [blame] | 91 | void clk_rcg_set_rate(phys_addr_t base, uint32_t cmd_rcgr, int div, |
Sumit Garg | a3e804d | 2023-02-01 19:28:57 +0530 | [diff] [blame] | 92 | int source); |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 93 | |
Caleb Connolly | 7a63294 | 2023-11-07 12:41:02 +0000 | [diff] [blame] | 94 | static inline void qcom_gate_clk_en(const struct msm_clk_priv *priv, unsigned long id) |
| 95 | { |
| 96 | u32 val; |
| 97 | if (id >= priv->data->num_clks || priv->data->clks[id].reg == 0) |
| 98 | return; |
| 99 | |
| 100 | val = readl(priv->base + priv->data->clks[id].reg); |
| 101 | writel(val | priv->data->clks[id].en_val, priv->base + priv->data->clks[id].reg); |
| 102 | } |
| 103 | |
Jorge Ramirez-Ortiz | 92c1eff | 2018-01-10 11:33:49 +0100 | [diff] [blame] | 104 | #endif |