1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2013 Red Hat
7 #ifndef __HDMI_CONNECTOR_H__
8 #define __HDMI_CONNECTOR_H__
10 #include <linux/i2c.h>
11 #include <linux/clk.h>
12 #include <linux/platform_device.h>
13 #include <linux/regulator/consumer.h>
14 #include <linux/gpio/consumer.h>
15 #include <linux/hdmi.h>
17 #include <drm/drm_bridge.h>
23 struct hdmi_platform_config;
27 struct hdmi_audio_infoframe infoframe;
31 struct hdmi_hdcp_ctrl;
34 struct drm_device *dev;
35 struct platform_device *pdev;
36 struct platform_device *audio_pdev;
38 const struct hdmi_platform_config *config;
41 struct hdmi_audio audio;
45 unsigned long int pixclock;
48 void __iomem *qfprom_mmio;
49 phys_addr_t mmio_phy_addr;
51 struct regulator_bulk_data *hpd_regs;
52 struct regulator_bulk_data *pwr_regs;
53 struct clk **hpd_clks;
54 struct clk **pwr_clks;
56 struct gpio_desc *hpd_gpiod;
59 struct device *phy_dev;
61 struct i2c_adapter *i2c;
62 struct drm_connector *connector;
63 struct drm_bridge *bridge;
65 struct drm_bridge *next_bridge;
67 /* the encoder we are hooked to (outside of hdmi block) */
68 struct drm_encoder *encoder;
70 bool hdmi_mode; /* are we in hdmi mode? */
73 struct workqueue_struct *workq;
75 struct hdmi_hdcp_ctrl *hdcp_ctrl;
78 * spinlock to protect registers shared by different execution
80 * REG_HDMI_DDC_ARBITRATION
81 * REG_HDMI_HDCP_INT_CTRL
87 /* platform config data (ie. from DT, or pdata) */
88 struct hdmi_platform_config {
89 /* regulators that need to be on for hpd: */
90 const char **hpd_reg_names;
93 /* regulators that need to be on for screen pwr: */
94 const char **pwr_reg_names;
97 /* clks that need to be on for hpd: */
98 const char **hpd_clk_names;
99 const long unsigned *hpd_freq;
102 /* clks that need to be on for screen pwr (ie pixel clk): */
103 const char **pwr_clk_names;
108 struct drm_bridge base;
110 struct work_struct hpd_work;
112 #define to_hdmi_bridge(x) container_of(x, struct hdmi_bridge, base)
114 void msm_hdmi_set_mode(struct hdmi *hdmi, bool power_on);
116 static inline void hdmi_write(struct hdmi *hdmi, u32 reg, u32 data)
118 msm_writel(data, hdmi->mmio + reg);
121 static inline u32 hdmi_read(struct hdmi *hdmi, u32 reg)
123 return msm_readl(hdmi->mmio + reg);
126 static inline u32 hdmi_qfprom_read(struct hdmi *hdmi, u32 reg)
128 return msm_readl(hdmi->qfprom_mmio + reg);
143 struct hdmi_phy_cfg {
144 enum hdmi_phy_type type;
145 void (*powerup)(struct hdmi_phy *phy, unsigned long int pixclock);
146 void (*powerdown)(struct hdmi_phy *phy);
147 const char * const *reg_names;
149 const char * const *clk_names;
153 extern const struct hdmi_phy_cfg msm_hdmi_phy_8x60_cfg;
154 extern const struct hdmi_phy_cfg msm_hdmi_phy_8960_cfg;
155 extern const struct hdmi_phy_cfg msm_hdmi_phy_8x74_cfg;
156 extern const struct hdmi_phy_cfg msm_hdmi_phy_8996_cfg;
159 struct platform_device *pdev;
161 struct hdmi_phy_cfg *cfg;
162 const struct hdmi_phy_funcs *funcs;
163 struct regulator_bulk_data *regs;
167 static inline void hdmi_phy_write(struct hdmi_phy *phy, u32 reg, u32 data)
169 msm_writel(data, phy->mmio + reg);
172 static inline u32 hdmi_phy_read(struct hdmi_phy *phy, u32 reg)
174 return msm_readl(phy->mmio + reg);
177 int msm_hdmi_phy_resource_enable(struct hdmi_phy *phy);
178 void msm_hdmi_phy_resource_disable(struct hdmi_phy *phy);
179 void msm_hdmi_phy_powerup(struct hdmi_phy *phy, unsigned long int pixclock);
180 void msm_hdmi_phy_powerdown(struct hdmi_phy *phy);
181 void __init msm_hdmi_phy_driver_register(void);
182 void __exit msm_hdmi_phy_driver_unregister(void);
184 #ifdef CONFIG_COMMON_CLK
185 int msm_hdmi_pll_8960_init(struct platform_device *pdev);
186 int msm_hdmi_pll_8996_init(struct platform_device *pdev);
188 static inline int msm_hdmi_pll_8960_init(struct platform_device *pdev)
193 static inline int msm_hdmi_pll_8996_init(struct platform_device *pdev)
202 /* Supported HDMI Audio channels and rates */
203 #define MSM_HDMI_AUDIO_CHANNEL_2 0
204 #define MSM_HDMI_AUDIO_CHANNEL_4 1
205 #define MSM_HDMI_AUDIO_CHANNEL_6 2
206 #define MSM_HDMI_AUDIO_CHANNEL_8 3
208 #define HDMI_SAMPLE_RATE_32KHZ 0
209 #define HDMI_SAMPLE_RATE_44_1KHZ 1
210 #define HDMI_SAMPLE_RATE_48KHZ 2
211 #define HDMI_SAMPLE_RATE_88_2KHZ 3
212 #define HDMI_SAMPLE_RATE_96KHZ 4
213 #define HDMI_SAMPLE_RATE_176_4KHZ 5
214 #define HDMI_SAMPLE_RATE_192KHZ 6
216 int msm_hdmi_audio_update(struct hdmi *hdmi);
217 int msm_hdmi_audio_info_setup(struct hdmi *hdmi, bool enabled,
218 uint32_t num_of_channels, uint32_t channel_allocation,
219 uint32_t level_shift, bool down_mix);
220 void msm_hdmi_audio_set_sample_rate(struct hdmi *hdmi, int rate);
227 struct drm_bridge *msm_hdmi_bridge_init(struct hdmi *hdmi);
228 void msm_hdmi_bridge_destroy(struct drm_bridge *bridge);
230 void msm_hdmi_hpd_irq(struct drm_bridge *bridge);
231 enum drm_connector_status msm_hdmi_bridge_detect(
232 struct drm_bridge *bridge);
233 int msm_hdmi_hpd_enable(struct drm_bridge *bridge);
234 void msm_hdmi_hpd_disable(struct hdmi_bridge *hdmi_bridge);
237 * i2c adapter for ddc:
240 void msm_hdmi_i2c_irq(struct i2c_adapter *i2c);
241 void msm_hdmi_i2c_destroy(struct i2c_adapter *i2c);
242 struct i2c_adapter *msm_hdmi_i2c_init(struct hdmi *hdmi);
247 #ifdef CONFIG_DRM_MSM_HDMI_HDCP
248 struct hdmi_hdcp_ctrl *msm_hdmi_hdcp_init(struct hdmi *hdmi);
249 void msm_hdmi_hdcp_destroy(struct hdmi *hdmi);
250 void msm_hdmi_hdcp_on(struct hdmi_hdcp_ctrl *hdcp_ctrl);
251 void msm_hdmi_hdcp_off(struct hdmi_hdcp_ctrl *hdcp_ctrl);
252 void msm_hdmi_hdcp_irq(struct hdmi_hdcp_ctrl *hdcp_ctrl);
254 static inline struct hdmi_hdcp_ctrl *msm_hdmi_hdcp_init(struct hdmi *hdmi)
256 return ERR_PTR(-ENXIO);
258 static inline void msm_hdmi_hdcp_destroy(struct hdmi *hdmi) {}
259 static inline void msm_hdmi_hdcp_on(struct hdmi_hdcp_ctrl *hdcp_ctrl) {}
260 static inline void msm_hdmi_hdcp_off(struct hdmi_hdcp_ctrl *hdcp_ctrl) {}
261 static inline void msm_hdmi_hdcp_irq(struct hdmi_hdcp_ctrl *hdcp_ctrl) {}
264 #endif /* __HDMI_CONNECTOR_H__ */