2 * Copyright (C) 2014 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
18 #include <linux/clk.h>
19 #include <linux/clk-provider.h>
23 struct mdp4_lvds_pll
{
25 struct drm_device
*dev
;
28 #define to_mdp4_lvds_pll(x) container_of(x, struct mdp4_lvds_pll, pll_hw)
30 static struct mdp4_kms
*get_kms(struct mdp4_lvds_pll
*lvds_pll
)
32 struct msm_drm_private
*priv
= lvds_pll
->dev
->dev_private
;
33 return to_mdp4_kms(to_mdp_kms(priv
->kms
));
44 /* NOTE: keep sorted highest freq to lowest: */
45 static const struct pll_rate freqtbl
[] = {
47 { 0x8f, REG_MDP4_LVDS_PHY_PLL_CTRL_1
},
48 { 0x30, REG_MDP4_LVDS_PHY_PLL_CTRL_2
},
49 { 0xc6, REG_MDP4_LVDS_PHY_PLL_CTRL_3
},
50 { 0x10, REG_MDP4_LVDS_PHY_PLL_CTRL_5
},
51 { 0x07, REG_MDP4_LVDS_PHY_PLL_CTRL_6
},
52 { 0x62, REG_MDP4_LVDS_PHY_PLL_CTRL_7
},
53 { 0x41, REG_MDP4_LVDS_PHY_PLL_CTRL_8
},
54 { 0x0d, REG_MDP4_LVDS_PHY_PLL_CTRL_9
},
59 static const struct pll_rate
*find_rate(unsigned long rate
)
62 for (i
= 1; i
< ARRAY_SIZE(freqtbl
); i
++)
63 if (rate
> freqtbl
[i
].rate
)
68 static int mpd4_lvds_pll_enable(struct clk_hw
*hw
)
70 struct mdp4_lvds_pll
*lvds_pll
= to_mdp4_lvds_pll(hw
);
71 struct mdp4_kms
*mdp4_kms
= get_kms(lvds_pll
);
72 const struct pll_rate
*pll_rate
= find_rate(lvds_pll
->pixclk
);
75 DBG("pixclk=%lu (%lu)", lvds_pll
->pixclk
, pll_rate
->rate
);
77 if (WARN_ON(!pll_rate
))
80 mdp4_write(mdp4_kms
, REG_MDP4_LCDC_LVDS_PHY_RESET
, 0x33);
82 for (i
= 0; pll_rate
->conf
[i
].reg
; i
++)
83 mdp4_write(mdp4_kms
, pll_rate
->conf
[i
].reg
, pll_rate
->conf
[i
].val
);
85 mdp4_write(mdp4_kms
, REG_MDP4_LVDS_PHY_PLL_CTRL_0
, 0x01);
87 /* Wait until LVDS PLL is locked and ready */
88 while (!mdp4_read(mdp4_kms
, REG_MDP4_LVDS_PHY_PLL_LOCKED
))
94 static void mpd4_lvds_pll_disable(struct clk_hw
*hw
)
96 struct mdp4_lvds_pll
*lvds_pll
= to_mdp4_lvds_pll(hw
);
97 struct mdp4_kms
*mdp4_kms
= get_kms(lvds_pll
);
101 mdp4_write(mdp4_kms
, REG_MDP4_LVDS_PHY_CFG0
, 0x0);
102 mdp4_write(mdp4_kms
, REG_MDP4_LVDS_PHY_PLL_CTRL_0
, 0x0);
105 static unsigned long mpd4_lvds_pll_recalc_rate(struct clk_hw
*hw
,
106 unsigned long parent_rate
)
108 struct mdp4_lvds_pll
*lvds_pll
= to_mdp4_lvds_pll(hw
);
109 return lvds_pll
->pixclk
;
112 static long mpd4_lvds_pll_round_rate(struct clk_hw
*hw
, unsigned long rate
,
113 unsigned long *parent_rate
)
115 const struct pll_rate
*pll_rate
= find_rate(rate
);
116 return pll_rate
->rate
;
119 static int mpd4_lvds_pll_set_rate(struct clk_hw
*hw
, unsigned long rate
,
120 unsigned long parent_rate
)
122 struct mdp4_lvds_pll
*lvds_pll
= to_mdp4_lvds_pll(hw
);
123 lvds_pll
->pixclk
= rate
;
128 static const struct clk_ops mpd4_lvds_pll_ops
= {
129 .enable
= mpd4_lvds_pll_enable
,
130 .disable
= mpd4_lvds_pll_disable
,
131 .recalc_rate
= mpd4_lvds_pll_recalc_rate
,
132 .round_rate
= mpd4_lvds_pll_round_rate
,
133 .set_rate
= mpd4_lvds_pll_set_rate
,
136 static const char *mpd4_lvds_pll_parents
[] = {
140 static struct clk_init_data pll_init
= {
141 .name
= "mpd4_lvds_pll",
142 .ops
= &mpd4_lvds_pll_ops
,
143 .parent_names
= mpd4_lvds_pll_parents
,
144 .num_parents
= ARRAY_SIZE(mpd4_lvds_pll_parents
),
147 struct clk
*mpd4_lvds_pll_init(struct drm_device
*dev
)
149 struct mdp4_lvds_pll
*lvds_pll
;
153 lvds_pll
= devm_kzalloc(dev
->dev
, sizeof(*lvds_pll
), GFP_KERNEL
);
161 lvds_pll
->pll_hw
.init
= &pll_init
;
162 clk
= devm_clk_register(dev
->dev
, &lvds_pll
->pll_hw
);