blob: 36c0b082a43b274e8d5da18a4fc8e8e4e0c32ed5 [file] [log] [blame]
Maxime Ripardf73100c2020-09-03 10:01:11 +02001#ifndef _VC4_HDMI_H_
2#define _VC4_HDMI_H_
3
4#include <drm/drm_connector.h>
5#include <media/cec.h>
6#include <sound/dmaengine_pcm.h>
7#include <sound/soc.h>
8
9#include "vc4_drv.h"
10
Maxime Ripardf73100c2020-09-03 10:01:11 +020011/* VC4 HDMI encoder KMS struct */
12struct vc4_hdmi_encoder {
13 struct vc4_encoder base;
14 bool hdmi_monitor;
15 bool limited_rgb_range;
16};
17
18static inline struct vc4_hdmi_encoder *
19to_vc4_hdmi_encoder(struct drm_encoder *encoder)
20{
21 return container_of(encoder, struct vc4_hdmi_encoder, base.base);
22}
23
Maxime Ripard33c773e2020-09-03 10:01:22 +020024struct vc4_hdmi;
Maxime Ripard311e3052020-09-03 10:01:23 +020025struct vc4_hdmi_register;
Maxime Ripardd2a7dd02020-12-15 16:42:41 +010026struct vc4_hdmi_connector_state;
Maxime Ripard33c773e2020-09-03 10:01:22 +020027
Maxime Ripard83239892020-09-03 10:01:48 +020028enum vc4_hdmi_phy_channel {
29 PHY_LANE_0 = 0,
30 PHY_LANE_1,
31 PHY_LANE_2,
32 PHY_LANE_CK,
33};
34
Maxime Ripard33c773e2020-09-03 10:01:22 +020035struct vc4_hdmi_variant {
Maxime Ripard7d732992020-09-03 10:01:29 +020036 /* Encoder Type for that controller */
37 enum vc4_encoder_type encoder_type;
38
Maxime Ripard9be43a52020-09-03 10:01:41 +020039 /* ALSA card name */
40 const char *card_name;
41
Maxime Ripardb2405c92020-09-03 10:01:30 +020042 /* Filename to expose the registers in debugfs */
43 const char *debugfs_name;
44
Maxime Ripardcd4cb492020-09-03 10:01:35 +020045 /* Maximum pixel clock supported by the controller (in Hz) */
46 unsigned long long max_pixel_clock;
47
Maxime Ripard311e3052020-09-03 10:01:23 +020048 /* List of the registers available on that variant */
49 const struct vc4_hdmi_register *registers;
50
51 /* Number of registers on that variant */
52 unsigned int num_registers;
53
Maxime Ripard83239892020-09-03 10:01:48 +020054 /* BCM2711 Only.
55 * The variants don't map the lane in the same order in the
56 * PHY, so this is an array mapping the HDMI channel (index)
57 * to the PHY lane (value).
58 */
59 enum vc4_hdmi_phy_channel phy_lane_mapping[4];
60
Maxime Ripard57fb32e2020-10-29 13:25:22 +010061 /* The BCM2711 cannot deal with odd horizontal pixel timings */
62 bool unsupported_odd_h_timings;
63
Maxime Ripardad6380e2021-01-11 15:23:04 +010064 /*
65 * The BCM2711 CEC/hotplug IRQ controller is shared between the
66 * two HDMI controllers, and we have a proper irqchip driver for
67 * it.
68 */
69 bool external_irq_controller;
70
Maxime Ripard33c773e2020-09-03 10:01:22 +020071 /* Callback to get the resources (memory region, interrupts,
72 * clocks, etc) for that variant.
73 */
74 int (*init_resources)(struct vc4_hdmi *vc4_hdmi);
Maxime Ripard9045e912020-09-03 10:01:24 +020075
76 /* Callback to reset the HDMI block */
77 void (*reset)(struct vc4_hdmi *vc4_hdmi);
Maxime Ripardc457b8a2020-09-03 10:01:25 +020078
Maxime Ripard89f31a22020-09-03 10:01:27 +020079 /* Callback to enable / disable the CSC */
80 void (*csc_setup)(struct vc4_hdmi *vc4_hdmi, bool enable);
81
Maxime Ripard904f6682020-09-03 10:01:28 +020082 /* Callback to configure the video timings in the HDMI block */
83 void (*set_timings)(struct vc4_hdmi *vc4_hdmi,
Maxime Ripardba8c0fa2020-12-15 16:42:43 +010084 struct drm_connector_state *state,
Maxime Ripard904f6682020-09-03 10:01:28 +020085 struct drm_display_mode *mode);
86
Maxime Ripardd2a7dd02020-12-15 16:42:41 +010087 /* Callback to initialize the PHY according to the connector state */
Maxime Ripardc457b8a2020-09-03 10:01:25 +020088 void (*phy_init)(struct vc4_hdmi *vc4_hdmi,
Maxime Ripardd2a7dd02020-12-15 16:42:41 +010089 struct vc4_hdmi_connector_state *vc4_conn_state);
Maxime Ripardc457b8a2020-09-03 10:01:25 +020090
91 /* Callback to disable the PHY */
92 void (*phy_disable)(struct vc4_hdmi *vc4_hdmi);
Maxime Ripard647b9652020-09-03 10:01:26 +020093
94 /* Callback to enable the RNG in the PHY */
95 void (*phy_rng_enable)(struct vc4_hdmi *vc4_hdmi);
96
97 /* Callback to disable the RNG in the PHY */
98 void (*phy_rng_disable)(struct vc4_hdmi *vc4_hdmi);
Dave Stevenson632ee3a2020-09-03 10:01:40 +020099
100 /* Callback to get channel map */
101 u32 (*channel_map)(struct vc4_hdmi *vc4_hdmi, u32 channel_mask);
Dave Stevensonbccd5c52021-04-30 11:44:49 +0200102
103 /* Enables HDR metadata */
104 bool supports_hdr;
Maxime Ripard33c773e2020-09-03 10:01:22 +0200105};
106
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200107/* HDMI audio information */
108struct vc4_hdmi_audio {
109 struct snd_soc_card card;
110 struct snd_soc_dai_link link;
111 struct snd_soc_dai_link_component cpu;
112 struct snd_soc_dai_link_component codec;
113 struct snd_soc_dai_link_component platform;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200114 struct snd_dmaengine_dai_dma_data dma_data;
Maxime Ripard91e99e12021-05-25 15:23:52 +0200115 struct hdmi_audio_infoframe infoframe;
Dave Stevenson6ac1c752020-09-03 10:01:38 +0200116 bool streaming;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200117};
118
119/* General HDMI hardware state. */
120struct vc4_hdmi {
Maxime Ripard47c167b2020-09-03 10:01:19 +0200121 struct vc4_hdmi_audio audio;
122
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200123 struct platform_device *pdev;
Maxime Ripard33c773e2020-09-03 10:01:22 +0200124 const struct vc4_hdmi_variant *variant;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200125
126 struct vc4_hdmi_encoder encoder;
Maxime Ripard0532e5e2020-09-03 10:01:21 +0200127 struct drm_connector connector;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200128
Maxime Ripard257d36d2021-05-07 17:05:14 +0200129 struct delayed_work scrambling_work;
130
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200131 struct i2c_adapter *ddc;
132 void __iomem *hdmicore_regs;
133 void __iomem *hd_regs;
Maxime Ripard83239892020-09-03 10:01:48 +0200134
135 /* VC5 Only */
136 void __iomem *cec_regs;
137 /* VC5 Only */
138 void __iomem *csc_regs;
139 /* VC5 Only */
140 void __iomem *dvp_regs;
141 /* VC5 Only */
142 void __iomem *phy_regs;
143 /* VC5 Only */
144 void __iomem *ram_regs;
145 /* VC5 Only */
146 void __iomem *rm_regs;
147
Maxime Ripard68002342021-05-24 15:18:52 +0200148 struct gpio_desc *hpd_gpio;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200149
Maxime Ripard9fa1d7e2020-10-29 14:40:17 +0100150 /*
151 * On some systems (like the RPi4), some modes are in the same
152 * frequency range than the WiFi channels (1440p@60Hz for
153 * example). Should we take evasive actions because that system
154 * has a wifi adapter?
155 */
156 bool disable_wifi_frequencies;
157
Maxime Ripard86e3a652021-05-07 17:05:12 +0200158 /*
159 * Even if HDMI0 on the RPi4 can output modes requiring a pixel
160 * rate higher than 297MHz, it needs some adjustments in the
161 * config.txt file to be able to do so and thus won't always be
162 * available.
163 */
164 bool disable_4kp60;
165
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200166 struct cec_adapter *cec_adap;
167 struct cec_msg cec_rx_msg;
168 bool cec_tx_ok;
169 bool cec_irq_was_rx;
170
Maxime Ripardcd7f0162021-01-11 15:23:02 +0100171 struct clk *cec_clock;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200172 struct clk *pixel_clock;
173 struct clk *hsm_clock;
Dave Stevenson632ee3a2020-09-03 10:01:40 +0200174 struct clk *audio_clock;
Hoegeun Kwon37387422020-09-03 10:01:47 +0200175 struct clk *pixel_bvb_clock;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200176
Maxime Ripard83239892020-09-03 10:01:48 +0200177 struct reset_control *reset;
178
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200179 struct debugfs_regset32 hdmi_regset;
180 struct debugfs_regset32 hd_regset;
Maxime Ripard81fb55e2021-10-25 16:11:08 +0200181
182 /**
183 * @hw_lock: Spinlock protecting device register access.
184 */
185 spinlock_t hw_lock;
Maxime Ripard82cb88a2021-10-25 16:11:09 +0200186
187 /**
188 * @mutex: Mutex protecting the driver access across multiple
189 * frameworks (KMS, ALSA).
190 *
191 * NOTE: While supported, CEC has been left out since
192 * cec_s_phys_addr_from_edid() might call .adap_enable and lead to a
193 * reentrancy issue between .get_modes (or .detect) and .adap_enable.
194 * Since we don't share any state between the CEC hooks and KMS', it's
195 * not a big deal. The only trouble might come from updating the CEC
196 * clock divider which might be affected by a modeset, but CEC should
197 * be resilient to that.
198 */
199 struct mutex mutex;
Maxime Ripard633be8c2021-10-25 16:11:10 +0200200
201 /**
202 * @saved_adjusted_mode: Copy of @drm_crtc_state.adjusted_mode
203 * for use by ALSA hooks and interrupt handlers. Protected by @mutex.
204 */
205 struct drm_display_mode saved_adjusted_mode;
Maxime Ripardebae26d2021-10-25 16:11:12 +0200206
207 /**
208 * @output_enabled: Is the HDMI controller currently active?
209 * Protected by @mutex.
210 */
211 bool output_enabled;
Maxime Ripard19986462021-10-25 16:11:13 +0200212
213 /**
214 * @scdc_enabled: Is the HDMI controller currently running with
215 * the scrambler on? Protected by @mutex.
216 */
217 bool scdc_enabled;
Maxime Ripardc98c85b2020-09-03 10:01:12 +0200218};
219
Maxime Ripard5dfbcae2020-09-03 10:01:17 +0200220static inline struct vc4_hdmi *
221connector_to_vc4_hdmi(struct drm_connector *connector)
222{
Maxime Ripard0532e5e2020-09-03 10:01:21 +0200223 return container_of(connector, struct vc4_hdmi, connector);
Maxime Ripard5dfbcae2020-09-03 10:01:17 +0200224}
225
226static inline struct vc4_hdmi *
227encoder_to_vc4_hdmi(struct drm_encoder *encoder)
228{
229 struct vc4_hdmi_encoder *_encoder = to_vc4_hdmi_encoder(encoder);
230
231 return container_of(_encoder, struct vc4_hdmi, encoder);
232}
233
Maxime Ripardfbe72712020-12-15 16:42:39 +0100234struct vc4_hdmi_connector_state {
235 struct drm_connector_state base;
Maxime Ripardf6237462020-12-15 16:42:40 +0100236 unsigned long long pixel_rate;
Maxime Ripardfbe72712020-12-15 16:42:39 +0100237};
238
239static inline struct vc4_hdmi_connector_state *
240conn_state_to_vc4_hdmi_conn_state(struct drm_connector_state *conn_state)
241{
242 return container_of(conn_state, struct vc4_hdmi_connector_state, base);
243}
244
Maxime Ripardc457b8a2020-09-03 10:01:25 +0200245void vc4_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi,
Maxime Ripardd2a7dd02020-12-15 16:42:41 +0100246 struct vc4_hdmi_connector_state *vc4_conn_state);
Maxime Ripardc457b8a2020-09-03 10:01:25 +0200247void vc4_hdmi_phy_disable(struct vc4_hdmi *vc4_hdmi);
Maxime Ripard647b9652020-09-03 10:01:26 +0200248void vc4_hdmi_phy_rng_enable(struct vc4_hdmi *vc4_hdmi);
249void vc4_hdmi_phy_rng_disable(struct vc4_hdmi *vc4_hdmi);
Maxime Ripardc457b8a2020-09-03 10:01:25 +0200250
Maxime Ripard83239892020-09-03 10:01:48 +0200251void vc5_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi,
Maxime Ripardd2a7dd02020-12-15 16:42:41 +0100252 struct vc4_hdmi_connector_state *vc4_conn_state);
Maxime Ripard83239892020-09-03 10:01:48 +0200253void vc5_hdmi_phy_disable(struct vc4_hdmi *vc4_hdmi);
254void vc5_hdmi_phy_rng_enable(struct vc4_hdmi *vc4_hdmi);
255void vc5_hdmi_phy_rng_disable(struct vc4_hdmi *vc4_hdmi);
256
Maxime Ripardf73100c2020-09-03 10:01:11 +0200257#endif /* _VC4_HDMI_H_ */