blob: 719720709e9e754316580bf1eafcb62b08af5d1f [file] [log] [blame]
Thomas Gleixnercaab2772019-06-03 07:44:50 +02001// SPDX-License-Identifier: GPL-2.0-only
Rob Clarkc8afe682013-06-26 12:44:06 -04002/*
Stephane Viau5eba5d82015-01-07 16:27:27 -05003 * Copyright (c) 2014 The Linux Foundation. All rights reserved.
Rob Clarkc8afe682013-06-26 12:44:06 -04004 * Copyright (C) 2013 Red Hat
5 * Author: Rob Clark <robdclark@gmail.com>
Rob Clarkc8afe682013-06-26 12:44:06 -04006 */
7
Rob Clarkf6a8eac2014-11-17 15:28:07 -05008#include <linux/of_irq.h>
Archit Taneja1fd6a442015-10-30 12:35:55 +05309#include <linux/of_gpio.h>
10
Dmitry Baryshkovcaa24222021-10-15 03:11:00 +030011#include <drm/drm_bridge_connector.h>
12
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +010013#include <sound/hdmi-codec.h>
Rob Clarkc8afe682013-06-26 12:44:06 -040014#include "hdmi.h"
15
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010016void msm_hdmi_set_mode(struct hdmi *hdmi, bool power_on)
Rob Clarkc8afe682013-06-26 12:44:06 -040017{
18 uint32_t ctrl = 0;
jilai wangc6a57a52015-04-02 17:49:01 -040019 unsigned long flags;
Rob Clarkc8afe682013-06-26 12:44:06 -040020
jilai wangc6a57a52015-04-02 17:49:01 -040021 spin_lock_irqsave(&hdmi->reg_lock, flags);
Rob Clarkc8afe682013-06-26 12:44:06 -040022 if (power_on) {
23 ctrl |= HDMI_CTRL_ENABLE;
24 if (!hdmi->hdmi_mode) {
25 ctrl |= HDMI_CTRL_HDMI;
26 hdmi_write(hdmi, REG_HDMI_CTRL, ctrl);
27 ctrl &= ~HDMI_CTRL_HDMI;
28 } else {
29 ctrl |= HDMI_CTRL_HDMI;
30 }
31 } else {
32 ctrl = HDMI_CTRL_HDMI;
33 }
34
35 hdmi_write(hdmi, REG_HDMI_CTRL, ctrl);
jilai wangc6a57a52015-04-02 17:49:01 -040036 spin_unlock_irqrestore(&hdmi->reg_lock, flags);
Rob Clarkc8afe682013-06-26 12:44:06 -040037 DBG("HDMI Core: %s, HDMI_CTRL=0x%08x",
38 power_on ? "Enable" : "Disable", ctrl);
39}
40
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010041static irqreturn_t msm_hdmi_irq(int irq, void *dev_id)
Rob Clarkc8afe682013-06-26 12:44:06 -040042{
43 struct hdmi *hdmi = dev_id;
44
45 /* Process HPD: */
Dmitry Baryshkovcaa24222021-10-15 03:11:00 +030046 msm_hdmi_hpd_irq(hdmi->bridge);
Rob Clarkc8afe682013-06-26 12:44:06 -040047
48 /* Process DDC: */
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010049 msm_hdmi_i2c_irq(hdmi->i2c);
Rob Clarkc8afe682013-06-26 12:44:06 -040050
jilai wangc6a57a52015-04-02 17:49:01 -040051 /* Process HDCP: */
52 if (hdmi->hdcp_ctrl)
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010053 msm_hdmi_hdcp_irq(hdmi->hdcp_ctrl);
jilai wangc6a57a52015-04-02 17:49:01 -040054
Rob Clarkc8afe682013-06-26 12:44:06 -040055 /* TODO audio.. */
56
57 return IRQ_HANDLED;
58}
59
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010060static void msm_hdmi_destroy(struct hdmi *hdmi)
Rob Clarkc8afe682013-06-26 12:44:06 -040061{
jilai wangc6a57a52015-04-02 17:49:01 -040062 /*
63 * at this point, hpd has been disabled,
64 * after flush workq, it's safe to deinit hdcp
65 */
Christophe JAILLETf8e7bce2021-10-10 15:59:40 +020066 if (hdmi->workq)
jilai wangc6a57a52015-04-02 17:49:01 -040067 destroy_workqueue(hdmi->workq);
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010068 msm_hdmi_hdcp_destroy(hdmi);
Rob Clarkc8afe682013-06-26 12:44:06 -040069
Archit Tanejae00012b2016-02-25 11:22:40 +053070 if (hdmi->phy_dev) {
71 put_device(hdmi->phy_dev);
72 hdmi->phy = NULL;
73 hdmi->phy_dev = NULL;
74 }
75
Rob Clarkc8afe682013-06-26 12:44:06 -040076 if (hdmi->i2c)
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010077 msm_hdmi_i2c_destroy(hdmi->i2c);
Rob Clarkc8afe682013-06-26 12:44:06 -040078
Rob Clarkc0c0d9e2013-12-11 14:44:02 -050079 platform_set_drvdata(hdmi->pdev, NULL);
Rob Clarkc8afe682013-06-26 12:44:06 -040080}
81
Arnd Bergmannfcda50c2016-02-22 22:08:35 +010082static int msm_hdmi_get_phy(struct hdmi *hdmi)
Archit Tanejae00012b2016-02-25 11:22:40 +053083{
84 struct platform_device *pdev = hdmi->pdev;
85 struct platform_device *phy_pdev;
86 struct device_node *phy_node;
87
88 phy_node = of_parse_phandle(pdev->dev.of_node, "phys", 0);
89 if (!phy_node) {
Mamta Shukla6a41da12018-10-20 23:19:26 +053090 DRM_DEV_ERROR(&pdev->dev, "cannot find phy device\n");
Archit Tanejae00012b2016-02-25 11:22:40 +053091 return -ENXIO;
92 }
93
94 phy_pdev = of_find_device_by_node(phy_node);
95 if (phy_pdev)
96 hdmi->phy = platform_get_drvdata(phy_pdev);
97
98 of_node_put(phy_node);
99
Miaoqian Lin774fe0c2022-01-07 08:50:22 +0000100 if (!phy_pdev) {
Mamta Shukla6a41da12018-10-20 23:19:26 +0530101 DRM_DEV_ERROR(&pdev->dev, "phy driver is not ready\n");
Archit Tanejae00012b2016-02-25 11:22:40 +0530102 return -EPROBE_DEFER;
103 }
Miaoqian Lin774fe0c2022-01-07 08:50:22 +0000104 if (!hdmi->phy) {
105 DRM_DEV_ERROR(&pdev->dev, "phy driver is not ready\n");
106 put_device(&phy_pdev->dev);
107 return -EPROBE_DEFER;
108 }
Archit Tanejae00012b2016-02-25 11:22:40 +0530109
110 hdmi->phy_dev = get_device(&phy_pdev->dev);
111
112 return 0;
113}
114
Rob Clark067fef32014-11-04 13:33:14 -0500115/* construct hdmi at bind/probe time, grab all the resources. If
116 * we are to EPROBE_DEFER we want to do it here, rather than later
117 * at modeset_init() time
118 */
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100119static struct hdmi *msm_hdmi_init(struct platform_device *pdev)
Rob Clarkc8afe682013-06-26 12:44:06 -0400120{
Rob Clark067fef32014-11-04 13:33:14 -0500121 struct hdmi_platform_config *config = pdev->dev.platform_data;
Rob Clarka3376e32013-08-30 13:02:15 -0400122 struct hdmi *hdmi = NULL;
jilai wangc6a57a52015-04-02 17:49:01 -0400123 struct resource *res;
Rob Clarkdada25b2013-12-01 12:12:54 -0500124 int i, ret;
Rob Clarkc8afe682013-06-26 12:44:06 -0400125
Rob Clark067fef32014-11-04 13:33:14 -0500126 hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL);
Rob Clarka3376e32013-08-30 13:02:15 -0400127 if (!hdmi) {
128 ret = -ENOMEM;
129 goto fail;
130 }
131
Rob Clarkc8afe682013-06-26 12:44:06 -0400132 hdmi->pdev = pdev;
Rob Clarkdada25b2013-12-01 12:12:54 -0500133 hdmi->config = config;
jilai wangc6a57a52015-04-02 17:49:01 -0400134 spin_lock_init(&hdmi->reg_lock);
Rob Clarkc0c0d9e2013-12-11 14:44:02 -0500135
Rob Clarkdada25b2013-12-01 12:12:54 -0500136 hdmi->mmio = msm_ioremap(pdev, config->mmio_name, "HDMI");
Rob Clarkc8afe682013-06-26 12:44:06 -0400137 if (IS_ERR(hdmi->mmio)) {
138 ret = PTR_ERR(hdmi->mmio);
139 goto fail;
140 }
141
jilai wangc6a57a52015-04-02 17:49:01 -0400142 /* HDCP needs physical address of hdmi register */
143 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
144 config->mmio_name);
145 hdmi->mmio_phy_addr = res->start;
146
147 hdmi->qfprom_mmio = msm_ioremap(pdev,
148 config->qfprom_mmio_name, "HDMI_QFPROM");
149 if (IS_ERR(hdmi->qfprom_mmio)) {
Mamta Shukla6a41da12018-10-20 23:19:26 +0530150 DRM_DEV_INFO(&pdev->dev, "can't find qfprom resource\n");
jilai wangc6a57a52015-04-02 17:49:01 -0400151 hdmi->qfprom_mmio = NULL;
152 }
153
Kees Cooka86854d2018-06-12 14:07:58 -0700154 hdmi->hpd_regs = devm_kcalloc(&pdev->dev,
155 config->hpd_reg_cnt,
156 sizeof(hdmi->hpd_regs[0]),
157 GFP_KERNEL);
Stephane Viau447fa522015-01-13 14:33:40 -0500158 if (!hdmi->hpd_regs) {
159 ret = -ENOMEM;
160 goto fail;
161 }
Dmitry Baryshkov31b3b1f2021-10-15 03:10:59 +0300162 for (i = 0; i < config->hpd_reg_cnt; i++)
163 hdmi->hpd_regs[i].supply = config->hpd_reg_names[i];
Rob Clarkdada25b2013-12-01 12:12:54 -0500164
Dmitry Baryshkov31b3b1f2021-10-15 03:10:59 +0300165 ret = devm_regulator_bulk_get(&pdev->dev, config->hpd_reg_cnt, hdmi->hpd_regs);
166 if (ret) {
167 DRM_DEV_ERROR(&pdev->dev, "failed to get hpd regulator: %d\n", ret);
168 goto fail;
Rob Clarkc8afe682013-06-26 12:44:06 -0400169 }
170
Kees Cooka86854d2018-06-12 14:07:58 -0700171 hdmi->pwr_regs = devm_kcalloc(&pdev->dev,
172 config->pwr_reg_cnt,
173 sizeof(hdmi->pwr_regs[0]),
174 GFP_KERNEL);
Stephane Viau447fa522015-01-13 14:33:40 -0500175 if (!hdmi->pwr_regs) {
176 ret = -ENOMEM;
177 goto fail;
178 }
Rob Clarkc8afe682013-06-26 12:44:06 -0400179
Dmitry Baryshkov31b3b1f2021-10-15 03:10:59 +0300180 ret = devm_regulator_bulk_get(&pdev->dev, config->pwr_reg_cnt, hdmi->pwr_regs);
181 if (ret) {
182 DRM_DEV_ERROR(&pdev->dev, "failed to get pwr regulator: %d\n", ret);
183 goto fail;
Rob Clarkc8afe682013-06-26 12:44:06 -0400184 }
185
Kees Cooka86854d2018-06-12 14:07:58 -0700186 hdmi->hpd_clks = devm_kcalloc(&pdev->dev,
187 config->hpd_clk_cnt,
188 sizeof(hdmi->hpd_clks[0]),
189 GFP_KERNEL);
Stephane Viau447fa522015-01-13 14:33:40 -0500190 if (!hdmi->hpd_clks) {
191 ret = -ENOMEM;
192 goto fail;
193 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500194 for (i = 0; i < config->hpd_clk_cnt; i++) {
195 struct clk *clk;
196
Rob Clarkaede1e92017-10-16 16:56:28 -0400197 clk = msm_clk_get(pdev, config->hpd_clk_names[i]);
Rob Clarkdada25b2013-12-01 12:12:54 -0500198 if (IS_ERR(clk)) {
199 ret = PTR_ERR(clk);
Mamta Shukla6a41da12018-10-20 23:19:26 +0530200 DRM_DEV_ERROR(&pdev->dev, "failed to get hpd clk: %s (%d)\n",
Rob Clarkdada25b2013-12-01 12:12:54 -0500201 config->hpd_clk_names[i], ret);
202 goto fail;
203 }
204
205 hdmi->hpd_clks[i] = clk;
Rob Clarkc8afe682013-06-26 12:44:06 -0400206 }
207
Kees Cooka86854d2018-06-12 14:07:58 -0700208 hdmi->pwr_clks = devm_kcalloc(&pdev->dev,
209 config->pwr_clk_cnt,
210 sizeof(hdmi->pwr_clks[0]),
211 GFP_KERNEL);
Stephane Viau447fa522015-01-13 14:33:40 -0500212 if (!hdmi->pwr_clks) {
213 ret = -ENOMEM;
214 goto fail;
215 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500216 for (i = 0; i < config->pwr_clk_cnt; i++) {
217 struct clk *clk;
218
Rob Clarkaede1e92017-10-16 16:56:28 -0400219 clk = msm_clk_get(pdev, config->pwr_clk_names[i]);
Rob Clarkdada25b2013-12-01 12:12:54 -0500220 if (IS_ERR(clk)) {
221 ret = PTR_ERR(clk);
Mamta Shukla6a41da12018-10-20 23:19:26 +0530222 DRM_DEV_ERROR(&pdev->dev, "failed to get pwr clk: %s (%d)\n",
Rob Clarkdada25b2013-12-01 12:12:54 -0500223 config->pwr_clk_names[i], ret);
224 goto fail;
225 }
226
227 hdmi->pwr_clks[i] = clk;
Rob Clarkc8afe682013-06-26 12:44:06 -0400228 }
229
Archit Taneja6ed9ed42017-07-28 16:17:02 +0530230 pm_runtime_enable(&pdev->dev);
231
jilai wangc6a57a52015-04-02 17:49:01 -0400232 hdmi->workq = alloc_ordered_workqueue("msm_hdmi", 0);
233
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100234 hdmi->i2c = msm_hdmi_i2c_init(hdmi);
Rob Clarkc8afe682013-06-26 12:44:06 -0400235 if (IS_ERR(hdmi->i2c)) {
236 ret = PTR_ERR(hdmi->i2c);
Mamta Shukla6a41da12018-10-20 23:19:26 +0530237 DRM_DEV_ERROR(&pdev->dev, "failed to get i2c: %d\n", ret);
Rob Clarkc8afe682013-06-26 12:44:06 -0400238 hdmi->i2c = NULL;
239 goto fail;
240 }
241
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100242 ret = msm_hdmi_get_phy(hdmi);
Archit Tanejae00012b2016-02-25 11:22:40 +0530243 if (ret) {
Mamta Shukla6a41da12018-10-20 23:19:26 +0530244 DRM_DEV_ERROR(&pdev->dev, "failed to get phy\n");
Archit Tanejae00012b2016-02-25 11:22:40 +0530245 goto fail;
246 }
247
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100248 hdmi->hdcp_ctrl = msm_hdmi_hdcp_init(hdmi);
jilai wangc6a57a52015-04-02 17:49:01 -0400249 if (IS_ERR(hdmi->hdcp_ctrl)) {
250 dev_warn(&pdev->dev, "failed to init hdcp: disabled\n");
251 hdmi->hdcp_ctrl = NULL;
252 }
253
Rob Clark067fef32014-11-04 13:33:14 -0500254 return hdmi;
255
256fail:
257 if (hdmi)
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100258 msm_hdmi_destroy(hdmi);
Rob Clark067fef32014-11-04 13:33:14 -0500259
260 return ERR_PTR(ret);
261}
262
263/* Second part of initialization, the drm/kms level modeset_init,
264 * constructs/initializes mode objects, etc, is called from master
265 * driver (not hdmi sub-device's probe/bind!)
266 *
267 * Any resource (regulator/clk/etc) which could be missing at boot
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100268 * should be handled in msm_hdmi_init() so that failure happens from
Rob Clark067fef32014-11-04 13:33:14 -0500269 * hdmi sub-device's probe.
270 */
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100271int msm_hdmi_modeset_init(struct hdmi *hdmi,
Rob Clark067fef32014-11-04 13:33:14 -0500272 struct drm_device *dev, struct drm_encoder *encoder)
273{
274 struct msm_drm_private *priv = dev->dev_private;
275 struct platform_device *pdev = hdmi->pdev;
Rob Clark067fef32014-11-04 13:33:14 -0500276 int ret;
277
278 hdmi->dev = dev;
279 hdmi->encoder = encoder;
280
281 hdmi_audio_infoframe_init(&hdmi->audio.infoframe);
282
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100283 hdmi->bridge = msm_hdmi_bridge_init(hdmi);
Rob Clarka3376e32013-08-30 13:02:15 -0400284 if (IS_ERR(hdmi->bridge)) {
285 ret = PTR_ERR(hdmi->bridge);
Mamta Shukla6a41da12018-10-20 23:19:26 +0530286 DRM_DEV_ERROR(dev->dev, "failed to create HDMI bridge: %d\n", ret);
Rob Clarka3376e32013-08-30 13:02:15 -0400287 hdmi->bridge = NULL;
288 goto fail;
289 }
290
Dmitry Baryshkovcaa24222021-10-15 03:11:00 +0300291 hdmi->connector = drm_bridge_connector_init(hdmi->dev, encoder);
Rob Clarka3376e32013-08-30 13:02:15 -0400292 if (IS_ERR(hdmi->connector)) {
293 ret = PTR_ERR(hdmi->connector);
Mamta Shukla6a41da12018-10-20 23:19:26 +0530294 DRM_DEV_ERROR(dev->dev, "failed to create HDMI connector: %d\n", ret);
Rob Clarka3376e32013-08-30 13:02:15 -0400295 hdmi->connector = NULL;
296 goto fail;
297 }
298
Dmitry Baryshkovcaa24222021-10-15 03:11:00 +0300299 drm_connector_attach_encoder(hdmi->connector, hdmi->encoder);
300
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500301 hdmi->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
302 if (hdmi->irq < 0) {
303 ret = hdmi->irq;
Mamta Shukla6a41da12018-10-20 23:19:26 +0530304 DRM_DEV_ERROR(dev->dev, "failed to get irq: %d\n", ret);
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500305 goto fail;
306 }
Rob Clarkc8afe682013-06-26 12:44:06 -0400307
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500308 ret = devm_request_irq(&pdev->dev, hdmi->irq,
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100309 msm_hdmi_irq, IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500310 "hdmi_isr", hdmi);
311 if (ret < 0) {
Mamta Shukla6a41da12018-10-20 23:19:26 +0530312 DRM_DEV_ERROR(dev->dev, "failed to request IRQ%u: %d\n",
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500313 hdmi->irq, ret);
314 goto fail;
Rob Clarkc8afe682013-06-26 12:44:06 -0400315 }
316
Dmitry Baryshkovcaa24222021-10-15 03:11:00 +0300317 drm_bridge_connector_enable_hpd(hdmi->connector);
318
319 ret = msm_hdmi_hpd_enable(hdmi->bridge);
Todor Tomovee445632018-10-19 17:07:22 +0300320 if (ret < 0) {
321 DRM_DEV_ERROR(&hdmi->pdev->dev, "failed to enable HPD: %d\n", ret);
322 goto fail;
323 }
324
Rob Clarka3376e32013-08-30 13:02:15 -0400325 priv->bridges[priv->num_bridges++] = hdmi->bridge;
326 priv->connectors[priv->num_connectors++] = hdmi->connector;
327
Rob Clarkc0c0d9e2013-12-11 14:44:02 -0500328 platform_set_drvdata(pdev, hdmi);
329
Rob Clark067fef32014-11-04 13:33:14 -0500330 return 0;
Rob Clarkc8afe682013-06-26 12:44:06 -0400331
332fail:
Ajay Kumar3d3f8b12015-01-20 22:08:44 +0530333 /* bridge is normally destroyed by drm: */
Rob Clark067fef32014-11-04 13:33:14 -0500334 if (hdmi->bridge) {
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100335 msm_hdmi_bridge_destroy(hdmi->bridge);
Rob Clark067fef32014-11-04 13:33:14 -0500336 hdmi->bridge = NULL;
337 }
338 if (hdmi->connector) {
339 hdmi->connector->funcs->destroy(hdmi->connector);
340 hdmi->connector = NULL;
Rob Clarka3376e32013-08-30 13:02:15 -0400341 }
Rob Clarkc8afe682013-06-26 12:44:06 -0400342
Rob Clark067fef32014-11-04 13:33:14 -0500343 return ret;
Rob Clarkc8afe682013-06-26 12:44:06 -0400344}
345
346/*
347 * The hdmi device:
348 */
349
Stephane Viau5eba5d82015-01-07 16:27:27 -0500350#define HDMI_CFG(item, entry) \
351 .item ## _names = item ##_names_ ## entry, \
352 .item ## _cnt = ARRAY_SIZE(item ## _names_ ## entry)
353
Stephane Viau0afbe592015-09-15 08:41:49 -0400354static const char *pwr_reg_names_none[] = {};
355static const char *hpd_reg_names_none[] = {};
356
Archit Tanejaba3d7bf2016-02-25 11:22:41 +0530357static struct hdmi_platform_config hdmi_tx_8660_config;
Stephane Viau5eba5d82015-01-07 16:27:27 -0500358
359static const char *hpd_reg_names_8960[] = {"core-vdda", "hdmi-mux"};
Rob Clarkaede1e92017-10-16 16:56:28 -0400360static const char *hpd_clk_names_8960[] = {"core", "master_iface", "slave_iface"};
Stephane Viau5eba5d82015-01-07 16:27:27 -0500361
362static struct hdmi_platform_config hdmi_tx_8960_config = {
Stephane Viau5eba5d82015-01-07 16:27:27 -0500363 HDMI_CFG(hpd_reg, 8960),
364 HDMI_CFG(hpd_clk, 8960),
365};
366
367static const char *pwr_reg_names_8x74[] = {"core-vdda", "core-vcc"};
368static const char *hpd_reg_names_8x74[] = {"hpd-gdsc", "hpd-5v"};
Rob Clarkaede1e92017-10-16 16:56:28 -0400369static const char *pwr_clk_names_8x74[] = {"extp", "alt_iface"};
370static const char *hpd_clk_names_8x74[] = {"iface", "core", "mdp_core"};
Stephane Viau5eba5d82015-01-07 16:27:27 -0500371static unsigned long hpd_clk_freq_8x74[] = {0, 19200000, 0};
372
Rob Clark5cf3a45532015-07-27 20:52:50 -0400373static struct hdmi_platform_config hdmi_tx_8974_config = {
Stephane Viau5eba5d82015-01-07 16:27:27 -0500374 HDMI_CFG(pwr_reg, 8x74),
375 HDMI_CFG(hpd_reg, 8x74),
376 HDMI_CFG(pwr_clk, 8x74),
377 HDMI_CFG(hpd_clk, 8x74),
378 .hpd_freq = hpd_clk_freq_8x74,
379};
380
381static const char *hpd_reg_names_8084[] = {"hpd-gdsc", "hpd-5v", "hpd-5v-en"};
382
383static struct hdmi_platform_config hdmi_tx_8084_config = {
Stephane Viau5eba5d82015-01-07 16:27:27 -0500384 HDMI_CFG(pwr_reg, 8x74),
385 HDMI_CFG(hpd_reg, 8084),
386 HDMI_CFG(pwr_clk, 8x74),
387 HDMI_CFG(hpd_clk, 8x74),
388 .hpd_freq = hpd_clk_freq_8x74,
389};
390
Rob Clark5cf3a45532015-07-27 20:52:50 -0400391static struct hdmi_platform_config hdmi_tx_8994_config = {
Stephane Viau3a84f842015-06-19 16:04:47 -0400392 HDMI_CFG(pwr_reg, 8x74),
Stephane Viau0afbe592015-09-15 08:41:49 -0400393 HDMI_CFG(hpd_reg, none),
394 HDMI_CFG(pwr_clk, 8x74),
395 HDMI_CFG(hpd_clk, 8x74),
396 .hpd_freq = hpd_clk_freq_8x74,
397};
398
399static struct hdmi_platform_config hdmi_tx_8996_config = {
Stephane Viau0afbe592015-09-15 08:41:49 -0400400 HDMI_CFG(pwr_reg, none),
401 HDMI_CFG(hpd_reg, none),
Stephane Viau3a84f842015-06-19 16:04:47 -0400402 HDMI_CFG(pwr_clk, 8x74),
403 HDMI_CFG(hpd_clk, 8x74),
404 .hpd_freq = hpd_clk_freq_8x74,
405};
406
Archit Tanejadc50f7822016-02-25 11:22:36 +0530407static const struct {
408 const char *name;
409 const bool output;
410 const int value;
411 const char *label;
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100412} msm_hdmi_gpio_pdata[] = {
Archit Tanejadc50f7822016-02-25 11:22:36 +0530413 { "qcom,hdmi-tx-ddc-clk", true, 1, "HDMI_DDC_CLK" },
414 { "qcom,hdmi-tx-ddc-data", true, 1, "HDMI_DDC_DATA" },
415 { "qcom,hdmi-tx-hpd", false, 1, "HDMI_HPD" },
416 { "qcom,hdmi-tx-mux-en", true, 1, "HDMI_MUX_EN" },
417 { "qcom,hdmi-tx-mux-sel", true, 0, "HDMI_MUX_SEL" },
418 { "qcom,hdmi-tx-mux-lpm", true, 1, "HDMI_MUX_LPM" },
419};
420
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100421/*
422 * HDMI audio codec callbacks
423 */
424static int msm_hdmi_audio_hw_params(struct device *dev, void *data,
425 struct hdmi_codec_daifmt *daifmt,
426 struct hdmi_codec_params *params)
427{
428 struct hdmi *hdmi = dev_get_drvdata(dev);
429 unsigned int chan;
430 unsigned int channel_allocation = 0;
431 unsigned int rate;
432 unsigned int level_shift = 0; /* 0dB */
433 bool down_mix = false;
434
Mamta Shukla6a41da12018-10-20 23:19:26 +0530435 DRM_DEV_DEBUG(dev, "%u Hz, %d bit, %d channels\n", params->sample_rate,
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100436 params->sample_width, params->cea.channels);
437
438 switch (params->cea.channels) {
439 case 2:
440 /* FR and FL speakers */
441 channel_allocation = 0;
442 chan = MSM_HDMI_AUDIO_CHANNEL_2;
443 break;
444 case 4:
445 /* FC, LFE, FR and FL speakers */
446 channel_allocation = 0x3;
447 chan = MSM_HDMI_AUDIO_CHANNEL_4;
448 break;
449 case 6:
450 /* RR, RL, FC, LFE, FR and FL speakers */
451 channel_allocation = 0x0B;
452 chan = MSM_HDMI_AUDIO_CHANNEL_6;
453 break;
454 case 8:
455 /* FRC, FLC, RR, RL, FC, LFE, FR and FL speakers */
456 channel_allocation = 0x1F;
457 chan = MSM_HDMI_AUDIO_CHANNEL_8;
458 break;
459 default:
460 return -EINVAL;
461 }
462
463 switch (params->sample_rate) {
464 case 32000:
465 rate = HDMI_SAMPLE_RATE_32KHZ;
466 break;
467 case 44100:
468 rate = HDMI_SAMPLE_RATE_44_1KHZ;
469 break;
470 case 48000:
471 rate = HDMI_SAMPLE_RATE_48KHZ;
472 break;
473 case 88200:
474 rate = HDMI_SAMPLE_RATE_88_2KHZ;
475 break;
476 case 96000:
477 rate = HDMI_SAMPLE_RATE_96KHZ;
478 break;
479 case 176400:
480 rate = HDMI_SAMPLE_RATE_176_4KHZ;
481 break;
482 case 192000:
483 rate = HDMI_SAMPLE_RATE_192KHZ;
484 break;
485 default:
Mamta Shukla6a41da12018-10-20 23:19:26 +0530486 DRM_DEV_ERROR(dev, "rate[%d] not supported!\n",
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100487 params->sample_rate);
488 return -EINVAL;
489 }
490
491 msm_hdmi_audio_set_sample_rate(hdmi, rate);
492 msm_hdmi_audio_info_setup(hdmi, 1, chan, channel_allocation,
493 level_shift, down_mix);
494
495 return 0;
496}
497
498static void msm_hdmi_audio_shutdown(struct device *dev, void *data)
499{
500 struct hdmi *hdmi = dev_get_drvdata(dev);
501
502 msm_hdmi_audio_info_setup(hdmi, 0, 0, 0, 0, 0);
503}
504
505static const struct hdmi_codec_ops msm_hdmi_audio_codec_ops = {
506 .hw_params = msm_hdmi_audio_hw_params,
507 .audio_shutdown = msm_hdmi_audio_shutdown,
508};
509
510static struct hdmi_codec_pdata codec_data = {
511 .ops = &msm_hdmi_audio_codec_ops,
512 .max_i2s_channels = 8,
513 .i2s = 1,
514};
515
516static int msm_hdmi_register_audio_driver(struct hdmi *hdmi, struct device *dev)
517{
518 hdmi->audio_pdev = platform_device_register_data(dev,
519 HDMI_CODEC_DRV_NAME,
520 PLATFORM_DEVID_AUTO,
521 &codec_data,
522 sizeof(codec_data));
Wei Yongjun06f32172016-07-12 11:06:52 +0000523 return PTR_ERR_OR_ZERO(hdmi->audio_pdev);
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100524}
525
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100526static int msm_hdmi_bind(struct device *dev, struct device *master, void *data)
Rob Clarkc8afe682013-06-26 12:44:06 -0400527{
AngeloGioacchino Del Regnoec919e62021-12-01 11:52:09 +0100528 struct msm_drm_private *priv = dev_get_drvdata(master);
YueHaibing67146512018-11-14 09:55:34 +0000529 struct hdmi_platform_config *hdmi_cfg;
Rob Clark067fef32014-11-04 13:33:14 -0500530 struct hdmi *hdmi;
Rob Clark060530f2014-03-03 14:19:12 -0500531 struct device_node *of_node = dev->of_node;
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100532 int i, err;
Rob Clarkdada25b2013-12-01 12:12:54 -0500533
Archit Taneja1fd6a442015-10-30 12:35:55 +0530534 hdmi_cfg = (struct hdmi_platform_config *)
535 of_device_get_match_data(dev);
536 if (!hdmi_cfg) {
Mamta Shukla6a41da12018-10-20 23:19:26 +0530537 DRM_DEV_ERROR(dev, "unknown hdmi_cfg: %pOFn\n", of_node);
Stephane Viau5eba5d82015-01-07 16:27:27 -0500538 return -ENXIO;
Rob Clark41e69772013-12-15 16:23:05 -0500539 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500540
Stephane Viau5eba5d82015-01-07 16:27:27 -0500541 hdmi_cfg->mmio_name = "core_physical";
jilai wangc6a57a52015-04-02 17:49:01 -0400542 hdmi_cfg->qfprom_mmio_name = "qfprom_physical";
Archit Tanejadc50f7822016-02-25 11:22:36 +0530543
544 for (i = 0; i < HDMI_MAX_NUM_GPIO; i++) {
Linus Walleija44769b2019-06-29 14:59:31 +0200545 const char *name = msm_hdmi_gpio_pdata[i].name;
546 struct gpio_desc *gpiod;
547
548 /*
549 * We are fetching the GPIO lines "as is" since the connector
550 * code is enabling and disabling the lines. Until that point
551 * the power-on default value will be kept.
552 */
553 gpiod = devm_gpiod_get_optional(dev, name, GPIOD_ASIS);
554 /* This will catch e.g. -PROBE_DEFER */
555 if (IS_ERR(gpiod))
556 return PTR_ERR(gpiod);
557 if (!gpiod) {
558 /* Try a second time, stripping down the name */
559 char name3[32];
560
561 /*
562 * Try again after stripping out the "qcom,hdmi-tx"
563 * prefix. This is mainly to match "hpd-gpios" used
564 * in the upstream bindings.
565 */
566 if (sscanf(name, "qcom,hdmi-tx-%s", name3))
567 gpiod = devm_gpiod_get_optional(dev, name3, GPIOD_ASIS);
568 if (IS_ERR(gpiod))
569 return PTR_ERR(gpiod);
570 if (!gpiod)
571 DBG("failed to get gpio: %s", name);
572 }
573 hdmi_cfg->gpios[i].gpiod = gpiod;
574 if (gpiod)
575 gpiod_set_consumer_name(gpiod, msm_hdmi_gpio_pdata[i].label);
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100576 hdmi_cfg->gpios[i].output = msm_hdmi_gpio_pdata[i].output;
577 hdmi_cfg->gpios[i].value = msm_hdmi_gpio_pdata[i].value;
Archit Tanejadc50f7822016-02-25 11:22:36 +0530578 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500579
Stephane Viau5eba5d82015-01-07 16:27:27 -0500580 dev->platform_data = hdmi_cfg;
581
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100582 hdmi = msm_hdmi_init(to_platform_device(dev));
Rob Clark067fef32014-11-04 13:33:14 -0500583 if (IS_ERR(hdmi))
584 return PTR_ERR(hdmi);
Rob Clarkd1a717b2014-11-18 08:40:44 -0500585 priv->hdmi = hdmi;
Stephane Viau5eba5d82015-01-07 16:27:27 -0500586
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100587 err = msm_hdmi_register_audio_driver(hdmi, dev);
588 if (err) {
589 DRM_ERROR("Failed to attach an audio codec %d\n", err);
590 hdmi->audio_pdev = NULL;
591 }
592
Rob Clarkc8afe682013-06-26 12:44:06 -0400593 return 0;
594}
595
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100596static void msm_hdmi_unbind(struct device *dev, struct device *master,
Rob Clark060530f2014-03-03 14:19:12 -0500597 void *data)
598{
AngeloGioacchino Del Regnoec919e62021-12-01 11:52:09 +0100599 struct msm_drm_private *priv = dev_get_drvdata(master);
600
Rob Clarkd1a717b2014-11-18 08:40:44 -0500601 if (priv->hdmi) {
Srinivas Kandagatlaf1427012016-06-10 10:45:56 +0100602 if (priv->hdmi->audio_pdev)
603 platform_device_unregister(priv->hdmi->audio_pdev);
604
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100605 msm_hdmi_destroy(priv->hdmi);
Rob Clarkd1a717b2014-11-18 08:40:44 -0500606 priv->hdmi = NULL;
607 }
Rob Clark060530f2014-03-03 14:19:12 -0500608}
609
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100610static const struct component_ops msm_hdmi_ops = {
611 .bind = msm_hdmi_bind,
612 .unbind = msm_hdmi_unbind,
Rob Clark060530f2014-03-03 14:19:12 -0500613};
614
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100615static int msm_hdmi_dev_probe(struct platform_device *pdev)
Rob Clark060530f2014-03-03 14:19:12 -0500616{
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100617 return component_add(&pdev->dev, &msm_hdmi_ops);
Rob Clark060530f2014-03-03 14:19:12 -0500618}
619
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100620static int msm_hdmi_dev_remove(struct platform_device *pdev)
Rob Clarkc8afe682013-06-26 12:44:06 -0400621{
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100622 component_del(&pdev->dev, &msm_hdmi_ops);
Rob Clarkc8afe682013-06-26 12:44:06 -0400623 return 0;
624}
625
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100626static const struct of_device_id msm_hdmi_dt_match[] = {
Archit Taneja1fd6a442015-10-30 12:35:55 +0530627 { .compatible = "qcom,hdmi-tx-8996", .data = &hdmi_tx_8996_config },
628 { .compatible = "qcom,hdmi-tx-8994", .data = &hdmi_tx_8994_config },
629 { .compatible = "qcom,hdmi-tx-8084", .data = &hdmi_tx_8084_config },
630 { .compatible = "qcom,hdmi-tx-8974", .data = &hdmi_tx_8974_config },
631 { .compatible = "qcom,hdmi-tx-8960", .data = &hdmi_tx_8960_config },
632 { .compatible = "qcom,hdmi-tx-8660", .data = &hdmi_tx_8660_config },
633 {}
634};
635
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100636static struct platform_driver msm_hdmi_driver = {
637 .probe = msm_hdmi_dev_probe,
638 .remove = msm_hdmi_dev_remove,
Rob Clarkdada25b2013-12-01 12:12:54 -0500639 .driver = {
640 .name = "hdmi_msm",
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100641 .of_match_table = msm_hdmi_dt_match,
Rob Clarkdada25b2013-12-01 12:12:54 -0500642 },
Rob Clarkc8afe682013-06-26 12:44:06 -0400643};
644
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100645void __init msm_hdmi_register(void)
Rob Clarkc8afe682013-06-26 12:44:06 -0400646{
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100647 msm_hdmi_phy_driver_register();
648 platform_driver_register(&msm_hdmi_driver);
Rob Clarkc8afe682013-06-26 12:44:06 -0400649}
650
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100651void __exit msm_hdmi_unregister(void)
Rob Clarkc8afe682013-06-26 12:44:06 -0400652{
Arnd Bergmannfcda50c2016-02-22 22:08:35 +0100653 platform_driver_unregister(&msm_hdmi_driver);
654 msm_hdmi_phy_driver_unregister();
Rob Clarkc8afe682013-06-26 12:44:06 -0400655}