4 #include <drm/drm_connector.h>
6 #include <sound/dmaengine_pcm.h>
11 /* VC4 HDMI encoder KMS struct */
12 struct vc4_hdmi_encoder {
13 struct vc4_encoder base;
15 bool limited_rgb_range;
18 static inline struct vc4_hdmi_encoder *
19 to_vc4_hdmi_encoder(struct drm_encoder *encoder)
21 return container_of(encoder, struct vc4_hdmi_encoder, base.base);
25 struct vc4_hdmi_register;
26 struct vc4_hdmi_connector_state;
28 enum vc4_hdmi_phy_channel {
35 struct vc4_hdmi_variant {
36 /* Encoder Type for that controller */
37 enum vc4_encoder_type encoder_type;
40 const char *card_name;
42 /* Filename to expose the registers in debugfs */
43 const char *debugfs_name;
45 /* Maximum pixel clock supported by the controller (in Hz) */
46 unsigned long long max_pixel_clock;
48 /* List of the registers available on that variant */
49 const struct vc4_hdmi_register *registers;
51 /* Number of registers on that variant */
52 unsigned int num_registers;
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).
59 enum vc4_hdmi_phy_channel phy_lane_mapping[4];
61 /* The BCM2711 cannot deal with odd horizontal pixel timings */
62 bool unsupported_odd_h_timings;
65 * The BCM2711 CEC/hotplug IRQ controller is shared between the
66 * two HDMI controllers, and we have a proper irqchip driver for
69 bool external_irq_controller;
71 /* Callback to get the resources (memory region, interrupts,
72 * clocks, etc) for that variant.
74 int (*init_resources)(struct vc4_hdmi *vc4_hdmi);
76 /* Callback to reset the HDMI block */
77 void (*reset)(struct vc4_hdmi *vc4_hdmi);
79 /* Callback to enable / disable the CSC */
80 void (*csc_setup)(struct vc4_hdmi *vc4_hdmi, bool enable);
82 /* Callback to configure the video timings in the HDMI block */
83 void (*set_timings)(struct vc4_hdmi *vc4_hdmi,
84 struct drm_connector_state *state,
85 struct drm_display_mode *mode);
87 /* Callback to initialize the PHY according to the connector state */
88 void (*phy_init)(struct vc4_hdmi *vc4_hdmi,
89 struct vc4_hdmi_connector_state *vc4_conn_state);
91 /* Callback to disable the PHY */
92 void (*phy_disable)(struct vc4_hdmi *vc4_hdmi);
94 /* Callback to enable the RNG in the PHY */
95 void (*phy_rng_enable)(struct vc4_hdmi *vc4_hdmi);
97 /* Callback to disable the RNG in the PHY */
98 void (*phy_rng_disable)(struct vc4_hdmi *vc4_hdmi);
100 /* Callback to get channel map */
101 u32 (*channel_map)(struct vc4_hdmi *vc4_hdmi, u32 channel_mask);
103 /* Enables HDR metadata */
107 /* HDMI audio information */
108 struct 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;
114 struct snd_dmaengine_dai_dma_data dma_data;
115 struct hdmi_audio_infoframe infoframe;
119 /* General HDMI hardware state. */
121 struct vc4_hdmi_audio audio;
123 struct platform_device *pdev;
124 const struct vc4_hdmi_variant *variant;
126 struct vc4_hdmi_encoder encoder;
127 struct drm_connector connector;
129 struct delayed_work scrambling_work;
131 struct i2c_adapter *ddc;
132 void __iomem *hdmicore_regs;
133 void __iomem *hd_regs;
136 void __iomem *cec_regs;
138 void __iomem *csc_regs;
140 void __iomem *dvp_regs;
142 void __iomem *phy_regs;
144 void __iomem *ram_regs;
146 void __iomem *rm_regs;
148 struct gpio_desc *hpd_gpio;
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?
156 bool disable_wifi_frequencies;
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
166 struct cec_adapter *cec_adap;
167 struct cec_msg cec_rx_msg;
171 struct clk *cec_clock;
172 struct clk *pixel_clock;
173 struct clk *hsm_clock;
174 struct clk *audio_clock;
175 struct clk *pixel_bvb_clock;
177 struct reset_control *reset;
179 struct debugfs_regset32 hdmi_regset;
180 struct debugfs_regset32 hd_regset;
183 static inline struct vc4_hdmi *
184 connector_to_vc4_hdmi(struct drm_connector *connector)
186 return container_of(connector, struct vc4_hdmi, connector);
189 static inline struct vc4_hdmi *
190 encoder_to_vc4_hdmi(struct drm_encoder *encoder)
192 struct vc4_hdmi_encoder *_encoder = to_vc4_hdmi_encoder(encoder);
194 return container_of(_encoder, struct vc4_hdmi, encoder);
197 struct vc4_hdmi_connector_state {
198 struct drm_connector_state base;
199 unsigned long long pixel_rate;
202 static inline struct vc4_hdmi_connector_state *
203 conn_state_to_vc4_hdmi_conn_state(struct drm_connector_state *conn_state)
205 return container_of(conn_state, struct vc4_hdmi_connector_state, base);
208 void vc4_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi,
209 struct vc4_hdmi_connector_state *vc4_conn_state);
210 void vc4_hdmi_phy_disable(struct vc4_hdmi *vc4_hdmi);
211 void vc4_hdmi_phy_rng_enable(struct vc4_hdmi *vc4_hdmi);
212 void vc4_hdmi_phy_rng_disable(struct vc4_hdmi *vc4_hdmi);
214 void vc5_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi,
215 struct vc4_hdmi_connector_state *vc4_conn_state);
216 void vc5_hdmi_phy_disable(struct vc4_hdmi *vc4_hdmi);
217 void vc5_hdmi_phy_rng_enable(struct vc4_hdmi *vc4_hdmi);
218 void vc5_hdmi_phy_rng_disable(struct vc4_hdmi *vc4_hdmi);
220 #endif /* _VC4_HDMI_H_ */