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
);
24 struct drm_display_mode
;
27 struct vc4_hdmi_register
;
29 enum vc4_hdmi_phy_channel
{
36 struct vc4_hdmi_variant
{
37 /* Encoder Type for that controller */
38 enum vc4_encoder_type encoder_type
;
41 const char *card_name
;
43 /* Filename to expose the registers in debugfs */
44 const char *debugfs_name
;
46 /* Set to true when the CEC support is available */
49 /* Maximum pixel clock supported by the controller (in Hz) */
50 unsigned long long max_pixel_clock
;
52 /* List of the registers available on that variant */
53 const struct vc4_hdmi_register
*registers
;
55 /* Number of registers on that variant */
56 unsigned int num_registers
;
59 * The variants don't map the lane in the same order in the
60 * PHY, so this is an array mapping the HDMI channel (index)
61 * to the PHY lane (value).
63 enum vc4_hdmi_phy_channel phy_lane_mapping
[4];
65 /* The BCM2711 cannot deal with odd horizontal pixel timings */
66 bool unsupported_odd_h_timings
;
68 /* Callback to get the resources (memory region, interrupts,
69 * clocks, etc) for that variant.
71 int (*init_resources
)(struct vc4_hdmi
*vc4_hdmi
);
73 /* Callback to reset the HDMI block */
74 void (*reset
)(struct vc4_hdmi
*vc4_hdmi
);
76 /* Callback to enable / disable the CSC */
77 void (*csc_setup
)(struct vc4_hdmi
*vc4_hdmi
, bool enable
);
79 /* Callback to configure the video timings in the HDMI block */
80 void (*set_timings
)(struct vc4_hdmi
*vc4_hdmi
,
81 struct drm_display_mode
*mode
);
83 /* Callback to initialize the PHY according to the mode */
84 void (*phy_init
)(struct vc4_hdmi
*vc4_hdmi
,
85 struct drm_display_mode
*mode
);
87 /* Callback to disable the PHY */
88 void (*phy_disable
)(struct vc4_hdmi
*vc4_hdmi
);
90 /* Callback to enable the RNG in the PHY */
91 void (*phy_rng_enable
)(struct vc4_hdmi
*vc4_hdmi
);
93 /* Callback to disable the RNG in the PHY */
94 void (*phy_rng_disable
)(struct vc4_hdmi
*vc4_hdmi
);
96 /* Callback to get channel map */
97 u32 (*channel_map
)(struct vc4_hdmi
*vc4_hdmi
, u32 channel_mask
);
100 /* HDMI audio information */
101 struct vc4_hdmi_audio
{
102 struct snd_soc_card card
;
103 struct snd_soc_dai_link link
;
104 struct snd_soc_dai_link_component cpu
;
105 struct snd_soc_dai_link_component codec
;
106 struct snd_soc_dai_link_component platform
;
109 struct snd_dmaengine_dai_dma_data dma_data
;
110 struct snd_pcm_substream
*substream
;
115 /* General HDMI hardware state. */
117 struct vc4_hdmi_audio audio
;
119 struct platform_device
*pdev
;
120 const struct vc4_hdmi_variant
*variant
;
122 struct vc4_hdmi_encoder encoder
;
123 struct drm_connector connector
;
125 struct i2c_adapter
*ddc
;
126 void __iomem
*hdmicore_regs
;
127 void __iomem
*hd_regs
;
130 void __iomem
*cec_regs
;
132 void __iomem
*csc_regs
;
134 void __iomem
*dvp_regs
;
136 void __iomem
*phy_regs
;
138 void __iomem
*ram_regs
;
140 void __iomem
*rm_regs
;
146 * On some systems (like the RPi4), some modes are in the same
147 * frequency range than the WiFi channels (1440p@60Hz for
148 * example). Should we take evasive actions because that system
149 * has a wifi adapter?
151 bool disable_wifi_frequencies
;
153 struct cec_adapter
*cec_adap
;
154 struct cec_msg cec_rx_msg
;
158 struct clk
*pixel_clock
;
159 struct clk
*hsm_clock
;
160 struct clk
*audio_clock
;
161 struct clk
*pixel_bvb_clock
;
163 struct reset_control
*reset
;
165 struct debugfs_regset32 hdmi_regset
;
166 struct debugfs_regset32 hd_regset
;
169 static inline struct vc4_hdmi
*
170 connector_to_vc4_hdmi(struct drm_connector
*connector
)
172 return container_of(connector
, struct vc4_hdmi
, connector
);
175 static inline struct vc4_hdmi
*
176 encoder_to_vc4_hdmi(struct drm_encoder
*encoder
)
178 struct vc4_hdmi_encoder
*_encoder
= to_vc4_hdmi_encoder(encoder
);
180 return container_of(_encoder
, struct vc4_hdmi
, encoder
);
183 void vc4_hdmi_phy_init(struct vc4_hdmi
*vc4_hdmi
,
184 struct drm_display_mode
*mode
);
185 void vc4_hdmi_phy_disable(struct vc4_hdmi
*vc4_hdmi
);
186 void vc4_hdmi_phy_rng_enable(struct vc4_hdmi
*vc4_hdmi
);
187 void vc4_hdmi_phy_rng_disable(struct vc4_hdmi
*vc4_hdmi
);
189 void vc5_hdmi_phy_init(struct vc4_hdmi
*vc4_hdmi
,
190 struct drm_display_mode
*mode
);
191 void vc5_hdmi_phy_disable(struct vc4_hdmi
*vc4_hdmi
);
192 void vc5_hdmi_phy_rng_enable(struct vc4_hdmi
*vc4_hdmi
);
193 void vc5_hdmi_phy_rng_disable(struct vc4_hdmi
*vc4_hdmi
);
195 #endif /* _VC4_HDMI_H_ */