.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Copyright (C) 2016 BayLibre, SAS |
---|
3 | 4 | * Author: Neil Armstrong <narmstrong@baylibre.com> |
---|
4 | 5 | * Copyright (C) 2015 Amlogic, Inc. All rights reserved. |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or |
---|
7 | | - * modify it under the terms of the GNU General Public License as |
---|
8 | | - * published by the Free Software Foundation; either version 2 of the |
---|
9 | | - * License, or (at your option) any later version. |
---|
10 | | - * |
---|
11 | | - * This program is distributed in the hope that it will be useful, but |
---|
12 | | - * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
14 | | - * General Public License for more details. |
---|
15 | | - * |
---|
16 | | - * You should have received a copy of the GNU General Public License |
---|
17 | | - * along with this program; if not, see <http://www.gnu.org/licenses/>. |
---|
18 | 6 | */ |
---|
19 | 7 | |
---|
| 8 | +#include <linux/clk.h> |
---|
| 9 | +#include <linux/component.h> |
---|
20 | 10 | #include <linux/kernel.h> |
---|
21 | 11 | #include <linux/module.h> |
---|
22 | | -#include <linux/component.h> |
---|
| 12 | +#include <linux/of_device.h> |
---|
23 | 13 | #include <linux/of_graph.h> |
---|
24 | | -#include <linux/reset.h> |
---|
25 | | -#include <linux/clk.h> |
---|
26 | 14 | #include <linux/regulator/consumer.h> |
---|
| 15 | +#include <linux/reset.h> |
---|
27 | 16 | |
---|
28 | | -#include <drm/drmP.h> |
---|
29 | | -#include <drm/drm_edid.h> |
---|
30 | | -#include <drm/drm_crtc_helper.h> |
---|
31 | | -#include <drm/drm_atomic_helper.h> |
---|
32 | 17 | #include <drm/bridge/dw_hdmi.h> |
---|
| 18 | +#include <drm/drm_atomic_helper.h> |
---|
| 19 | +#include <drm/drm_bridge.h> |
---|
| 20 | +#include <drm/drm_device.h> |
---|
| 21 | +#include <drm/drm_edid.h> |
---|
| 22 | +#include <drm/drm_probe_helper.h> |
---|
| 23 | +#include <drm/drm_print.h> |
---|
33 | 24 | |
---|
34 | | -#include <uapi/linux/media-bus-format.h> |
---|
35 | | -#include <uapi/linux/videodev2.h> |
---|
| 25 | +#include <linux/media-bus-format.h> |
---|
| 26 | +#include <linux/videodev2.h> |
---|
36 | 27 | |
---|
37 | 28 | #include "meson_drv.h" |
---|
38 | | -#include "meson_venc.h" |
---|
39 | | -#include "meson_vclk.h" |
---|
40 | 29 | #include "meson_dw_hdmi.h" |
---|
41 | 30 | #include "meson_registers.h" |
---|
| 31 | +#include "meson_vclk.h" |
---|
| 32 | +#include "meson_venc.h" |
---|
42 | 33 | |
---|
43 | 34 | #define DRIVER_NAME "meson-dw-hdmi" |
---|
44 | 35 | #define DRIVER_DESC "Amlogic Meson HDMI-TX DRM driver" |
---|
.. | .. |
---|
105 | 96 | #define HDMITX_TOP_ADDR_REG 0x0 |
---|
106 | 97 | #define HDMITX_TOP_DATA_REG 0x4 |
---|
107 | 98 | #define HDMITX_TOP_CTRL_REG 0x8 |
---|
| 99 | +#define HDMITX_TOP_G12A_OFFSET 0x8000 |
---|
108 | 100 | |
---|
109 | 101 | /* Controller Communication Channel */ |
---|
110 | 102 | #define HDMITX_DWC_ADDR_REG 0x10 |
---|
.. | .. |
---|
118 | 110 | #define HHI_HDMI_PHY_CNTL1 0x3a4 /* 0xe9 */ |
---|
119 | 111 | #define HHI_HDMI_PHY_CNTL2 0x3a8 /* 0xea */ |
---|
120 | 112 | #define HHI_HDMI_PHY_CNTL3 0x3ac /* 0xeb */ |
---|
| 113 | +#define HHI_HDMI_PHY_CNTL4 0x3b0 /* 0xec */ |
---|
| 114 | +#define HHI_HDMI_PHY_CNTL5 0x3b4 /* 0xed */ |
---|
121 | 115 | |
---|
122 | 116 | static DEFINE_SPINLOCK(reg_lock); |
---|
123 | 117 | |
---|
.. | .. |
---|
127 | 121 | MESON_VENC_SOURCE_ENCP = 2, |
---|
128 | 122 | }; |
---|
129 | 123 | |
---|
| 124 | +struct meson_dw_hdmi; |
---|
| 125 | + |
---|
| 126 | +struct meson_dw_hdmi_data { |
---|
| 127 | + unsigned int (*top_read)(struct meson_dw_hdmi *dw_hdmi, |
---|
| 128 | + unsigned int addr); |
---|
| 129 | + void (*top_write)(struct meson_dw_hdmi *dw_hdmi, |
---|
| 130 | + unsigned int addr, unsigned int data); |
---|
| 131 | + unsigned int (*dwc_read)(struct meson_dw_hdmi *dw_hdmi, |
---|
| 132 | + unsigned int addr); |
---|
| 133 | + void (*dwc_write)(struct meson_dw_hdmi *dw_hdmi, |
---|
| 134 | + unsigned int addr, unsigned int data); |
---|
| 135 | +}; |
---|
| 136 | + |
---|
130 | 137 | struct meson_dw_hdmi { |
---|
131 | 138 | struct drm_encoder encoder; |
---|
| 139 | + struct drm_bridge bridge; |
---|
132 | 140 | struct dw_hdmi_plat_data dw_plat_data; |
---|
133 | 141 | struct meson_drm *priv; |
---|
134 | 142 | struct device *dev; |
---|
135 | 143 | void __iomem *hdmitx; |
---|
| 144 | + const struct meson_dw_hdmi_data *data; |
---|
136 | 145 | struct reset_control *hdmitx_apb; |
---|
137 | 146 | struct reset_control *hdmitx_ctrl; |
---|
138 | 147 | struct reset_control *hdmitx_phy; |
---|
139 | | - struct clk *hdmi_pclk; |
---|
140 | | - struct clk *venci_clk; |
---|
141 | 148 | struct regulator *hdmi_supply; |
---|
142 | 149 | u32 irq_stat; |
---|
143 | 150 | struct dw_hdmi *hdmi; |
---|
| 151 | + unsigned long output_bus_fmt; |
---|
144 | 152 | }; |
---|
145 | 153 | #define encoder_to_meson_dw_hdmi(x) \ |
---|
146 | 154 | container_of(x, struct meson_dw_hdmi, encoder) |
---|
| 155 | +#define bridge_to_meson_dw_hdmi(x) \ |
---|
| 156 | + container_of(x, struct meson_dw_hdmi, bridge) |
---|
147 | 157 | |
---|
148 | 158 | static inline int dw_hdmi_is_compatible(struct meson_dw_hdmi *dw_hdmi, |
---|
149 | 159 | const char *compat) |
---|
.. | .. |
---|
174 | 184 | return data; |
---|
175 | 185 | } |
---|
176 | 186 | |
---|
| 187 | +static unsigned int dw_hdmi_g12a_top_read(struct meson_dw_hdmi *dw_hdmi, |
---|
| 188 | + unsigned int addr) |
---|
| 189 | +{ |
---|
| 190 | + return readl(dw_hdmi->hdmitx + HDMITX_TOP_G12A_OFFSET + (addr << 2)); |
---|
| 191 | +} |
---|
| 192 | + |
---|
177 | 193 | static inline void dw_hdmi_top_write(struct meson_dw_hdmi *dw_hdmi, |
---|
178 | 194 | unsigned int addr, unsigned int data) |
---|
179 | 195 | { |
---|
.. | .. |
---|
191 | 207 | spin_unlock_irqrestore(®_lock, flags); |
---|
192 | 208 | } |
---|
193 | 209 | |
---|
| 210 | +static inline void dw_hdmi_g12a_top_write(struct meson_dw_hdmi *dw_hdmi, |
---|
| 211 | + unsigned int addr, unsigned int data) |
---|
| 212 | +{ |
---|
| 213 | + writel(data, dw_hdmi->hdmitx + HDMITX_TOP_G12A_OFFSET + (addr << 2)); |
---|
| 214 | +} |
---|
| 215 | + |
---|
194 | 216 | /* Helper to change specific bits in PHY registers */ |
---|
195 | 217 | static inline void dw_hdmi_top_write_bits(struct meson_dw_hdmi *dw_hdmi, |
---|
196 | 218 | unsigned int addr, |
---|
197 | 219 | unsigned int mask, |
---|
198 | 220 | unsigned int val) |
---|
199 | 221 | { |
---|
200 | | - unsigned int data = dw_hdmi_top_read(dw_hdmi, addr); |
---|
| 222 | + unsigned int data = dw_hdmi->data->top_read(dw_hdmi, addr); |
---|
201 | 223 | |
---|
202 | 224 | data &= ~mask; |
---|
203 | 225 | data |= val; |
---|
204 | 226 | |
---|
205 | | - dw_hdmi_top_write(dw_hdmi, addr, data); |
---|
| 227 | + dw_hdmi->data->top_write(dw_hdmi, addr, data); |
---|
206 | 228 | } |
---|
207 | 229 | |
---|
208 | 230 | static unsigned int dw_hdmi_dwc_read(struct meson_dw_hdmi *dw_hdmi, |
---|
.. | .. |
---|
226 | 248 | return data; |
---|
227 | 249 | } |
---|
228 | 250 | |
---|
| 251 | +static unsigned int dw_hdmi_g12a_dwc_read(struct meson_dw_hdmi *dw_hdmi, |
---|
| 252 | + unsigned int addr) |
---|
| 253 | +{ |
---|
| 254 | + return readb(dw_hdmi->hdmitx + addr); |
---|
| 255 | +} |
---|
| 256 | + |
---|
229 | 257 | static inline void dw_hdmi_dwc_write(struct meson_dw_hdmi *dw_hdmi, |
---|
230 | 258 | unsigned int addr, unsigned int data) |
---|
231 | 259 | { |
---|
.. | .. |
---|
243 | 271 | spin_unlock_irqrestore(®_lock, flags); |
---|
244 | 272 | } |
---|
245 | 273 | |
---|
| 274 | +static inline void dw_hdmi_g12a_dwc_write(struct meson_dw_hdmi *dw_hdmi, |
---|
| 275 | + unsigned int addr, unsigned int data) |
---|
| 276 | +{ |
---|
| 277 | + writeb(data, dw_hdmi->hdmitx + addr); |
---|
| 278 | +} |
---|
| 279 | + |
---|
246 | 280 | /* Helper to change specific bits in controller registers */ |
---|
247 | 281 | static inline void dw_hdmi_dwc_write_bits(struct meson_dw_hdmi *dw_hdmi, |
---|
248 | 282 | unsigned int addr, |
---|
249 | 283 | unsigned int mask, |
---|
250 | 284 | unsigned int val) |
---|
251 | 285 | { |
---|
252 | | - unsigned int data = dw_hdmi_dwc_read(dw_hdmi, addr); |
---|
| 286 | + unsigned int data = dw_hdmi->data->dwc_read(dw_hdmi, addr); |
---|
253 | 287 | |
---|
254 | 288 | data &= ~mask; |
---|
255 | 289 | data |= val; |
---|
256 | 290 | |
---|
257 | | - dw_hdmi_dwc_write(dw_hdmi, addr, data); |
---|
| 291 | + dw_hdmi->data->dwc_write(dw_hdmi, addr, data); |
---|
258 | 292 | } |
---|
259 | 293 | |
---|
260 | 294 | /* Bridge */ |
---|
261 | 295 | |
---|
262 | 296 | /* Setup PHY bandwidth modes */ |
---|
263 | 297 | static void meson_hdmi_phy_setup_mode(struct meson_dw_hdmi *dw_hdmi, |
---|
264 | | - struct drm_display_mode *mode) |
---|
| 298 | + const struct drm_display_mode *mode) |
---|
265 | 299 | { |
---|
266 | 300 | struct meson_drm *priv = dw_hdmi->priv; |
---|
267 | 301 | unsigned int pixel_clock = mode->clock; |
---|
| 302 | + |
---|
| 303 | + /* For 420, pixel clock is half unlike venc clock */ |
---|
| 304 | + if (dw_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24) |
---|
| 305 | + pixel_clock /= 2; |
---|
268 | 306 | |
---|
269 | 307 | if (dw_hdmi_is_compatible(dw_hdmi, "amlogic,meson-gxl-dw-hdmi") || |
---|
270 | 308 | dw_hdmi_is_compatible(dw_hdmi, "amlogic,meson-gxm-dw-hdmi")) { |
---|
.. | .. |
---|
300 | 338 | regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL0, 0x33632122); |
---|
301 | 339 | regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL3, 0x2000115b); |
---|
302 | 340 | } |
---|
| 341 | + } else if (dw_hdmi_is_compatible(dw_hdmi, |
---|
| 342 | + "amlogic,meson-g12a-dw-hdmi")) { |
---|
| 343 | + if (pixel_clock >= 371250) { |
---|
| 344 | + /* 5.94Gbps, 3.7125Gbps */ |
---|
| 345 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL0, 0x37eb65c4); |
---|
| 346 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL3, 0x2ab0ff3b); |
---|
| 347 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL5, 0x0000080b); |
---|
| 348 | + } else if (pixel_clock >= 297000) { |
---|
| 349 | + /* 2.97Gbps */ |
---|
| 350 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL0, 0x33eb6262); |
---|
| 351 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL3, 0x2ab0ff3b); |
---|
| 352 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL5, 0x00000003); |
---|
| 353 | + } else { |
---|
| 354 | + /* 1.485Gbps, and below */ |
---|
| 355 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL0, 0x33eb4242); |
---|
| 356 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL3, 0x2ab0ff3b); |
---|
| 357 | + regmap_write(priv->hhi, HHI_HDMI_PHY_CNTL5, 0x00000003); |
---|
| 358 | + } |
---|
303 | 359 | } |
---|
304 | 360 | } |
---|
305 | 361 | |
---|
.. | .. |
---|
319 | 375 | } |
---|
320 | 376 | |
---|
321 | 377 | static void dw_hdmi_set_vclk(struct meson_dw_hdmi *dw_hdmi, |
---|
322 | | - struct drm_display_mode *mode) |
---|
| 378 | + const struct drm_display_mode *mode) |
---|
323 | 379 | { |
---|
324 | 380 | struct meson_drm *priv = dw_hdmi->priv; |
---|
325 | 381 | int vic = drm_match_cea_mode(mode); |
---|
| 382 | + unsigned int phy_freq; |
---|
326 | 383 | unsigned int vclk_freq; |
---|
327 | 384 | unsigned int venc_freq; |
---|
328 | 385 | unsigned int hdmi_freq; |
---|
329 | 386 | |
---|
330 | 387 | vclk_freq = mode->clock; |
---|
331 | 388 | |
---|
| 389 | + /* For 420, pixel clock is half unlike venc clock */ |
---|
| 390 | + if (dw_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24) |
---|
| 391 | + vclk_freq /= 2; |
---|
| 392 | + |
---|
| 393 | + /* TMDS clock is pixel_clock * 10 */ |
---|
| 394 | + phy_freq = vclk_freq * 10; |
---|
| 395 | + |
---|
332 | 396 | if (!vic) { |
---|
333 | | - meson_vclk_setup(priv, MESON_VCLK_TARGET_DMT, vclk_freq, |
---|
334 | | - vclk_freq, vclk_freq, false); |
---|
| 397 | + meson_vclk_setup(priv, MESON_VCLK_TARGET_DMT, phy_freq, |
---|
| 398 | + vclk_freq, vclk_freq, vclk_freq, false); |
---|
335 | 399 | return; |
---|
336 | 400 | } |
---|
337 | 401 | |
---|
| 402 | + /* 480i/576i needs global pixel doubling */ |
---|
338 | 403 | if (mode->flags & DRM_MODE_FLAG_DBLCLK) |
---|
339 | 404 | vclk_freq *= 2; |
---|
340 | 405 | |
---|
341 | 406 | venc_freq = vclk_freq; |
---|
342 | 407 | hdmi_freq = vclk_freq; |
---|
343 | 408 | |
---|
344 | | - if (meson_venc_hdmi_venc_repeat(vic)) |
---|
| 409 | + /* VENC double pixels for 1080i, 720p and YUV420 modes */ |
---|
| 410 | + if (meson_venc_hdmi_venc_repeat(vic) || |
---|
| 411 | + dw_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24) |
---|
345 | 412 | venc_freq *= 2; |
---|
346 | 413 | |
---|
347 | 414 | vclk_freq = max(venc_freq, hdmi_freq); |
---|
.. | .. |
---|
349 | 416 | if (mode->flags & DRM_MODE_FLAG_DBLCLK) |
---|
350 | 417 | venc_freq /= 2; |
---|
351 | 418 | |
---|
352 | | - DRM_DEBUG_DRIVER("vclk:%d venc=%d hdmi=%d enci=%d\n", |
---|
353 | | - vclk_freq, venc_freq, hdmi_freq, |
---|
| 419 | + DRM_DEBUG_DRIVER("vclk:%d phy=%d venc=%d hdmi=%d enci=%d\n", |
---|
| 420 | + phy_freq, vclk_freq, venc_freq, hdmi_freq, |
---|
354 | 421 | priv->venc.hdmi_use_enci); |
---|
355 | 422 | |
---|
356 | | - meson_vclk_setup(priv, MESON_VCLK_TARGET_HDMI, vclk_freq, |
---|
| 423 | + meson_vclk_setup(priv, MESON_VCLK_TARGET_HDMI, phy_freq, vclk_freq, |
---|
357 | 424 | venc_freq, hdmi_freq, priv->venc.hdmi_use_enci); |
---|
358 | 425 | } |
---|
359 | 426 | |
---|
360 | 427 | static int dw_hdmi_phy_init(struct dw_hdmi *hdmi, void *data, |
---|
361 | | - struct drm_display_mode *mode) |
---|
| 428 | + const struct drm_display_info *display, |
---|
| 429 | + const struct drm_display_mode *mode) |
---|
362 | 430 | { |
---|
363 | 431 | struct meson_dw_hdmi *dw_hdmi = (struct meson_dw_hdmi *)data; |
---|
364 | 432 | struct meson_drm *priv = dw_hdmi->priv; |
---|
365 | 433 | unsigned int wr_clk = |
---|
366 | 434 | readl_relaxed(priv->io_base + _REG(VPU_HDMI_SETTING)); |
---|
367 | 435 | |
---|
368 | | - DRM_DEBUG_DRIVER("%d:\"%s\"\n", mode->base.id, mode->name); |
---|
| 436 | + DRM_DEBUG_DRIVER("\"%s\" div%d\n", mode->name, |
---|
| 437 | + mode->clock > 340000 ? 40 : 10); |
---|
369 | 438 | |
---|
370 | 439 | /* Enable clocks */ |
---|
371 | 440 | regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL, 0xffff, 0x100); |
---|
.. | .. |
---|
374 | 443 | regmap_update_bits(priv->hhi, HHI_MEM_PD_REG0, 0xff << 8, 0); |
---|
375 | 444 | |
---|
376 | 445 | /* Bring out of reset */ |
---|
377 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_SW_RESET, 0); |
---|
| 446 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_SW_RESET, 0); |
---|
378 | 447 | |
---|
379 | 448 | /* Enable internal pixclk, tmds_clk, spdif_clk, i2s_clk, cecclk */ |
---|
380 | 449 | dw_hdmi_top_write_bits(dw_hdmi, HDMITX_TOP_CLK_CNTL, |
---|
381 | 450 | 0x3, 0x3); |
---|
| 451 | + |
---|
| 452 | + /* Enable cec_clk and hdcp22_tmdsclk_en */ |
---|
382 | 453 | dw_hdmi_top_write_bits(dw_hdmi, HDMITX_TOP_CLK_CNTL, |
---|
383 | 454 | 0x3 << 4, 0x3 << 4); |
---|
384 | 455 | |
---|
385 | 456 | /* Enable normal output to PHY */ |
---|
386 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_BIST_CNTL, BIT(12)); |
---|
| 457 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_BIST_CNTL, BIT(12)); |
---|
387 | 458 | |
---|
388 | | - /* TMDS pattern setup (TOFIX pattern for 4k2k scrambling) */ |
---|
389 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_01, 0x001f001f); |
---|
390 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_23, 0x001f001f); |
---|
| 459 | + /* TMDS pattern setup */ |
---|
| 460 | + if (mode->clock > 340000 && |
---|
| 461 | + dw_hdmi->output_bus_fmt == MEDIA_BUS_FMT_YUV8_1X24) { |
---|
| 462 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_01, |
---|
| 463 | + 0); |
---|
| 464 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_23, |
---|
| 465 | + 0x03ff03ff); |
---|
| 466 | + } else { |
---|
| 467 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_01, |
---|
| 468 | + 0x001f001f); |
---|
| 469 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_23, |
---|
| 470 | + 0x001f001f); |
---|
| 471 | + } |
---|
391 | 472 | |
---|
392 | 473 | /* Load TMDS pattern */ |
---|
393 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_CNTL, 0x1); |
---|
| 474 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_CNTL, 0x1); |
---|
394 | 475 | msleep(20); |
---|
395 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_CNTL, 0x2); |
---|
| 476 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_TMDS_CLK_PTTN_CNTL, 0x2); |
---|
396 | 477 | |
---|
397 | 478 | /* Setup PHY parameters */ |
---|
398 | 479 | meson_hdmi_phy_setup_mode(dw_hdmi, mode); |
---|
.. | .. |
---|
403 | 484 | |
---|
404 | 485 | /* BIT_INVERT */ |
---|
405 | 486 | if (dw_hdmi_is_compatible(dw_hdmi, "amlogic,meson-gxl-dw-hdmi") || |
---|
406 | | - dw_hdmi_is_compatible(dw_hdmi, "amlogic,meson-gxm-dw-hdmi")) |
---|
| 487 | + dw_hdmi_is_compatible(dw_hdmi, "amlogic,meson-gxm-dw-hdmi") || |
---|
| 488 | + dw_hdmi_is_compatible(dw_hdmi, "amlogic,meson-g12a-dw-hdmi")) |
---|
407 | 489 | regmap_update_bits(priv->hhi, HHI_HDMI_PHY_CNTL1, |
---|
408 | 490 | BIT(17), 0); |
---|
409 | 491 | else |
---|
.. | .. |
---|
412 | 494 | |
---|
413 | 495 | /* Disable clock, fifo, fifo_wr */ |
---|
414 | 496 | regmap_update_bits(priv->hhi, HHI_HDMI_PHY_CNTL1, 0xf, 0); |
---|
| 497 | + |
---|
| 498 | + dw_hdmi_set_high_tmds_clock_ratio(hdmi, display); |
---|
415 | 499 | |
---|
416 | 500 | msleep(100); |
---|
417 | 501 | |
---|
.. | .. |
---|
469 | 553 | { |
---|
470 | 554 | struct meson_dw_hdmi *dw_hdmi = (struct meson_dw_hdmi *)data; |
---|
471 | 555 | |
---|
472 | | - return !!dw_hdmi_top_read(dw_hdmi, HDMITX_TOP_STAT0) ? |
---|
| 556 | + return !!dw_hdmi->data->top_read(dw_hdmi, HDMITX_TOP_STAT0) ? |
---|
473 | 557 | connector_status_connected : connector_status_disconnected; |
---|
474 | 558 | } |
---|
475 | 559 | |
---|
.. | .. |
---|
479 | 563 | struct meson_dw_hdmi *dw_hdmi = (struct meson_dw_hdmi *)data; |
---|
480 | 564 | |
---|
481 | 565 | /* Setup HPD Filter */ |
---|
482 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_HPD_FILTER, |
---|
| 566 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_HPD_FILTER, |
---|
483 | 567 | (0xa << 12) | 0xa0); |
---|
484 | 568 | |
---|
485 | 569 | /* Clear interrupts */ |
---|
486 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_INTR_STAT_CLR, |
---|
| 570 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_INTR_STAT_CLR, |
---|
487 | 571 | HDMITX_TOP_INTR_HPD_RISE | HDMITX_TOP_INTR_HPD_FALL); |
---|
488 | 572 | |
---|
489 | 573 | /* Unmask interrupts */ |
---|
.. | .. |
---|
504 | 588 | struct meson_dw_hdmi *dw_hdmi = dev_id; |
---|
505 | 589 | u32 stat; |
---|
506 | 590 | |
---|
507 | | - stat = dw_hdmi_top_read(dw_hdmi, HDMITX_TOP_INTR_STAT); |
---|
508 | | - dw_hdmi_top_write(dw_hdmi, HDMITX_TOP_INTR_STAT_CLR, stat); |
---|
| 591 | + stat = dw_hdmi->data->top_read(dw_hdmi, HDMITX_TOP_INTR_STAT); |
---|
| 592 | + dw_hdmi->data->top_write(dw_hdmi, HDMITX_TOP_INTR_STAT_CLR, stat); |
---|
509 | 593 | |
---|
510 | 594 | /* HPD Events, handle in the threaded interrupt handler */ |
---|
511 | 595 | if (stat & (HDMITX_TOP_INTR_HPD_RISE | HDMITX_TOP_INTR_HPD_FALL)) { |
---|
.. | .. |
---|
545 | 629 | } |
---|
546 | 630 | |
---|
547 | 631 | static enum drm_mode_status |
---|
548 | | -dw_hdmi_mode_valid(struct drm_connector *connector, |
---|
| 632 | +dw_hdmi_mode_valid(struct dw_hdmi *hdmi, void *data, |
---|
| 633 | + const struct drm_display_info *display_info, |
---|
549 | 634 | const struct drm_display_mode *mode) |
---|
550 | 635 | { |
---|
551 | | - struct meson_drm *priv = connector->dev->dev_private; |
---|
| 636 | + struct meson_dw_hdmi *dw_hdmi = data; |
---|
| 637 | + struct meson_drm *priv = dw_hdmi->priv; |
---|
| 638 | + bool is_hdmi2_sink = display_info->hdmi.scdc.supported; |
---|
| 639 | + unsigned int phy_freq; |
---|
552 | 640 | unsigned int vclk_freq; |
---|
553 | 641 | unsigned int venc_freq; |
---|
554 | 642 | unsigned int hdmi_freq; |
---|
555 | 643 | int vic = drm_match_cea_mode(mode); |
---|
556 | 644 | enum drm_mode_status status; |
---|
557 | 645 | |
---|
558 | | - DRM_DEBUG_DRIVER("Modeline %d:\"%s\" %d %d %d %d %d %d %d %d %d %d 0x%x 0x%x\n", |
---|
559 | | - mode->base.id, mode->name, mode->vrefresh, mode->clock, |
---|
560 | | - mode->hdisplay, mode->hsync_start, |
---|
561 | | - mode->hsync_end, mode->htotal, |
---|
562 | | - mode->vdisplay, mode->vsync_start, |
---|
563 | | - mode->vsync_end, mode->vtotal, mode->type, mode->flags); |
---|
| 646 | + DRM_DEBUG_DRIVER("Modeline " DRM_MODE_FMT "\n", DRM_MODE_ARG(mode)); |
---|
| 647 | + |
---|
| 648 | + /* If sink does not support 540MHz, reject the non-420 HDMI2 modes */ |
---|
| 649 | + if (display_info->max_tmds_clock && |
---|
| 650 | + mode->clock > display_info->max_tmds_clock && |
---|
| 651 | + !drm_mode_is_420_only(display_info, mode) && |
---|
| 652 | + !drm_mode_is_420_also(display_info, mode)) |
---|
| 653 | + return MODE_BAD; |
---|
564 | 654 | |
---|
565 | 655 | /* Check against non-VIC supported modes */ |
---|
566 | 656 | if (!vic) { |
---|
.. | .. |
---|
575 | 665 | |
---|
576 | 666 | vclk_freq = mode->clock; |
---|
577 | 667 | |
---|
| 668 | + /* For 420, pixel clock is half unlike venc clock */ |
---|
| 669 | + if (drm_mode_is_420_only(display_info, mode) || |
---|
| 670 | + (!is_hdmi2_sink && |
---|
| 671 | + drm_mode_is_420_also(display_info, mode))) |
---|
| 672 | + vclk_freq /= 2; |
---|
| 673 | + |
---|
| 674 | + /* TMDS clock is pixel_clock * 10 */ |
---|
| 675 | + phy_freq = vclk_freq * 10; |
---|
| 676 | + |
---|
578 | 677 | /* 480i/576i needs global pixel doubling */ |
---|
579 | 678 | if (mode->flags & DRM_MODE_FLAG_DBLCLK) |
---|
580 | 679 | vclk_freq *= 2; |
---|
.. | .. |
---|
582 | 681 | venc_freq = vclk_freq; |
---|
583 | 682 | hdmi_freq = vclk_freq; |
---|
584 | 683 | |
---|
585 | | - /* VENC double pixels for 1080i and 720p modes */ |
---|
586 | | - if (meson_venc_hdmi_venc_repeat(vic)) |
---|
| 684 | + /* VENC double pixels for 1080i, 720p and YUV420 modes */ |
---|
| 685 | + if (meson_venc_hdmi_venc_repeat(vic) || |
---|
| 686 | + drm_mode_is_420_only(display_info, mode) || |
---|
| 687 | + (!is_hdmi2_sink && |
---|
| 688 | + drm_mode_is_420_also(display_info, mode))) |
---|
587 | 689 | venc_freq *= 2; |
---|
588 | 690 | |
---|
589 | 691 | vclk_freq = max(venc_freq, hdmi_freq); |
---|
.. | .. |
---|
591 | 693 | if (mode->flags & DRM_MODE_FLAG_DBLCLK) |
---|
592 | 694 | venc_freq /= 2; |
---|
593 | 695 | |
---|
594 | | - dev_dbg(connector->dev->dev, "%s: vclk:%d venc=%d hdmi=%d\n", __func__, |
---|
595 | | - vclk_freq, venc_freq, hdmi_freq); |
---|
| 696 | + dev_dbg(dw_hdmi->dev, "%s: vclk:%d phy=%d venc=%d hdmi=%d\n", |
---|
| 697 | + __func__, phy_freq, vclk_freq, venc_freq, hdmi_freq); |
---|
596 | 698 | |
---|
597 | | - /* Finally filter by configurable vclk frequencies for VIC modes */ |
---|
598 | | - switch (vclk_freq) { |
---|
599 | | - case 54000: |
---|
600 | | - case 74250: |
---|
601 | | - case 148500: |
---|
602 | | - case 297000: |
---|
603 | | - case 594000: |
---|
604 | | - return MODE_OK; |
---|
605 | | - } |
---|
606 | | - |
---|
607 | | - return MODE_CLOCK_RANGE; |
---|
| 699 | + return meson_vclk_vic_supported_freq(priv, phy_freq, vclk_freq); |
---|
608 | 700 | } |
---|
609 | 701 | |
---|
610 | 702 | /* Encoder */ |
---|
| 703 | + |
---|
| 704 | +static const u32 meson_dw_hdmi_out_bus_fmts[] = { |
---|
| 705 | + MEDIA_BUS_FMT_YUV8_1X24, |
---|
| 706 | + MEDIA_BUS_FMT_UYYVYY8_0_5X24, |
---|
| 707 | +}; |
---|
611 | 708 | |
---|
612 | 709 | static void meson_venc_hdmi_encoder_destroy(struct drm_encoder *encoder) |
---|
613 | 710 | { |
---|
.. | .. |
---|
618 | 715 | .destroy = meson_venc_hdmi_encoder_destroy, |
---|
619 | 716 | }; |
---|
620 | 717 | |
---|
621 | | -static int meson_venc_hdmi_encoder_atomic_check(struct drm_encoder *encoder, |
---|
| 718 | +static u32 * |
---|
| 719 | +meson_venc_hdmi_encoder_get_inp_bus_fmts(struct drm_bridge *bridge, |
---|
| 720 | + struct drm_bridge_state *bridge_state, |
---|
| 721 | + struct drm_crtc_state *crtc_state, |
---|
| 722 | + struct drm_connector_state *conn_state, |
---|
| 723 | + u32 output_fmt, |
---|
| 724 | + unsigned int *num_input_fmts) |
---|
| 725 | +{ |
---|
| 726 | + u32 *input_fmts = NULL; |
---|
| 727 | + int i; |
---|
| 728 | + |
---|
| 729 | + *num_input_fmts = 0; |
---|
| 730 | + |
---|
| 731 | + for (i = 0 ; i < ARRAY_SIZE(meson_dw_hdmi_out_bus_fmts) ; ++i) { |
---|
| 732 | + if (output_fmt == meson_dw_hdmi_out_bus_fmts[i]) { |
---|
| 733 | + *num_input_fmts = 1; |
---|
| 734 | + input_fmts = kcalloc(*num_input_fmts, |
---|
| 735 | + sizeof(*input_fmts), |
---|
| 736 | + GFP_KERNEL); |
---|
| 737 | + if (!input_fmts) |
---|
| 738 | + return NULL; |
---|
| 739 | + |
---|
| 740 | + input_fmts[0] = output_fmt; |
---|
| 741 | + |
---|
| 742 | + break; |
---|
| 743 | + } |
---|
| 744 | + } |
---|
| 745 | + |
---|
| 746 | + return input_fmts; |
---|
| 747 | +} |
---|
| 748 | + |
---|
| 749 | +static int meson_venc_hdmi_encoder_atomic_check(struct drm_bridge *bridge, |
---|
| 750 | + struct drm_bridge_state *bridge_state, |
---|
622 | 751 | struct drm_crtc_state *crtc_state, |
---|
623 | 752 | struct drm_connector_state *conn_state) |
---|
624 | 753 | { |
---|
| 754 | + struct meson_dw_hdmi *dw_hdmi = bridge_to_meson_dw_hdmi(bridge); |
---|
| 755 | + |
---|
| 756 | + dw_hdmi->output_bus_fmt = bridge_state->output_bus_cfg.format; |
---|
| 757 | + |
---|
| 758 | + DRM_DEBUG_DRIVER("output_bus_fmt %lx\n", dw_hdmi->output_bus_fmt); |
---|
| 759 | + |
---|
625 | 760 | return 0; |
---|
626 | 761 | } |
---|
627 | 762 | |
---|
628 | | -static void meson_venc_hdmi_encoder_disable(struct drm_encoder *encoder) |
---|
| 763 | +static void meson_venc_hdmi_encoder_disable(struct drm_bridge *bridge) |
---|
629 | 764 | { |
---|
630 | | - struct meson_dw_hdmi *dw_hdmi = encoder_to_meson_dw_hdmi(encoder); |
---|
| 765 | + struct meson_dw_hdmi *dw_hdmi = bridge_to_meson_dw_hdmi(bridge); |
---|
631 | 766 | struct meson_drm *priv = dw_hdmi->priv; |
---|
632 | 767 | |
---|
633 | 768 | DRM_DEBUG_DRIVER("\n"); |
---|
.. | .. |
---|
639 | 774 | writel_relaxed(0, priv->io_base + _REG(ENCP_VIDEO_EN)); |
---|
640 | 775 | } |
---|
641 | 776 | |
---|
642 | | -static void meson_venc_hdmi_encoder_enable(struct drm_encoder *encoder) |
---|
| 777 | +static void meson_venc_hdmi_encoder_enable(struct drm_bridge *bridge) |
---|
643 | 778 | { |
---|
644 | | - struct meson_dw_hdmi *dw_hdmi = encoder_to_meson_dw_hdmi(encoder); |
---|
| 779 | + struct meson_dw_hdmi *dw_hdmi = bridge_to_meson_dw_hdmi(bridge); |
---|
645 | 780 | struct meson_drm *priv = dw_hdmi->priv; |
---|
646 | 781 | |
---|
647 | 782 | DRM_DEBUG_DRIVER("%s\n", priv->venc.hdmi_use_enci ? "VENCI" : "VENCP"); |
---|
.. | .. |
---|
652 | 787 | writel_relaxed(1, priv->io_base + _REG(ENCP_VIDEO_EN)); |
---|
653 | 788 | } |
---|
654 | 789 | |
---|
655 | | -static void meson_venc_hdmi_encoder_mode_set(struct drm_encoder *encoder, |
---|
656 | | - struct drm_display_mode *mode, |
---|
657 | | - struct drm_display_mode *adjusted_mode) |
---|
| 790 | +static void meson_venc_hdmi_encoder_mode_set(struct drm_bridge *bridge, |
---|
| 791 | + const struct drm_display_mode *mode, |
---|
| 792 | + const struct drm_display_mode *adjusted_mode) |
---|
658 | 793 | { |
---|
659 | | - struct meson_dw_hdmi *dw_hdmi = encoder_to_meson_dw_hdmi(encoder); |
---|
| 794 | + struct meson_dw_hdmi *dw_hdmi = bridge_to_meson_dw_hdmi(bridge); |
---|
660 | 795 | struct meson_drm *priv = dw_hdmi->priv; |
---|
661 | 796 | int vic = drm_match_cea_mode(mode); |
---|
| 797 | + unsigned int ycrcb_map = VPU_HDMI_OUTPUT_CBYCR; |
---|
| 798 | + bool yuv420_mode = false; |
---|
662 | 799 | |
---|
663 | | - DRM_DEBUG_DRIVER("%d:\"%s\" vic %d\n", |
---|
664 | | - mode->base.id, mode->name, vic); |
---|
| 800 | + DRM_DEBUG_DRIVER("\"%s\" vic %d\n", mode->name, vic); |
---|
| 801 | + |
---|
| 802 | + if (dw_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24) { |
---|
| 803 | + ycrcb_map = VPU_HDMI_OUTPUT_CRYCB; |
---|
| 804 | + yuv420_mode = true; |
---|
| 805 | + } |
---|
665 | 806 | |
---|
666 | 807 | /* VENC + VENC-DVI Mode setup */ |
---|
667 | | - meson_venc_hdmi_mode_set(priv, vic, mode); |
---|
| 808 | + meson_venc_hdmi_mode_set(priv, vic, ycrcb_map, yuv420_mode, mode); |
---|
668 | 809 | |
---|
669 | 810 | /* VCLK Set clock */ |
---|
670 | 811 | dw_hdmi_set_vclk(dw_hdmi, mode); |
---|
671 | 812 | |
---|
672 | | - /* Setup YUV444 to HDMI-TX, no 10bit diphering */ |
---|
673 | | - writel_relaxed(0, priv->io_base + _REG(VPU_HDMI_FMT_CTRL)); |
---|
| 813 | + if (dw_hdmi->output_bus_fmt == MEDIA_BUS_FMT_UYYVYY8_0_5X24) |
---|
| 814 | + /* Setup YUV420 to HDMI-TX, no 10bit diphering */ |
---|
| 815 | + writel_relaxed(2 | (2 << 2), |
---|
| 816 | + priv->io_base + _REG(VPU_HDMI_FMT_CTRL)); |
---|
| 817 | + else |
---|
| 818 | + /* Setup YUV444 to HDMI-TX, no 10bit diphering */ |
---|
| 819 | + writel_relaxed(0, priv->io_base + _REG(VPU_HDMI_FMT_CTRL)); |
---|
674 | 820 | } |
---|
675 | 821 | |
---|
676 | | -static const struct drm_encoder_helper_funcs |
---|
677 | | - meson_venc_hdmi_encoder_helper_funcs = { |
---|
678 | | - .atomic_check = meson_venc_hdmi_encoder_atomic_check, |
---|
679 | | - .disable = meson_venc_hdmi_encoder_disable, |
---|
680 | | - .enable = meson_venc_hdmi_encoder_enable, |
---|
681 | | - .mode_set = meson_venc_hdmi_encoder_mode_set, |
---|
| 822 | +static const struct drm_bridge_funcs meson_venc_hdmi_encoder_bridge_funcs = { |
---|
| 823 | + .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state, |
---|
| 824 | + .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state, |
---|
| 825 | + .atomic_get_input_bus_fmts = meson_venc_hdmi_encoder_get_inp_bus_fmts, |
---|
| 826 | + .atomic_reset = drm_atomic_helper_bridge_reset, |
---|
| 827 | + .atomic_check = meson_venc_hdmi_encoder_atomic_check, |
---|
| 828 | + .enable = meson_venc_hdmi_encoder_enable, |
---|
| 829 | + .disable = meson_venc_hdmi_encoder_disable, |
---|
| 830 | + .mode_set = meson_venc_hdmi_encoder_mode_set, |
---|
682 | 831 | }; |
---|
683 | 832 | |
---|
684 | 833 | /* DW HDMI Regmap */ |
---|
.. | .. |
---|
686 | 835 | static int meson_dw_hdmi_reg_read(void *context, unsigned int reg, |
---|
687 | 836 | unsigned int *result) |
---|
688 | 837 | { |
---|
689 | | - *result = dw_hdmi_dwc_read(context, reg); |
---|
| 838 | + struct meson_dw_hdmi *dw_hdmi = context; |
---|
| 839 | + |
---|
| 840 | + *result = dw_hdmi->data->dwc_read(dw_hdmi, reg); |
---|
690 | 841 | |
---|
691 | 842 | return 0; |
---|
692 | 843 | |
---|
.. | .. |
---|
695 | 846 | static int meson_dw_hdmi_reg_write(void *context, unsigned int reg, |
---|
696 | 847 | unsigned int val) |
---|
697 | 848 | { |
---|
698 | | - dw_hdmi_dwc_write(context, reg, val); |
---|
| 849 | + struct meson_dw_hdmi *dw_hdmi = context; |
---|
| 850 | + |
---|
| 851 | + dw_hdmi->data->dwc_write(dw_hdmi, reg, val); |
---|
699 | 852 | |
---|
700 | 853 | return 0; |
---|
701 | 854 | } |
---|
.. | .. |
---|
707 | 860 | .reg_write = meson_dw_hdmi_reg_write, |
---|
708 | 861 | .max_register = 0x10000, |
---|
709 | 862 | .fast_io = true, |
---|
| 863 | +}; |
---|
| 864 | + |
---|
| 865 | +static const struct meson_dw_hdmi_data meson_dw_hdmi_gx_data = { |
---|
| 866 | + .top_read = dw_hdmi_top_read, |
---|
| 867 | + .top_write = dw_hdmi_top_write, |
---|
| 868 | + .dwc_read = dw_hdmi_dwc_read, |
---|
| 869 | + .dwc_write = dw_hdmi_dwc_write, |
---|
| 870 | +}; |
---|
| 871 | + |
---|
| 872 | +static const struct meson_dw_hdmi_data meson_dw_hdmi_g12a_data = { |
---|
| 873 | + .top_read = dw_hdmi_g12a_top_read, |
---|
| 874 | + .top_write = dw_hdmi_g12a_top_write, |
---|
| 875 | + .dwc_read = dw_hdmi_g12a_dwc_read, |
---|
| 876 | + .dwc_write = dw_hdmi_g12a_dwc_write, |
---|
710 | 877 | }; |
---|
711 | 878 | |
---|
712 | 879 | static bool meson_hdmi_connector_is_available(struct device *dev) |
---|
.. | .. |
---|
731 | 898 | return false; |
---|
732 | 899 | } |
---|
733 | 900 | |
---|
| 901 | +static void meson_dw_hdmi_init(struct meson_dw_hdmi *meson_dw_hdmi) |
---|
| 902 | +{ |
---|
| 903 | + struct meson_drm *priv = meson_dw_hdmi->priv; |
---|
| 904 | + |
---|
| 905 | + /* Enable clocks */ |
---|
| 906 | + regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL, 0xffff, 0x100); |
---|
| 907 | + |
---|
| 908 | + /* Bring HDMITX MEM output of power down */ |
---|
| 909 | + regmap_update_bits(priv->hhi, HHI_MEM_PD_REG0, 0xff << 8, 0); |
---|
| 910 | + |
---|
| 911 | + /* Reset HDMITX APB & TX & PHY */ |
---|
| 912 | + reset_control_reset(meson_dw_hdmi->hdmitx_apb); |
---|
| 913 | + reset_control_reset(meson_dw_hdmi->hdmitx_ctrl); |
---|
| 914 | + reset_control_reset(meson_dw_hdmi->hdmitx_phy); |
---|
| 915 | + |
---|
| 916 | + /* Enable APB3 fail on error */ |
---|
| 917 | + if (!meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) { |
---|
| 918 | + writel_bits_relaxed(BIT(15), BIT(15), |
---|
| 919 | + meson_dw_hdmi->hdmitx + HDMITX_TOP_CTRL_REG); |
---|
| 920 | + writel_bits_relaxed(BIT(15), BIT(15), |
---|
| 921 | + meson_dw_hdmi->hdmitx + HDMITX_DWC_CTRL_REG); |
---|
| 922 | + } |
---|
| 923 | + |
---|
| 924 | + /* Bring out of reset */ |
---|
| 925 | + meson_dw_hdmi->data->top_write(meson_dw_hdmi, |
---|
| 926 | + HDMITX_TOP_SW_RESET, 0); |
---|
| 927 | + |
---|
| 928 | + msleep(20); |
---|
| 929 | + |
---|
| 930 | + meson_dw_hdmi->data->top_write(meson_dw_hdmi, |
---|
| 931 | + HDMITX_TOP_CLK_CNTL, 0xff); |
---|
| 932 | + |
---|
| 933 | + /* Enable HDMI-TX Interrupt */ |
---|
| 934 | + meson_dw_hdmi->data->top_write(meson_dw_hdmi, HDMITX_TOP_INTR_STAT_CLR, |
---|
| 935 | + HDMITX_TOP_INTR_CORE); |
---|
| 936 | + |
---|
| 937 | + meson_dw_hdmi->data->top_write(meson_dw_hdmi, HDMITX_TOP_INTR_MASKN, |
---|
| 938 | + HDMITX_TOP_INTR_CORE); |
---|
| 939 | + |
---|
| 940 | +} |
---|
| 941 | + |
---|
| 942 | +static void meson_disable_regulator(void *data) |
---|
| 943 | +{ |
---|
| 944 | + regulator_disable(data); |
---|
| 945 | +} |
---|
| 946 | + |
---|
| 947 | +static void meson_disable_clk(void *data) |
---|
| 948 | +{ |
---|
| 949 | + clk_disable_unprepare(data); |
---|
| 950 | +} |
---|
| 951 | + |
---|
| 952 | +static int meson_enable_clk(struct device *dev, char *name) |
---|
| 953 | +{ |
---|
| 954 | + struct clk *clk; |
---|
| 955 | + int ret; |
---|
| 956 | + |
---|
| 957 | + clk = devm_clk_get(dev, name); |
---|
| 958 | + if (IS_ERR(clk)) { |
---|
| 959 | + dev_err(dev, "Unable to get %s pclk\n", name); |
---|
| 960 | + return PTR_ERR(clk); |
---|
| 961 | + } |
---|
| 962 | + |
---|
| 963 | + ret = clk_prepare_enable(clk); |
---|
| 964 | + if (!ret) |
---|
| 965 | + ret = devm_add_action_or_reset(dev, meson_disable_clk, clk); |
---|
| 966 | + |
---|
| 967 | + return ret; |
---|
| 968 | +} |
---|
| 969 | + |
---|
734 | 970 | static int meson_dw_hdmi_bind(struct device *dev, struct device *master, |
---|
735 | 971 | void *data) |
---|
736 | 972 | { |
---|
737 | 973 | struct platform_device *pdev = to_platform_device(dev); |
---|
| 974 | + const struct meson_dw_hdmi_data *match; |
---|
738 | 975 | struct meson_dw_hdmi *meson_dw_hdmi; |
---|
739 | 976 | struct drm_device *drm = data; |
---|
740 | 977 | struct meson_drm *priv = drm->dev_private; |
---|
741 | 978 | struct dw_hdmi_plat_data *dw_plat_data; |
---|
| 979 | + struct drm_bridge *next_bridge; |
---|
742 | 980 | struct drm_encoder *encoder; |
---|
743 | 981 | struct resource *res; |
---|
744 | 982 | int irq; |
---|
.. | .. |
---|
751 | 989 | return -ENODEV; |
---|
752 | 990 | } |
---|
753 | 991 | |
---|
| 992 | + match = of_device_get_match_data(&pdev->dev); |
---|
| 993 | + if (!match) { |
---|
| 994 | + dev_err(&pdev->dev, "failed to get match data\n"); |
---|
| 995 | + return -ENODEV; |
---|
| 996 | + } |
---|
| 997 | + |
---|
754 | 998 | meson_dw_hdmi = devm_kzalloc(dev, sizeof(*meson_dw_hdmi), |
---|
755 | 999 | GFP_KERNEL); |
---|
756 | 1000 | if (!meson_dw_hdmi) |
---|
.. | .. |
---|
758 | 1002 | |
---|
759 | 1003 | meson_dw_hdmi->priv = priv; |
---|
760 | 1004 | meson_dw_hdmi->dev = dev; |
---|
| 1005 | + meson_dw_hdmi->data = match; |
---|
761 | 1006 | dw_plat_data = &meson_dw_hdmi->dw_plat_data; |
---|
762 | 1007 | encoder = &meson_dw_hdmi->encoder; |
---|
763 | 1008 | |
---|
.. | .. |
---|
768 | 1013 | meson_dw_hdmi->hdmi_supply = NULL; |
---|
769 | 1014 | } else { |
---|
770 | 1015 | ret = regulator_enable(meson_dw_hdmi->hdmi_supply); |
---|
| 1016 | + if (ret) |
---|
| 1017 | + return ret; |
---|
| 1018 | + ret = devm_add_action_or_reset(dev, meson_disable_regulator, |
---|
| 1019 | + meson_dw_hdmi->hdmi_supply); |
---|
771 | 1020 | if (ret) |
---|
772 | 1021 | return ret; |
---|
773 | 1022 | } |
---|
.. | .. |
---|
798 | 1047 | if (IS_ERR(meson_dw_hdmi->hdmitx)) |
---|
799 | 1048 | return PTR_ERR(meson_dw_hdmi->hdmitx); |
---|
800 | 1049 | |
---|
801 | | - meson_dw_hdmi->hdmi_pclk = devm_clk_get(dev, "isfr"); |
---|
802 | | - if (IS_ERR(meson_dw_hdmi->hdmi_pclk)) { |
---|
803 | | - dev_err(dev, "Unable to get HDMI pclk\n"); |
---|
804 | | - return PTR_ERR(meson_dw_hdmi->hdmi_pclk); |
---|
805 | | - } |
---|
806 | | - clk_prepare_enable(meson_dw_hdmi->hdmi_pclk); |
---|
| 1050 | + ret = meson_enable_clk(dev, "isfr"); |
---|
| 1051 | + if (ret) |
---|
| 1052 | + return ret; |
---|
807 | 1053 | |
---|
808 | | - meson_dw_hdmi->venci_clk = devm_clk_get(dev, "venci"); |
---|
809 | | - if (IS_ERR(meson_dw_hdmi->venci_clk)) { |
---|
810 | | - dev_err(dev, "Unable to get venci clk\n"); |
---|
811 | | - return PTR_ERR(meson_dw_hdmi->venci_clk); |
---|
812 | | - } |
---|
813 | | - clk_prepare_enable(meson_dw_hdmi->venci_clk); |
---|
| 1054 | + ret = meson_enable_clk(dev, "iahb"); |
---|
| 1055 | + if (ret) |
---|
| 1056 | + return ret; |
---|
| 1057 | + |
---|
| 1058 | + ret = meson_enable_clk(dev, "venci"); |
---|
| 1059 | + if (ret) |
---|
| 1060 | + return ret; |
---|
814 | 1061 | |
---|
815 | 1062 | dw_plat_data->regm = devm_regmap_init(dev, NULL, meson_dw_hdmi, |
---|
816 | 1063 | &meson_dw_hdmi_regmap_config); |
---|
.. | .. |
---|
818 | 1065 | return PTR_ERR(dw_plat_data->regm); |
---|
819 | 1066 | |
---|
820 | 1067 | irq = platform_get_irq(pdev, 0); |
---|
821 | | - if (irq < 0) { |
---|
822 | | - dev_err(dev, "Failed to get hdmi top irq\n"); |
---|
| 1068 | + if (irq < 0) |
---|
823 | 1069 | return irq; |
---|
824 | | - } |
---|
825 | 1070 | |
---|
826 | 1071 | ret = devm_request_threaded_irq(dev, irq, dw_hdmi_top_irq, |
---|
827 | 1072 | dw_hdmi_top_thread_irq, IRQF_SHARED, |
---|
.. | .. |
---|
833 | 1078 | |
---|
834 | 1079 | /* Encoder */ |
---|
835 | 1080 | |
---|
836 | | - drm_encoder_helper_add(encoder, &meson_venc_hdmi_encoder_helper_funcs); |
---|
837 | | - |
---|
838 | 1081 | ret = drm_encoder_init(drm, encoder, &meson_venc_hdmi_encoder_funcs, |
---|
839 | 1082 | DRM_MODE_ENCODER_TMDS, "meson_hdmi"); |
---|
840 | 1083 | if (ret) { |
---|
.. | .. |
---|
842 | 1085 | return ret; |
---|
843 | 1086 | } |
---|
844 | 1087 | |
---|
| 1088 | + meson_dw_hdmi->bridge.funcs = &meson_venc_hdmi_encoder_bridge_funcs; |
---|
| 1089 | + drm_bridge_attach(encoder, &meson_dw_hdmi->bridge, NULL, 0); |
---|
| 1090 | + |
---|
845 | 1091 | encoder->possible_crtcs = BIT(0); |
---|
| 1092 | + |
---|
| 1093 | + meson_dw_hdmi_init(meson_dw_hdmi); |
---|
846 | 1094 | |
---|
847 | 1095 | DRM_DEBUG_DRIVER("encoder initialized\n"); |
---|
848 | 1096 | |
---|
849 | | - /* Enable clocks */ |
---|
850 | | - regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL, 0xffff, 0x100); |
---|
851 | | - |
---|
852 | | - /* Bring HDMITX MEM output of power down */ |
---|
853 | | - regmap_update_bits(priv->hhi, HHI_MEM_PD_REG0, 0xff << 8, 0); |
---|
854 | | - |
---|
855 | | - /* Reset HDMITX APB & TX & PHY */ |
---|
856 | | - reset_control_reset(meson_dw_hdmi->hdmitx_apb); |
---|
857 | | - reset_control_reset(meson_dw_hdmi->hdmitx_ctrl); |
---|
858 | | - reset_control_reset(meson_dw_hdmi->hdmitx_phy); |
---|
859 | | - |
---|
860 | | - /* Enable APB3 fail on error */ |
---|
861 | | - writel_bits_relaxed(BIT(15), BIT(15), |
---|
862 | | - meson_dw_hdmi->hdmitx + HDMITX_TOP_CTRL_REG); |
---|
863 | | - writel_bits_relaxed(BIT(15), BIT(15), |
---|
864 | | - meson_dw_hdmi->hdmitx + HDMITX_DWC_CTRL_REG); |
---|
865 | | - |
---|
866 | | - /* Bring out of reset */ |
---|
867 | | - dw_hdmi_top_write(meson_dw_hdmi, HDMITX_TOP_SW_RESET, 0); |
---|
868 | | - |
---|
869 | | - msleep(20); |
---|
870 | | - |
---|
871 | | - dw_hdmi_top_write(meson_dw_hdmi, HDMITX_TOP_CLK_CNTL, 0xff); |
---|
872 | | - |
---|
873 | | - /* Enable HDMI-TX Interrupt */ |
---|
874 | | - dw_hdmi_top_write(meson_dw_hdmi, HDMITX_TOP_INTR_STAT_CLR, |
---|
875 | | - HDMITX_TOP_INTR_CORE); |
---|
876 | | - |
---|
877 | | - dw_hdmi_top_write(meson_dw_hdmi, HDMITX_TOP_INTR_MASKN, |
---|
878 | | - HDMITX_TOP_INTR_CORE); |
---|
879 | | - |
---|
880 | 1097 | /* Bridge / Connector */ |
---|
881 | 1098 | |
---|
| 1099 | + dw_plat_data->priv_data = meson_dw_hdmi; |
---|
882 | 1100 | dw_plat_data->mode_valid = dw_hdmi_mode_valid; |
---|
883 | 1101 | dw_plat_data->phy_ops = &meson_dw_hdmi_phy_ops; |
---|
884 | 1102 | dw_plat_data->phy_name = "meson_dw_hdmi_phy"; |
---|
885 | 1103 | dw_plat_data->phy_data = meson_dw_hdmi; |
---|
886 | | - dw_plat_data->input_bus_format = MEDIA_BUS_FMT_YUV8_1X24; |
---|
887 | 1104 | dw_plat_data->input_bus_encoding = V4L2_YCBCR_ENC_709; |
---|
| 1105 | + dw_plat_data->ycbcr_420_allowed = true; |
---|
| 1106 | + |
---|
| 1107 | + if (dw_hdmi_is_compatible(meson_dw_hdmi, "amlogic,meson-gxl-dw-hdmi") || |
---|
| 1108 | + dw_hdmi_is_compatible(meson_dw_hdmi, "amlogic,meson-gxm-dw-hdmi") || |
---|
| 1109 | + dw_hdmi_is_compatible(meson_dw_hdmi, "amlogic,meson-g12a-dw-hdmi")) |
---|
| 1110 | + dw_plat_data->use_drm_infoframe = true; |
---|
888 | 1111 | |
---|
889 | 1112 | platform_set_drvdata(pdev, meson_dw_hdmi); |
---|
890 | 1113 | |
---|
891 | | - meson_dw_hdmi->hdmi = dw_hdmi_bind(pdev, encoder, |
---|
892 | | - &meson_dw_hdmi->dw_plat_data); |
---|
| 1114 | + meson_dw_hdmi->hdmi = dw_hdmi_probe(pdev, |
---|
| 1115 | + &meson_dw_hdmi->dw_plat_data); |
---|
893 | 1116 | if (IS_ERR(meson_dw_hdmi->hdmi)) |
---|
894 | 1117 | return PTR_ERR(meson_dw_hdmi->hdmi); |
---|
| 1118 | + |
---|
| 1119 | + next_bridge = of_drm_find_bridge(pdev->dev.of_node); |
---|
| 1120 | + if (next_bridge) |
---|
| 1121 | + drm_bridge_attach(encoder, next_bridge, |
---|
| 1122 | + &meson_dw_hdmi->bridge, 0); |
---|
895 | 1123 | |
---|
896 | 1124 | DRM_DEBUG_DRIVER("HDMI controller initialized\n"); |
---|
897 | 1125 | |
---|
.. | .. |
---|
911 | 1139 | .unbind = meson_dw_hdmi_unbind, |
---|
912 | 1140 | }; |
---|
913 | 1141 | |
---|
| 1142 | +static int __maybe_unused meson_dw_hdmi_pm_suspend(struct device *dev) |
---|
| 1143 | +{ |
---|
| 1144 | + struct meson_dw_hdmi *meson_dw_hdmi = dev_get_drvdata(dev); |
---|
| 1145 | + |
---|
| 1146 | + if (!meson_dw_hdmi) |
---|
| 1147 | + return 0; |
---|
| 1148 | + |
---|
| 1149 | + /* Reset TOP */ |
---|
| 1150 | + meson_dw_hdmi->data->top_write(meson_dw_hdmi, |
---|
| 1151 | + HDMITX_TOP_SW_RESET, 0); |
---|
| 1152 | + |
---|
| 1153 | + return 0; |
---|
| 1154 | +} |
---|
| 1155 | + |
---|
| 1156 | +static int __maybe_unused meson_dw_hdmi_pm_resume(struct device *dev) |
---|
| 1157 | +{ |
---|
| 1158 | + struct meson_dw_hdmi *meson_dw_hdmi = dev_get_drvdata(dev); |
---|
| 1159 | + |
---|
| 1160 | + if (!meson_dw_hdmi) |
---|
| 1161 | + return 0; |
---|
| 1162 | + |
---|
| 1163 | + meson_dw_hdmi_init(meson_dw_hdmi); |
---|
| 1164 | + |
---|
| 1165 | + dw_hdmi_resume(meson_dw_hdmi->hdmi); |
---|
| 1166 | + |
---|
| 1167 | + return 0; |
---|
| 1168 | +} |
---|
| 1169 | + |
---|
914 | 1170 | static int meson_dw_hdmi_probe(struct platform_device *pdev) |
---|
915 | 1171 | { |
---|
916 | 1172 | return component_add(&pdev->dev, &meson_dw_hdmi_ops); |
---|
.. | .. |
---|
923 | 1179 | return 0; |
---|
924 | 1180 | } |
---|
925 | 1181 | |
---|
| 1182 | +static const struct dev_pm_ops meson_dw_hdmi_pm_ops = { |
---|
| 1183 | + SET_SYSTEM_SLEEP_PM_OPS(meson_dw_hdmi_pm_suspend, |
---|
| 1184 | + meson_dw_hdmi_pm_resume) |
---|
| 1185 | +}; |
---|
| 1186 | + |
---|
926 | 1187 | static const struct of_device_id meson_dw_hdmi_of_table[] = { |
---|
927 | | - { .compatible = "amlogic,meson-gxbb-dw-hdmi" }, |
---|
928 | | - { .compatible = "amlogic,meson-gxl-dw-hdmi" }, |
---|
929 | | - { .compatible = "amlogic,meson-gxm-dw-hdmi" }, |
---|
| 1188 | + { .compatible = "amlogic,meson-gxbb-dw-hdmi", |
---|
| 1189 | + .data = &meson_dw_hdmi_gx_data }, |
---|
| 1190 | + { .compatible = "amlogic,meson-gxl-dw-hdmi", |
---|
| 1191 | + .data = &meson_dw_hdmi_gx_data }, |
---|
| 1192 | + { .compatible = "amlogic,meson-gxm-dw-hdmi", |
---|
| 1193 | + .data = &meson_dw_hdmi_gx_data }, |
---|
| 1194 | + { .compatible = "amlogic,meson-g12a-dw-hdmi", |
---|
| 1195 | + .data = &meson_dw_hdmi_g12a_data }, |
---|
930 | 1196 | { } |
---|
931 | 1197 | }; |
---|
932 | 1198 | MODULE_DEVICE_TABLE(of, meson_dw_hdmi_of_table); |
---|
.. | .. |
---|
937 | 1203 | .driver = { |
---|
938 | 1204 | .name = DRIVER_NAME, |
---|
939 | 1205 | .of_match_table = meson_dw_hdmi_of_table, |
---|
| 1206 | + .pm = &meson_dw_hdmi_pm_ops, |
---|
940 | 1207 | }, |
---|
941 | 1208 | }; |
---|
942 | 1209 | module_platform_driver(meson_dw_hdmi_platform_driver); |
---|