blob: 68cc3cdefe921515606f5a130b7b0fa44e1d1627 [file] [log] [blame]
Rob Clarkc8afe682013-06-26 12:44:06 -04001/*
Stephane Viau5eba5d82015-01-07 16:27:27 -05002 * Copyright (c) 2014 The Linux Foundation. All rights reserved.
Rob Clarkc8afe682013-06-26 12:44:06 -04003 * Copyright (C) 2013 Red Hat
4 * Author: Rob Clark <robdclark@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
Rob Clarkf6a8eac2014-11-17 15:28:07 -050019#include <linux/of_irq.h>
Archit Taneja1fd6a442015-10-30 12:35:55 +053020#include <linux/of_gpio.h>
21
Rob Clarkc8afe682013-06-26 12:44:06 -040022#include "hdmi.h"
23
Rob Clarkc8afe682013-06-26 12:44:06 -040024void hdmi_set_mode(struct hdmi *hdmi, bool power_on)
25{
26 uint32_t ctrl = 0;
jilai wangc6a57a52015-04-02 17:49:01 -040027 unsigned long flags;
Rob Clarkc8afe682013-06-26 12:44:06 -040028
jilai wangc6a57a52015-04-02 17:49:01 -040029 spin_lock_irqsave(&hdmi->reg_lock, flags);
Rob Clarkc8afe682013-06-26 12:44:06 -040030 if (power_on) {
31 ctrl |= HDMI_CTRL_ENABLE;
32 if (!hdmi->hdmi_mode) {
33 ctrl |= HDMI_CTRL_HDMI;
34 hdmi_write(hdmi, REG_HDMI_CTRL, ctrl);
35 ctrl &= ~HDMI_CTRL_HDMI;
36 } else {
37 ctrl |= HDMI_CTRL_HDMI;
38 }
39 } else {
40 ctrl = HDMI_CTRL_HDMI;
41 }
42
43 hdmi_write(hdmi, REG_HDMI_CTRL, ctrl);
jilai wangc6a57a52015-04-02 17:49:01 -040044 spin_unlock_irqrestore(&hdmi->reg_lock, flags);
Rob Clarkc8afe682013-06-26 12:44:06 -040045 DBG("HDMI Core: %s, HDMI_CTRL=0x%08x",
46 power_on ? "Enable" : "Disable", ctrl);
47}
48
Rob Clarkf6a8eac2014-11-17 15:28:07 -050049static irqreturn_t hdmi_irq(int irq, void *dev_id)
Rob Clarkc8afe682013-06-26 12:44:06 -040050{
51 struct hdmi *hdmi = dev_id;
52
53 /* Process HPD: */
54 hdmi_connector_irq(hdmi->connector);
55
56 /* Process DDC: */
57 hdmi_i2c_irq(hdmi->i2c);
58
jilai wangc6a57a52015-04-02 17:49:01 -040059 /* Process HDCP: */
60 if (hdmi->hdcp_ctrl)
61 hdmi_hdcp_irq(hdmi->hdcp_ctrl);
62
Rob Clarkc8afe682013-06-26 12:44:06 -040063 /* TODO audio.. */
64
65 return IRQ_HANDLED;
66}
67
Rob Clarkd1a717b2014-11-18 08:40:44 -050068static void hdmi_destroy(struct hdmi *hdmi)
Rob Clarkc8afe682013-06-26 12:44:06 -040069{
70 struct hdmi_phy *phy = hdmi->phy;
71
jilai wangc6a57a52015-04-02 17:49:01 -040072 /*
73 * at this point, hpd has been disabled,
74 * after flush workq, it's safe to deinit hdcp
75 */
76 if (hdmi->workq) {
77 flush_workqueue(hdmi->workq);
78 destroy_workqueue(hdmi->workq);
79 }
80 hdmi_hdcp_destroy(hdmi);
Rob Clarkc8afe682013-06-26 12:44:06 -040081 if (phy)
82 phy->funcs->destroy(phy);
83
84 if (hdmi->i2c)
85 hdmi_i2c_destroy(hdmi->i2c);
86
Rob Clarkc0c0d9e2013-12-11 14:44:02 -050087 platform_set_drvdata(hdmi->pdev, NULL);
Rob Clarkc8afe682013-06-26 12:44:06 -040088}
89
Rob Clark067fef32014-11-04 13:33:14 -050090/* construct hdmi at bind/probe time, grab all the resources. If
91 * we are to EPROBE_DEFER we want to do it here, rather than later
92 * at modeset_init() time
93 */
94static struct hdmi *hdmi_init(struct platform_device *pdev)
Rob Clarkc8afe682013-06-26 12:44:06 -040095{
Rob Clark067fef32014-11-04 13:33:14 -050096 struct hdmi_platform_config *config = pdev->dev.platform_data;
Rob Clarka3376e32013-08-30 13:02:15 -040097 struct hdmi *hdmi = NULL;
jilai wangc6a57a52015-04-02 17:49:01 -040098 struct resource *res;
Rob Clarkdada25b2013-12-01 12:12:54 -050099 int i, ret;
Rob Clarkc8afe682013-06-26 12:44:06 -0400100
Rob Clark067fef32014-11-04 13:33:14 -0500101 hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL);
Rob Clarka3376e32013-08-30 13:02:15 -0400102 if (!hdmi) {
103 ret = -ENOMEM;
104 goto fail;
105 }
106
Rob Clarkc8afe682013-06-26 12:44:06 -0400107 hdmi->pdev = pdev;
Rob Clarkdada25b2013-12-01 12:12:54 -0500108 hdmi->config = config;
jilai wangc6a57a52015-04-02 17:49:01 -0400109 spin_lock_init(&hdmi->reg_lock);
Rob Clarkc0c0d9e2013-12-11 14:44:02 -0500110
Rob Clarkc8afe682013-06-26 12:44:06 -0400111 /* not sure about which phy maps to which msm.. probably I miss some */
Stephane Viau3a84f842015-06-19 16:04:47 -0400112 if (config->phy_init) {
Rob Clarkc8afe682013-06-26 12:44:06 -0400113 hdmi->phy = config->phy_init(hdmi);
Rob Clarkc8afe682013-06-26 12:44:06 -0400114
Stephane Viau3a84f842015-06-19 16:04:47 -0400115 if (IS_ERR(hdmi->phy)) {
116 ret = PTR_ERR(hdmi->phy);
117 dev_err(&pdev->dev, "failed to load phy: %d\n", ret);
118 hdmi->phy = NULL;
119 goto fail;
120 }
Rob Clarkc8afe682013-06-26 12:44:06 -0400121 }
122
Rob Clarkdada25b2013-12-01 12:12:54 -0500123 hdmi->mmio = msm_ioremap(pdev, config->mmio_name, "HDMI");
Rob Clarkc8afe682013-06-26 12:44:06 -0400124 if (IS_ERR(hdmi->mmio)) {
125 ret = PTR_ERR(hdmi->mmio);
126 goto fail;
127 }
128
jilai wangc6a57a52015-04-02 17:49:01 -0400129 /* HDCP needs physical address of hdmi register */
130 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
131 config->mmio_name);
132 hdmi->mmio_phy_addr = res->start;
133
134 hdmi->qfprom_mmio = msm_ioremap(pdev,
135 config->qfprom_mmio_name, "HDMI_QFPROM");
136 if (IS_ERR(hdmi->qfprom_mmio)) {
137 dev_info(&pdev->dev, "can't find qfprom resource\n");
138 hdmi->qfprom_mmio = NULL;
139 }
140
Stephane Viau447fa522015-01-13 14:33:40 -0500141 hdmi->hpd_regs = devm_kzalloc(&pdev->dev, sizeof(hdmi->hpd_regs[0]) *
142 config->hpd_reg_cnt, GFP_KERNEL);
143 if (!hdmi->hpd_regs) {
144 ret = -ENOMEM;
145 goto fail;
146 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500147 for (i = 0; i < config->hpd_reg_cnt; i++) {
148 struct regulator *reg;
149
Rob Clark3e875992014-08-01 13:08:11 -0400150 reg = devm_regulator_get(&pdev->dev,
Rob Clark41e69772013-12-15 16:23:05 -0500151 config->hpd_reg_names[i]);
Rob Clarkdada25b2013-12-01 12:12:54 -0500152 if (IS_ERR(reg)) {
153 ret = PTR_ERR(reg);
Rob Clark067fef32014-11-04 13:33:14 -0500154 dev_err(&pdev->dev, "failed to get hpd regulator: %s (%d)\n",
Rob Clarkdada25b2013-12-01 12:12:54 -0500155 config->hpd_reg_names[i], ret);
156 goto fail;
157 }
158
159 hdmi->hpd_regs[i] = reg;
Rob Clarkc8afe682013-06-26 12:44:06 -0400160 }
161
Stephane Viau447fa522015-01-13 14:33:40 -0500162 hdmi->pwr_regs = devm_kzalloc(&pdev->dev, sizeof(hdmi->pwr_regs[0]) *
163 config->pwr_reg_cnt, GFP_KERNEL);
164 if (!hdmi->pwr_regs) {
165 ret = -ENOMEM;
166 goto fail;
167 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500168 for (i = 0; i < config->pwr_reg_cnt; i++) {
169 struct regulator *reg;
Rob Clarkc8afe682013-06-26 12:44:06 -0400170
Rob Clark3e875992014-08-01 13:08:11 -0400171 reg = devm_regulator_get(&pdev->dev,
Rob Clark41e69772013-12-15 16:23:05 -0500172 config->pwr_reg_names[i]);
Rob Clarkdada25b2013-12-01 12:12:54 -0500173 if (IS_ERR(reg)) {
174 ret = PTR_ERR(reg);
Rob Clark067fef32014-11-04 13:33:14 -0500175 dev_err(&pdev->dev, "failed to get pwr regulator: %s (%d)\n",
Rob Clarkdada25b2013-12-01 12:12:54 -0500176 config->pwr_reg_names[i], ret);
177 goto fail;
178 }
179
180 hdmi->pwr_regs[i] = reg;
Rob Clarkc8afe682013-06-26 12:44:06 -0400181 }
182
Stephane Viau447fa522015-01-13 14:33:40 -0500183 hdmi->hpd_clks = devm_kzalloc(&pdev->dev, sizeof(hdmi->hpd_clks[0]) *
184 config->hpd_clk_cnt, GFP_KERNEL);
185 if (!hdmi->hpd_clks) {
186 ret = -ENOMEM;
187 goto fail;
188 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500189 for (i = 0; i < config->hpd_clk_cnt; i++) {
190 struct clk *clk;
191
192 clk = devm_clk_get(&pdev->dev, config->hpd_clk_names[i]);
193 if (IS_ERR(clk)) {
194 ret = PTR_ERR(clk);
Rob Clark067fef32014-11-04 13:33:14 -0500195 dev_err(&pdev->dev, "failed to get hpd clk: %s (%d)\n",
Rob Clarkdada25b2013-12-01 12:12:54 -0500196 config->hpd_clk_names[i], ret);
197 goto fail;
198 }
199
200 hdmi->hpd_clks[i] = clk;
Rob Clarkc8afe682013-06-26 12:44:06 -0400201 }
202
Stephane Viau447fa522015-01-13 14:33:40 -0500203 hdmi->pwr_clks = devm_kzalloc(&pdev->dev, sizeof(hdmi->pwr_clks[0]) *
204 config->pwr_clk_cnt, GFP_KERNEL);
205 if (!hdmi->pwr_clks) {
206 ret = -ENOMEM;
207 goto fail;
208 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500209 for (i = 0; i < config->pwr_clk_cnt; i++) {
210 struct clk *clk;
211
212 clk = devm_clk_get(&pdev->dev, config->pwr_clk_names[i]);
213 if (IS_ERR(clk)) {
214 ret = PTR_ERR(clk);
Rob Clark067fef32014-11-04 13:33:14 -0500215 dev_err(&pdev->dev, "failed to get pwr clk: %s (%d)\n",
Rob Clarkdada25b2013-12-01 12:12:54 -0500216 config->pwr_clk_names[i], ret);
217 goto fail;
218 }
219
220 hdmi->pwr_clks[i] = clk;
Rob Clarkc8afe682013-06-26 12:44:06 -0400221 }
222
jilai wangc6a57a52015-04-02 17:49:01 -0400223 hdmi->workq = alloc_ordered_workqueue("msm_hdmi", 0);
224
Rob Clarkc8afe682013-06-26 12:44:06 -0400225 hdmi->i2c = hdmi_i2c_init(hdmi);
226 if (IS_ERR(hdmi->i2c)) {
227 ret = PTR_ERR(hdmi->i2c);
Rob Clark067fef32014-11-04 13:33:14 -0500228 dev_err(&pdev->dev, "failed to get i2c: %d\n", ret);
Rob Clarkc8afe682013-06-26 12:44:06 -0400229 hdmi->i2c = NULL;
230 goto fail;
231 }
232
jilai wangc6a57a52015-04-02 17:49:01 -0400233 hdmi->hdcp_ctrl = hdmi_hdcp_init(hdmi);
234 if (IS_ERR(hdmi->hdcp_ctrl)) {
235 dev_warn(&pdev->dev, "failed to init hdcp: disabled\n");
236 hdmi->hdcp_ctrl = NULL;
237 }
238
Rob Clark067fef32014-11-04 13:33:14 -0500239 return hdmi;
240
241fail:
242 if (hdmi)
Rob Clarkd1a717b2014-11-18 08:40:44 -0500243 hdmi_destroy(hdmi);
Rob Clark067fef32014-11-04 13:33:14 -0500244
245 return ERR_PTR(ret);
246}
247
248/* Second part of initialization, the drm/kms level modeset_init,
249 * constructs/initializes mode objects, etc, is called from master
250 * driver (not hdmi sub-device's probe/bind!)
251 *
252 * Any resource (regulator/clk/etc) which could be missing at boot
253 * should be handled in hdmi_init() so that failure happens from
254 * hdmi sub-device's probe.
255 */
256int hdmi_modeset_init(struct hdmi *hdmi,
257 struct drm_device *dev, struct drm_encoder *encoder)
258{
259 struct msm_drm_private *priv = dev->dev_private;
260 struct platform_device *pdev = hdmi->pdev;
Rob Clark067fef32014-11-04 13:33:14 -0500261 int ret;
262
263 hdmi->dev = dev;
264 hdmi->encoder = encoder;
265
266 hdmi_audio_infoframe_init(&hdmi->audio.infoframe);
267
Rob Clarka3376e32013-08-30 13:02:15 -0400268 hdmi->bridge = hdmi_bridge_init(hdmi);
269 if (IS_ERR(hdmi->bridge)) {
270 ret = PTR_ERR(hdmi->bridge);
271 dev_err(dev->dev, "failed to create HDMI bridge: %d\n", ret);
272 hdmi->bridge = NULL;
273 goto fail;
274 }
275
276 hdmi->connector = hdmi_connector_init(hdmi);
277 if (IS_ERR(hdmi->connector)) {
278 ret = PTR_ERR(hdmi->connector);
279 dev_err(dev->dev, "failed to create HDMI connector: %d\n", ret);
280 hdmi->connector = NULL;
281 goto fail;
282 }
283
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500284 hdmi->irq = irq_of_parse_and_map(pdev->dev.of_node, 0);
285 if (hdmi->irq < 0) {
286 ret = hdmi->irq;
287 dev_err(dev->dev, "failed to get irq: %d\n", ret);
288 goto fail;
289 }
Rob Clarkc8afe682013-06-26 12:44:06 -0400290
Rob Clarkf6a8eac2014-11-17 15:28:07 -0500291 ret = devm_request_irq(&pdev->dev, hdmi->irq,
292 hdmi_irq, IRQF_TRIGGER_HIGH | IRQF_ONESHOT,
293 "hdmi_isr", hdmi);
294 if (ret < 0) {
295 dev_err(dev->dev, "failed to request IRQ%u: %d\n",
296 hdmi->irq, ret);
297 goto fail;
Rob Clarkc8afe682013-06-26 12:44:06 -0400298 }
299
Rob Clarka3376e32013-08-30 13:02:15 -0400300 encoder->bridge = hdmi->bridge;
301
302 priv->bridges[priv->num_bridges++] = hdmi->bridge;
303 priv->connectors[priv->num_connectors++] = hdmi->connector;
304
Rob Clarkc0c0d9e2013-12-11 14:44:02 -0500305 platform_set_drvdata(pdev, hdmi);
306
Rob Clark067fef32014-11-04 13:33:14 -0500307 return 0;
Rob Clarkc8afe682013-06-26 12:44:06 -0400308
309fail:
Ajay Kumar3d3f8b12015-01-20 22:08:44 +0530310 /* bridge is normally destroyed by drm: */
Rob Clark067fef32014-11-04 13:33:14 -0500311 if (hdmi->bridge) {
Ajay Kumar3d3f8b12015-01-20 22:08:44 +0530312 hdmi_bridge_destroy(hdmi->bridge);
Rob Clark067fef32014-11-04 13:33:14 -0500313 hdmi->bridge = NULL;
314 }
315 if (hdmi->connector) {
316 hdmi->connector->funcs->destroy(hdmi->connector);
317 hdmi->connector = NULL;
Rob Clarka3376e32013-08-30 13:02:15 -0400318 }
Rob Clarkc8afe682013-06-26 12:44:06 -0400319
Rob Clark067fef32014-11-04 13:33:14 -0500320 return ret;
Rob Clarkc8afe682013-06-26 12:44:06 -0400321}
322
323/*
324 * The hdmi device:
325 */
326
Stephane Viau5eba5d82015-01-07 16:27:27 -0500327#define HDMI_CFG(item, entry) \
328 .item ## _names = item ##_names_ ## entry, \
329 .item ## _cnt = ARRAY_SIZE(item ## _names_ ## entry)
330
Stephane Viau0afbe592015-09-15 08:41:49 -0400331static const char *pwr_reg_names_none[] = {};
332static const char *hpd_reg_names_none[] = {};
333
Stephane Viau5eba5d82015-01-07 16:27:27 -0500334static struct hdmi_platform_config hdmi_tx_8660_config = {
335 .phy_init = hdmi_phy_8x60_init,
336};
337
338static const char *hpd_reg_names_8960[] = {"core-vdda", "hdmi-mux"};
339static const char *hpd_clk_names_8960[] = {"core_clk", "master_iface_clk", "slave_iface_clk"};
340
341static struct hdmi_platform_config hdmi_tx_8960_config = {
342 .phy_init = hdmi_phy_8960_init,
343 HDMI_CFG(hpd_reg, 8960),
344 HDMI_CFG(hpd_clk, 8960),
345};
346
347static const char *pwr_reg_names_8x74[] = {"core-vdda", "core-vcc"};
348static const char *hpd_reg_names_8x74[] = {"hpd-gdsc", "hpd-5v"};
349static const char *pwr_clk_names_8x74[] = {"extp_clk", "alt_iface_clk"};
350static const char *hpd_clk_names_8x74[] = {"iface_clk", "core_clk", "mdp_core_clk"};
351static unsigned long hpd_clk_freq_8x74[] = {0, 19200000, 0};
352
Rob Clark5cf3a452015-07-27 20:52:50 -0400353static struct hdmi_platform_config hdmi_tx_8974_config = {
Stephane Viau5eba5d82015-01-07 16:27:27 -0500354 .phy_init = hdmi_phy_8x74_init,
355 HDMI_CFG(pwr_reg, 8x74),
356 HDMI_CFG(hpd_reg, 8x74),
357 HDMI_CFG(pwr_clk, 8x74),
358 HDMI_CFG(hpd_clk, 8x74),
359 .hpd_freq = hpd_clk_freq_8x74,
360};
361
362static const char *hpd_reg_names_8084[] = {"hpd-gdsc", "hpd-5v", "hpd-5v-en"};
363
364static struct hdmi_platform_config hdmi_tx_8084_config = {
365 .phy_init = hdmi_phy_8x74_init,
366 HDMI_CFG(pwr_reg, 8x74),
367 HDMI_CFG(hpd_reg, 8084),
368 HDMI_CFG(pwr_clk, 8x74),
369 HDMI_CFG(hpd_clk, 8x74),
370 .hpd_freq = hpd_clk_freq_8x74,
371};
372
Rob Clark5cf3a452015-07-27 20:52:50 -0400373static struct hdmi_platform_config hdmi_tx_8994_config = {
Stephane Viau3a84f842015-06-19 16:04:47 -0400374 .phy_init = NULL, /* nothing to do for this HDMI PHY 20nm */
375 HDMI_CFG(pwr_reg, 8x74),
Stephane Viau0afbe592015-09-15 08:41:49 -0400376 HDMI_CFG(hpd_reg, none),
377 HDMI_CFG(pwr_clk, 8x74),
378 HDMI_CFG(hpd_clk, 8x74),
379 .hpd_freq = hpd_clk_freq_8x74,
380};
381
382static struct hdmi_platform_config hdmi_tx_8996_config = {
383 .phy_init = NULL,
384 HDMI_CFG(pwr_reg, none),
385 HDMI_CFG(hpd_reg, none),
Stephane Viau3a84f842015-06-19 16:04:47 -0400386 HDMI_CFG(pwr_clk, 8x74),
387 HDMI_CFG(hpd_clk, 8x74),
388 .hpd_freq = hpd_clk_freq_8x74,
389};
390
Archit Tanejadc50f7822016-02-25 11:22:36 +0530391static const struct {
392 const char *name;
393 const bool output;
394 const int value;
395 const char *label;
396} hdmi_gpio_pdata[] = {
397 { "qcom,hdmi-tx-ddc-clk", true, 1, "HDMI_DDC_CLK" },
398 { "qcom,hdmi-tx-ddc-data", true, 1, "HDMI_DDC_DATA" },
399 { "qcom,hdmi-tx-hpd", false, 1, "HDMI_HPD" },
400 { "qcom,hdmi-tx-mux-en", true, 1, "HDMI_MUX_EN" },
401 { "qcom,hdmi-tx-mux-sel", true, 0, "HDMI_MUX_SEL" },
402 { "qcom,hdmi-tx-mux-lpm", true, 1, "HDMI_MUX_LPM" },
403};
404
405static int get_gpio(struct device_node *of_node, const char *name)
Mark Charleboisfc886102014-08-29 11:05:50 -0700406{
407 int gpio = of_get_named_gpio(of_node, name, 0);
408 if (gpio < 0) {
409 char name2[32];
410 snprintf(name2, sizeof(name2), "%s-gpio", name);
411 gpio = of_get_named_gpio(of_node, name2, 0);
412 if (gpio < 0) {
Stephane Viau3a84f842015-06-19 16:04:47 -0400413 DBG("failed to get gpio: %s (%d)", name, gpio);
Mark Charleboisfc886102014-08-29 11:05:50 -0700414 gpio = -1;
415 }
416 }
417 return gpio;
418}
Mark Charleboisfc886102014-08-29 11:05:50 -0700419
Rob Clark060530f2014-03-03 14:19:12 -0500420static int hdmi_bind(struct device *dev, struct device *master, void *data)
Rob Clarkc8afe682013-06-26 12:44:06 -0400421{
Rob Clarkd1a717b2014-11-18 08:40:44 -0500422 struct drm_device *drm = dev_get_drvdata(master);
423 struct msm_drm_private *priv = drm->dev_private;
Stephane Viau5eba5d82015-01-07 16:27:27 -0500424 static struct hdmi_platform_config *hdmi_cfg;
Rob Clark067fef32014-11-04 13:33:14 -0500425 struct hdmi *hdmi;
Rob Clark060530f2014-03-03 14:19:12 -0500426 struct device_node *of_node = dev->of_node;
Archit Tanejadc50f7822016-02-25 11:22:36 +0530427 int i;
Rob Clarkdada25b2013-12-01 12:12:54 -0500428
Archit Taneja1fd6a442015-10-30 12:35:55 +0530429 hdmi_cfg = (struct hdmi_platform_config *)
430 of_device_get_match_data(dev);
431 if (!hdmi_cfg) {
432 dev_err(dev, "unknown hdmi_cfg: %s\n", of_node->name);
Stephane Viau5eba5d82015-01-07 16:27:27 -0500433 return -ENXIO;
Rob Clark41e69772013-12-15 16:23:05 -0500434 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500435
Stephane Viau5eba5d82015-01-07 16:27:27 -0500436 hdmi_cfg->mmio_name = "core_physical";
jilai wangc6a57a52015-04-02 17:49:01 -0400437 hdmi_cfg->qfprom_mmio_name = "qfprom_physical";
Archit Tanejadc50f7822016-02-25 11:22:36 +0530438
439 for (i = 0; i < HDMI_MAX_NUM_GPIO; i++) {
440 hdmi_cfg->gpios[i].num = get_gpio(of_node,
441 hdmi_gpio_pdata[i].name);
442 hdmi_cfg->gpios[i].output = hdmi_gpio_pdata[i].output;
443 hdmi_cfg->gpios[i].value = hdmi_gpio_pdata[i].value;
444 hdmi_cfg->gpios[i].label = hdmi_gpio_pdata[i].label;
445 }
Rob Clarkdada25b2013-12-01 12:12:54 -0500446
Stephane Viau5eba5d82015-01-07 16:27:27 -0500447 dev->platform_data = hdmi_cfg;
448
Rob Clark067fef32014-11-04 13:33:14 -0500449 hdmi = hdmi_init(to_platform_device(dev));
450 if (IS_ERR(hdmi))
451 return PTR_ERR(hdmi);
Rob Clarkd1a717b2014-11-18 08:40:44 -0500452 priv->hdmi = hdmi;
Stephane Viau5eba5d82015-01-07 16:27:27 -0500453
Rob Clarkc8afe682013-06-26 12:44:06 -0400454 return 0;
455}
456
Rob Clark060530f2014-03-03 14:19:12 -0500457static void hdmi_unbind(struct device *dev, struct device *master,
458 void *data)
459{
Rob Clarkd1a717b2014-11-18 08:40:44 -0500460 struct drm_device *drm = dev_get_drvdata(master);
461 struct msm_drm_private *priv = drm->dev_private;
462 if (priv->hdmi) {
463 hdmi_destroy(priv->hdmi);
464 priv->hdmi = NULL;
465 }
Rob Clark060530f2014-03-03 14:19:12 -0500466}
467
468static const struct component_ops hdmi_ops = {
469 .bind = hdmi_bind,
470 .unbind = hdmi_unbind,
471};
472
473static int hdmi_dev_probe(struct platform_device *pdev)
474{
475 return component_add(&pdev->dev, &hdmi_ops);
476}
477
Rob Clarkc8afe682013-06-26 12:44:06 -0400478static int hdmi_dev_remove(struct platform_device *pdev)
479{
Rob Clark060530f2014-03-03 14:19:12 -0500480 component_del(&pdev->dev, &hdmi_ops);
Rob Clarkc8afe682013-06-26 12:44:06 -0400481 return 0;
482}
483
Archit Taneja1fd6a442015-10-30 12:35:55 +0530484static const struct of_device_id dt_match[] = {
485 { .compatible = "qcom,hdmi-tx-8996", .data = &hdmi_tx_8996_config },
486 { .compatible = "qcom,hdmi-tx-8994", .data = &hdmi_tx_8994_config },
487 { .compatible = "qcom,hdmi-tx-8084", .data = &hdmi_tx_8084_config },
488 { .compatible = "qcom,hdmi-tx-8974", .data = &hdmi_tx_8974_config },
489 { .compatible = "qcom,hdmi-tx-8960", .data = &hdmi_tx_8960_config },
490 { .compatible = "qcom,hdmi-tx-8660", .data = &hdmi_tx_8660_config },
491 {}
492};
493
Rob Clarkc8afe682013-06-26 12:44:06 -0400494static struct platform_driver hdmi_driver = {
495 .probe = hdmi_dev_probe,
496 .remove = hdmi_dev_remove,
Rob Clarkdada25b2013-12-01 12:12:54 -0500497 .driver = {
498 .name = "hdmi_msm",
499 .of_match_table = dt_match,
500 },
Rob Clarkc8afe682013-06-26 12:44:06 -0400501};
502
503void __init hdmi_register(void)
504{
505 platform_driver_register(&hdmi_driver);
506}
507
508void __exit hdmi_unregister(void)
509{
510 platform_driver_unregister(&hdmi_driver);
511}