blob: 0853b980bcb314bf65b8a4955476d66695f5457e [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Eric Anholtc8b75bc2015-03-02 13:01:12 -08002/*
3 * Copyright (C) 2015 Broadcom
4 * Copyright (c) 2014 The Linux Foundation. All rights reserved.
5 * Copyright (C) 2013 Red Hat
6 * Author: Rob Clark <robdclark@gmail.com>
Eric Anholtc8b75bc2015-03-02 13:01:12 -08007 */
8
9/**
10 * DOC: VC4 Falcon HDMI module
11 *
Eric Anholtf6c01532017-02-27 12:11:43 -080012 * The HDMI core has a state machine and a PHY. On BCM2835, most of
13 * the unit operates off of the HSM clock from CPRMAN. It also
14 * internally uses the PLLH_PIX clock for the PHY.
15 *
16 * HDMI infoframes are kept within a small packet ram, where each
17 * packet can be individually enabled for including in a frame.
18 *
19 * HDMI audio is implemented entirely within the HDMI IP block. A
20 * register in the HDMI encoder takes SPDIF frames from the DMA engine
21 * and transfers them over an internal MAI (multi-channel audio
22 * interconnect) bus to the encoder side for insertion into the video
23 * blank regions.
24 *
25 * The driver's HDMI encoder does not yet support power management.
26 * The HDMI encoder's power domain and the HSM/pixel clocks are kept
27 * continuously running, and only the HDMI logic and packet ram are
28 * powered off/on at disable/enable time.
29 *
30 * The driver does not yet support CEC control, though the HDMI
31 * encoder block has CEC support.
Eric Anholtc8b75bc2015-03-02 13:01:12 -080032 */
33
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090034#include <drm/drm_atomic_helper.h>
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090035#include <drm/drm_edid.h>
Daniel Vetterfcd70cd2019-01-17 22:03:34 +010036#include <drm/drm_probe_helper.h>
Masahiro Yamadab7e8e252017-05-18 13:29:38 +090037#include <linux/clk.h>
38#include <linux/component.h>
39#include <linux/i2c.h>
40#include <linux/of_address.h>
41#include <linux/of_gpio.h>
42#include <linux/of_platform.h>
43#include <linux/pm_runtime.h>
44#include <linux/rational.h>
45#include <sound/dmaengine_pcm.h>
46#include <sound/pcm_drm_eld.h>
47#include <sound/pcm_params.h>
48#include <sound/soc.h>
Hans Verkuil15b45112017-07-16 12:48:04 +020049#include "media/cec.h"
Eric Anholtc8b75bc2015-03-02 13:01:12 -080050#include "vc4_drv.h"
51#include "vc4_regs.h"
52
Hans Verkuil15b45112017-07-16 12:48:04 +020053#define HSM_CLOCK_FREQ 163682864
54#define CEC_CLOCK_FREQ 40000
55#define CEC_CLOCK_DIV (HSM_CLOCK_FREQ / CEC_CLOCK_FREQ)
56
Eric Anholtbb7d7852017-02-27 12:28:02 -080057/* HDMI audio information */
58struct vc4_hdmi_audio {
59 struct snd_soc_card card;
60 struct snd_soc_dai_link link;
Kuninori Morimoto0467d8e2019-06-06 13:19:19 +090061 struct snd_soc_dai_link_component cpu;
62 struct snd_soc_dai_link_component codec;
Kuninori Morimoto8a90efd2019-06-28 10:46:14 +090063 struct snd_soc_dai_link_component platform;
Eric Anholtbb7d7852017-02-27 12:28:02 -080064 int samplerate;
65 int channels;
66 struct snd_dmaengine_dai_dma_data dma_data;
67 struct snd_pcm_substream *substream;
68};
69
Eric Anholtc8b75bc2015-03-02 13:01:12 -080070/* General HDMI hardware state. */
71struct vc4_hdmi {
72 struct platform_device *pdev;
73
74 struct drm_encoder *encoder;
75 struct drm_connector *connector;
76
Eric Anholtbb7d7852017-02-27 12:28:02 -080077 struct vc4_hdmi_audio audio;
78
Eric Anholtc8b75bc2015-03-02 13:01:12 -080079 struct i2c_adapter *ddc;
80 void __iomem *hdmicore_regs;
81 void __iomem *hd_regs;
82 int hpd_gpio;
Eric Anholt0b06e0a2016-02-29 17:53:01 -080083 bool hpd_active_low;
Eric Anholtc8b75bc2015-03-02 13:01:12 -080084
Hans Verkuil15b45112017-07-16 12:48:04 +020085 struct cec_adapter *cec_adap;
86 struct cec_msg cec_rx_msg;
87 bool cec_tx_ok;
88 bool cec_irq_was_rx;
89
Eric Anholtc8b75bc2015-03-02 13:01:12 -080090 struct clk *pixel_clock;
91 struct clk *hsm_clock;
Eric Anholt30517192019-02-20 13:03:38 -080092
93 struct debugfs_regset32 hdmi_regset;
94 struct debugfs_regset32 hd_regset;
Eric Anholtc8b75bc2015-03-02 13:01:12 -080095};
96
97#define HDMI_READ(offset) readl(vc4->hdmi->hdmicore_regs + offset)
98#define HDMI_WRITE(offset, val) writel(val, vc4->hdmi->hdmicore_regs + offset)
99#define HD_READ(offset) readl(vc4->hdmi->hd_regs + offset)
100#define HD_WRITE(offset, val) writel(val, vc4->hdmi->hd_regs + offset)
101
102/* VC4 HDMI encoder KMS struct */
103struct vc4_hdmi_encoder {
104 struct vc4_encoder base;
105 bool hdmi_monitor;
Eric Anholt21317b32016-09-29 15:34:43 -0700106 bool limited_rgb_range;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800107};
108
109static inline struct vc4_hdmi_encoder *
110to_vc4_hdmi_encoder(struct drm_encoder *encoder)
111{
112 return container_of(encoder, struct vc4_hdmi_encoder, base.base);
113}
114
115/* VC4 HDMI connector KMS struct */
116struct vc4_hdmi_connector {
117 struct drm_connector base;
118
119 /* Since the connector is attached to just the one encoder,
120 * this is the reference to it so we can do the best_encoder()
121 * hook.
122 */
123 struct drm_encoder *encoder;
124};
125
126static inline struct vc4_hdmi_connector *
127to_vc4_hdmi_connector(struct drm_connector *connector)
128{
129 return container_of(connector, struct vc4_hdmi_connector, base);
130}
131
Eric Anholt30517192019-02-20 13:03:38 -0800132static const struct debugfs_reg32 hdmi_regs[] = {
133 VC4_REG32(VC4_HDMI_CORE_REV),
134 VC4_REG32(VC4_HDMI_SW_RESET_CONTROL),
135 VC4_REG32(VC4_HDMI_HOTPLUG_INT),
136 VC4_REG32(VC4_HDMI_HOTPLUG),
137 VC4_REG32(VC4_HDMI_MAI_CHANNEL_MAP),
138 VC4_REG32(VC4_HDMI_MAI_CONFIG),
139 VC4_REG32(VC4_HDMI_MAI_FORMAT),
140 VC4_REG32(VC4_HDMI_AUDIO_PACKET_CONFIG),
141 VC4_REG32(VC4_HDMI_RAM_PACKET_CONFIG),
142 VC4_REG32(VC4_HDMI_HORZA),
143 VC4_REG32(VC4_HDMI_HORZB),
144 VC4_REG32(VC4_HDMI_FIFO_CTL),
145 VC4_REG32(VC4_HDMI_SCHEDULER_CONTROL),
146 VC4_REG32(VC4_HDMI_VERTA0),
147 VC4_REG32(VC4_HDMI_VERTA1),
148 VC4_REG32(VC4_HDMI_VERTB0),
149 VC4_REG32(VC4_HDMI_VERTB1),
150 VC4_REG32(VC4_HDMI_TX_PHY_RESET_CTL),
151 VC4_REG32(VC4_HDMI_TX_PHY_CTL0),
Hans Verkuil15b45112017-07-16 12:48:04 +0200152
Eric Anholt30517192019-02-20 13:03:38 -0800153 VC4_REG32(VC4_HDMI_CEC_CNTRL_1),
154 VC4_REG32(VC4_HDMI_CEC_CNTRL_2),
155 VC4_REG32(VC4_HDMI_CEC_CNTRL_3),
156 VC4_REG32(VC4_HDMI_CEC_CNTRL_4),
157 VC4_REG32(VC4_HDMI_CEC_CNTRL_5),
158 VC4_REG32(VC4_HDMI_CPU_STATUS),
159 VC4_REG32(VC4_HDMI_CPU_MASK_STATUS),
Hans Verkuil15b45112017-07-16 12:48:04 +0200160
Eric Anholt30517192019-02-20 13:03:38 -0800161 VC4_REG32(VC4_HDMI_CEC_RX_DATA_1),
162 VC4_REG32(VC4_HDMI_CEC_RX_DATA_2),
163 VC4_REG32(VC4_HDMI_CEC_RX_DATA_3),
164 VC4_REG32(VC4_HDMI_CEC_RX_DATA_4),
165 VC4_REG32(VC4_HDMI_CEC_TX_DATA_1),
166 VC4_REG32(VC4_HDMI_CEC_TX_DATA_2),
167 VC4_REG32(VC4_HDMI_CEC_TX_DATA_3),
168 VC4_REG32(VC4_HDMI_CEC_TX_DATA_4),
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800169};
170
Eric Anholt30517192019-02-20 13:03:38 -0800171static const struct debugfs_reg32 hd_regs[] = {
172 VC4_REG32(VC4_HD_M_CTL),
173 VC4_REG32(VC4_HD_MAI_CTL),
174 VC4_REG32(VC4_HD_MAI_THR),
175 VC4_REG32(VC4_HD_MAI_FMT),
176 VC4_REG32(VC4_HD_MAI_SMP),
177 VC4_REG32(VC4_HD_VID_CTL),
178 VC4_REG32(VC4_HD_CSC_CTL),
179 VC4_REG32(VC4_HD_FRAME_COUNT),
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800180};
181
Eric Anholtc9be8042019-04-01 11:35:58 -0700182static int vc4_hdmi_debugfs_regs(struct seq_file *m, void *unused)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800183{
184 struct drm_info_node *node = (struct drm_info_node *)m->private;
185 struct drm_device *dev = node->minor->dev;
186 struct vc4_dev *vc4 = to_vc4_dev(dev);
Eric Anholt30517192019-02-20 13:03:38 -0800187 struct vc4_hdmi *hdmi = vc4->hdmi;
188 struct drm_printer p = drm_seq_file_printer(m);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800189
Eric Anholt30517192019-02-20 13:03:38 -0800190 drm_print_regset32(&p, &hdmi->hdmi_regset);
191 drm_print_regset32(&p, &hdmi->hd_regset);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800192
193 return 0;
194}
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800195
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800196static enum drm_connector_status
197vc4_hdmi_connector_detect(struct drm_connector *connector, bool force)
198{
199 struct drm_device *dev = connector->dev;
200 struct vc4_dev *vc4 = to_vc4_dev(dev);
201
202 if (vc4->hdmi->hpd_gpio) {
Eric Anholt0b06e0a2016-02-29 17:53:01 -0800203 if (gpio_get_value_cansleep(vc4->hdmi->hpd_gpio) ^
204 vc4->hdmi->hpd_active_low)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800205 return connector_status_connected;
Hans Verkuil15b45112017-07-16 12:48:04 +0200206 cec_phys_addr_invalidate(vc4->hdmi->cec_adap);
207 return connector_status_disconnected;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800208 }
209
Eric Anholt9d44abb2016-09-14 19:21:29 +0100210 if (drm_probe_ddc(vc4->hdmi->ddc))
211 return connector_status_connected;
212
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800213 if (HDMI_READ(VC4_HDMI_HOTPLUG) & VC4_HDMI_HOTPLUG_CONNECTED)
214 return connector_status_connected;
Hans Verkuil15b45112017-07-16 12:48:04 +0200215 cec_phys_addr_invalidate(vc4->hdmi->cec_adap);
216 return connector_status_disconnected;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800217}
218
219static void vc4_hdmi_connector_destroy(struct drm_connector *connector)
220{
221 drm_connector_unregister(connector);
222 drm_connector_cleanup(connector);
223}
224
225static int vc4_hdmi_connector_get_modes(struct drm_connector *connector)
226{
227 struct vc4_hdmi_connector *vc4_connector =
228 to_vc4_hdmi_connector(connector);
229 struct drm_encoder *encoder = vc4_connector->encoder;
230 struct vc4_hdmi_encoder *vc4_encoder = to_vc4_hdmi_encoder(encoder);
231 struct drm_device *dev = connector->dev;
232 struct vc4_dev *vc4 = to_vc4_dev(dev);
233 int ret = 0;
234 struct edid *edid;
235
236 edid = drm_get_edid(connector, vc4->hdmi->ddc);
Hans Verkuil15b45112017-07-16 12:48:04 +0200237 cec_s_phys_addr_from_edid(vc4->hdmi->cec_adap, edid);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800238 if (!edid)
239 return -ENODEV;
240
241 vc4_encoder->hdmi_monitor = drm_detect_hdmi_monitor(edid);
Eric Anholt21317b32016-09-29 15:34:43 -0700242
Daniel Vetterc555f022018-07-09 10:40:06 +0200243 drm_connector_update_edid_property(connector, edid);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800244 ret = drm_add_edid_modes(connector, edid);
Eric Anholt5afe0e62017-08-08 13:56:05 -0700245 kfree(edid);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800246
247 return ret;
248}
249
Maxime Ripard90b2df52019-06-19 12:17:53 +0200250static void vc4_hdmi_connector_reset(struct drm_connector *connector)
251{
252 drm_atomic_helper_connector_reset(connector);
253 drm_atomic_helper_connector_tv_reset(connector);
254}
255
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800256static const struct drm_connector_funcs vc4_hdmi_connector_funcs = {
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800257 .detect = vc4_hdmi_connector_detect,
Eric Anholt682e62c2016-09-28 17:30:25 -0700258 .fill_modes = drm_helper_probe_single_connector_modes,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800259 .destroy = vc4_hdmi_connector_destroy,
Maxime Ripard90b2df52019-06-19 12:17:53 +0200260 .reset = vc4_hdmi_connector_reset,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800261 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
262 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
263};
264
265static const struct drm_connector_helper_funcs vc4_hdmi_connector_helper_funcs = {
266 .get_modes = vc4_hdmi_connector_get_modes,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800267};
268
269static struct drm_connector *vc4_hdmi_connector_init(struct drm_device *dev,
270 struct drm_encoder *encoder)
271{
Colin Ian King56630772017-09-08 15:05:04 +0100272 struct drm_connector *connector;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800273 struct vc4_hdmi_connector *hdmi_connector;
Boris Brezillondb999532018-12-06 15:24:39 +0100274 int ret;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800275
276 hdmi_connector = devm_kzalloc(dev->dev, sizeof(*hdmi_connector),
277 GFP_KERNEL);
Colin Ian King56630772017-09-08 15:05:04 +0100278 if (!hdmi_connector)
279 return ERR_PTR(-ENOMEM);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800280 connector = &hdmi_connector->base;
281
282 hdmi_connector->encoder = encoder;
283
284 drm_connector_init(dev, connector, &vc4_hdmi_connector_funcs,
285 DRM_MODE_CONNECTOR_HDMIA);
286 drm_connector_helper_add(connector, &vc4_hdmi_connector_helper_funcs);
287
Boris Brezillondb999532018-12-06 15:24:39 +0100288 /* Create and attach TV margin props to this connector. */
289 ret = drm_mode_create_tv_margin_properties(dev);
290 if (ret)
291 return ERR_PTR(ret);
292
293 drm_connector_attach_tv_margin_properties(connector);
294
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800295 connector->polled = (DRM_CONNECTOR_POLL_CONNECT |
296 DRM_CONNECTOR_POLL_DISCONNECT);
297
Mario Kleineracc1be12016-07-19 20:58:58 +0200298 connector->interlace_allowed = 1;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800299 connector->doublescan_allowed = 0;
300
Daniel Vettercde4c442018-07-09 10:40:07 +0200301 drm_connector_attach_encoder(connector, encoder);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800302
303 return connector;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800304}
305
306static void vc4_hdmi_encoder_destroy(struct drm_encoder *encoder)
307{
308 drm_encoder_cleanup(encoder);
309}
310
311static const struct drm_encoder_funcs vc4_hdmi_encoder_funcs = {
312 .destroy = vc4_hdmi_encoder_destroy,
313};
314
Eric Anholt21317b32016-09-29 15:34:43 -0700315static int vc4_hdmi_stop_packet(struct drm_encoder *encoder,
316 enum hdmi_infoframe_type type)
317{
318 struct drm_device *dev = encoder->dev;
319 struct vc4_dev *vc4 = to_vc4_dev(dev);
320 u32 packet_id = type - 0x80;
321
322 HDMI_WRITE(VC4_HDMI_RAM_PACKET_CONFIG,
323 HDMI_READ(VC4_HDMI_RAM_PACKET_CONFIG) & ~BIT(packet_id));
324
325 return wait_for(!(HDMI_READ(VC4_HDMI_RAM_PACKET_STATUS) &
326 BIT(packet_id)), 100);
327}
328
329static void vc4_hdmi_write_infoframe(struct drm_encoder *encoder,
330 union hdmi_infoframe *frame)
331{
332 struct drm_device *dev = encoder->dev;
333 struct vc4_dev *vc4 = to_vc4_dev(dev);
334 u32 packet_id = frame->any.type - 0x80;
Eric Anholtbb7d7852017-02-27 12:28:02 -0800335 u32 packet_reg = VC4_HDMI_RAM_PACKET(packet_id);
Eric Anholt21317b32016-09-29 15:34:43 -0700336 uint8_t buffer[VC4_HDMI_PACKET_STRIDE];
337 ssize_t len, i;
338 int ret;
339
340 WARN_ONCE(!(HDMI_READ(VC4_HDMI_RAM_PACKET_CONFIG) &
341 VC4_HDMI_RAM_PACKET_ENABLE),
342 "Packet RAM has to be on to store the packet.");
343
344 len = hdmi_infoframe_pack(frame, buffer, sizeof(buffer));
345 if (len < 0)
346 return;
347
348 ret = vc4_hdmi_stop_packet(encoder, frame->any.type);
349 if (ret) {
350 DRM_ERROR("Failed to wait for infoframe to go idle: %d\n", ret);
351 return;
352 }
353
354 for (i = 0; i < len; i += 7) {
355 HDMI_WRITE(packet_reg,
356 buffer[i + 0] << 0 |
357 buffer[i + 1] << 8 |
358 buffer[i + 2] << 16);
359 packet_reg += 4;
360
361 HDMI_WRITE(packet_reg,
362 buffer[i + 3] << 0 |
363 buffer[i + 4] << 8 |
364 buffer[i + 5] << 16 |
365 buffer[i + 6] << 24);
366 packet_reg += 4;
367 }
368
369 HDMI_WRITE(VC4_HDMI_RAM_PACKET_CONFIG,
370 HDMI_READ(VC4_HDMI_RAM_PACKET_CONFIG) | BIT(packet_id));
371 ret = wait_for((HDMI_READ(VC4_HDMI_RAM_PACKET_STATUS) &
372 BIT(packet_id)), 100);
373 if (ret)
374 DRM_ERROR("Failed to wait for infoframe to start: %d\n", ret);
375}
376
377static void vc4_hdmi_set_avi_infoframe(struct drm_encoder *encoder)
378{
379 struct vc4_hdmi_encoder *vc4_encoder = to_vc4_hdmi_encoder(encoder);
Boris Brezillondb999532018-12-06 15:24:39 +0100380 struct vc4_dev *vc4 = encoder->dev->dev_private;
381 struct vc4_hdmi *hdmi = vc4->hdmi;
382 struct drm_connector_state *cstate = hdmi->connector->state;
Eric Anholt21317b32016-09-29 15:34:43 -0700383 struct drm_crtc *crtc = encoder->crtc;
384 const struct drm_display_mode *mode = &crtc->state->adjusted_mode;
385 union hdmi_infoframe frame;
386 int ret;
387
Ville Syrjälä13d0add2019-01-08 19:28:25 +0200388 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
389 hdmi->connector, mode);
Eric Anholt21317b32016-09-29 15:34:43 -0700390 if (ret < 0) {
391 DRM_ERROR("couldn't fill AVI infoframe\n");
392 return;
393 }
394
Ville Syrjälä13d0add2019-01-08 19:28:25 +0200395 drm_hdmi_avi_infoframe_quant_range(&frame.avi,
396 hdmi->connector, mode,
Ville Syrjäläa2ce26f2017-01-11 14:57:23 +0200397 vc4_encoder->limited_rgb_range ?
398 HDMI_QUANTIZATION_RANGE_LIMITED :
Ville Syrjälä1581b2d2019-01-08 19:28:28 +0200399 HDMI_QUANTIZATION_RANGE_FULL);
Eric Anholt21317b32016-09-29 15:34:43 -0700400
Boris Brezillondb999532018-12-06 15:24:39 +0100401 frame.avi.right_bar = cstate->tv.margins.right;
402 frame.avi.left_bar = cstate->tv.margins.left;
403 frame.avi.top_bar = cstate->tv.margins.top;
404 frame.avi.bottom_bar = cstate->tv.margins.bottom;
405
Eric Anholt21317b32016-09-29 15:34:43 -0700406 vc4_hdmi_write_infoframe(encoder, &frame);
407}
408
409static void vc4_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
410{
411 union hdmi_infoframe frame;
412 int ret;
413
414 ret = hdmi_spd_infoframe_init(&frame.spd, "Broadcom", "Videocore");
415 if (ret < 0) {
416 DRM_ERROR("couldn't fill SPD infoframe\n");
417 return;
418 }
419
420 frame.spd.sdi = HDMI_SPD_SDI_PC;
421
422 vc4_hdmi_write_infoframe(encoder, &frame);
423}
424
Eric Anholtbb7d7852017-02-27 12:28:02 -0800425static void vc4_hdmi_set_audio_infoframe(struct drm_encoder *encoder)
426{
427 struct drm_device *drm = encoder->dev;
428 struct vc4_dev *vc4 = drm->dev_private;
429 struct vc4_hdmi *hdmi = vc4->hdmi;
430 union hdmi_infoframe frame;
431 int ret;
432
433 ret = hdmi_audio_infoframe_init(&frame.audio);
434
435 frame.audio.coding_type = HDMI_AUDIO_CODING_TYPE_STREAM;
436 frame.audio.sample_frequency = HDMI_AUDIO_SAMPLE_FREQUENCY_STREAM;
437 frame.audio.sample_size = HDMI_AUDIO_SAMPLE_SIZE_STREAM;
438 frame.audio.channels = hdmi->audio.channels;
439
440 vc4_hdmi_write_infoframe(encoder, &frame);
441}
442
Eric Anholt21317b32016-09-29 15:34:43 -0700443static void vc4_hdmi_set_infoframes(struct drm_encoder *encoder)
444{
445 vc4_hdmi_set_avi_infoframe(encoder);
446 vc4_hdmi_set_spd_infoframe(encoder);
447}
448
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200449static void vc4_hdmi_encoder_disable(struct drm_encoder *encoder)
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800450{
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200451 struct drm_device *dev = encoder->dev;
452 struct vc4_dev *vc4 = to_vc4_dev(dev);
453 struct vc4_hdmi *hdmi = vc4->hdmi;
454 int ret;
455
456 HDMI_WRITE(VC4_HDMI_RAM_PACKET_CONFIG, 0);
457
458 HDMI_WRITE(VC4_HDMI_TX_PHY_RESET_CTL, 0xf << 16);
459 HD_WRITE(VC4_HD_VID_CTL,
460 HD_READ(VC4_HD_VID_CTL) & ~VC4_HD_VID_CTL_ENABLE);
461
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200462 clk_disable_unprepare(hdmi->pixel_clock);
463
464 ret = pm_runtime_put(&hdmi->pdev->dev);
465 if (ret < 0)
466 DRM_ERROR("Failed to release power domain: %d\n", ret);
467}
468
469static void vc4_hdmi_encoder_enable(struct drm_encoder *encoder)
470{
471 struct drm_display_mode *mode = &encoder->crtc->state->adjusted_mode;
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100472 struct vc4_hdmi_encoder *vc4_encoder = to_vc4_hdmi_encoder(encoder);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800473 struct drm_device *dev = encoder->dev;
474 struct vc4_dev *vc4 = to_vc4_dev(dev);
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200475 struct vc4_hdmi *hdmi = vc4->hdmi;
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800476 bool debug_dump_regs = false;
477 bool hsync_pos = mode->flags & DRM_MODE_FLAG_PHSYNC;
478 bool vsync_pos = mode->flags & DRM_MODE_FLAG_PVSYNC;
Eric Anholt682e62c2016-09-28 17:30:25 -0700479 bool interlaced = mode->flags & DRM_MODE_FLAG_INTERLACE;
Eric Anholtdfccd932016-09-29 15:34:44 -0700480 u32 pixel_rep = (mode->flags & DRM_MODE_FLAG_DBLCLK) ? 2 : 1;
Eric Anholt682e62c2016-09-28 17:30:25 -0700481 u32 verta = (VC4_SET_FIELD(mode->crtc_vsync_end - mode->crtc_vsync_start,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800482 VC4_HDMI_VERTA_VSP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700483 VC4_SET_FIELD(mode->crtc_vsync_start - mode->crtc_vdisplay,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800484 VC4_HDMI_VERTA_VFP) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700485 VC4_SET_FIELD(mode->crtc_vdisplay, VC4_HDMI_VERTA_VAL));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800486 u32 vertb = (VC4_SET_FIELD(0, VC4_HDMI_VERTB_VSPO) |
Eric Anholt682e62c2016-09-28 17:30:25 -0700487 VC4_SET_FIELD(mode->crtc_vtotal - mode->crtc_vsync_end,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800488 VC4_HDMI_VERTB_VBP));
Eric Anholt682e62c2016-09-28 17:30:25 -0700489 u32 vertb_even = (VC4_SET_FIELD(0, VC4_HDMI_VERTB_VSPO) |
490 VC4_SET_FIELD(mode->crtc_vtotal -
491 mode->crtc_vsync_end -
492 interlaced,
493 VC4_HDMI_VERTB_VBP));
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100494 u32 csc_ctl;
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200495 int ret;
496
497 ret = pm_runtime_get_sync(&hdmi->pdev->dev);
498 if (ret < 0) {
499 DRM_ERROR("Failed to retain power domain: %d\n", ret);
500 return;
501 }
502
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200503 ret = clk_set_rate(hdmi->pixel_clock,
504 mode->clock * 1000 *
505 ((mode->flags & DRM_MODE_FLAG_DBLCLK) ? 2 : 1));
506 if (ret) {
507 DRM_ERROR("Failed to set pixel clock rate: %d\n", ret);
508 return;
509 }
510
511 ret = clk_prepare_enable(hdmi->pixel_clock);
512 if (ret) {
513 DRM_ERROR("Failed to turn on pixel clock: %d\n", ret);
514 return;
515 }
516
Boris Brezillon4f6e3d62017-04-11 18:39:25 +0200517 HDMI_WRITE(VC4_HDMI_SW_RESET_CONTROL,
518 VC4_HDMI_SW_RESET_HDMI |
519 VC4_HDMI_SW_RESET_FORMAT_DETECT);
520
521 HDMI_WRITE(VC4_HDMI_SW_RESET_CONTROL, 0);
522
523 /* PHY should be in reset, like
524 * vc4_hdmi_encoder_disable() does.
525 */
526 HDMI_WRITE(VC4_HDMI_TX_PHY_RESET_CTL, 0xf << 16);
527
528 HDMI_WRITE(VC4_HDMI_TX_PHY_RESET_CTL, 0);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800529
530 if (debug_dump_regs) {
Eric Anholt30517192019-02-20 13:03:38 -0800531 struct drm_printer p = drm_info_printer(&hdmi->pdev->dev);
532
533 dev_info(&hdmi->pdev->dev, "HDMI regs before:\n");
534 drm_print_regset32(&p, &hdmi->hdmi_regset);
535 drm_print_regset32(&p, &hdmi->hd_regset);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800536 }
537
538 HD_WRITE(VC4_HD_VID_CTL, 0);
539
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800540 HDMI_WRITE(VC4_HDMI_SCHEDULER_CONTROL,
541 HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) |
542 VC4_HDMI_SCHEDULER_CONTROL_MANUAL_FORMAT |
543 VC4_HDMI_SCHEDULER_CONTROL_IGNORE_VSYNC_PREDICTS);
544
545 HDMI_WRITE(VC4_HDMI_HORZA,
546 (vsync_pos ? VC4_HDMI_HORZA_VPOS : 0) |
547 (hsync_pos ? VC4_HDMI_HORZA_HPOS : 0) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700548 VC4_SET_FIELD(mode->hdisplay * pixel_rep,
549 VC4_HDMI_HORZA_HAP));
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800550
551 HDMI_WRITE(VC4_HDMI_HORZB,
Eric Anholtdfccd932016-09-29 15:34:44 -0700552 VC4_SET_FIELD((mode->htotal -
553 mode->hsync_end) * pixel_rep,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800554 VC4_HDMI_HORZB_HBP) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700555 VC4_SET_FIELD((mode->hsync_end -
556 mode->hsync_start) * pixel_rep,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800557 VC4_HDMI_HORZB_HSP) |
Eric Anholtdfccd932016-09-29 15:34:44 -0700558 VC4_SET_FIELD((mode->hsync_start -
559 mode->hdisplay) * pixel_rep,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800560 VC4_HDMI_HORZB_HFP));
561
562 HDMI_WRITE(VC4_HDMI_VERTA0, verta);
563 HDMI_WRITE(VC4_HDMI_VERTA1, verta);
564
Eric Anholt682e62c2016-09-28 17:30:25 -0700565 HDMI_WRITE(VC4_HDMI_VERTB0, vertb_even);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800566 HDMI_WRITE(VC4_HDMI_VERTB1, vertb);
567
568 HD_WRITE(VC4_HD_VID_CTL,
569 (vsync_pos ? 0 : VC4_HD_VID_CTL_VSYNC_LOW) |
570 (hsync_pos ? 0 : VC4_HD_VID_CTL_HSYNC_LOW));
571
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100572 csc_ctl = VC4_SET_FIELD(VC4_HD_CSC_CTL_ORDER_BGR,
573 VC4_HD_CSC_CTL_ORDER);
574
Ville Syrjäläc8127cf02017-01-11 16:18:35 +0200575 if (vc4_encoder->hdmi_monitor &&
576 drm_default_rgb_quant_range(mode) ==
577 HDMI_QUANTIZATION_RANGE_LIMITED) {
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100578 /* CEA VICs other than #1 requre limited range RGB
Eric Anholt21317b32016-09-29 15:34:43 -0700579 * output unless overridden by an AVI infoframe.
580 * Apply a colorspace conversion to squash 0-255 down
581 * to 16-235. The matrix here is:
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100582 *
583 * [ 0 0 0.8594 16]
584 * [ 0 0.8594 0 16]
585 * [ 0.8594 0 0 16]
586 * [ 0 0 0 1]
587 */
588 csc_ctl |= VC4_HD_CSC_CTL_ENABLE;
589 csc_ctl |= VC4_HD_CSC_CTL_RGB2YCC;
590 csc_ctl |= VC4_SET_FIELD(VC4_HD_CSC_CTL_MODE_CUSTOM,
591 VC4_HD_CSC_CTL_MODE);
592
593 HD_WRITE(VC4_HD_CSC_12_11, (0x000 << 16) | 0x000);
594 HD_WRITE(VC4_HD_CSC_14_13, (0x100 << 16) | 0x6e0);
595 HD_WRITE(VC4_HD_CSC_22_21, (0x6e0 << 16) | 0x000);
596 HD_WRITE(VC4_HD_CSC_24_23, (0x100 << 16) | 0x000);
597 HD_WRITE(VC4_HD_CSC_32_31, (0x000 << 16) | 0x6e0);
598 HD_WRITE(VC4_HD_CSC_34_33, (0x100 << 16) | 0x000);
Eric Anholt21317b32016-09-29 15:34:43 -0700599 vc4_encoder->limited_rgb_range = true;
600 } else {
601 vc4_encoder->limited_rgb_range = false;
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100602 }
603
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800604 /* The RGB order applies even when CSC is disabled. */
Eric Anholt6e1cbba2016-09-16 10:59:45 +0100605 HD_WRITE(VC4_HD_CSC_CTL, csc_ctl);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800606
607 HDMI_WRITE(VC4_HDMI_FIFO_CTL, VC4_HDMI_FIFO_CTL_MASTER_SLAVE_N);
608
609 if (debug_dump_regs) {
Eric Anholt30517192019-02-20 13:03:38 -0800610 struct drm_printer p = drm_info_printer(&hdmi->pdev->dev);
611
612 dev_info(&hdmi->pdev->dev, "HDMI regs after:\n");
613 drm_print_regset32(&p, &hdmi->hdmi_regset);
614 drm_print_regset32(&p, &hdmi->hd_regset);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800615 }
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800616
617 HD_WRITE(VC4_HD_VID_CTL,
618 HD_READ(VC4_HD_VID_CTL) |
619 VC4_HD_VID_CTL_ENABLE |
620 VC4_HD_VID_CTL_UNDERFLOW_ENABLE |
621 VC4_HD_VID_CTL_FRAME_COUNTER_RESET);
622
623 if (vc4_encoder->hdmi_monitor) {
624 HDMI_WRITE(VC4_HDMI_SCHEDULER_CONTROL,
625 HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) |
626 VC4_HDMI_SCHEDULER_CONTROL_MODE_HDMI);
627
628 ret = wait_for(HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) &
Eric Anholt2b29bf12016-09-28 17:21:05 -0700629 VC4_HDMI_SCHEDULER_CONTROL_HDMI_ACTIVE, 1000);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800630 WARN_ONCE(ret, "Timeout waiting for "
631 "VC4_HDMI_SCHEDULER_CONTROL_HDMI_ACTIVE\n");
632 } else {
633 HDMI_WRITE(VC4_HDMI_RAM_PACKET_CONFIG,
634 HDMI_READ(VC4_HDMI_RAM_PACKET_CONFIG) &
635 ~(VC4_HDMI_RAM_PACKET_ENABLE));
636 HDMI_WRITE(VC4_HDMI_SCHEDULER_CONTROL,
637 HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) &
638 ~VC4_HDMI_SCHEDULER_CONTROL_MODE_HDMI);
639
640 ret = wait_for(!(HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) &
Eric Anholt2b29bf12016-09-28 17:21:05 -0700641 VC4_HDMI_SCHEDULER_CONTROL_HDMI_ACTIVE), 1000);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800642 WARN_ONCE(ret, "Timeout waiting for "
643 "!VC4_HDMI_SCHEDULER_CONTROL_HDMI_ACTIVE\n");
644 }
645
646 if (vc4_encoder->hdmi_monitor) {
647 u32 drift;
648
649 WARN_ON(!(HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) &
650 VC4_HDMI_SCHEDULER_CONTROL_HDMI_ACTIVE));
651 HDMI_WRITE(VC4_HDMI_SCHEDULER_CONTROL,
652 HDMI_READ(VC4_HDMI_SCHEDULER_CONTROL) |
653 VC4_HDMI_SCHEDULER_CONTROL_VERT_ALWAYS_KEEPOUT);
654
Eric Anholt21317b32016-09-29 15:34:43 -0700655 HDMI_WRITE(VC4_HDMI_RAM_PACKET_CONFIG,
656 VC4_HDMI_RAM_PACKET_ENABLE);
657
658 vc4_hdmi_set_infoframes(encoder);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800659
660 drift = HDMI_READ(VC4_HDMI_FIFO_CTL);
661 drift &= VC4_HDMI_FIFO_VALID_WRITE_MASK;
662
663 HDMI_WRITE(VC4_HDMI_FIFO_CTL,
664 drift & ~VC4_HDMI_FIFO_CTL_RECENTER);
665 HDMI_WRITE(VC4_HDMI_FIFO_CTL,
666 drift | VC4_HDMI_FIFO_CTL_RECENTER);
Stefan Wahrend8eb9de2018-02-24 13:38:14 +0100667 usleep_range(1000, 1100);
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800668 HDMI_WRITE(VC4_HDMI_FIFO_CTL,
669 drift & ~VC4_HDMI_FIFO_CTL_RECENTER);
670 HDMI_WRITE(VC4_HDMI_FIFO_CTL,
671 drift | VC4_HDMI_FIFO_CTL_RECENTER);
672
673 ret = wait_for(HDMI_READ(VC4_HDMI_FIFO_CTL) &
674 VC4_HDMI_FIFO_CTL_RECENTER_DONE, 1);
675 WARN_ONCE(ret, "Timeout waiting for "
676 "VC4_HDMI_FIFO_CTL_RECENTER_DONE");
677 }
678}
679
Eric Anholt32e823c2017-09-20 15:59:34 -0700680static enum drm_mode_status
681vc4_hdmi_encoder_mode_valid(struct drm_encoder *crtc,
682 const struct drm_display_mode *mode)
683{
684 /* HSM clock must be 108% of the pixel clock. Additionally,
685 * the AXI clock needs to be at least 25% of pixel clock, but
686 * HSM ends up being the limiting factor.
687 */
688 if (mode->clock > HSM_CLOCK_FREQ / (1000 * 108 / 100))
689 return MODE_CLOCK_HIGH;
690
691 return MODE_OK;
692}
693
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800694static const struct drm_encoder_helper_funcs vc4_hdmi_encoder_helper_funcs = {
Eric Anholt32e823c2017-09-20 15:59:34 -0700695 .mode_valid = vc4_hdmi_encoder_mode_valid,
Eric Anholtc8b75bc2015-03-02 13:01:12 -0800696 .disable = vc4_hdmi_encoder_disable,
697 .enable = vc4_hdmi_encoder_enable,
698};
699
Eric Anholtbb7d7852017-02-27 12:28:02 -0800700/* HDMI audio codec callbacks */
701static void vc4_hdmi_audio_set_mai_clock(struct vc4_hdmi *hdmi)
702{
703 struct drm_device *drm = hdmi->encoder->dev;
704 struct vc4_dev *vc4 = to_vc4_dev(drm);
705 u32 hsm_clock = clk_get_rate(hdmi->hsm_clock);
706 unsigned long n, m;
707
708 rational_best_approximation(hsm_clock, hdmi->audio.samplerate,
709 VC4_HD_MAI_SMP_N_MASK >>
710 VC4_HD_MAI_SMP_N_SHIFT,
711 (VC4_HD_MAI_SMP_M_MASK >>
712 VC4_HD_MAI_SMP_M_SHIFT) + 1,
713 &n, &m);
714
715 HD_WRITE(VC4_HD_MAI_SMP,
716 VC4_SET_FIELD(n, VC4_HD_MAI_SMP_N) |
717 VC4_SET_FIELD(m - 1, VC4_HD_MAI_SMP_M));
718}
719
720static void vc4_hdmi_set_n_cts(struct vc4_hdmi *hdmi)
721{
722 struct drm_encoder *encoder = hdmi->encoder;
723 struct drm_crtc *crtc = encoder->crtc;
724 struct drm_device *drm = encoder->dev;
725 struct vc4_dev *vc4 = to_vc4_dev(drm);
726 const struct drm_display_mode *mode = &crtc->state->adjusted_mode;
727 u32 samplerate = hdmi->audio.samplerate;
728 u32 n, cts;
729 u64 tmp;
730
731 n = 128 * samplerate / 1000;
732 tmp = (u64)(mode->clock * 1000) * n;
733 do_div(tmp, 128 * samplerate);
734 cts = tmp;
735
736 HDMI_WRITE(VC4_HDMI_CRP_CFG,
737 VC4_HDMI_CRP_CFG_EXTERNAL_CTS_EN |
738 VC4_SET_FIELD(n, VC4_HDMI_CRP_CFG_N));
739
740 /*
741 * We could get slightly more accurate clocks in some cases by
742 * providing a CTS_1 value. The two CTS values are alternated
743 * between based on the period fields
744 */
745 HDMI_WRITE(VC4_HDMI_CTS_0, cts);
746 HDMI_WRITE(VC4_HDMI_CTS_1, cts);
747}
748
749static inline struct vc4_hdmi *dai_to_hdmi(struct snd_soc_dai *dai)
750{
751 struct snd_soc_card *card = snd_soc_dai_get_drvdata(dai);
752
753 return snd_soc_card_get_drvdata(card);
754}
755
756static int vc4_hdmi_audio_startup(struct snd_pcm_substream *substream,
757 struct snd_soc_dai *dai)
758{
759 struct vc4_hdmi *hdmi = dai_to_hdmi(dai);
760 struct drm_encoder *encoder = hdmi->encoder;
761 struct vc4_dev *vc4 = to_vc4_dev(encoder->dev);
762 int ret;
763
764 if (hdmi->audio.substream && hdmi->audio.substream != substream)
765 return -EINVAL;
766
767 hdmi->audio.substream = substream;
768
769 /*
770 * If the HDMI encoder hasn't probed, or the encoder is
771 * currently in DVI mode, treat the codec dai as missing.
772 */
773 if (!encoder->crtc || !(HDMI_READ(VC4_HDMI_RAM_PACKET_CONFIG) &
774 VC4_HDMI_RAM_PACKET_ENABLE))
775 return -ENODEV;
776
777 ret = snd_pcm_hw_constraint_eld(substream->runtime,
778 hdmi->connector->eld);
779 if (ret)
780 return ret;
781
782 return 0;
783}
784
785static int vc4_hdmi_audio_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
786{
787 return 0;
788}
789
790static void vc4_hdmi_audio_reset(struct vc4_hdmi *hdmi)
791{
792 struct drm_encoder *encoder = hdmi->encoder;
793 struct drm_device *drm = encoder->dev;
794 struct device *dev = &hdmi->pdev->dev;
795 struct vc4_dev *vc4 = to_vc4_dev(drm);
796 int ret;
797
798 ret = vc4_hdmi_stop_packet(encoder, HDMI_INFOFRAME_TYPE_AUDIO);
799 if (ret)
800 dev_err(dev, "Failed to stop audio infoframe: %d\n", ret);
801
802 HD_WRITE(VC4_HD_MAI_CTL, VC4_HD_MAI_CTL_RESET);
803 HD_WRITE(VC4_HD_MAI_CTL, VC4_HD_MAI_CTL_ERRORF);
804 HD_WRITE(VC4_HD_MAI_CTL, VC4_HD_MAI_CTL_FLUSH);
805}
806
807static void vc4_hdmi_audio_shutdown(struct snd_pcm_substream *substream,
808 struct snd_soc_dai *dai)
809{
810 struct vc4_hdmi *hdmi = dai_to_hdmi(dai);
811
812 if (substream != hdmi->audio.substream)
813 return;
814
815 vc4_hdmi_audio_reset(hdmi);
816
817 hdmi->audio.substream = NULL;
818}
819
820/* HDMI audio codec callbacks */
821static int vc4_hdmi_audio_hw_params(struct snd_pcm_substream *substream,
822 struct snd_pcm_hw_params *params,
823 struct snd_soc_dai *dai)
824{
825 struct vc4_hdmi *hdmi = dai_to_hdmi(dai);
826 struct drm_encoder *encoder = hdmi->encoder;
827 struct drm_device *drm = encoder->dev;
828 struct device *dev = &hdmi->pdev->dev;
829 struct vc4_dev *vc4 = to_vc4_dev(drm);
830 u32 audio_packet_config, channel_mask;
831 u32 channel_map, i;
832
833 if (substream != hdmi->audio.substream)
834 return -EINVAL;
835
836 dev_dbg(dev, "%s: %u Hz, %d bit, %d channels\n", __func__,
837 params_rate(params), params_width(params),
838 params_channels(params));
839
840 hdmi->audio.channels = params_channels(params);
841 hdmi->audio.samplerate = params_rate(params);
842
843 HD_WRITE(VC4_HD_MAI_CTL,
844 VC4_HD_MAI_CTL_RESET |
845 VC4_HD_MAI_CTL_FLUSH |
846 VC4_HD_MAI_CTL_DLATE |
847 VC4_HD_MAI_CTL_ERRORE |
848 VC4_HD_MAI_CTL_ERRORF);
849
850 vc4_hdmi_audio_set_mai_clock(hdmi);
851
852 audio_packet_config =
853 VC4_HDMI_AUDIO_PACKET_ZERO_DATA_ON_SAMPLE_FLAT |
854 VC4_HDMI_AUDIO_PACKET_ZERO_DATA_ON_INACTIVE_CHANNELS |
855 VC4_SET_FIELD(0xf, VC4_HDMI_AUDIO_PACKET_B_FRAME_IDENTIFIER);
856
857 channel_mask = GENMASK(hdmi->audio.channels - 1, 0);
858 audio_packet_config |= VC4_SET_FIELD(channel_mask,
859 VC4_HDMI_AUDIO_PACKET_CEA_MASK);
860
861 /* Set the MAI threshold. This logic mimics the firmware's. */
862 if (hdmi->audio.samplerate > 96000) {
863 HD_WRITE(VC4_HD_MAI_THR,
864 VC4_SET_FIELD(0x12, VC4_HD_MAI_THR_DREQHIGH) |
865 VC4_SET_FIELD(0x12, VC4_HD_MAI_THR_DREQLOW));
866 } else if (hdmi->audio.samplerate > 48000) {
867 HD_WRITE(VC4_HD_MAI_THR,
868 VC4_SET_FIELD(0x14, VC4_HD_MAI_THR_DREQHIGH) |
869 VC4_SET_FIELD(0x12, VC4_HD_MAI_THR_DREQLOW));
870 } else {
871 HD_WRITE(VC4_HD_MAI_THR,
872 VC4_SET_FIELD(0x10, VC4_HD_MAI_THR_PANICHIGH) |
873 VC4_SET_FIELD(0x10, VC4_HD_MAI_THR_PANICLOW) |
874 VC4_SET_FIELD(0x10, VC4_HD_MAI_THR_DREQHIGH) |
875 VC4_SET_FIELD(0x10, VC4_HD_MAI_THR_DREQLOW));
876 }
877
878 HDMI_WRITE(VC4_HDMI_MAI_CONFIG,
879 VC4_HDMI_MAI_CONFIG_BIT_REVERSE |
880 VC4_SET_FIELD(channel_mask, VC4_HDMI_MAI_CHANNEL_MASK));
881
882 channel_map = 0;
883 for (i = 0; i < 8; i++) {
884 if (channel_mask & BIT(i))
885 channel_map |= i << (3 * i);
886 }
887
888 HDMI_WRITE(VC4_HDMI_MAI_CHANNEL_MAP, channel_map);
889 HDMI_WRITE(VC4_HDMI_AUDIO_PACKET_CONFIG, audio_packet_config);
890 vc4_hdmi_set_n_cts(hdmi);
891
892 return 0;
893}
894
895static int vc4_hdmi_audio_trigger(struct snd_pcm_substream *substream, int cmd,
896 struct snd_soc_dai *dai)
897{
898 struct vc4_hdmi *hdmi = dai_to_hdmi(dai);
899 struct drm_encoder *encoder = hdmi->encoder;
900 struct drm_device *drm = encoder->dev;
901 struct vc4_dev *vc4 = to_vc4_dev(drm);
902
903 switch (cmd) {
904 case SNDRV_PCM_TRIGGER_START:
905 vc4_hdmi_set_audio_infoframe(encoder);
906 HDMI_WRITE(VC4_HDMI_TX_PHY_CTL0,
907 HDMI_READ(VC4_HDMI_TX_PHY_CTL0) &
908 ~VC4_HDMI_TX_PHY_RNG_PWRDN);
909 HD_WRITE(VC4_HD_MAI_CTL,
910 VC4_SET_FIELD(hdmi->audio.channels,
911 VC4_HD_MAI_CTL_CHNUM) |
912 VC4_HD_MAI_CTL_ENABLE);
913 break;
914 case SNDRV_PCM_TRIGGER_STOP:
915 HD_WRITE(VC4_HD_MAI_CTL,
916 VC4_HD_MAI_CTL_DLATE |
917 VC4_HD_MAI_CTL_ERRORE |
918 VC4_HD_MAI_CTL_ERRORF);
919 HDMI_WRITE(VC4_HDMI_TX_PHY_CTL0,
920 HDMI_READ(VC4_HDMI_TX_PHY_CTL0) |
921 VC4_HDMI_TX_PHY_RNG_PWRDN);
922 break;
923 default:
924 break;
925 }
926
927 return 0;
928}
929
930static inline struct vc4_hdmi *
931snd_component_to_hdmi(struct snd_soc_component *component)
932{
933 struct snd_soc_card *card = snd_soc_component_get_drvdata(component);
934
935 return snd_soc_card_get_drvdata(card);
936}
937
938static int vc4_hdmi_audio_eld_ctl_info(struct snd_kcontrol *kcontrol,
939 struct snd_ctl_elem_info *uinfo)
940{
941 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
942 struct vc4_hdmi *hdmi = snd_component_to_hdmi(component);
943
944 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
945 uinfo->count = sizeof(hdmi->connector->eld);
946
947 return 0;
948}
949
950static int vc4_hdmi_audio_eld_ctl_get(struct snd_kcontrol *kcontrol,
951 struct snd_ctl_elem_value *ucontrol)
952{
953 struct snd_soc_component *component = snd_kcontrol_chip(kcontrol);
954 struct vc4_hdmi *hdmi = snd_component_to_hdmi(component);
955
956 memcpy(ucontrol->value.bytes.data, hdmi->connector->eld,
957 sizeof(hdmi->connector->eld));
958
959 return 0;
960}
961
962static const struct snd_kcontrol_new vc4_hdmi_audio_controls[] = {
963 {
964 .access = SNDRV_CTL_ELEM_ACCESS_READ |
965 SNDRV_CTL_ELEM_ACCESS_VOLATILE,
966 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
967 .name = "ELD",
968 .info = vc4_hdmi_audio_eld_ctl_info,
969 .get = vc4_hdmi_audio_eld_ctl_get,
970 },
971};
972
973static const struct snd_soc_dapm_widget vc4_hdmi_audio_widgets[] = {
974 SND_SOC_DAPM_OUTPUT("TX"),
975};
976
977static const struct snd_soc_dapm_route vc4_hdmi_audio_routes[] = {
978 { "TX", NULL, "Playback" },
979};
980
Kuninori Morimoto635b1c12018-01-29 04:35:04 +0000981static const struct snd_soc_component_driver vc4_hdmi_audio_component_drv = {
982 .controls = vc4_hdmi_audio_controls,
983 .num_controls = ARRAY_SIZE(vc4_hdmi_audio_controls),
984 .dapm_widgets = vc4_hdmi_audio_widgets,
985 .num_dapm_widgets = ARRAY_SIZE(vc4_hdmi_audio_widgets),
986 .dapm_routes = vc4_hdmi_audio_routes,
987 .num_dapm_routes = ARRAY_SIZE(vc4_hdmi_audio_routes),
988 .idle_bias_on = 1,
989 .use_pmdown_time = 1,
990 .endianness = 1,
991 .non_legacy_dai_naming = 1,
Eric Anholtbb7d7852017-02-27 12:28:02 -0800992};
993
994static const struct snd_soc_dai_ops vc4_hdmi_audio_dai_ops = {
995 .startup = vc4_hdmi_audio_startup,
996 .shutdown = vc4_hdmi_audio_shutdown,
997 .hw_params = vc4_hdmi_audio_hw_params,
998 .set_fmt = vc4_hdmi_audio_set_fmt,
999 .trigger = vc4_hdmi_audio_trigger,
1000};
1001
1002static struct snd_soc_dai_driver vc4_hdmi_audio_codec_dai_drv = {
1003 .name = "vc4-hdmi-hifi",
1004 .playback = {
1005 .stream_name = "Playback",
1006 .channels_min = 2,
1007 .channels_max = 8,
1008 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
1009 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
1010 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
1011 SNDRV_PCM_RATE_192000,
1012 .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE,
1013 },
1014};
1015
1016static const struct snd_soc_component_driver vc4_hdmi_audio_cpu_dai_comp = {
1017 .name = "vc4-hdmi-cpu-dai-component",
1018};
1019
1020static int vc4_hdmi_audio_cpu_dai_probe(struct snd_soc_dai *dai)
1021{
1022 struct vc4_hdmi *hdmi = dai_to_hdmi(dai);
1023
1024 snd_soc_dai_init_dma_data(dai, &hdmi->audio.dma_data, NULL);
1025
1026 return 0;
1027}
1028
1029static struct snd_soc_dai_driver vc4_hdmi_audio_cpu_dai_drv = {
1030 .name = "vc4-hdmi-cpu-dai",
1031 .probe = vc4_hdmi_audio_cpu_dai_probe,
1032 .playback = {
1033 .stream_name = "Playback",
1034 .channels_min = 1,
1035 .channels_max = 8,
1036 .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
1037 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
1038 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
1039 SNDRV_PCM_RATE_192000,
1040 .formats = SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE,
1041 },
1042 .ops = &vc4_hdmi_audio_dai_ops,
1043};
1044
1045static const struct snd_dmaengine_pcm_config pcm_conf = {
1046 .chan_names[SNDRV_PCM_STREAM_PLAYBACK] = "audio-rx",
1047 .prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config,
1048};
1049
1050static int vc4_hdmi_audio_init(struct vc4_hdmi *hdmi)
1051{
1052 struct snd_soc_dai_link *dai_link = &hdmi->audio.link;
1053 struct snd_soc_card *card = &hdmi->audio.card;
1054 struct device *dev = &hdmi->pdev->dev;
1055 const __be32 *addr;
1056 int ret;
1057
1058 if (!of_find_property(dev->of_node, "dmas", NULL)) {
1059 dev_warn(dev,
1060 "'dmas' DT property is missing, no HDMI audio\n");
1061 return 0;
1062 }
1063
1064 /*
1065 * Get the physical address of VC4_HD_MAI_DATA. We need to retrieve
1066 * the bus address specified in the DT, because the physical address
1067 * (the one returned by platform_get_resource()) is not appropriate
1068 * for DMA transfers.
1069 * This VC/MMU should probably be exposed to avoid this kind of hacks.
1070 */
1071 addr = of_get_address(dev->of_node, 1, NULL, NULL);
1072 hdmi->audio.dma_data.addr = be32_to_cpup(addr) + VC4_HD_MAI_DATA;
1073 hdmi->audio.dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1074 hdmi->audio.dma_data.maxburst = 2;
1075
1076 ret = devm_snd_dmaengine_pcm_register(dev, &pcm_conf, 0);
1077 if (ret) {
1078 dev_err(dev, "Could not register PCM component: %d\n", ret);
1079 return ret;
1080 }
1081
1082 ret = devm_snd_soc_register_component(dev, &vc4_hdmi_audio_cpu_dai_comp,
1083 &vc4_hdmi_audio_cpu_dai_drv, 1);
1084 if (ret) {
1085 dev_err(dev, "Could not register CPU DAI: %d\n", ret);
1086 return ret;
1087 }
1088
Kuninori Morimoto635b1c12018-01-29 04:35:04 +00001089 /* register component and codec dai */
1090 ret = devm_snd_soc_register_component(dev, &vc4_hdmi_audio_component_drv,
Eric Anholtbb7d7852017-02-27 12:28:02 -08001091 &vc4_hdmi_audio_codec_dai_drv, 1);
1092 if (ret) {
Kuninori Morimoto635b1c12018-01-29 04:35:04 +00001093 dev_err(dev, "Could not register component: %d\n", ret);
Eric Anholtbb7d7852017-02-27 12:28:02 -08001094 return ret;
1095 }
1096
Kuninori Morimoto0467d8e2019-06-06 13:19:19 +09001097 dai_link->cpus = &hdmi->audio.cpu;
1098 dai_link->codecs = &hdmi->audio.codec;
Kuninori Morimoto8a90efd2019-06-28 10:46:14 +09001099 dai_link->platforms = &hdmi->audio.platform;
Kuninori Morimoto0467d8e2019-06-06 13:19:19 +09001100
1101 dai_link->num_cpus = 1;
1102 dai_link->num_codecs = 1;
Kuninori Morimoto8a90efd2019-06-28 10:46:14 +09001103 dai_link->num_platforms = 1;
Kuninori Morimoto0467d8e2019-06-06 13:19:19 +09001104
Eric Anholtbb7d7852017-02-27 12:28:02 -08001105 dai_link->name = "MAI";
1106 dai_link->stream_name = "MAI PCM";
Kuninori Morimoto0467d8e2019-06-06 13:19:19 +09001107 dai_link->codecs->dai_name = vc4_hdmi_audio_codec_dai_drv.name;
1108 dai_link->cpus->dai_name = dev_name(dev);
1109 dai_link->codecs->name = dev_name(dev);
Kuninori Morimoto8a90efd2019-06-28 10:46:14 +09001110 dai_link->platforms->name = dev_name(dev);
Eric Anholtbb7d7852017-02-27 12:28:02 -08001111
1112 card->dai_link = dai_link;
1113 card->num_links = 1;
1114 card->name = "vc4-hdmi";
1115 card->dev = dev;
1116
1117 /*
1118 * Be careful, snd_soc_register_card() calls dev_set_drvdata() and
1119 * stores a pointer to the snd card object in dev->driver_data. This
1120 * means we cannot use it for something else. The hdmi back-pointer is
1121 * now stored in card->drvdata and should be retrieved with
1122 * snd_soc_card_get_drvdata() if needed.
1123 */
1124 snd_soc_card_set_drvdata(card, hdmi);
1125 ret = devm_snd_soc_register_card(dev, card);
Kuninori Morimoto635b1c12018-01-29 04:35:04 +00001126 if (ret)
Eric Anholtbb7d7852017-02-27 12:28:02 -08001127 dev_err(dev, "Could not register sound card: %d\n", ret);
Eric Anholtbb7d7852017-02-27 12:28:02 -08001128
1129 return ret;
Eric Anholtbb7d7852017-02-27 12:28:02 -08001130
Eric Anholtbb7d7852017-02-27 12:28:02 -08001131}
1132
Hans Verkuil15b45112017-07-16 12:48:04 +02001133#ifdef CONFIG_DRM_VC4_HDMI_CEC
1134static irqreturn_t vc4_cec_irq_handler_thread(int irq, void *priv)
1135{
1136 struct vc4_dev *vc4 = priv;
1137 struct vc4_hdmi *hdmi = vc4->hdmi;
1138
1139 if (hdmi->cec_irq_was_rx) {
1140 if (hdmi->cec_rx_msg.len)
1141 cec_received_msg(hdmi->cec_adap, &hdmi->cec_rx_msg);
1142 } else if (hdmi->cec_tx_ok) {
1143 cec_transmit_done(hdmi->cec_adap, CEC_TX_STATUS_OK,
1144 0, 0, 0, 0);
1145 } else {
1146 /*
1147 * This CEC implementation makes 1 retry, so if we
1148 * get a NACK, then that means it made 2 attempts.
1149 */
1150 cec_transmit_done(hdmi->cec_adap, CEC_TX_STATUS_NACK,
1151 0, 2, 0, 0);
1152 }
1153 return IRQ_HANDLED;
1154}
1155
1156static void vc4_cec_read_msg(struct vc4_dev *vc4, u32 cntrl1)
1157{
1158 struct cec_msg *msg = &vc4->hdmi->cec_rx_msg;
1159 unsigned int i;
1160
1161 msg->len = 1 + ((cntrl1 & VC4_HDMI_CEC_REC_WRD_CNT_MASK) >>
1162 VC4_HDMI_CEC_REC_WRD_CNT_SHIFT);
1163 for (i = 0; i < msg->len; i += 4) {
1164 u32 val = HDMI_READ(VC4_HDMI_CEC_RX_DATA_1 + i);
1165
1166 msg->msg[i] = val & 0xff;
1167 msg->msg[i + 1] = (val >> 8) & 0xff;
1168 msg->msg[i + 2] = (val >> 16) & 0xff;
1169 msg->msg[i + 3] = (val >> 24) & 0xff;
1170 }
1171}
1172
1173static irqreturn_t vc4_cec_irq_handler(int irq, void *priv)
1174{
1175 struct vc4_dev *vc4 = priv;
1176 struct vc4_hdmi *hdmi = vc4->hdmi;
1177 u32 stat = HDMI_READ(VC4_HDMI_CPU_STATUS);
1178 u32 cntrl1, cntrl5;
1179
1180 if (!(stat & VC4_HDMI_CPU_CEC))
1181 return IRQ_NONE;
1182 hdmi->cec_rx_msg.len = 0;
1183 cntrl1 = HDMI_READ(VC4_HDMI_CEC_CNTRL_1);
1184 cntrl5 = HDMI_READ(VC4_HDMI_CEC_CNTRL_5);
1185 hdmi->cec_irq_was_rx = cntrl5 & VC4_HDMI_CEC_RX_CEC_INT;
1186 if (hdmi->cec_irq_was_rx) {
1187 vc4_cec_read_msg(vc4, cntrl1);
1188 cntrl1 |= VC4_HDMI_CEC_CLEAR_RECEIVE_OFF;
1189 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_1, cntrl1);
1190 cntrl1 &= ~VC4_HDMI_CEC_CLEAR_RECEIVE_OFF;
1191 } else {
1192 hdmi->cec_tx_ok = cntrl1 & VC4_HDMI_CEC_TX_STATUS_GOOD;
1193 cntrl1 &= ~VC4_HDMI_CEC_START_XMIT_BEGIN;
1194 }
1195 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_1, cntrl1);
1196 HDMI_WRITE(VC4_HDMI_CPU_CLEAR, VC4_HDMI_CPU_CEC);
1197
1198 return IRQ_WAKE_THREAD;
1199}
1200
1201static int vc4_hdmi_cec_adap_enable(struct cec_adapter *adap, bool enable)
1202{
1203 struct vc4_dev *vc4 = cec_get_drvdata(adap);
1204 /* clock period in microseconds */
1205 const u32 usecs = 1000000 / CEC_CLOCK_FREQ;
1206 u32 val = HDMI_READ(VC4_HDMI_CEC_CNTRL_5);
1207
1208 val &= ~(VC4_HDMI_CEC_TX_SW_RESET | VC4_HDMI_CEC_RX_SW_RESET |
1209 VC4_HDMI_CEC_CNT_TO_4700_US_MASK |
1210 VC4_HDMI_CEC_CNT_TO_4500_US_MASK);
1211 val |= ((4700 / usecs) << VC4_HDMI_CEC_CNT_TO_4700_US_SHIFT) |
1212 ((4500 / usecs) << VC4_HDMI_CEC_CNT_TO_4500_US_SHIFT);
1213
1214 if (enable) {
1215 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_5, val |
1216 VC4_HDMI_CEC_TX_SW_RESET | VC4_HDMI_CEC_RX_SW_RESET);
1217 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_5, val);
1218 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_2,
1219 ((1500 / usecs) << VC4_HDMI_CEC_CNT_TO_1500_US_SHIFT) |
1220 ((1300 / usecs) << VC4_HDMI_CEC_CNT_TO_1300_US_SHIFT) |
1221 ((800 / usecs) << VC4_HDMI_CEC_CNT_TO_800_US_SHIFT) |
1222 ((600 / usecs) << VC4_HDMI_CEC_CNT_TO_600_US_SHIFT) |
1223 ((400 / usecs) << VC4_HDMI_CEC_CNT_TO_400_US_SHIFT));
1224 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_3,
1225 ((2750 / usecs) << VC4_HDMI_CEC_CNT_TO_2750_US_SHIFT) |
1226 ((2400 / usecs) << VC4_HDMI_CEC_CNT_TO_2400_US_SHIFT) |
1227 ((2050 / usecs) << VC4_HDMI_CEC_CNT_TO_2050_US_SHIFT) |
1228 ((1700 / usecs) << VC4_HDMI_CEC_CNT_TO_1700_US_SHIFT));
1229 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_4,
1230 ((4300 / usecs) << VC4_HDMI_CEC_CNT_TO_4300_US_SHIFT) |
1231 ((3900 / usecs) << VC4_HDMI_CEC_CNT_TO_3900_US_SHIFT) |
1232 ((3600 / usecs) << VC4_HDMI_CEC_CNT_TO_3600_US_SHIFT) |
1233 ((3500 / usecs) << VC4_HDMI_CEC_CNT_TO_3500_US_SHIFT));
1234
1235 HDMI_WRITE(VC4_HDMI_CPU_MASK_CLEAR, VC4_HDMI_CPU_CEC);
1236 } else {
1237 HDMI_WRITE(VC4_HDMI_CPU_MASK_SET, VC4_HDMI_CPU_CEC);
1238 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_5, val |
1239 VC4_HDMI_CEC_TX_SW_RESET | VC4_HDMI_CEC_RX_SW_RESET);
1240 }
1241 return 0;
1242}
1243
1244static int vc4_hdmi_cec_adap_log_addr(struct cec_adapter *adap, u8 log_addr)
1245{
1246 struct vc4_dev *vc4 = cec_get_drvdata(adap);
1247
1248 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_1,
1249 (HDMI_READ(VC4_HDMI_CEC_CNTRL_1) & ~VC4_HDMI_CEC_ADDR_MASK) |
1250 (log_addr & 0xf) << VC4_HDMI_CEC_ADDR_SHIFT);
1251 return 0;
1252}
1253
1254static int vc4_hdmi_cec_adap_transmit(struct cec_adapter *adap, u8 attempts,
1255 u32 signal_free_time, struct cec_msg *msg)
1256{
1257 struct vc4_dev *vc4 = cec_get_drvdata(adap);
1258 u32 val;
1259 unsigned int i;
1260
1261 for (i = 0; i < msg->len; i += 4)
1262 HDMI_WRITE(VC4_HDMI_CEC_TX_DATA_1 + i,
1263 (msg->msg[i]) |
1264 (msg->msg[i + 1] << 8) |
1265 (msg->msg[i + 2] << 16) |
1266 (msg->msg[i + 3] << 24));
1267
1268 val = HDMI_READ(VC4_HDMI_CEC_CNTRL_1);
1269 val &= ~VC4_HDMI_CEC_START_XMIT_BEGIN;
1270 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_1, val);
1271 val &= ~VC4_HDMI_CEC_MESSAGE_LENGTH_MASK;
1272 val |= (msg->len - 1) << VC4_HDMI_CEC_MESSAGE_LENGTH_SHIFT;
1273 val |= VC4_HDMI_CEC_START_XMIT_BEGIN;
1274
1275 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_1, val);
1276 return 0;
1277}
1278
1279static const struct cec_adap_ops vc4_hdmi_cec_adap_ops = {
1280 .adap_enable = vc4_hdmi_cec_adap_enable,
1281 .adap_log_addr = vc4_hdmi_cec_adap_log_addr,
1282 .adap_transmit = vc4_hdmi_cec_adap_transmit,
1283};
1284#endif
1285
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001286static int vc4_hdmi_bind(struct device *dev, struct device *master, void *data)
1287{
Dariusz Marcinkiewicz66c2dee2019-08-23 13:24:25 +02001288#ifdef CONFIG_DRM_VC4_HDMI_CEC
1289 struct cec_connector_info conn_info;
1290#endif
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001291 struct platform_device *pdev = to_platform_device(dev);
1292 struct drm_device *drm = dev_get_drvdata(master);
1293 struct vc4_dev *vc4 = drm->dev_private;
1294 struct vc4_hdmi *hdmi;
1295 struct vc4_hdmi_encoder *vc4_hdmi_encoder;
1296 struct device_node *ddc_node;
1297 u32 value;
1298 int ret;
1299
1300 hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL);
1301 if (!hdmi)
1302 return -ENOMEM;
1303
1304 vc4_hdmi_encoder = devm_kzalloc(dev, sizeof(*vc4_hdmi_encoder),
1305 GFP_KERNEL);
1306 if (!vc4_hdmi_encoder)
1307 return -ENOMEM;
1308 vc4_hdmi_encoder->base.type = VC4_ENCODER_TYPE_HDMI;
1309 hdmi->encoder = &vc4_hdmi_encoder->base.base;
1310
1311 hdmi->pdev = pdev;
1312 hdmi->hdmicore_regs = vc4_ioremap_regs(pdev, 0);
1313 if (IS_ERR(hdmi->hdmicore_regs))
1314 return PTR_ERR(hdmi->hdmicore_regs);
1315
1316 hdmi->hd_regs = vc4_ioremap_regs(pdev, 1);
1317 if (IS_ERR(hdmi->hd_regs))
1318 return PTR_ERR(hdmi->hd_regs);
1319
Eric Anholt30517192019-02-20 13:03:38 -08001320 hdmi->hdmi_regset.base = hdmi->hdmicore_regs;
1321 hdmi->hdmi_regset.regs = hdmi_regs;
1322 hdmi->hdmi_regset.nregs = ARRAY_SIZE(hdmi_regs);
1323 hdmi->hd_regset.base = hdmi->hd_regs;
1324 hdmi->hd_regset.regs = hd_regs;
1325 hdmi->hd_regset.nregs = ARRAY_SIZE(hd_regs);
1326
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001327 hdmi->pixel_clock = devm_clk_get(dev, "pixel");
1328 if (IS_ERR(hdmi->pixel_clock)) {
1329 DRM_ERROR("Failed to get pixel clock\n");
1330 return PTR_ERR(hdmi->pixel_clock);
1331 }
1332 hdmi->hsm_clock = devm_clk_get(dev, "hdmi");
1333 if (IS_ERR(hdmi->hsm_clock)) {
1334 DRM_ERROR("Failed to get HDMI state machine clock\n");
1335 return PTR_ERR(hdmi->hsm_clock);
1336 }
1337
Peter Chen027a6972016-07-05 10:04:54 +08001338 ddc_node = of_parse_phandle(dev->of_node, "ddc", 0);
1339 if (!ddc_node) {
1340 DRM_ERROR("Failed to find ddc node in device tree\n");
1341 return -ENODEV;
1342 }
1343
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001344 hdmi->ddc = of_find_i2c_adapter_by_node(ddc_node);
Peter Chen027a6972016-07-05 10:04:54 +08001345 of_node_put(ddc_node);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001346 if (!hdmi->ddc) {
1347 DRM_DEBUG("Failed to get ddc i2c adapter by node\n");
1348 return -EPROBE_DEFER;
1349 }
1350
Hans Verkuil10ee2752017-07-16 12:48:03 +02001351 /* This is the rate that is set by the firmware. The number
1352 * needs to be a bit higher than the pixel clock rate
1353 * (generally 148.5Mhz).
1354 */
Hans Verkuil15b45112017-07-16 12:48:04 +02001355 ret = clk_set_rate(hdmi->hsm_clock, HSM_CLOCK_FREQ);
Hans Verkuil10ee2752017-07-16 12:48:03 +02001356 if (ret) {
1357 DRM_ERROR("Failed to set HSM clock rate: %d\n", ret);
1358 goto err_put_i2c;
1359 }
1360
1361 ret = clk_prepare_enable(hdmi->hsm_clock);
1362 if (ret) {
1363 DRM_ERROR("Failed to turn on HDMI state machine clock: %d\n",
1364 ret);
1365 goto err_put_i2c;
1366 }
1367
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001368 /* Only use the GPIO HPD pin if present in the DT, otherwise
1369 * we'll use the HDMI core's register.
1370 */
1371 if (of_find_property(dev->of_node, "hpd-gpios", &value)) {
Eric Anholt0b06e0a2016-02-29 17:53:01 -08001372 enum of_gpio_flags hpd_gpio_flags;
1373
1374 hdmi->hpd_gpio = of_get_named_gpio_flags(dev->of_node,
1375 "hpd-gpios", 0,
1376 &hpd_gpio_flags);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001377 if (hdmi->hpd_gpio < 0) {
1378 ret = hdmi->hpd_gpio;
Hans Verkuil10ee2752017-07-16 12:48:03 +02001379 goto err_unprepare_hsm;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001380 }
Eric Anholt0b06e0a2016-02-29 17:53:01 -08001381
1382 hdmi->hpd_active_low = hpd_gpio_flags & OF_GPIO_ACTIVE_LOW;
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001383 }
1384
1385 vc4->hdmi = hdmi;
1386
Hans Verkuil10ee2752017-07-16 12:48:03 +02001387 /* HDMI core must be enabled. */
1388 if (!(HD_READ(VC4_HD_M_CTL) & VC4_HD_M_ENABLE)) {
1389 HD_WRITE(VC4_HD_M_CTL, VC4_HD_M_SW_RST);
1390 udelay(1);
1391 HD_WRITE(VC4_HD_M_CTL, 0);
1392
1393 HD_WRITE(VC4_HD_M_CTL, VC4_HD_M_ENABLE);
1394 }
Boris Brezillon4f6e3d62017-04-11 18:39:25 +02001395 pm_runtime_enable(dev);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001396
1397 drm_encoder_init(drm, hdmi->encoder, &vc4_hdmi_encoder_funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +02001398 DRM_MODE_ENCODER_TMDS, NULL);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001399 drm_encoder_helper_add(hdmi->encoder, &vc4_hdmi_encoder_helper_funcs);
1400
1401 hdmi->connector = vc4_hdmi_connector_init(drm, hdmi->encoder);
1402 if (IS_ERR(hdmi->connector)) {
1403 ret = PTR_ERR(hdmi->connector);
1404 goto err_destroy_encoder;
1405 }
Hans Verkuil15b45112017-07-16 12:48:04 +02001406#ifdef CONFIG_DRM_VC4_HDMI_CEC
1407 hdmi->cec_adap = cec_allocate_adapter(&vc4_hdmi_cec_adap_ops,
1408 vc4, "vc4",
Dariusz Marcinkiewicz66c2dee2019-08-23 13:24:25 +02001409 CEC_CAP_DEFAULTS |
1410 CEC_CAP_CONNECTOR_INFO, 1);
Hans Verkuil15b45112017-07-16 12:48:04 +02001411 ret = PTR_ERR_OR_ZERO(hdmi->cec_adap);
1412 if (ret < 0)
1413 goto err_destroy_conn;
Dariusz Marcinkiewicz66c2dee2019-08-23 13:24:25 +02001414
1415 cec_fill_conn_info_from_drm(&conn_info, hdmi->connector);
1416 cec_s_conn_info(hdmi->cec_adap, &conn_info);
1417
Hans Verkuil15b45112017-07-16 12:48:04 +02001418 HDMI_WRITE(VC4_HDMI_CPU_MASK_SET, 0xffffffff);
1419 value = HDMI_READ(VC4_HDMI_CEC_CNTRL_1);
1420 value &= ~VC4_HDMI_CEC_DIV_CLK_CNT_MASK;
1421 /*
1422 * Set the logical address to Unregistered and set the clock
1423 * divider: the hsm_clock rate and this divider setting will
1424 * give a 40 kHz CEC clock.
1425 */
1426 value |= VC4_HDMI_CEC_ADDR_MASK |
1427 (4091 << VC4_HDMI_CEC_DIV_CLK_CNT_SHIFT);
1428 HDMI_WRITE(VC4_HDMI_CEC_CNTRL_1, value);
1429 ret = devm_request_threaded_irq(dev, platform_get_irq(pdev, 0),
1430 vc4_cec_irq_handler,
1431 vc4_cec_irq_handler_thread, 0,
1432 "vc4 hdmi cec", vc4);
1433 if (ret)
1434 goto err_delete_cec_adap;
1435 ret = cec_register_adapter(hdmi->cec_adap, dev);
1436 if (ret < 0)
1437 goto err_delete_cec_adap;
1438#endif
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001439
Eric Anholtbb7d7852017-02-27 12:28:02 -08001440 ret = vc4_hdmi_audio_init(hdmi);
1441 if (ret)
1442 goto err_destroy_encoder;
1443
Eric Anholtc9be8042019-04-01 11:35:58 -07001444 vc4_debugfs_add_file(drm, "hdmi_regs", vc4_hdmi_debugfs_regs, hdmi);
1445
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001446 return 0;
1447
Hans Verkuil15b45112017-07-16 12:48:04 +02001448#ifdef CONFIG_DRM_VC4_HDMI_CEC
1449err_delete_cec_adap:
1450 cec_delete_adapter(hdmi->cec_adap);
1451err_destroy_conn:
1452 vc4_hdmi_connector_destroy(hdmi->connector);
1453#endif
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001454err_destroy_encoder:
1455 vc4_hdmi_encoder_destroy(hdmi->encoder);
Hans Verkuil10ee2752017-07-16 12:48:03 +02001456err_unprepare_hsm:
1457 clk_disable_unprepare(hdmi->hsm_clock);
Boris Brezillon4f6e3d62017-04-11 18:39:25 +02001458 pm_runtime_disable(dev);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001459err_put_i2c:
Eric Anholt58839802016-04-04 14:25:59 -07001460 put_device(&hdmi->ddc->dev);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001461
1462 return ret;
1463}
1464
1465static void vc4_hdmi_unbind(struct device *dev, struct device *master,
1466 void *data)
1467{
1468 struct drm_device *drm = dev_get_drvdata(master);
1469 struct vc4_dev *vc4 = drm->dev_private;
1470 struct vc4_hdmi *hdmi = vc4->hdmi;
1471
Hans Verkuil15b45112017-07-16 12:48:04 +02001472 cec_unregister_adapter(hdmi->cec_adap);
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001473 vc4_hdmi_connector_destroy(hdmi->connector);
1474 vc4_hdmi_encoder_destroy(hdmi->encoder);
1475
Hans Verkuil10ee2752017-07-16 12:48:03 +02001476 clk_disable_unprepare(hdmi->hsm_clock);
Boris Brezillon4f6e3d62017-04-11 18:39:25 +02001477 pm_runtime_disable(dev);
1478
Eric Anholtc8b75bc2015-03-02 13:01:12 -08001479 put_device(&hdmi->ddc->dev);
1480
1481 vc4->hdmi = NULL;
1482}
1483
1484static const struct component_ops vc4_hdmi_ops = {
1485 .bind = vc4_hdmi_bind,
1486 .unbind = vc4_hdmi_unbind,
1487};
1488
1489static int vc4_hdmi_dev_probe(struct platform_device *pdev)
1490{
1491 return component_add(&pdev->dev, &vc4_hdmi_ops);
1492}
1493
1494static int vc4_hdmi_dev_remove(struct platform_device *pdev)
1495{
1496 component_del(&pdev->dev, &vc4_hdmi_ops);
1497 return 0;
1498}
1499
1500static const struct of_device_id vc4_hdmi_dt_match[] = {
1501 { .compatible = "brcm,bcm2835-hdmi" },
1502 {}
1503};
1504
1505struct platform_driver vc4_hdmi_driver = {
1506 .probe = vc4_hdmi_dev_probe,
1507 .remove = vc4_hdmi_dev_remove,
1508 .driver = {
1509 .name = "vc4_hdmi",
1510 .of_match_table = vc4_hdmi_dt_match,
1511 },
1512};