Add DSI PLL common clock framework clocks for 8960 PHY. The PLL here is different from the ones found in B family msm chips. As before, the DSI provides two clocks to the outside world. dsixpll and dsixpllbyte (x = 1, 2). dsixpll is a regular clock divider, but dsixpllbyte is modelled as a custom clock divider. dsixpllbyte is the starting point of the PLL configuration. It is the one that sets up the VCO clock rate. We need the VCO clock rate in the form: F * byteclk, where F is a multiplication factor that varies on the byte clock the DSI driver is trying to set. We use the custom clk_ops for dsixpllbyte to ensure that the parent (VCO) is set at this rate. An additional divider (POSTDIV1) generates the bitclk. Since bit clock can be derived from byteclock, we calculate it internally, and don't expose it as a clock. Cc: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Archit Taneja <architt@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
109 lines
2.8 KiB
C
109 lines
2.8 KiB
C
/*
|
|
* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#ifndef __DSI_PLL_H__
|
|
#define __DSI_PLL_H__
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include "dsi.h"
|
|
|
|
#define NUM_DSI_CLOCKS_MAX 6
|
|
#define MAX_DSI_PLL_EN_SEQS 10
|
|
|
|
struct msm_dsi_pll {
|
|
enum msm_dsi_phy_type type;
|
|
|
|
struct clk_hw clk_hw;
|
|
bool pll_on;
|
|
bool state_saved;
|
|
|
|
unsigned long min_rate;
|
|
unsigned long max_rate;
|
|
u32 en_seq_cnt;
|
|
|
|
int (*enable_seqs[MAX_DSI_PLL_EN_SEQS])(struct msm_dsi_pll *pll);
|
|
void (*disable_seq)(struct msm_dsi_pll *pll);
|
|
int (*get_provider)(struct msm_dsi_pll *pll,
|
|
struct clk **byte_clk_provider,
|
|
struct clk **pixel_clk_provider);
|
|
void (*destroy)(struct msm_dsi_pll *pll);
|
|
void (*save_state)(struct msm_dsi_pll *pll);
|
|
int (*restore_state)(struct msm_dsi_pll *pll);
|
|
};
|
|
|
|
#define hw_clk_to_pll(x) container_of(x, struct msm_dsi_pll, clk_hw)
|
|
|
|
static inline void pll_write(void __iomem *reg, u32 data)
|
|
{
|
|
msm_writel(data, reg);
|
|
}
|
|
|
|
static inline u32 pll_read(const void __iomem *reg)
|
|
{
|
|
return msm_readl(reg);
|
|
}
|
|
|
|
static inline void pll_write_udelay(void __iomem *reg, u32 data, u32 delay_us)
|
|
{
|
|
pll_write(reg, data);
|
|
udelay(delay_us);
|
|
}
|
|
|
|
static inline void pll_write_ndelay(void __iomem *reg, u32 data, u32 delay_ns)
|
|
{
|
|
pll_write((reg), data);
|
|
ndelay(delay_ns);
|
|
}
|
|
|
|
/*
|
|
* DSI PLL Helper functions
|
|
*/
|
|
|
|
/* clock callbacks */
|
|
long msm_dsi_pll_helper_clk_round_rate(struct clk_hw *hw,
|
|
unsigned long rate, unsigned long *parent_rate);
|
|
int msm_dsi_pll_helper_clk_prepare(struct clk_hw *hw);
|
|
void msm_dsi_pll_helper_clk_unprepare(struct clk_hw *hw);
|
|
/* misc */
|
|
void msm_dsi_pll_helper_unregister_clks(struct platform_device *pdev,
|
|
struct clk **clks, u32 num_clks);
|
|
|
|
/*
|
|
* Initialization for Each PLL Type
|
|
*/
|
|
#ifdef CONFIG_DRM_MSM_DSI_28NM_PHY
|
|
struct msm_dsi_pll *msm_dsi_pll_28nm_init(struct platform_device *pdev,
|
|
enum msm_dsi_phy_type type, int id);
|
|
#else
|
|
static inline struct msm_dsi_pll *msm_dsi_pll_28nm_init(
|
|
struct platform_device *pdev, enum msm_dsi_phy_type type, int id)
|
|
{
|
|
return ERR_PTR(-ENODEV);
|
|
}
|
|
#endif
|
|
#ifdef CONFIG_DRM_MSM_DSI_28NM_8960_PHY
|
|
struct msm_dsi_pll *msm_dsi_pll_28nm_8960_init(struct platform_device *pdev,
|
|
int id);
|
|
#else
|
|
struct msm_dsi_pll *msm_dsi_pll_28nm_8960_init(struct platform_device *pdev,
|
|
int id)
|
|
{
|
|
return ERR_PTR(-ENODEV);
|
|
}
|
|
#endif
|
|
|
|
#endif /* __DSI_PLL_H__ */
|
|
|