Maxime Ripard | f73100c | 2020-09-03 10:01:11 +0200 | [diff] [blame] | 1 | #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 Ripard | f73100c | 2020-09-03 10:01:11 +0200 | [diff] [blame] | 11 | /* VC4 HDMI encoder KMS struct */ |
| 12 | struct vc4_hdmi_encoder { |
| 13 | struct vc4_encoder base; |
| 14 | bool hdmi_monitor; |
| 15 | bool limited_rgb_range; |
| 16 | }; |
| 17 | |
| 18 | static inline struct vc4_hdmi_encoder * |
| 19 | to_vc4_hdmi_encoder(struct drm_encoder *encoder) |
| 20 | { |
| 21 | return container_of(encoder, struct vc4_hdmi_encoder, base.base); |
| 22 | } |
| 23 | |
Maxime Ripard | 33c773e | 2020-09-03 10:01:22 +0200 | [diff] [blame] | 24 | struct vc4_hdmi; |
Maxime Ripard | 311e305 | 2020-09-03 10:01:23 +0200 | [diff] [blame] | 25 | struct vc4_hdmi_register; |
Maxime Ripard | d2a7dd0 | 2020-12-15 16:42:41 +0100 | [diff] [blame^] | 26 | struct vc4_hdmi_connector_state; |
Maxime Ripard | 33c773e | 2020-09-03 10:01:22 +0200 | [diff] [blame] | 27 | |
Maxime Ripard | 8323989 | 2020-09-03 10:01:48 +0200 | [diff] [blame] | 28 | enum vc4_hdmi_phy_channel { |
| 29 | PHY_LANE_0 = 0, |
| 30 | PHY_LANE_1, |
| 31 | PHY_LANE_2, |
| 32 | PHY_LANE_CK, |
| 33 | }; |
| 34 | |
Maxime Ripard | 33c773e | 2020-09-03 10:01:22 +0200 | [diff] [blame] | 35 | struct vc4_hdmi_variant { |
Maxime Ripard | 7d73299 | 2020-09-03 10:01:29 +0200 | [diff] [blame] | 36 | /* Encoder Type for that controller */ |
| 37 | enum vc4_encoder_type encoder_type; |
| 38 | |
Maxime Ripard | 9be43a5 | 2020-09-03 10:01:41 +0200 | [diff] [blame] | 39 | /* ALSA card name */ |
| 40 | const char *card_name; |
| 41 | |
Maxime Ripard | b2405c9 | 2020-09-03 10:01:30 +0200 | [diff] [blame] | 42 | /* Filename to expose the registers in debugfs */ |
| 43 | const char *debugfs_name; |
| 44 | |
Maxime Ripard | 234f421 | 2020-09-03 10:01:32 +0200 | [diff] [blame] | 45 | /* Set to true when the CEC support is available */ |
| 46 | bool cec_available; |
| 47 | |
Maxime Ripard | cd4cb49 | 2020-09-03 10:01:35 +0200 | [diff] [blame] | 48 | /* Maximum pixel clock supported by the controller (in Hz) */ |
| 49 | unsigned long long max_pixel_clock; |
| 50 | |
Maxime Ripard | 311e305 | 2020-09-03 10:01:23 +0200 | [diff] [blame] | 51 | /* List of the registers available on that variant */ |
| 52 | const struct vc4_hdmi_register *registers; |
| 53 | |
| 54 | /* Number of registers on that variant */ |
| 55 | unsigned int num_registers; |
| 56 | |
Maxime Ripard | 8323989 | 2020-09-03 10:01:48 +0200 | [diff] [blame] | 57 | /* BCM2711 Only. |
| 58 | * The variants don't map the lane in the same order in the |
| 59 | * PHY, so this is an array mapping the HDMI channel (index) |
| 60 | * to the PHY lane (value). |
| 61 | */ |
| 62 | enum vc4_hdmi_phy_channel phy_lane_mapping[4]; |
| 63 | |
Maxime Ripard | 57fb32e | 2020-10-29 13:25:22 +0100 | [diff] [blame] | 64 | /* The BCM2711 cannot deal with odd horizontal pixel timings */ |
| 65 | bool unsupported_odd_h_timings; |
| 66 | |
Maxime Ripard | 33c773e | 2020-09-03 10:01:22 +0200 | [diff] [blame] | 67 | /* Callback to get the resources (memory region, interrupts, |
| 68 | * clocks, etc) for that variant. |
| 69 | */ |
| 70 | int (*init_resources)(struct vc4_hdmi *vc4_hdmi); |
Maxime Ripard | 9045e91 | 2020-09-03 10:01:24 +0200 | [diff] [blame] | 71 | |
| 72 | /* Callback to reset the HDMI block */ |
| 73 | void (*reset)(struct vc4_hdmi *vc4_hdmi); |
Maxime Ripard | c457b8a | 2020-09-03 10:01:25 +0200 | [diff] [blame] | 74 | |
Maxime Ripard | 89f31a2 | 2020-09-03 10:01:27 +0200 | [diff] [blame] | 75 | /* Callback to enable / disable the CSC */ |
| 76 | void (*csc_setup)(struct vc4_hdmi *vc4_hdmi, bool enable); |
| 77 | |
Maxime Ripard | 904f668 | 2020-09-03 10:01:28 +0200 | [diff] [blame] | 78 | /* Callback to configure the video timings in the HDMI block */ |
| 79 | void (*set_timings)(struct vc4_hdmi *vc4_hdmi, |
| 80 | struct drm_display_mode *mode); |
| 81 | |
Maxime Ripard | d2a7dd0 | 2020-12-15 16:42:41 +0100 | [diff] [blame^] | 82 | /* Callback to initialize the PHY according to the connector state */ |
Maxime Ripard | c457b8a | 2020-09-03 10:01:25 +0200 | [diff] [blame] | 83 | void (*phy_init)(struct vc4_hdmi *vc4_hdmi, |
Maxime Ripard | d2a7dd0 | 2020-12-15 16:42:41 +0100 | [diff] [blame^] | 84 | struct vc4_hdmi_connector_state *vc4_conn_state); |
Maxime Ripard | c457b8a | 2020-09-03 10:01:25 +0200 | [diff] [blame] | 85 | |
| 86 | /* Callback to disable the PHY */ |
| 87 | void (*phy_disable)(struct vc4_hdmi *vc4_hdmi); |
Maxime Ripard | 647b965 | 2020-09-03 10:01:26 +0200 | [diff] [blame] | 88 | |
| 89 | /* Callback to enable the RNG in the PHY */ |
| 90 | void (*phy_rng_enable)(struct vc4_hdmi *vc4_hdmi); |
| 91 | |
| 92 | /* Callback to disable the RNG in the PHY */ |
| 93 | void (*phy_rng_disable)(struct vc4_hdmi *vc4_hdmi); |
Dave Stevenson | 632ee3a | 2020-09-03 10:01:40 +0200 | [diff] [blame] | 94 | |
| 95 | /* Callback to get channel map */ |
| 96 | u32 (*channel_map)(struct vc4_hdmi *vc4_hdmi, u32 channel_mask); |
Maxime Ripard | 33c773e | 2020-09-03 10:01:22 +0200 | [diff] [blame] | 97 | }; |
| 98 | |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 99 | /* HDMI audio information */ |
| 100 | struct vc4_hdmi_audio { |
| 101 | struct snd_soc_card card; |
| 102 | struct snd_soc_dai_link link; |
| 103 | struct snd_soc_dai_link_component cpu; |
| 104 | struct snd_soc_dai_link_component codec; |
| 105 | struct snd_soc_dai_link_component platform; |
| 106 | int samplerate; |
| 107 | int channels; |
| 108 | struct snd_dmaengine_dai_dma_data dma_data; |
| 109 | struct snd_pcm_substream *substream; |
Dave Stevenson | 6ac1c75 | 2020-09-03 10:01:38 +0200 | [diff] [blame] | 110 | |
| 111 | bool streaming; |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | /* General HDMI hardware state. */ |
| 115 | struct vc4_hdmi { |
Maxime Ripard | 47c167b | 2020-09-03 10:01:19 +0200 | [diff] [blame] | 116 | struct vc4_hdmi_audio audio; |
| 117 | |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 118 | struct platform_device *pdev; |
Maxime Ripard | 33c773e | 2020-09-03 10:01:22 +0200 | [diff] [blame] | 119 | const struct vc4_hdmi_variant *variant; |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 120 | |
| 121 | struct vc4_hdmi_encoder encoder; |
Maxime Ripard | 0532e5e | 2020-09-03 10:01:21 +0200 | [diff] [blame] | 122 | struct drm_connector connector; |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 123 | |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 124 | struct i2c_adapter *ddc; |
| 125 | void __iomem *hdmicore_regs; |
| 126 | void __iomem *hd_regs; |
Maxime Ripard | 8323989 | 2020-09-03 10:01:48 +0200 | [diff] [blame] | 127 | |
| 128 | /* VC5 Only */ |
| 129 | void __iomem *cec_regs; |
| 130 | /* VC5 Only */ |
| 131 | void __iomem *csc_regs; |
| 132 | /* VC5 Only */ |
| 133 | void __iomem *dvp_regs; |
| 134 | /* VC5 Only */ |
| 135 | void __iomem *phy_regs; |
| 136 | /* VC5 Only */ |
| 137 | void __iomem *ram_regs; |
| 138 | /* VC5 Only */ |
| 139 | void __iomem *rm_regs; |
| 140 | |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 141 | int hpd_gpio; |
| 142 | bool hpd_active_low; |
| 143 | |
Maxime Ripard | 9fa1d7e | 2020-10-29 14:40:17 +0100 | [diff] [blame] | 144 | /* |
| 145 | * On some systems (like the RPi4), some modes are in the same |
| 146 | * frequency range than the WiFi channels (1440p@60Hz for |
| 147 | * example). Should we take evasive actions because that system |
| 148 | * has a wifi adapter? |
| 149 | */ |
| 150 | bool disable_wifi_frequencies; |
| 151 | |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 152 | struct cec_adapter *cec_adap; |
| 153 | struct cec_msg cec_rx_msg; |
| 154 | bool cec_tx_ok; |
| 155 | bool cec_irq_was_rx; |
| 156 | |
| 157 | struct clk *pixel_clock; |
| 158 | struct clk *hsm_clock; |
Dave Stevenson | 632ee3a | 2020-09-03 10:01:40 +0200 | [diff] [blame] | 159 | struct clk *audio_clock; |
Hoegeun Kwon | 3738742 | 2020-09-03 10:01:47 +0200 | [diff] [blame] | 160 | struct clk *pixel_bvb_clock; |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 161 | |
Maxime Ripard | 8323989 | 2020-09-03 10:01:48 +0200 | [diff] [blame] | 162 | struct reset_control *reset; |
| 163 | |
Maxime Ripard | c98c85b | 2020-09-03 10:01:12 +0200 | [diff] [blame] | 164 | struct debugfs_regset32 hdmi_regset; |
| 165 | struct debugfs_regset32 hd_regset; |
| 166 | }; |
| 167 | |
Maxime Ripard | 5dfbcae | 2020-09-03 10:01:17 +0200 | [diff] [blame] | 168 | static inline struct vc4_hdmi * |
| 169 | connector_to_vc4_hdmi(struct drm_connector *connector) |
| 170 | { |
Maxime Ripard | 0532e5e | 2020-09-03 10:01:21 +0200 | [diff] [blame] | 171 | return container_of(connector, struct vc4_hdmi, connector); |
Maxime Ripard | 5dfbcae | 2020-09-03 10:01:17 +0200 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | static inline struct vc4_hdmi * |
| 175 | encoder_to_vc4_hdmi(struct drm_encoder *encoder) |
| 176 | { |
| 177 | struct vc4_hdmi_encoder *_encoder = to_vc4_hdmi_encoder(encoder); |
| 178 | |
| 179 | return container_of(_encoder, struct vc4_hdmi, encoder); |
| 180 | } |
| 181 | |
Maxime Ripard | fbe7271 | 2020-12-15 16:42:39 +0100 | [diff] [blame] | 182 | struct vc4_hdmi_connector_state { |
| 183 | struct drm_connector_state base; |
Maxime Ripard | f623746 | 2020-12-15 16:42:40 +0100 | [diff] [blame] | 184 | unsigned long long pixel_rate; |
Maxime Ripard | fbe7271 | 2020-12-15 16:42:39 +0100 | [diff] [blame] | 185 | }; |
| 186 | |
| 187 | static inline struct vc4_hdmi_connector_state * |
| 188 | conn_state_to_vc4_hdmi_conn_state(struct drm_connector_state *conn_state) |
| 189 | { |
| 190 | return container_of(conn_state, struct vc4_hdmi_connector_state, base); |
| 191 | } |
| 192 | |
Maxime Ripard | c457b8a | 2020-09-03 10:01:25 +0200 | [diff] [blame] | 193 | void vc4_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi, |
Maxime Ripard | d2a7dd0 | 2020-12-15 16:42:41 +0100 | [diff] [blame^] | 194 | struct vc4_hdmi_connector_state *vc4_conn_state); |
Maxime Ripard | c457b8a | 2020-09-03 10:01:25 +0200 | [diff] [blame] | 195 | void vc4_hdmi_phy_disable(struct vc4_hdmi *vc4_hdmi); |
Maxime Ripard | 647b965 | 2020-09-03 10:01:26 +0200 | [diff] [blame] | 196 | void vc4_hdmi_phy_rng_enable(struct vc4_hdmi *vc4_hdmi); |
| 197 | void vc4_hdmi_phy_rng_disable(struct vc4_hdmi *vc4_hdmi); |
Maxime Ripard | c457b8a | 2020-09-03 10:01:25 +0200 | [diff] [blame] | 198 | |
Maxime Ripard | 8323989 | 2020-09-03 10:01:48 +0200 | [diff] [blame] | 199 | void vc5_hdmi_phy_init(struct vc4_hdmi *vc4_hdmi, |
Maxime Ripard | d2a7dd0 | 2020-12-15 16:42:41 +0100 | [diff] [blame^] | 200 | struct vc4_hdmi_connector_state *vc4_conn_state); |
Maxime Ripard | 8323989 | 2020-09-03 10:01:48 +0200 | [diff] [blame] | 201 | void vc5_hdmi_phy_disable(struct vc4_hdmi *vc4_hdmi); |
| 202 | void vc5_hdmi_phy_rng_enable(struct vc4_hdmi *vc4_hdmi); |
| 203 | void vc5_hdmi_phy_rng_disable(struct vc4_hdmi *vc4_hdmi); |
| 204 | |
Maxime Ripard | f73100c | 2020-09-03 10:01:11 +0200 | [diff] [blame] | 205 | #endif /* _VC4_HDMI_H_ */ |