Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 1 | /* Copyright (C) 2011-2013 Freescale Semiconductor, Inc. |
| 2 | * |
| 3 | * derived from imx-hdmi.c(renamed to bridge/dw_hdmi.c now) |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | */ |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/platform_device.h> |
| 11 | #include <linux/component.h> |
| 12 | #include <linux/mfd/syscon.h> |
| 13 | #include <linux/mfd/syscon/imx6q-iomuxc-gpr.h> |
| 14 | #include <drm/bridge/dw_hdmi.h> |
| 15 | #include <video/imx-ipu-v3.h> |
| 16 | #include <linux/regmap.h> |
| 17 | #include <drm/drm_of.h> |
| 18 | #include <drm/drmP.h> |
| 19 | #include <drm/drm_crtc_helper.h> |
| 20 | #include <drm/drm_edid.h> |
| 21 | #include <drm/drm_encoder_slave.h> |
| 22 | |
| 23 | #include "imx-drm.h" |
| 24 | |
Liu Ying | 032003c | 2016-07-08 17:40:58 +0800 | [diff] [blame] | 25 | #define imx_enc_to_imx_hdmi(x) container_of(x, struct imx_hdmi, imx_encoder) |
| 26 | |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 27 | struct imx_hdmi { |
| 28 | struct device *dev; |
Liu Ying | 032003c | 2016-07-08 17:40:58 +0800 | [diff] [blame] | 29 | struct imx_drm_encoder imx_encoder; |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 30 | struct regmap *regmap; |
| 31 | }; |
| 32 | |
| 33 | static const struct dw_hdmi_mpll_config imx_mpll_cfg[] = { |
| 34 | { |
| 35 | 45250000, { |
| 36 | { 0x01e0, 0x0000 }, |
| 37 | { 0x21e1, 0x0000 }, |
| 38 | { 0x41e2, 0x0000 } |
| 39 | }, |
| 40 | }, { |
| 41 | 92500000, { |
| 42 | { 0x0140, 0x0005 }, |
| 43 | { 0x2141, 0x0005 }, |
| 44 | { 0x4142, 0x0005 }, |
| 45 | }, |
| 46 | }, { |
| 47 | 148500000, { |
| 48 | { 0x00a0, 0x000a }, |
| 49 | { 0x20a1, 0x000a }, |
| 50 | { 0x40a2, 0x000a }, |
| 51 | }, |
| 52 | }, { |
Lucas Stach | a5f4185 | 2015-10-15 15:42:17 +0200 | [diff] [blame] | 53 | 216000000, { |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 54 | { 0x00a0, 0x000a }, |
| 55 | { 0x2001, 0x000f }, |
| 56 | { 0x4002, 0x000f }, |
| 57 | }, |
Lucas Stach | a5f4185 | 2015-10-15 15:42:17 +0200 | [diff] [blame] | 58 | }, { |
| 59 | ~0UL, { |
| 60 | { 0x0000, 0x0000 }, |
| 61 | { 0x0000, 0x0000 }, |
| 62 | { 0x0000, 0x0000 }, |
| 63 | }, |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 64 | } |
| 65 | }; |
| 66 | |
| 67 | static const struct dw_hdmi_curr_ctrl imx_cur_ctr[] = { |
| 68 | /* pixelclk bpp8 bpp10 bpp12 */ |
| 69 | { |
| 70 | 54000000, { 0x091c, 0x091c, 0x06dc }, |
| 71 | }, { |
| 72 | 58400000, { 0x091c, 0x06dc, 0x06dc }, |
| 73 | }, { |
| 74 | 72000000, { 0x06dc, 0x06dc, 0x091c }, |
| 75 | }, { |
| 76 | 74250000, { 0x06dc, 0x0b5c, 0x091c }, |
| 77 | }, { |
| 78 | 118800000, { 0x091c, 0x091c, 0x06dc }, |
| 79 | }, { |
| 80 | 216000000, { 0x06dc, 0x0b5c, 0x091c }, |
Philipp Zabel | 6e8958e | 2015-01-07 23:49:41 +0100 | [diff] [blame] | 81 | }, { |
| 82 | ~0UL, { 0x0000, 0x0000, 0x0000 }, |
| 83 | }, |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 84 | }; |
| 85 | |
Russell King | 36b8ae0 | 2015-03-31 18:23:16 +0100 | [diff] [blame] | 86 | /* |
| 87 | * Resistance term 133Ohm Cfg |
| 88 | * PREEMP config 0.00 |
| 89 | * TX/CK level 10 |
| 90 | */ |
Yakir Yang | 034705a | 2015-03-31 23:56:10 -0400 | [diff] [blame] | 91 | static const struct dw_hdmi_phy_config imx_phy_config[] = { |
| 92 | /*pixelclk symbol term vlev */ |
Lucas Stach | a5f4185 | 2015-10-15 15:42:17 +0200 | [diff] [blame] | 93 | { 216000000, 0x800d, 0x0005, 0x01ad}, |
Yakir Yang | 034705a | 2015-03-31 23:56:10 -0400 | [diff] [blame] | 94 | { ~0UL, 0x0000, 0x0000, 0x0000} |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 95 | }; |
| 96 | |
| 97 | static int dw_hdmi_imx_parse_dt(struct imx_hdmi *hdmi) |
| 98 | { |
| 99 | struct device_node *np = hdmi->dev->of_node; |
| 100 | |
| 101 | hdmi->regmap = syscon_regmap_lookup_by_phandle(np, "gpr"); |
| 102 | if (IS_ERR(hdmi->regmap)) { |
| 103 | dev_err(hdmi->dev, "Unable to get gpr\n"); |
| 104 | return PTR_ERR(hdmi->regmap); |
| 105 | } |
| 106 | |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | static void dw_hdmi_imx_encoder_disable(struct drm_encoder *encoder) |
| 111 | { |
| 112 | } |
| 113 | |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 114 | static void dw_hdmi_imx_encoder_mode_set(struct drm_encoder *encoder, |
| 115 | struct drm_display_mode *mode, |
| 116 | struct drm_display_mode *adj_mode) |
| 117 | { |
| 118 | } |
| 119 | |
| 120 | static void dw_hdmi_imx_encoder_commit(struct drm_encoder *encoder) |
| 121 | { |
Liu Ying | 032003c | 2016-07-08 17:40:58 +0800 | [diff] [blame] | 122 | struct imx_drm_encoder *imx_encoder = enc_to_imx_enc(encoder); |
| 123 | struct imx_hdmi *hdmi = imx_enc_to_imx_hdmi(imx_encoder); |
Philipp Zabel | 53141e4 | 2015-02-24 11:41:28 +0100 | [diff] [blame] | 124 | int mux = drm_of_encoder_active_port_id(hdmi->dev->of_node, encoder); |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 125 | |
| 126 | regmap_update_bits(hdmi->regmap, IOMUXC_GPR3, |
| 127 | IMX6Q_GPR3_HDMI_MUX_CTL_MASK, |
| 128 | mux << IMX6Q_GPR3_HDMI_MUX_CTL_SHIFT); |
| 129 | } |
| 130 | |
Ville Syrjälä | 7ae847d | 2015-12-15 12:21:09 +0100 | [diff] [blame] | 131 | static const struct drm_encoder_helper_funcs dw_hdmi_imx_encoder_helper_funcs = { |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 132 | .mode_set = dw_hdmi_imx_encoder_mode_set, |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 133 | .commit = dw_hdmi_imx_encoder_commit, |
| 134 | .disable = dw_hdmi_imx_encoder_disable, |
| 135 | }; |
| 136 | |
Ville Syrjälä | 7ae847d | 2015-12-15 12:21:09 +0100 | [diff] [blame] | 137 | static const struct drm_encoder_funcs dw_hdmi_imx_encoder_funcs = { |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 138 | .destroy = drm_encoder_cleanup, |
| 139 | }; |
| 140 | |
Philipp Zabel | 081c80e | 2015-01-07 23:52:15 +0100 | [diff] [blame] | 141 | static enum drm_mode_status imx6q_hdmi_mode_valid(struct drm_connector *con, |
| 142 | struct drm_display_mode *mode) |
| 143 | { |
| 144 | if (mode->clock < 13500) |
| 145 | return MODE_CLOCK_LOW; |
Lucas Stach | a5f4185 | 2015-10-15 15:42:17 +0200 | [diff] [blame] | 146 | /* FIXME: Hardware is capable of 266MHz, but setup data is missing. */ |
| 147 | if (mode->clock > 216000) |
Philipp Zabel | 081c80e | 2015-01-07 23:52:15 +0100 | [diff] [blame] | 148 | return MODE_CLOCK_HIGH; |
| 149 | |
| 150 | return MODE_OK; |
| 151 | } |
| 152 | |
| 153 | static enum drm_mode_status imx6dl_hdmi_mode_valid(struct drm_connector *con, |
| 154 | struct drm_display_mode *mode) |
| 155 | { |
| 156 | if (mode->clock < 13500) |
| 157 | return MODE_CLOCK_LOW; |
Lucas Stach | a5f4185 | 2015-10-15 15:42:17 +0200 | [diff] [blame] | 158 | /* FIXME: Hardware is capable of 270MHz, but setup data is missing. */ |
| 159 | if (mode->clock > 216000) |
Philipp Zabel | 081c80e | 2015-01-07 23:52:15 +0100 | [diff] [blame] | 160 | return MODE_CLOCK_HIGH; |
| 161 | |
| 162 | return MODE_OK; |
| 163 | } |
| 164 | |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 165 | static struct dw_hdmi_plat_data imx6q_hdmi_drv_data = { |
Philipp Zabel | 081c80e | 2015-01-07 23:52:15 +0100 | [diff] [blame] | 166 | .mpll_cfg = imx_mpll_cfg, |
| 167 | .cur_ctr = imx_cur_ctr, |
Yakir Yang | 034705a | 2015-03-31 23:56:10 -0400 | [diff] [blame] | 168 | .phy_config = imx_phy_config, |
Philipp Zabel | 081c80e | 2015-01-07 23:52:15 +0100 | [diff] [blame] | 169 | .dev_type = IMX6Q_HDMI, |
| 170 | .mode_valid = imx6q_hdmi_mode_valid, |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 171 | }; |
| 172 | |
| 173 | static struct dw_hdmi_plat_data imx6dl_hdmi_drv_data = { |
| 174 | .mpll_cfg = imx_mpll_cfg, |
| 175 | .cur_ctr = imx_cur_ctr, |
Yakir Yang | 034705a | 2015-03-31 23:56:10 -0400 | [diff] [blame] | 176 | .phy_config = imx_phy_config, |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 177 | .dev_type = IMX6DL_HDMI, |
Philipp Zabel | 081c80e | 2015-01-07 23:52:15 +0100 | [diff] [blame] | 178 | .mode_valid = imx6dl_hdmi_mode_valid, |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | static const struct of_device_id dw_hdmi_imx_dt_ids[] = { |
| 182 | { .compatible = "fsl,imx6q-hdmi", |
| 183 | .data = &imx6q_hdmi_drv_data |
| 184 | }, { |
| 185 | .compatible = "fsl,imx6dl-hdmi", |
| 186 | .data = &imx6dl_hdmi_drv_data |
| 187 | }, |
| 188 | {}, |
| 189 | }; |
| 190 | MODULE_DEVICE_TABLE(of, dw_hdmi_imx_dt_ids); |
| 191 | |
| 192 | static int dw_hdmi_imx_bind(struct device *dev, struct device *master, |
| 193 | void *data) |
| 194 | { |
| 195 | struct platform_device *pdev = to_platform_device(dev); |
| 196 | const struct dw_hdmi_plat_data *plat_data; |
| 197 | const struct of_device_id *match; |
| 198 | struct drm_device *drm = data; |
| 199 | struct drm_encoder *encoder; |
| 200 | struct imx_hdmi *hdmi; |
| 201 | struct resource *iores; |
| 202 | int irq; |
| 203 | int ret; |
| 204 | |
| 205 | if (!pdev->dev.of_node) |
| 206 | return -ENODEV; |
| 207 | |
| 208 | hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL); |
| 209 | if (!hdmi) |
| 210 | return -ENOMEM; |
| 211 | |
| 212 | match = of_match_node(dw_hdmi_imx_dt_ids, pdev->dev.of_node); |
| 213 | plat_data = match->data; |
| 214 | hdmi->dev = &pdev->dev; |
Liu Ying | 032003c | 2016-07-08 17:40:58 +0800 | [diff] [blame] | 215 | encoder = &hdmi->imx_encoder.encoder; |
| 216 | hdmi->imx_encoder.bus_format = MEDIA_BUS_FMT_RGB888_1X24; |
| 217 | hdmi->imx_encoder.di_hsync_pin = 2; |
| 218 | hdmi->imx_encoder.di_vsync_pin = 3; |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 219 | |
| 220 | irq = platform_get_irq(pdev, 0); |
| 221 | if (irq < 0) |
| 222 | return irq; |
| 223 | |
| 224 | iores = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 225 | if (!iores) |
| 226 | return -ENXIO; |
| 227 | |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 228 | encoder->possible_crtcs = drm_of_find_possible_crtcs(drm, dev->of_node); |
| 229 | /* |
| 230 | * If we failed to find the CRTC(s) which this encoder is |
| 231 | * supposed to be connected to, it's because the CRTC has |
| 232 | * not been registered yet. Defer probing, and hope that |
| 233 | * the required CRTC is added later. |
| 234 | */ |
| 235 | if (encoder->possible_crtcs == 0) |
| 236 | return -EPROBE_DEFER; |
| 237 | |
| 238 | ret = dw_hdmi_imx_parse_dt(hdmi); |
| 239 | if (ret < 0) |
| 240 | return ret; |
| 241 | |
| 242 | drm_encoder_helper_add(encoder, &dw_hdmi_imx_encoder_helper_funcs); |
| 243 | drm_encoder_init(drm, encoder, &dw_hdmi_imx_encoder_funcs, |
Ville Syrjälä | 13a3d91 | 2015-12-09 16:20:18 +0200 | [diff] [blame] | 244 | DRM_MODE_ENCODER_TMDS, NULL); |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 245 | |
Douglas Anderson | 788c8dd | 2016-03-07 14:00:51 -0800 | [diff] [blame] | 246 | ret = dw_hdmi_bind(dev, master, data, encoder, iores, irq, plat_data); |
| 247 | |
| 248 | /* |
| 249 | * If dw_hdmi_bind() fails we'll never call dw_hdmi_unbind(), |
| 250 | * which would have called the encoder cleanup. Do it manually. |
| 251 | */ |
| 252 | if (ret) |
| 253 | drm_encoder_cleanup(encoder); |
| 254 | |
| 255 | return ret; |
Andy Yan | b21f4b6 | 2014-12-05 14:26:31 +0800 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | static void dw_hdmi_imx_unbind(struct device *dev, struct device *master, |
| 259 | void *data) |
| 260 | { |
| 261 | return dw_hdmi_unbind(dev, master, data); |
| 262 | } |
| 263 | |
| 264 | static const struct component_ops dw_hdmi_imx_ops = { |
| 265 | .bind = dw_hdmi_imx_bind, |
| 266 | .unbind = dw_hdmi_imx_unbind, |
| 267 | }; |
| 268 | |
| 269 | static int dw_hdmi_imx_probe(struct platform_device *pdev) |
| 270 | { |
| 271 | return component_add(&pdev->dev, &dw_hdmi_imx_ops); |
| 272 | } |
| 273 | |
| 274 | static int dw_hdmi_imx_remove(struct platform_device *pdev) |
| 275 | { |
| 276 | component_del(&pdev->dev, &dw_hdmi_imx_ops); |
| 277 | |
| 278 | return 0; |
| 279 | } |
| 280 | |
| 281 | static struct platform_driver dw_hdmi_imx_platform_driver = { |
| 282 | .probe = dw_hdmi_imx_probe, |
| 283 | .remove = dw_hdmi_imx_remove, |
| 284 | .driver = { |
| 285 | .name = "dwhdmi-imx", |
| 286 | .of_match_table = dw_hdmi_imx_dt_ids, |
| 287 | }, |
| 288 | }; |
| 289 | |
| 290 | module_platform_driver(dw_hdmi_imx_platform_driver); |
| 291 | |
| 292 | MODULE_AUTHOR("Andy Yan <andy.yan@rock-chips.com>"); |
| 293 | MODULE_AUTHOR("Yakir Yang <ykk@rock-chips.com>"); |
| 294 | MODULE_DESCRIPTION("IMX6 Specific DW-HDMI Driver Extension"); |
| 295 | MODULE_LICENSE("GPL"); |
| 296 | MODULE_ALIAS("platform:dwhdmi-imx"); |