Linux Audio

Check our new training course

Loading...
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * Copyright (C) 2016 BayLibre, SAS
   4 * Author: Neil Armstrong <narmstrong@baylibre.com>
   5 * Copyright (C) 2015 Amlogic, Inc. All rights reserved.
   6 */
   7
   8#include <linux/export.h>
   9
  10#include <drm/drm_print.h>
  11
  12#include "meson_drv.h"
  13#include "meson_vclk.h"
  14
  15/**
  16 * DOC: Video Clocks
  17 *
  18 * VCLK is the "Pixel Clock" frequency generator from a dedicated PLL.
  19 * We handle the following encodings :
  20 *
  21 * - CVBS 27MHz generator via the VCLK2 to the VENCI and VDAC blocks
  22 * - HDMI Pixel Clocks generation
  23 *
  24 * What is missing :
  25 *
  26 * - Genenate Pixel clocks for 2K/4K 10bit formats
  27 *
  28 * Clock generator scheme :
  29 *
  30 * .. code::
  31 *
  32 *    __________   _________            _____
  33 *   |          | |         |          |     |--ENCI
  34 *   | HDMI PLL |-| PLL_DIV |--- VCLK--|     |--ENCL
  35 *   |__________| |_________| \        | MUX |--ENCP
  36 *                             --VCLK2-|     |--VDAC
  37 *                                     |_____|--HDMI-TX
  38 *
  39 * Final clocks can take input for either VCLK or VCLK2, but
  40 * VCLK is the preferred path for HDMI clocking and VCLK2 is the
  41 * preferred path for CVBS VDAC clocking.
  42 *
  43 * VCLK and VCLK2 have fixed divided clocks paths for /1, /2, /4, /6 or /12.
  44 *
  45 * The PLL_DIV can achieve an additional fractional dividing like
  46 * 1.5, 3.5, 3.75... to generate special 2K and 4K 10bit clocks.
  47 */
  48
  49/* HHI Registers */
  50#define HHI_VID_PLL_CLK_DIV	0x1a0 /* 0x68 offset in data sheet */
  51#define VID_PLL_EN		BIT(19)
  52#define VID_PLL_BYPASS		BIT(18)
  53#define VID_PLL_PRESET		BIT(15)
  54#define HHI_VIID_CLK_DIV	0x128 /* 0x4a offset in data sheet */
  55#define VCLK2_DIV_MASK		0xff
  56#define VCLK2_DIV_EN		BIT(16)
  57#define VCLK2_DIV_RESET		BIT(17)
  58#define CTS_VDAC_SEL_MASK	(0xf << 28)
  59#define CTS_VDAC_SEL_SHIFT	28
  60#define HHI_VIID_CLK_CNTL	0x12c /* 0x4b offset in data sheet */
  61#define VCLK2_EN		BIT(19)
  62#define VCLK2_SEL_MASK		(0x7 << 16)
  63#define VCLK2_SEL_SHIFT		16
  64#define VCLK2_SOFT_RESET	BIT(15)
  65#define VCLK2_DIV1_EN		BIT(0)
  66#define HHI_VID_CLK_DIV		0x164 /* 0x59 offset in data sheet */
  67#define VCLK_DIV_MASK		0xff
  68#define VCLK_DIV_EN		BIT(16)
  69#define VCLK_DIV_RESET		BIT(17)
  70#define CTS_ENCP_SEL_MASK	(0xf << 24)
  71#define CTS_ENCP_SEL_SHIFT	24
  72#define CTS_ENCI_SEL_MASK	(0xf << 28)
  73#define CTS_ENCI_SEL_SHIFT	28
  74#define HHI_VID_CLK_CNTL	0x17c /* 0x5f offset in data sheet */
  75#define VCLK_EN			BIT(19)
  76#define VCLK_SEL_MASK		(0x7 << 16)
  77#define VCLK_SEL_SHIFT		16
  78#define VCLK_SOFT_RESET		BIT(15)
  79#define VCLK_DIV1_EN		BIT(0)
  80#define VCLK_DIV2_EN		BIT(1)
  81#define VCLK_DIV4_EN		BIT(2)
  82#define VCLK_DIV6_EN		BIT(3)
  83#define VCLK_DIV12_EN		BIT(4)
  84#define HHI_VID_CLK_CNTL2	0x194 /* 0x65 offset in data sheet */
  85#define CTS_ENCI_EN		BIT(0)
  86#define CTS_ENCP_EN		BIT(2)
  87#define CTS_VDAC_EN		BIT(4)
  88#define HDMI_TX_PIXEL_EN	BIT(5)
  89#define HHI_HDMI_CLK_CNTL	0x1cc /* 0x73 offset in data sheet */
  90#define HDMI_TX_PIXEL_SEL_MASK	(0xf << 16)
  91#define HDMI_TX_PIXEL_SEL_SHIFT	16
  92#define CTS_HDMI_SYS_SEL_MASK	(0x7 << 9)
  93#define CTS_HDMI_SYS_DIV_MASK	(0x7f)
  94#define CTS_HDMI_SYS_EN		BIT(8)
  95
  96#define HHI_VDAC_CNTL0		0x2F4 /* 0xbd offset in data sheet */
  97#define HHI_VDAC_CNTL1		0x2F8 /* 0xbe offset in data sheet */
  98
  99#define HHI_HDMI_PLL_CNTL	0x320 /* 0xc8 offset in data sheet */
 100#define HHI_HDMI_PLL_CNTL_EN	BIT(30)
 101#define HHI_HDMI_PLL_CNTL2	0x324 /* 0xc9 offset in data sheet */
 102#define HHI_HDMI_PLL_CNTL3	0x328 /* 0xca offset in data sheet */
 103#define HHI_HDMI_PLL_CNTL4	0x32C /* 0xcb offset in data sheet */
 104#define HHI_HDMI_PLL_CNTL5	0x330 /* 0xcc offset in data sheet */
 105#define HHI_HDMI_PLL_CNTL6	0x334 /* 0xcd offset in data sheet */
 106#define HHI_HDMI_PLL_CNTL7	0x338 /* 0xce offset in data sheet */
 107
 108#define HDMI_PLL_RESET		BIT(28)
 109#define HDMI_PLL_RESET_G12A	BIT(29)
 110#define HDMI_PLL_LOCK		BIT(31)
 111#define HDMI_PLL_LOCK_G12A	(3 << 30)
 112
 113#define FREQ_1000_1001(_freq)	DIV_ROUND_CLOSEST(_freq * 1000, 1001)
 114
 115/* VID PLL Dividers */
 116enum {
 117	VID_PLL_DIV_1 = 0,
 118	VID_PLL_DIV_2,
 119	VID_PLL_DIV_2p5,
 120	VID_PLL_DIV_3,
 121	VID_PLL_DIV_3p5,
 122	VID_PLL_DIV_3p75,
 123	VID_PLL_DIV_4,
 124	VID_PLL_DIV_5,
 125	VID_PLL_DIV_6,
 126	VID_PLL_DIV_6p25,
 127	VID_PLL_DIV_7,
 128	VID_PLL_DIV_7p5,
 129	VID_PLL_DIV_12,
 130	VID_PLL_DIV_14,
 131	VID_PLL_DIV_15,
 132};
 133
 134static void meson_vid_pll_set(struct meson_drm *priv, unsigned int div)
 135{
 136	unsigned int shift_val = 0;
 137	unsigned int shift_sel = 0;
 138
 139	/* Disable vid_pll output clock */
 140	regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV, VID_PLL_EN, 0);
 141	regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV, VID_PLL_PRESET, 0);
 142
 143	switch (div) {
 144	case VID_PLL_DIV_2:
 145		shift_val = 0x0aaa;
 146		shift_sel = 0;
 147		break;
 148	case VID_PLL_DIV_2p5:
 149		shift_val = 0x5294;
 150		shift_sel = 2;
 151		break;
 152	case VID_PLL_DIV_3:
 153		shift_val = 0x0db6;
 154		shift_sel = 0;
 155		break;
 156	case VID_PLL_DIV_3p5:
 157		shift_val = 0x36cc;
 158		shift_sel = 1;
 159		break;
 160	case VID_PLL_DIV_3p75:
 161		shift_val = 0x6666;
 162		shift_sel = 2;
 163		break;
 164	case VID_PLL_DIV_4:
 165		shift_val = 0x0ccc;
 166		shift_sel = 0;
 167		break;
 168	case VID_PLL_DIV_5:
 169		shift_val = 0x739c;
 170		shift_sel = 2;
 171		break;
 172	case VID_PLL_DIV_6:
 173		shift_val = 0x0e38;
 174		shift_sel = 0;
 175		break;
 176	case VID_PLL_DIV_6p25:
 177		shift_val = 0x0000;
 178		shift_sel = 3;
 179		break;
 180	case VID_PLL_DIV_7:
 181		shift_val = 0x3c78;
 182		shift_sel = 1;
 183		break;
 184	case VID_PLL_DIV_7p5:
 185		shift_val = 0x78f0;
 186		shift_sel = 2;
 187		break;
 188	case VID_PLL_DIV_12:
 189		shift_val = 0x0fc0;
 190		shift_sel = 0;
 191		break;
 192	case VID_PLL_DIV_14:
 193		shift_val = 0x3f80;
 194		shift_sel = 1;
 195		break;
 196	case VID_PLL_DIV_15:
 197		shift_val = 0x7f80;
 198		shift_sel = 2;
 199		break;
 200	}
 201
 202	if (div == VID_PLL_DIV_1)
 203		/* Enable vid_pll bypass to HDMI pll */
 204		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 205				   VID_PLL_BYPASS, VID_PLL_BYPASS);
 206	else {
 207		/* Disable Bypass */
 208		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 209				   VID_PLL_BYPASS, 0);
 210		/* Clear sel */
 211		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 212				   3 << 16, 0);
 213		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 214				   VID_PLL_PRESET, 0);
 215		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 216				   0x7fff, 0);
 217
 218		/* Setup sel and val */
 219		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 220				   3 << 16, shift_sel << 16);
 221		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 222				   VID_PLL_PRESET, VID_PLL_PRESET);
 223		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 224				   0x7fff, shift_val);
 225
 226		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 227				   VID_PLL_PRESET, 0);
 228	}
 229
 230	/* Enable the vid_pll output clock */
 231	regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 232				VID_PLL_EN, VID_PLL_EN);
 233}
 234
 235/*
 236 * Setup VCLK2 for 27MHz, and enable clocks for ENCI and VDAC
 237 *
 238 * TOFIX: Refactor into table to also handle HDMI frequency and paths
 239 */
 240static void meson_venci_cvbs_clock_config(struct meson_drm *priv)
 241{
 242	unsigned int val;
 243
 244	/* Setup PLL to output 1.485GHz */
 245	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 246		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x5800023d);
 247		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x00404e00);
 248		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x0d5c5091);
 249		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x801da72c);
 250		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x71486980);
 251		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x00000e55);
 252		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x4800023d);
 253
 254		/* Poll for lock bit */
 255		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 256					 (val & HDMI_PLL_LOCK), 10, 0);
 257	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 258		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 259		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x4000027b);
 260		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x800cb300);
 261		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0xa6212844);
 262		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x0c4d000c);
 263		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x001fa729);
 264		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x01a31500);
 265
 266		/* Reset PLL */
 267		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 268					HDMI_PLL_RESET, HDMI_PLL_RESET);
 269		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 270					HDMI_PLL_RESET, 0);
 271
 272		/* Poll for lock bit */
 273		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 274					 (val & HDMI_PLL_LOCK), 10, 0);
 275	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 276		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x1a0504f7);
 277		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x00010000);
 278		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x00000000);
 279		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x6a28dc00);
 280		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x65771290);
 281		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x39272000);
 282		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL7, 0x56540000);
 283		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x3a0504f7);
 284		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x1a0504f7);
 285
 286		/* Poll for lock bit */
 287		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 288			((val & HDMI_PLL_LOCK_G12A) == HDMI_PLL_LOCK_G12A),
 289			10, 0);
 290	}
 291
 292	/* Disable VCLK2 */
 293	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL, VCLK2_EN, 0);
 294
 295	/* Setup vid_pll to /1 */
 296	meson_vid_pll_set(priv, VID_PLL_DIV_1);
 297
 298	/* Setup the VCLK2 divider value to achieve 27MHz */
 299	regmap_update_bits(priv->hhi, HHI_VIID_CLK_DIV,
 300				VCLK2_DIV_MASK, (55 - 1));
 301
 302	/* select vid_pll for vclk2 */
 303	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 304		regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 305					VCLK2_SEL_MASK, (0 << VCLK2_SEL_SHIFT));
 306	else
 307		regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 308					VCLK2_SEL_MASK, (4 << VCLK2_SEL_SHIFT));
 309
 310	/* enable vclk2 gate */
 311	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL, VCLK2_EN, VCLK2_EN);
 312
 313	/* select vclk_div1 for enci */
 314	regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 315				CTS_ENCI_SEL_MASK, (8 << CTS_ENCI_SEL_SHIFT));
 316	/* select vclk_div1 for vdac */
 317	regmap_update_bits(priv->hhi, HHI_VIID_CLK_DIV,
 318				CTS_VDAC_SEL_MASK, (8 << CTS_VDAC_SEL_SHIFT));
 319
 320	/* release vclk2_div_reset and enable vclk2_div */
 321	regmap_update_bits(priv->hhi, HHI_VIID_CLK_DIV,
 322				VCLK2_DIV_EN | VCLK2_DIV_RESET, VCLK2_DIV_EN);
 323
 324	/* enable vclk2_div1 gate */
 325	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 326				VCLK2_DIV1_EN, VCLK2_DIV1_EN);
 327
 328	/* reset vclk2 */
 329	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 330				VCLK2_SOFT_RESET, VCLK2_SOFT_RESET);
 331	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 332				VCLK2_SOFT_RESET, 0);
 333
 334	/* enable enci_clk */
 335	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 336				CTS_ENCI_EN, CTS_ENCI_EN);
 337	/* enable vdac_clk */
 338	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 339				CTS_VDAC_EN, CTS_VDAC_EN);
 340}
 341
 342enum {
 343/* PLL	O1 O2 O3 VP DV     EN TX */
 344/* 4320 /4 /4 /1 /5 /1  => /2 /2 */
 345	MESON_VCLK_HDMI_ENCI_54000 = 0,
 346/* 4320 /4 /4 /1 /5 /1  => /1 /2 */
 347	MESON_VCLK_HDMI_DDR_54000,
 348/* 2970 /4 /1 /1 /5 /1  => /1 /2 */
 349	MESON_VCLK_HDMI_DDR_148500,
 350/* 2970 /2 /2 /2 /5 /1  => /1 /1 */
 351	MESON_VCLK_HDMI_74250,
 352/* 2970 /1 /2 /2 /5 /1  => /1 /1 */
 353	MESON_VCLK_HDMI_148500,
 354/* 2970 /1 /1 /1 /5 /2  => /1 /1 */
 355	MESON_VCLK_HDMI_297000,
 356/* 5940 /1 /1 /2 /5 /1  => /1 /1 */
 357	MESON_VCLK_HDMI_594000,
 358/* 2970 /1 /1 /1 /5 /1  => /1 /2 */
 359	MESON_VCLK_HDMI_594000_YUV420,
 360};
 361
 362struct meson_vclk_params {
 363	unsigned int pll_freq;
 364	unsigned int phy_freq;
 365	unsigned int vclk_freq;
 366	unsigned int venc_freq;
 367	unsigned int pixel_freq;
 
 368	unsigned int pll_od1;
 369	unsigned int pll_od2;
 370	unsigned int pll_od3;
 371	unsigned int vid_pll_div;
 372	unsigned int vclk_div;
 373} params[] = {
 374	[MESON_VCLK_HDMI_ENCI_54000] = {
 375		.pll_freq = 4320000,
 376		.phy_freq = 270000,
 377		.vclk_freq = 54000,
 378		.venc_freq = 54000,
 379		.pixel_freq = 54000,
 
 380		.pll_od1 = 4,
 381		.pll_od2 = 4,
 382		.pll_od3 = 1,
 383		.vid_pll_div = VID_PLL_DIV_5,
 384		.vclk_div = 1,
 385	},
 386	[MESON_VCLK_HDMI_DDR_54000] = {
 387		.pll_freq = 4320000,
 388		.phy_freq = 270000,
 389		.vclk_freq = 54000,
 390		.venc_freq = 54000,
 391		.pixel_freq = 27000,
 392		.pll_od1 = 4,
 393		.pll_od2 = 4,
 394		.pll_od3 = 1,
 395		.vid_pll_div = VID_PLL_DIV_5,
 396		.vclk_div = 1,
 397	},
 398	[MESON_VCLK_HDMI_DDR_148500] = {
 399		.pll_freq = 2970000,
 400		.phy_freq = 742500,
 401		.vclk_freq = 148500,
 402		.venc_freq = 148500,
 403		.pixel_freq = 74250,
 404		.pll_od1 = 4,
 405		.pll_od2 = 1,
 406		.pll_od3 = 1,
 407		.vid_pll_div = VID_PLL_DIV_5,
 408		.vclk_div = 1,
 409	},
 410	[MESON_VCLK_HDMI_74250] = {
 411		.pll_freq = 2970000,
 412		.phy_freq = 742500,
 413		.vclk_freq = 74250,
 414		.venc_freq = 74250,
 415		.pixel_freq = 74250,
 
 416		.pll_od1 = 2,
 417		.pll_od2 = 2,
 418		.pll_od3 = 2,
 419		.vid_pll_div = VID_PLL_DIV_5,
 420		.vclk_div = 1,
 421	},
 422	[MESON_VCLK_HDMI_148500] = {
 423		.pll_freq = 2970000,
 424		.phy_freq = 1485000,
 425		.vclk_freq = 148500,
 426		.venc_freq = 148500,
 427		.pixel_freq = 148500,
 
 428		.pll_od1 = 1,
 429		.pll_od2 = 2,
 430		.pll_od3 = 2,
 431		.vid_pll_div = VID_PLL_DIV_5,
 432		.vclk_div = 1,
 433	},
 434	[MESON_VCLK_HDMI_297000] = {
 435		.pll_freq = 5940000,
 436		.phy_freq = 2970000,
 437		.venc_freq = 297000,
 438		.vclk_freq = 297000,
 439		.pixel_freq = 297000,
 
 440		.pll_od1 = 2,
 441		.pll_od2 = 1,
 442		.pll_od3 = 1,
 443		.vid_pll_div = VID_PLL_DIV_5,
 444		.vclk_div = 2,
 445	},
 446	[MESON_VCLK_HDMI_594000] = {
 447		.pll_freq = 5940000,
 448		.phy_freq = 5940000,
 449		.venc_freq = 594000,
 450		.vclk_freq = 594000,
 451		.pixel_freq = 594000,
 
 452		.pll_od1 = 1,
 453		.pll_od2 = 1,
 454		.pll_od3 = 2,
 455		.vid_pll_div = VID_PLL_DIV_5,
 456		.vclk_div = 1,
 457	},
 458	[MESON_VCLK_HDMI_594000_YUV420] = {
 459		.pll_freq = 5940000,
 460		.phy_freq = 2970000,
 461		.venc_freq = 594000,
 462		.vclk_freq = 594000,
 463		.pixel_freq = 297000,
 464		.pll_od1 = 2,
 465		.pll_od2 = 1,
 466		.pll_od3 = 1,
 467		.vid_pll_div = VID_PLL_DIV_5,
 468		.vclk_div = 1,
 469	},
 470	{ /* sentinel */ },
 471};
 472
 473static inline unsigned int pll_od_to_reg(unsigned int od)
 474{
 475	switch (od) {
 476	case 1:
 477		return 0;
 478	case 2:
 479		return 1;
 480	case 4:
 481		return 2;
 482	case 8:
 483		return 3;
 484	}
 485
 486	/* Invalid */
 487	return 0;
 488}
 489
 490static void meson_hdmi_pll_set_params(struct meson_drm *priv, unsigned int m,
 491				      unsigned int frac, unsigned int od1,
 492				      unsigned int od2, unsigned int od3)
 493{
 494	unsigned int val;
 495
 496	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 497		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x58000200 | m);
 498		if (frac)
 499			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2,
 500				     0x00004000 | frac);
 501		else
 502			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2,
 503				     0x00000000);
 504		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x0d5c5091);
 505		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x801da72c);
 506		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x71486980);
 507		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x00000e55);
 508
 509		/* Enable and unreset */
 510		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 511				   0x7 << 28, HHI_HDMI_PLL_CNTL_EN);
 512
 513		/* Poll for lock bit */
 514		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL,
 515					 val, (val & HDMI_PLL_LOCK), 10, 0);
 516	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 517		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 518		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x40000200 | m);
 519		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x800cb000 | frac);
 520		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x860f30c4);
 521		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x0c8e0000);
 522		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x001fa729);
 523		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x01a31500);
 524
 525		/* Reset PLL */
 526		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 527				HDMI_PLL_RESET, HDMI_PLL_RESET);
 528		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 529				HDMI_PLL_RESET, 0);
 530
 531		/* Poll for lock bit */
 532		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 533				(val & HDMI_PLL_LOCK), 10, 0);
 534	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 535		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x0b3a0400 | m);
 536
 537		/* Enable and reset */
 538		/* TODO: add specific macro for g12a here */
 539		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 540				   0x3 << 28, 0x3 << 28);
 541
 542		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, frac);
 543		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x00000000);
 544
 545		/* G12A HDMI PLL Needs specific parameters for 5.4GHz */
 546		if (m >= 0xf7) {
 547			if (frac < 0x10000) {
 548				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4,
 549							0x6a685c00);
 550				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5,
 551							0x11551293);
 552			} else {
 553				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4,
 554							0xea68dc00);
 555				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5,
 556							0x65771290);
 557			}
 558			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x39272000);
 559			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL7, 0x55540000);
 560		} else {
 561			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x0a691c00);
 562			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x33771290);
 563			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x39270000);
 564			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL7, 0x50540000);
 565		}
 566
 567		do {
 568			/* Reset PLL */
 569			regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 570					HDMI_PLL_RESET_G12A, HDMI_PLL_RESET_G12A);
 571
 572			/* UN-Reset PLL */
 573			regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 574					HDMI_PLL_RESET_G12A, 0);
 575
 576			/* Poll for lock bits */
 577			if (!regmap_read_poll_timeout(priv->hhi,
 578						      HHI_HDMI_PLL_CNTL, val,
 579						      ((val & HDMI_PLL_LOCK_G12A)
 580						        == HDMI_PLL_LOCK_G12A),
 581						      10, 100))
 582				break;
 583		} while(1);
 584	}
 585
 586	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 587		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL2,
 588				3 << 16, pll_od_to_reg(od1) << 16);
 589	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 590		 meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL))
 591		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL3,
 592				3 << 21, pll_od_to_reg(od1) << 21);
 593	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 594		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 595				3 << 16, pll_od_to_reg(od1) << 16);
 596
 597	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 598		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL2,
 599				3 << 22, pll_od_to_reg(od2) << 22);
 600	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 601		 meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL))
 602		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL3,
 603				3 << 23, pll_od_to_reg(od2) << 23);
 604	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 605		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 606				3 << 18, pll_od_to_reg(od2) << 18);
 607
 608	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 609		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL2,
 610				3 << 18, pll_od_to_reg(od3) << 18);
 611	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 612		 meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL))
 613		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL3,
 614				3 << 19, pll_od_to_reg(od3) << 19);
 615	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 616		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 617				3 << 20, pll_od_to_reg(od3) << 20);
 618}
 619
 620#define XTAL_FREQ 24000
 621
 622static unsigned int meson_hdmi_pll_get_m(struct meson_drm *priv,
 623					 unsigned int pll_freq)
 624{
 625	/* The GXBB PLL has a /2 pre-multiplier */
 626	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 627		pll_freq /= 2;
 628
 629	return pll_freq / XTAL_FREQ;
 630}
 631
 632#define HDMI_FRAC_MAX_GXBB	4096
 633#define HDMI_FRAC_MAX_GXL	1024
 634#define HDMI_FRAC_MAX_G12A	131072
 635
 636static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 637					    unsigned int m,
 638					    unsigned int pll_freq)
 639{
 640	unsigned int parent_freq = XTAL_FREQ;
 641	unsigned int frac_max = HDMI_FRAC_MAX_GXL;
 642	unsigned int frac_m;
 643	unsigned int frac;
 644
 645	/* The GXBB PLL has a /2 pre-multiplier and a larger FRAC width */
 646	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 647		frac_max = HDMI_FRAC_MAX_GXBB;
 648		parent_freq *= 2;
 649	}
 650
 651	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 652		frac_max = HDMI_FRAC_MAX_G12A;
 653
 654	/* We can have a perfect match !*/
 655	if (pll_freq / m == parent_freq &&
 656	    pll_freq % m == 0)
 657		return 0;
 658
 659	frac = div_u64((u64)pll_freq * (u64)frac_max, parent_freq);
 660	frac_m = m * frac_max;
 661	if (frac_m > frac)
 662		return frac_max;
 663	frac -= frac_m;
 664
 665	return min((u16)frac, (u16)(frac_max - 1));
 666}
 667
 668static bool meson_hdmi_pll_validate_params(struct meson_drm *priv,
 669					   unsigned int m,
 670					   unsigned int frac)
 671{
 672	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 673		/* Empiric supported min/max dividers */
 674		if (m < 53 || m > 123)
 675			return false;
 676		if (frac >= HDMI_FRAC_MAX_GXBB)
 677			return false;
 678	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 679		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 
 680		/* Empiric supported min/max dividers */
 681		if (m < 106 || m > 247)
 682			return false;
 683		if (frac >= HDMI_FRAC_MAX_GXL)
 684			return false;
 685	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 686		/* Empiric supported min/max dividers */
 687		if (m < 106 || m > 247)
 688			return false;
 689		if (frac >= HDMI_FRAC_MAX_G12A)
 690			return false;
 691	}
 692
 693	return true;
 694}
 695
 696static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
 697				       unsigned int freq,
 698				       unsigned int *m,
 699				       unsigned int *frac,
 700				       unsigned int *od)
 701{
 702	/* Cycle from /16 to /2 */
 703	for (*od = 16 ; *od > 1 ; *od >>= 1) {
 704		*m = meson_hdmi_pll_get_m(priv, freq * *od);
 705		if (!*m)
 706			continue;
 707		*frac = meson_hdmi_pll_get_frac(priv, *m, freq * *od);
 708
 709		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d\n",
 710				 freq, *m, *frac, *od);
 711
 712		if (meson_hdmi_pll_validate_params(priv, *m, *frac))
 713			return true;
 714	}
 715
 716	return false;
 717}
 718
 719/* pll_freq is the frequency after the OD dividers */
 720enum drm_mode_status
 721meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq)
 722{
 723	unsigned int od, m, frac;
 724
 725	/* In DMT mode, path after PLL is always /10 */
 726	freq *= 10;
 727
 728	/* Check against soc revision/package limits */
 729	if (priv->limits) {
 730		if (priv->limits->max_hdmi_phy_freq &&
 731		    freq > priv->limits->max_hdmi_phy_freq)
 732			return MODE_CLOCK_HIGH;
 733	}
 734
 735	if (meson_hdmi_pll_find_params(priv, freq, &m, &frac, &od))
 736		return MODE_OK;
 737
 738	return MODE_CLOCK_RANGE;
 739}
 740EXPORT_SYMBOL_GPL(meson_vclk_dmt_supported_freq);
 741
 742/* pll_freq is the frequency after the OD dividers */
 743static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
 744				       unsigned int pll_freq)
 745{
 746	unsigned int od, m, frac, od1, od2, od3;
 747
 748	if (meson_hdmi_pll_find_params(priv, pll_freq, &m, &frac, &od)) {
 749		/* OD2 goes to the PHY, and needs to be *10, so keep OD3=1 */
 750		od3 = 1;
 751		if (od < 4) {
 752			od1 = 2;
 753			od2 = 1;
 754		} else {
 755			od2 = od / 4;
 756			od1 = od / od2;
 757		}
 758
 759		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d/%d/%d\n",
 760				 pll_freq, m, frac, od1, od2, od3);
 761
 762		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 763
 764		return;
 765	}
 766
 767	DRM_ERROR("Fatal, unable to find parameters for PLL freq %d\n",
 768		  pll_freq);
 769}
 770
 771enum drm_mode_status
 772meson_vclk_vic_supported_freq(struct meson_drm *priv, unsigned int phy_freq,
 773			      unsigned int vclk_freq)
 774{
 775	int i;
 776
 777	DRM_DEBUG_DRIVER("phy_freq = %d vclk_freq = %d\n",
 778			 phy_freq, vclk_freq);
 779
 780	/* Check against soc revision/package limits */
 781	if (priv->limits) {
 782		if (priv->limits->max_hdmi_phy_freq &&
 783		    phy_freq > priv->limits->max_hdmi_phy_freq)
 784			return MODE_CLOCK_HIGH;
 785	}
 786
 787	for (i = 0 ; params[i].pixel_freq ; ++i) {
 788		DRM_DEBUG_DRIVER("i = %d pixel_freq = %d alt = %d\n",
 789				 i, params[i].pixel_freq,
 790				 FREQ_1000_1001(params[i].pixel_freq));
 791		DRM_DEBUG_DRIVER("i = %d phy_freq = %d alt = %d\n",
 792				 i, params[i].phy_freq,
 793				 FREQ_1000_1001(params[i].phy_freq/1000)*1000);
 794		/* Match strict frequency */
 795		if (phy_freq == params[i].phy_freq &&
 796		    vclk_freq == params[i].vclk_freq)
 797			return MODE_OK;
 798		/* Match 1000/1001 variant */
 799		if (phy_freq == (FREQ_1000_1001(params[i].phy_freq/1000)*1000) &&
 800		    vclk_freq == FREQ_1000_1001(params[i].vclk_freq))
 801			return MODE_OK;
 802	}
 803
 804	return MODE_CLOCK_RANGE;
 805}
 806EXPORT_SYMBOL_GPL(meson_vclk_vic_supported_freq);
 807
 808static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 809			   unsigned int od1, unsigned int od2, unsigned int od3,
 810			   unsigned int vid_pll_div, unsigned int vclk_div,
 811			   unsigned int hdmi_tx_div, unsigned int venc_div,
 812			   bool hdmi_use_enci, bool vic_alternate_clock)
 813{
 814	unsigned int m = 0, frac = 0;
 815
 816	/* Set HDMI-TX sys clock */
 817	regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 818			   CTS_HDMI_SYS_SEL_MASK, 0);
 819	regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 820			   CTS_HDMI_SYS_DIV_MASK, 0);
 821	regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 822			   CTS_HDMI_SYS_EN, CTS_HDMI_SYS_EN);
 823
 824	/* Set HDMI PLL rate */
 825	if (!od1 && !od2 && !od3) {
 826		meson_hdmi_pll_generic_set(priv, pll_base_freq);
 827	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 828		switch (pll_base_freq) {
 829		case 2970000:
 830			m = 0x3d;
 831			frac = vic_alternate_clock ? 0xd02 : 0xe00;
 832			break;
 833		case 4320000:
 834			m = vic_alternate_clock ? 0x59 : 0x5a;
 835			frac = vic_alternate_clock ? 0xe8f : 0;
 836			break;
 837		case 5940000:
 838			m = 0x7b;
 839			frac = vic_alternate_clock ? 0xa05 : 0xc00;
 840			break;
 841		}
 842
 843		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 844	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 845		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 846		switch (pll_base_freq) {
 847		case 2970000:
 848			m = 0x7b;
 849			frac = vic_alternate_clock ? 0x281 : 0x300;
 850			break;
 851		case 4320000:
 852			m = vic_alternate_clock ? 0xb3 : 0xb4;
 853			frac = vic_alternate_clock ? 0x347 : 0;
 854			break;
 855		case 5940000:
 856			m = 0xf7;
 857			frac = vic_alternate_clock ? 0x102 : 0x200;
 858			break;
 859		}
 860
 861		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 862	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 863		switch (pll_base_freq) {
 864		case 2970000:
 865			m = 0x7b;
 866			frac = vic_alternate_clock ? 0x140b4 : 0x18000;
 867			break;
 868		case 4320000:
 869			m = vic_alternate_clock ? 0xb3 : 0xb4;
 870			frac = vic_alternate_clock ? 0x1a3ee : 0;
 871			break;
 872		case 5940000:
 873			m = 0xf7;
 874			frac = vic_alternate_clock ? 0x8148 : 0x10000;
 875			break;
 876		}
 877
 878		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 879	}
 880
 881	/* Setup vid_pll divider */
 882	meson_vid_pll_set(priv, vid_pll_div);
 883
 884	/* Set VCLK div */
 885	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 886			   VCLK_SEL_MASK, 0);
 887	regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 888			   VCLK_DIV_MASK, vclk_div - 1);
 889
 890	/* Set HDMI-TX source */
 891	switch (hdmi_tx_div) {
 892	case 1:
 893		/* enable vclk_div1 gate */
 894		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 895				   VCLK_DIV1_EN, VCLK_DIV1_EN);
 896
 897		/* select vclk_div1 for HDMI-TX */
 898		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 899				   HDMI_TX_PIXEL_SEL_MASK, 0);
 900		break;
 901	case 2:
 902		/* enable vclk_div2 gate */
 903		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 904				   VCLK_DIV2_EN, VCLK_DIV2_EN);
 905
 906		/* select vclk_div2 for HDMI-TX */
 907		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 908			HDMI_TX_PIXEL_SEL_MASK, 1 << HDMI_TX_PIXEL_SEL_SHIFT);
 909		break;
 910	case 4:
 911		/* enable vclk_div4 gate */
 912		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 913				   VCLK_DIV4_EN, VCLK_DIV4_EN);
 914
 915		/* select vclk_div4 for HDMI-TX */
 916		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 917			HDMI_TX_PIXEL_SEL_MASK, 2 << HDMI_TX_PIXEL_SEL_SHIFT);
 918		break;
 919	case 6:
 920		/* enable vclk_div6 gate */
 921		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 922				   VCLK_DIV6_EN, VCLK_DIV6_EN);
 923
 924		/* select vclk_div6 for HDMI-TX */
 925		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 926			HDMI_TX_PIXEL_SEL_MASK, 3 << HDMI_TX_PIXEL_SEL_SHIFT);
 927		break;
 928	case 12:
 929		/* enable vclk_div12 gate */
 930		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 931				   VCLK_DIV12_EN, VCLK_DIV12_EN);
 932
 933		/* select vclk_div12 for HDMI-TX */
 934		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 935			HDMI_TX_PIXEL_SEL_MASK, 4 << HDMI_TX_PIXEL_SEL_SHIFT);
 936		break;
 937	}
 938	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 939				   HDMI_TX_PIXEL_EN, HDMI_TX_PIXEL_EN);
 940
 941	/* Set ENCI/ENCP Source */
 942	switch (venc_div) {
 943	case 1:
 944		/* enable vclk_div1 gate */
 945		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 946				   VCLK_DIV1_EN, VCLK_DIV1_EN);
 947
 948		if (hdmi_use_enci)
 949			/* select vclk_div1 for enci */
 950			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 951					   CTS_ENCI_SEL_MASK, 0);
 952		else
 953			/* select vclk_div1 for encp */
 954			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 955					   CTS_ENCP_SEL_MASK, 0);
 956		break;
 957	case 2:
 958		/* enable vclk_div2 gate */
 959		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 960				   VCLK_DIV2_EN, VCLK_DIV2_EN);
 961
 962		if (hdmi_use_enci)
 963			/* select vclk_div2 for enci */
 964			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 965				CTS_ENCI_SEL_MASK, 1 << CTS_ENCI_SEL_SHIFT);
 966		else
 967			/* select vclk_div2 for encp */
 968			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 969				CTS_ENCP_SEL_MASK, 1 << CTS_ENCP_SEL_SHIFT);
 970		break;
 971	case 4:
 972		/* enable vclk_div4 gate */
 973		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 974				   VCLK_DIV4_EN, VCLK_DIV4_EN);
 975
 976		if (hdmi_use_enci)
 977			/* select vclk_div4 for enci */
 978			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 979				CTS_ENCI_SEL_MASK, 2 << CTS_ENCI_SEL_SHIFT);
 980		else
 981			/* select vclk_div4 for encp */
 982			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 983				CTS_ENCP_SEL_MASK, 2 << CTS_ENCP_SEL_SHIFT);
 984		break;
 985	case 6:
 986		/* enable vclk_div6 gate */
 987		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 988				   VCLK_DIV6_EN, VCLK_DIV6_EN);
 989
 990		if (hdmi_use_enci)
 991			/* select vclk_div6 for enci */
 992			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 993				CTS_ENCI_SEL_MASK, 3 << CTS_ENCI_SEL_SHIFT);
 994		else
 995			/* select vclk_div6 for encp */
 996			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 997				CTS_ENCP_SEL_MASK, 3 << CTS_ENCP_SEL_SHIFT);
 998		break;
 999	case 12:
1000		/* enable vclk_div12 gate */
1001		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
1002				   VCLK_DIV12_EN, VCLK_DIV12_EN);
1003
1004		if (hdmi_use_enci)
1005			/* select vclk_div12 for enci */
1006			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
1007				CTS_ENCI_SEL_MASK, 4 << CTS_ENCI_SEL_SHIFT);
1008		else
1009			/* select vclk_div12 for encp */
1010			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
1011				CTS_ENCP_SEL_MASK, 4 << CTS_ENCP_SEL_SHIFT);
1012		break;
1013	}
1014
1015	if (hdmi_use_enci)
1016		/* Enable ENCI clock gate */
1017		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
1018				   CTS_ENCI_EN, CTS_ENCI_EN);
1019	else
1020		/* Enable ENCP clock gate */
1021		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
1022				   CTS_ENCP_EN, CTS_ENCP_EN);
1023
1024	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL, VCLK_EN, VCLK_EN);
1025}
1026
1027void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
1028		      unsigned int phy_freq, unsigned int vclk_freq,
1029		      unsigned int venc_freq, unsigned int dac_freq,
1030		      bool hdmi_use_enci)
1031{
1032	bool vic_alternate_clock = false;
1033	unsigned int freq;
1034	unsigned int hdmi_tx_div;
1035	unsigned int venc_div;
1036
1037	if (target == MESON_VCLK_TARGET_CVBS) {
1038		meson_venci_cvbs_clock_config(priv);
1039		return;
1040	} else if (target == MESON_VCLK_TARGET_DMT) {
1041		/*
1042		 * The DMT clock path is fixed after the PLL:
1043		 * - automatic PLL freq + OD management
1044		 * - vid_pll_div = VID_PLL_DIV_5
1045		 * - vclk_div = 2
1046		 * - hdmi_tx_div = 1
1047		 * - venc_div = 1
1048		 * - encp encoder
1049		 */
1050		meson_vclk_set(priv, phy_freq, 0, 0, 0,
1051			       VID_PLL_DIV_5, 2, 1, 1, false, false);
1052		return;
1053	}
1054
1055	hdmi_tx_div = vclk_freq / dac_freq;
1056
1057	if (hdmi_tx_div == 0) {
1058		pr_err("Fatal Error, invalid HDMI-TX freq %d\n",
1059		       dac_freq);
1060		return;
1061	}
1062
1063	venc_div = vclk_freq / venc_freq;
1064
1065	if (venc_div == 0) {
1066		pr_err("Fatal Error, invalid HDMI venc freq %d\n",
1067		       venc_freq);
1068		return;
1069	}
1070
1071	for (freq = 0 ; params[freq].pixel_freq ; ++freq) {
1072		if ((phy_freq == params[freq].phy_freq ||
1073		     phy_freq == FREQ_1000_1001(params[freq].phy_freq/1000)*1000) &&
1074		    (vclk_freq == params[freq].vclk_freq ||
1075		     vclk_freq == FREQ_1000_1001(params[freq].vclk_freq))) {
1076			if (vclk_freq != params[freq].vclk_freq)
1077				vic_alternate_clock = true;
1078			else
1079				vic_alternate_clock = false;
1080
1081			if (freq == MESON_VCLK_HDMI_ENCI_54000 &&
1082			    !hdmi_use_enci)
1083				continue;
1084
1085			if (freq == MESON_VCLK_HDMI_DDR_54000 &&
1086			    hdmi_use_enci)
1087				continue;
1088
1089			if (freq == MESON_VCLK_HDMI_DDR_148500 &&
1090			    dac_freq == vclk_freq)
1091				continue;
1092
1093			if (freq == MESON_VCLK_HDMI_148500 &&
1094			    dac_freq != vclk_freq)
1095				continue;
1096			break;
1097		}
1098	}
1099
1100	if (!params[freq].pixel_freq) {
1101		pr_err("Fatal Error, invalid HDMI vclk freq %d\n", vclk_freq);
1102		return;
1103	}
1104
1105	meson_vclk_set(priv, params[freq].pll_freq,
1106		       params[freq].pll_od1, params[freq].pll_od2,
1107		       params[freq].pll_od3, params[freq].vid_pll_div,
1108		       params[freq].vclk_div, hdmi_tx_div, venc_div,
1109		       hdmi_use_enci, vic_alternate_clock);
1110}
1111EXPORT_SYMBOL_GPL(meson_vclk_setup);
v5.4
   1// SPDX-License-Identifier: GPL-2.0-or-later
   2/*
   3 * Copyright (C) 2016 BayLibre, SAS
   4 * Author: Neil Armstrong <narmstrong@baylibre.com>
   5 * Copyright (C) 2015 Amlogic, Inc. All rights reserved.
   6 */
   7
   8#include <linux/export.h>
   9
  10#include <drm/drm_print.h>
  11
  12#include "meson_drv.h"
  13#include "meson_vclk.h"
  14
  15/**
  16 * DOC: Video Clocks
  17 *
  18 * VCLK is the "Pixel Clock" frequency generator from a dedicated PLL.
  19 * We handle the following encodings :
  20 *
  21 * - CVBS 27MHz generator via the VCLK2 to the VENCI and VDAC blocks
  22 * - HDMI Pixel Clocks generation
  23 *
  24 * What is missing :
  25 *
  26 * - Genenate Pixel clocks for 2K/4K 10bit formats
  27 *
  28 * Clock generator scheme :
  29 *
  30 * .. code::
  31 *
  32 *    __________   _________            _____
  33 *   |          | |         |          |     |--ENCI
  34 *   | HDMI PLL |-| PLL_DIV |--- VCLK--|     |--ENCL
  35 *   |__________| |_________| \        | MUX |--ENCP
  36 *                             --VCLK2-|     |--VDAC
  37 *                                     |_____|--HDMI-TX
  38 *
  39 * Final clocks can take input for either VCLK or VCLK2, but
  40 * VCLK is the preferred path for HDMI clocking and VCLK2 is the
  41 * preferred path for CVBS VDAC clocking.
  42 *
  43 * VCLK and VCLK2 have fixed divided clocks paths for /1, /2, /4, /6 or /12.
  44 *
  45 * The PLL_DIV can achieve an additional fractional dividing like
  46 * 1.5, 3.5, 3.75... to generate special 2K and 4K 10bit clocks.
  47 */
  48
  49/* HHI Registers */
  50#define HHI_VID_PLL_CLK_DIV	0x1a0 /* 0x68 offset in data sheet */
  51#define VID_PLL_EN		BIT(19)
  52#define VID_PLL_BYPASS		BIT(18)
  53#define VID_PLL_PRESET		BIT(15)
  54#define HHI_VIID_CLK_DIV	0x128 /* 0x4a offset in data sheet */
  55#define VCLK2_DIV_MASK		0xff
  56#define VCLK2_DIV_EN		BIT(16)
  57#define VCLK2_DIV_RESET		BIT(17)
  58#define CTS_VDAC_SEL_MASK	(0xf << 28)
  59#define CTS_VDAC_SEL_SHIFT	28
  60#define HHI_VIID_CLK_CNTL	0x12c /* 0x4b offset in data sheet */
  61#define VCLK2_EN		BIT(19)
  62#define VCLK2_SEL_MASK		(0x7 << 16)
  63#define VCLK2_SEL_SHIFT		16
  64#define VCLK2_SOFT_RESET	BIT(15)
  65#define VCLK2_DIV1_EN		BIT(0)
  66#define HHI_VID_CLK_DIV		0x164 /* 0x59 offset in data sheet */
  67#define VCLK_DIV_MASK		0xff
  68#define VCLK_DIV_EN		BIT(16)
  69#define VCLK_DIV_RESET		BIT(17)
  70#define CTS_ENCP_SEL_MASK	(0xf << 24)
  71#define CTS_ENCP_SEL_SHIFT	24
  72#define CTS_ENCI_SEL_MASK	(0xf << 28)
  73#define CTS_ENCI_SEL_SHIFT	28
  74#define HHI_VID_CLK_CNTL	0x17c /* 0x5f offset in data sheet */
  75#define VCLK_EN			BIT(19)
  76#define VCLK_SEL_MASK		(0x7 << 16)
  77#define VCLK_SEL_SHIFT		16
  78#define VCLK_SOFT_RESET		BIT(15)
  79#define VCLK_DIV1_EN		BIT(0)
  80#define VCLK_DIV2_EN		BIT(1)
  81#define VCLK_DIV4_EN		BIT(2)
  82#define VCLK_DIV6_EN		BIT(3)
  83#define VCLK_DIV12_EN		BIT(4)
  84#define HHI_VID_CLK_CNTL2	0x194 /* 0x65 offset in data sheet */
  85#define CTS_ENCI_EN		BIT(0)
  86#define CTS_ENCP_EN		BIT(2)
  87#define CTS_VDAC_EN		BIT(4)
  88#define HDMI_TX_PIXEL_EN	BIT(5)
  89#define HHI_HDMI_CLK_CNTL	0x1cc /* 0x73 offset in data sheet */
  90#define HDMI_TX_PIXEL_SEL_MASK	(0xf << 16)
  91#define HDMI_TX_PIXEL_SEL_SHIFT	16
  92#define CTS_HDMI_SYS_SEL_MASK	(0x7 << 9)
  93#define CTS_HDMI_SYS_DIV_MASK	(0x7f)
  94#define CTS_HDMI_SYS_EN		BIT(8)
  95
  96#define HHI_VDAC_CNTL0		0x2F4 /* 0xbd offset in data sheet */
  97#define HHI_VDAC_CNTL1		0x2F8 /* 0xbe offset in data sheet */
  98
  99#define HHI_HDMI_PLL_CNTL	0x320 /* 0xc8 offset in data sheet */
 100#define HHI_HDMI_PLL_CNTL_EN	BIT(30)
 101#define HHI_HDMI_PLL_CNTL2	0x324 /* 0xc9 offset in data sheet */
 102#define HHI_HDMI_PLL_CNTL3	0x328 /* 0xca offset in data sheet */
 103#define HHI_HDMI_PLL_CNTL4	0x32C /* 0xcb offset in data sheet */
 104#define HHI_HDMI_PLL_CNTL5	0x330 /* 0xcc offset in data sheet */
 105#define HHI_HDMI_PLL_CNTL6	0x334 /* 0xcd offset in data sheet */
 106#define HHI_HDMI_PLL_CNTL7	0x338 /* 0xce offset in data sheet */
 107
 108#define HDMI_PLL_RESET		BIT(28)
 109#define HDMI_PLL_RESET_G12A	BIT(29)
 110#define HDMI_PLL_LOCK		BIT(31)
 111#define HDMI_PLL_LOCK_G12A	(3 << 30)
 112
 113#define FREQ_1000_1001(_freq)	DIV_ROUND_CLOSEST(_freq * 1000, 1001)
 114
 115/* VID PLL Dividers */
 116enum {
 117	VID_PLL_DIV_1 = 0,
 118	VID_PLL_DIV_2,
 119	VID_PLL_DIV_2p5,
 120	VID_PLL_DIV_3,
 121	VID_PLL_DIV_3p5,
 122	VID_PLL_DIV_3p75,
 123	VID_PLL_DIV_4,
 124	VID_PLL_DIV_5,
 125	VID_PLL_DIV_6,
 126	VID_PLL_DIV_6p25,
 127	VID_PLL_DIV_7,
 128	VID_PLL_DIV_7p5,
 129	VID_PLL_DIV_12,
 130	VID_PLL_DIV_14,
 131	VID_PLL_DIV_15,
 132};
 133
 134void meson_vid_pll_set(struct meson_drm *priv, unsigned int div)
 135{
 136	unsigned int shift_val = 0;
 137	unsigned int shift_sel = 0;
 138
 139	/* Disable vid_pll output clock */
 140	regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV, VID_PLL_EN, 0);
 141	regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV, VID_PLL_PRESET, 0);
 142
 143	switch (div) {
 144	case VID_PLL_DIV_2:
 145		shift_val = 0x0aaa;
 146		shift_sel = 0;
 147		break;
 148	case VID_PLL_DIV_2p5:
 149		shift_val = 0x5294;
 150		shift_sel = 2;
 151		break;
 152	case VID_PLL_DIV_3:
 153		shift_val = 0x0db6;
 154		shift_sel = 0;
 155		break;
 156	case VID_PLL_DIV_3p5:
 157		shift_val = 0x36cc;
 158		shift_sel = 1;
 159		break;
 160	case VID_PLL_DIV_3p75:
 161		shift_val = 0x6666;
 162		shift_sel = 2;
 163		break;
 164	case VID_PLL_DIV_4:
 165		shift_val = 0x0ccc;
 166		shift_sel = 0;
 167		break;
 168	case VID_PLL_DIV_5:
 169		shift_val = 0x739c;
 170		shift_sel = 2;
 171		break;
 172	case VID_PLL_DIV_6:
 173		shift_val = 0x0e38;
 174		shift_sel = 0;
 175		break;
 176	case VID_PLL_DIV_6p25:
 177		shift_val = 0x0000;
 178		shift_sel = 3;
 179		break;
 180	case VID_PLL_DIV_7:
 181		shift_val = 0x3c78;
 182		shift_sel = 1;
 183		break;
 184	case VID_PLL_DIV_7p5:
 185		shift_val = 0x78f0;
 186		shift_sel = 2;
 187		break;
 188	case VID_PLL_DIV_12:
 189		shift_val = 0x0fc0;
 190		shift_sel = 0;
 191		break;
 192	case VID_PLL_DIV_14:
 193		shift_val = 0x3f80;
 194		shift_sel = 1;
 195		break;
 196	case VID_PLL_DIV_15:
 197		shift_val = 0x7f80;
 198		shift_sel = 2;
 199		break;
 200	}
 201
 202	if (div == VID_PLL_DIV_1)
 203		/* Enable vid_pll bypass to HDMI pll */
 204		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 205				   VID_PLL_BYPASS, VID_PLL_BYPASS);
 206	else {
 207		/* Disable Bypass */
 208		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 209				   VID_PLL_BYPASS, 0);
 210		/* Clear sel */
 211		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 212				   3 << 16, 0);
 213		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 214				   VID_PLL_PRESET, 0);
 215		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 216				   0x7fff, 0);
 217
 218		/* Setup sel and val */
 219		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 220				   3 << 16, shift_sel << 16);
 221		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 222				   VID_PLL_PRESET, VID_PLL_PRESET);
 223		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 224				   0x7fff, shift_val);
 225
 226		regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 227				   VID_PLL_PRESET, 0);
 228	}
 229
 230	/* Enable the vid_pll output clock */
 231	regmap_update_bits(priv->hhi, HHI_VID_PLL_CLK_DIV,
 232				VID_PLL_EN, VID_PLL_EN);
 233}
 234
 235/*
 236 * Setup VCLK2 for 27MHz, and enable clocks for ENCI and VDAC
 237 *
 238 * TOFIX: Refactor into table to also handle HDMI frequency and paths
 239 */
 240static void meson_venci_cvbs_clock_config(struct meson_drm *priv)
 241{
 242	unsigned int val;
 243
 244	/* Setup PLL to output 1.485GHz */
 245	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 246		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x5800023d);
 247		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x00404e00);
 248		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x0d5c5091);
 249		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x801da72c);
 250		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x71486980);
 251		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x00000e55);
 252		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x4800023d);
 253
 254		/* Poll for lock bit */
 255		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 256					 (val & HDMI_PLL_LOCK), 10, 0);
 257	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 258		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 259		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x4000027b);
 260		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x800cb300);
 261		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0xa6212844);
 262		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x0c4d000c);
 263		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x001fa729);
 264		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x01a31500);
 265
 266		/* Reset PLL */
 267		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 268					HDMI_PLL_RESET, HDMI_PLL_RESET);
 269		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 270					HDMI_PLL_RESET, 0);
 271
 272		/* Poll for lock bit */
 273		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 274					 (val & HDMI_PLL_LOCK), 10, 0);
 275	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 276		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x1a0504f7);
 277		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x00010000);
 278		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x00000000);
 279		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x6a28dc00);
 280		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x65771290);
 281		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x39272000);
 282		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL7, 0x56540000);
 283		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x3a0504f7);
 284		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x1a0504f7);
 285
 286		/* Poll for lock bit */
 287		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 288			((val & HDMI_PLL_LOCK_G12A) == HDMI_PLL_LOCK_G12A),
 289			10, 0);
 290	}
 291
 292	/* Disable VCLK2 */
 293	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL, VCLK2_EN, 0);
 294
 295	/* Setup vid_pll to /1 */
 296	meson_vid_pll_set(priv, VID_PLL_DIV_1);
 297
 298	/* Setup the VCLK2 divider value to achieve 27MHz */
 299	regmap_update_bits(priv->hhi, HHI_VIID_CLK_DIV,
 300				VCLK2_DIV_MASK, (55 - 1));
 301
 302	/* select vid_pll for vclk2 */
 303	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 304		regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 305					VCLK2_SEL_MASK, (0 << VCLK2_SEL_SHIFT));
 306	else
 307		regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 308					VCLK2_SEL_MASK, (4 << VCLK2_SEL_SHIFT));
 309
 310	/* enable vclk2 gate */
 311	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL, VCLK2_EN, VCLK2_EN);
 312
 313	/* select vclk_div1 for enci */
 314	regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 315				CTS_ENCI_SEL_MASK, (8 << CTS_ENCI_SEL_SHIFT));
 316	/* select vclk_div1 for vdac */
 317	regmap_update_bits(priv->hhi, HHI_VIID_CLK_DIV,
 318				CTS_VDAC_SEL_MASK, (8 << CTS_VDAC_SEL_SHIFT));
 319
 320	/* release vclk2_div_reset and enable vclk2_div */
 321	regmap_update_bits(priv->hhi, HHI_VIID_CLK_DIV,
 322				VCLK2_DIV_EN | VCLK2_DIV_RESET, VCLK2_DIV_EN);
 323
 324	/* enable vclk2_div1 gate */
 325	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 326				VCLK2_DIV1_EN, VCLK2_DIV1_EN);
 327
 328	/* reset vclk2 */
 329	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 330				VCLK2_SOFT_RESET, VCLK2_SOFT_RESET);
 331	regmap_update_bits(priv->hhi, HHI_VIID_CLK_CNTL,
 332				VCLK2_SOFT_RESET, 0);
 333
 334	/* enable enci_clk */
 335	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 336				CTS_ENCI_EN, CTS_ENCI_EN);
 337	/* enable vdac_clk */
 338	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 339				CTS_VDAC_EN, CTS_VDAC_EN);
 340}
 341
 342enum {
 343/* PLL	O1 O2 O3 VP DV     EN TX */
 344/* 4320 /4 /4 /1 /5 /1  => /2 /2 */
 345	MESON_VCLK_HDMI_ENCI_54000 = 0,
 346/* 4320 /4 /4 /1 /5 /1  => /1 /2 */
 347	MESON_VCLK_HDMI_DDR_54000,
 348/* 2970 /4 /1 /1 /5 /1  => /1 /2 */
 349	MESON_VCLK_HDMI_DDR_148500,
 350/* 2970 /2 /2 /2 /5 /1  => /1 /1 */
 351	MESON_VCLK_HDMI_74250,
 352/* 2970 /1 /2 /2 /5 /1  => /1 /1 */
 353	MESON_VCLK_HDMI_148500,
 354/* 2970 /1 /1 /1 /5 /2  => /1 /1 */
 355	MESON_VCLK_HDMI_297000,
 356/* 5940 /1 /1 /2 /5 /1  => /1 /1 */
 357	MESON_VCLK_HDMI_594000
 
 
 358};
 359
 360struct meson_vclk_params {
 
 
 
 
 361	unsigned int pixel_freq;
 362	unsigned int pll_base_freq;
 363	unsigned int pll_od1;
 364	unsigned int pll_od2;
 365	unsigned int pll_od3;
 366	unsigned int vid_pll_div;
 367	unsigned int vclk_div;
 368} params[] = {
 369	[MESON_VCLK_HDMI_ENCI_54000] = {
 
 
 
 
 370		.pixel_freq = 54000,
 371		.pll_base_freq = 4320000,
 372		.pll_od1 = 4,
 373		.pll_od2 = 4,
 374		.pll_od3 = 1,
 375		.vid_pll_div = VID_PLL_DIV_5,
 376		.vclk_div = 1,
 377	},
 378	[MESON_VCLK_HDMI_DDR_54000] = {
 379		.pixel_freq = 54000,
 380		.pll_base_freq = 4320000,
 
 
 
 381		.pll_od1 = 4,
 382		.pll_od2 = 4,
 383		.pll_od3 = 1,
 384		.vid_pll_div = VID_PLL_DIV_5,
 385		.vclk_div = 1,
 386	},
 387	[MESON_VCLK_HDMI_DDR_148500] = {
 388		.pixel_freq = 148500,
 389		.pll_base_freq = 2970000,
 
 
 
 390		.pll_od1 = 4,
 391		.pll_od2 = 1,
 392		.pll_od3 = 1,
 393		.vid_pll_div = VID_PLL_DIV_5,
 394		.vclk_div = 1,
 395	},
 396	[MESON_VCLK_HDMI_74250] = {
 
 
 
 
 397		.pixel_freq = 74250,
 398		.pll_base_freq = 2970000,
 399		.pll_od1 = 2,
 400		.pll_od2 = 2,
 401		.pll_od3 = 2,
 402		.vid_pll_div = VID_PLL_DIV_5,
 403		.vclk_div = 1,
 404	},
 405	[MESON_VCLK_HDMI_148500] = {
 
 
 
 
 406		.pixel_freq = 148500,
 407		.pll_base_freq = 2970000,
 408		.pll_od1 = 1,
 409		.pll_od2 = 2,
 410		.pll_od3 = 2,
 411		.vid_pll_div = VID_PLL_DIV_5,
 412		.vclk_div = 1,
 413	},
 414	[MESON_VCLK_HDMI_297000] = {
 
 
 
 
 415		.pixel_freq = 297000,
 416		.pll_base_freq = 5940000,
 417		.pll_od1 = 2,
 418		.pll_od2 = 1,
 419		.pll_od3 = 1,
 420		.vid_pll_div = VID_PLL_DIV_5,
 421		.vclk_div = 2,
 422	},
 423	[MESON_VCLK_HDMI_594000] = {
 
 
 
 
 424		.pixel_freq = 594000,
 425		.pll_base_freq = 5940000,
 426		.pll_od1 = 1,
 427		.pll_od2 = 1,
 428		.pll_od3 = 2,
 429		.vid_pll_div = VID_PLL_DIV_5,
 430		.vclk_div = 1,
 431	},
 
 
 
 
 
 
 
 
 
 
 
 
 432	{ /* sentinel */ },
 433};
 434
 435static inline unsigned int pll_od_to_reg(unsigned int od)
 436{
 437	switch (od) {
 438	case 1:
 439		return 0;
 440	case 2:
 441		return 1;
 442	case 4:
 443		return 2;
 444	case 8:
 445		return 3;
 446	}
 447
 448	/* Invalid */
 449	return 0;
 450}
 451
 452void meson_hdmi_pll_set_params(struct meson_drm *priv, unsigned int m,
 453			       unsigned int frac, unsigned int od1,
 454			       unsigned int od2, unsigned int od3)
 455{
 456	unsigned int val;
 457
 458	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 459		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x58000200 | m);
 460		if (frac)
 461			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2,
 462				     0x00004000 | frac);
 463		else
 464			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2,
 465				     0x00000000);
 466		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x0d5c5091);
 467		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x801da72c);
 468		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x71486980);
 469		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x00000e55);
 470
 471		/* Enable and unreset */
 472		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 473				   0x7 << 28, HHI_HDMI_PLL_CNTL_EN);
 474
 475		/* Poll for lock bit */
 476		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL,
 477					 val, (val & HDMI_PLL_LOCK), 10, 0);
 478	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 479		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 480		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x40000200 | m);
 481		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, 0x800cb000 | frac);
 482		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x860f30c4);
 483		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x0c8e0000);
 484		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x001fa729);
 485		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x01a31500);
 486
 487		/* Reset PLL */
 488		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 489				HDMI_PLL_RESET, HDMI_PLL_RESET);
 490		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 491				HDMI_PLL_RESET, 0);
 492
 493		/* Poll for lock bit */
 494		regmap_read_poll_timeout(priv->hhi, HHI_HDMI_PLL_CNTL, val,
 495				(val & HDMI_PLL_LOCK), 10, 0);
 496	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 497		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL, 0x0b3a0400 | m);
 498
 499		/* Enable and reset */
 500		/* TODO: add specific macro for g12a here */
 501		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 502				   0x3 << 28, 0x3 << 28);
 503
 504		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL2, frac);
 505		regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL3, 0x00000000);
 506
 507		/* G12A HDMI PLL Needs specific parameters for 5.4GHz */
 508		if (m >= 0xf7) {
 509			if (frac < 0x10000) {
 510				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4,
 511							0x6a685c00);
 512				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5,
 513							0x11551293);
 514			} else {
 515				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4,
 516							0xea68dc00);
 517				regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5,
 518							0x65771290);
 519			}
 520			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x39272000);
 521			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL7, 0x55540000);
 522		} else {
 523			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL4, 0x0a691c00);
 524			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL5, 0x33771290);
 525			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL6, 0x39270000);
 526			regmap_write(priv->hhi, HHI_HDMI_PLL_CNTL7, 0x50540000);
 527		}
 528
 529		do {
 530			/* Reset PLL */
 531			regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 532					HDMI_PLL_RESET_G12A, HDMI_PLL_RESET_G12A);
 533
 534			/* UN-Reset PLL */
 535			regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 536					HDMI_PLL_RESET_G12A, 0);
 537
 538			/* Poll for lock bits */
 539			if (!regmap_read_poll_timeout(priv->hhi,
 540						      HHI_HDMI_PLL_CNTL, val,
 541						      ((val & HDMI_PLL_LOCK_G12A)
 542						        == HDMI_PLL_LOCK_G12A),
 543						      10, 100))
 544				break;
 545		} while(1);
 546	}
 547
 548	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 549		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL2,
 550				3 << 16, pll_od_to_reg(od1) << 16);
 551	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 552		 meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL))
 553		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL3,
 554				3 << 21, pll_od_to_reg(od1) << 21);
 555	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 556		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 557				3 << 16, pll_od_to_reg(od1) << 16);
 558
 559	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 560		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL2,
 561				3 << 22, pll_od_to_reg(od2) << 22);
 562	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 563		 meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL))
 564		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL3,
 565				3 << 23, pll_od_to_reg(od2) << 23);
 566	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 567		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 568				3 << 18, pll_od_to_reg(od2) << 18);
 569
 570	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 571		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL2,
 572				3 << 18, pll_od_to_reg(od3) << 18);
 573	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 574		 meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL))
 575		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL3,
 576				3 << 19, pll_od_to_reg(od3) << 19);
 577	else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 578		regmap_update_bits(priv->hhi, HHI_HDMI_PLL_CNTL,
 579				3 << 20, pll_od_to_reg(od3) << 20);
 580}
 581
 582#define XTAL_FREQ 24000
 583
 584static unsigned int meson_hdmi_pll_get_m(struct meson_drm *priv,
 585					 unsigned int pll_freq)
 586{
 587	/* The GXBB PLL has a /2 pre-multiplier */
 588	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB))
 589		pll_freq /= 2;
 590
 591	return pll_freq / XTAL_FREQ;
 592}
 593
 594#define HDMI_FRAC_MAX_GXBB	4096
 595#define HDMI_FRAC_MAX_GXL	1024
 596#define HDMI_FRAC_MAX_G12A	131072
 597
 598static unsigned int meson_hdmi_pll_get_frac(struct meson_drm *priv,
 599					    unsigned int m,
 600					    unsigned int pll_freq)
 601{
 602	unsigned int parent_freq = XTAL_FREQ;
 603	unsigned int frac_max = HDMI_FRAC_MAX_GXL;
 604	unsigned int frac_m;
 605	unsigned int frac;
 606
 607	/* The GXBB PLL has a /2 pre-multiplier and a larger FRAC width */
 608	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 609		frac_max = HDMI_FRAC_MAX_GXBB;
 610		parent_freq *= 2;
 611	}
 612
 613	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A))
 614		frac_max = HDMI_FRAC_MAX_G12A;
 615
 616	/* We can have a perfect match !*/
 617	if (pll_freq / m == parent_freq &&
 618	    pll_freq % m == 0)
 619		return 0;
 620
 621	frac = div_u64((u64)pll_freq * (u64)frac_max, parent_freq);
 622	frac_m = m * frac_max;
 623	if (frac_m > frac)
 624		return frac_max;
 625	frac -= frac_m;
 626
 627	return min((u16)frac, (u16)(frac_max - 1));
 628}
 629
 630static bool meson_hdmi_pll_validate_params(struct meson_drm *priv,
 631					   unsigned int m,
 632					   unsigned int frac)
 633{
 634	if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 635		/* Empiric supported min/max dividers */
 636		if (m < 53 || m > 123)
 637			return false;
 638		if (frac >= HDMI_FRAC_MAX_GXBB)
 639			return false;
 640	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 641		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL) ||
 642		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 643		/* Empiric supported min/max dividers */
 644		if (m < 106 || m > 247)
 645			return false;
 646		if (frac >= HDMI_FRAC_MAX_GXL)
 647			return false;
 
 
 
 
 
 
 648	}
 649
 650	return true;
 651}
 652
 653static bool meson_hdmi_pll_find_params(struct meson_drm *priv,
 654				       unsigned int freq,
 655				       unsigned int *m,
 656				       unsigned int *frac,
 657				       unsigned int *od)
 658{
 659	/* Cycle from /16 to /2 */
 660	for (*od = 16 ; *od > 1 ; *od >>= 1) {
 661		*m = meson_hdmi_pll_get_m(priv, freq * *od);
 662		if (!*m)
 663			continue;
 664		*frac = meson_hdmi_pll_get_frac(priv, *m, freq * *od);
 665
 666		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d\n",
 667				 freq, *m, *frac, *od);
 668
 669		if (meson_hdmi_pll_validate_params(priv, *m, *frac))
 670			return true;
 671	}
 672
 673	return false;
 674}
 675
 676/* pll_freq is the frequency after the OD dividers */
 677enum drm_mode_status
 678meson_vclk_dmt_supported_freq(struct meson_drm *priv, unsigned int freq)
 679{
 680	unsigned int od, m, frac;
 681
 682	/* In DMT mode, path after PLL is always /10 */
 683	freq *= 10;
 684
 
 
 
 
 
 
 
 685	if (meson_hdmi_pll_find_params(priv, freq, &m, &frac, &od))
 686		return MODE_OK;
 687
 688	return MODE_CLOCK_RANGE;
 689}
 690EXPORT_SYMBOL_GPL(meson_vclk_dmt_supported_freq);
 691
 692/* pll_freq is the frequency after the OD dividers */
 693static void meson_hdmi_pll_generic_set(struct meson_drm *priv,
 694				       unsigned int pll_freq)
 695{
 696	unsigned int od, m, frac, od1, od2, od3;
 697
 698	if (meson_hdmi_pll_find_params(priv, pll_freq, &m, &frac, &od)) {
 
 699		od3 = 1;
 700		if (od < 4) {
 701			od1 = 2;
 702			od2 = 1;
 703		} else {
 704			od2 = od / 4;
 705			od1 = od / od2;
 706		}
 707
 708		DRM_DEBUG_DRIVER("PLL params for %dkHz: m=%x frac=%x od=%d/%d/%d\n",
 709				 pll_freq, m, frac, od1, od2, od3);
 710
 711		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 712
 713		return;
 714	}
 715
 716	DRM_ERROR("Fatal, unable to find parameters for PLL freq %d\n",
 717		  pll_freq);
 718}
 719
 720enum drm_mode_status
 721meson_vclk_vic_supported_freq(unsigned int freq)
 
 722{
 723	int i;
 724
 725	DRM_DEBUG_DRIVER("freq = %d\n", freq);
 
 
 
 
 
 
 
 
 726
 727	for (i = 0 ; params[i].pixel_freq ; ++i) {
 728		DRM_DEBUG_DRIVER("i = %d pixel_freq = %d alt = %d\n",
 729				 i, params[i].pixel_freq,
 730				 FREQ_1000_1001(params[i].pixel_freq));
 
 
 
 731		/* Match strict frequency */
 732		if (freq == params[i].pixel_freq)
 
 733			return MODE_OK;
 734		/* Match 1000/1001 variant */
 735		if (freq == FREQ_1000_1001(params[i].pixel_freq))
 
 736			return MODE_OK;
 737	}
 738
 739	return MODE_CLOCK_RANGE;
 740}
 741EXPORT_SYMBOL_GPL(meson_vclk_vic_supported_freq);
 742
 743static void meson_vclk_set(struct meson_drm *priv, unsigned int pll_base_freq,
 744			   unsigned int od1, unsigned int od2, unsigned int od3,
 745			   unsigned int vid_pll_div, unsigned int vclk_div,
 746			   unsigned int hdmi_tx_div, unsigned int venc_div,
 747			   bool hdmi_use_enci, bool vic_alternate_clock)
 748{
 749	unsigned int m = 0, frac = 0;
 750
 751	/* Set HDMI-TX sys clock */
 752	regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 753			   CTS_HDMI_SYS_SEL_MASK, 0);
 754	regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 755			   CTS_HDMI_SYS_DIV_MASK, 0);
 756	regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 757			   CTS_HDMI_SYS_EN, CTS_HDMI_SYS_EN);
 758
 759	/* Set HDMI PLL rate */
 760	if (!od1 && !od2 && !od3) {
 761		meson_hdmi_pll_generic_set(priv, pll_base_freq);
 762	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXBB)) {
 763		switch (pll_base_freq) {
 764		case 2970000:
 765			m = 0x3d;
 766			frac = vic_alternate_clock ? 0xd02 : 0xe00;
 767			break;
 768		case 4320000:
 769			m = vic_alternate_clock ? 0x59 : 0x5a;
 770			frac = vic_alternate_clock ? 0xe8f : 0;
 771			break;
 772		case 5940000:
 773			m = 0x7b;
 774			frac = vic_alternate_clock ? 0xa05 : 0xc00;
 775			break;
 776		}
 777
 778		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 779	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXM) ||
 780		   meson_vpu_is_compatible(priv, VPU_COMPATIBLE_GXL)) {
 781		switch (pll_base_freq) {
 782		case 2970000:
 783			m = 0x7b;
 784			frac = vic_alternate_clock ? 0x281 : 0x300;
 785			break;
 786		case 4320000:
 787			m = vic_alternate_clock ? 0xb3 : 0xb4;
 788			frac = vic_alternate_clock ? 0x347 : 0;
 789			break;
 790		case 5940000:
 791			m = 0xf7;
 792			frac = vic_alternate_clock ? 0x102 : 0x200;
 793			break;
 794		}
 795
 796		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 797	} else if (meson_vpu_is_compatible(priv, VPU_COMPATIBLE_G12A)) {
 798		switch (pll_base_freq) {
 799		case 2970000:
 800			m = 0x7b;
 801			frac = vic_alternate_clock ? 0x140b4 : 0x18000;
 802			break;
 803		case 4320000:
 804			m = vic_alternate_clock ? 0xb3 : 0xb4;
 805			frac = vic_alternate_clock ? 0x1a3ee : 0;
 806			break;
 807		case 5940000:
 808			m = 0xf7;
 809			frac = vic_alternate_clock ? 0x8148 : 0x10000;
 810			break;
 811		}
 812
 813		meson_hdmi_pll_set_params(priv, m, frac, od1, od2, od3);
 814	}
 815
 816	/* Setup vid_pll divider */
 817	meson_vid_pll_set(priv, vid_pll_div);
 818
 819	/* Set VCLK div */
 820	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 821			   VCLK_SEL_MASK, 0);
 822	regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 823			   VCLK_DIV_MASK, vclk_div - 1);
 824
 825	/* Set HDMI-TX source */
 826	switch (hdmi_tx_div) {
 827	case 1:
 828		/* enable vclk_div1 gate */
 829		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 830				   VCLK_DIV1_EN, VCLK_DIV1_EN);
 831
 832		/* select vclk_div1 for HDMI-TX */
 833		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 834				   HDMI_TX_PIXEL_SEL_MASK, 0);
 835		break;
 836	case 2:
 837		/* enable vclk_div2 gate */
 838		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 839				   VCLK_DIV2_EN, VCLK_DIV2_EN);
 840
 841		/* select vclk_div2 for HDMI-TX */
 842		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 843			HDMI_TX_PIXEL_SEL_MASK, 1 << HDMI_TX_PIXEL_SEL_SHIFT);
 844		break;
 845	case 4:
 846		/* enable vclk_div4 gate */
 847		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 848				   VCLK_DIV4_EN, VCLK_DIV4_EN);
 849
 850		/* select vclk_div4 for HDMI-TX */
 851		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 852			HDMI_TX_PIXEL_SEL_MASK, 2 << HDMI_TX_PIXEL_SEL_SHIFT);
 853		break;
 854	case 6:
 855		/* enable vclk_div6 gate */
 856		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 857				   VCLK_DIV6_EN, VCLK_DIV6_EN);
 858
 859		/* select vclk_div6 for HDMI-TX */
 860		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 861			HDMI_TX_PIXEL_SEL_MASK, 3 << HDMI_TX_PIXEL_SEL_SHIFT);
 862		break;
 863	case 12:
 864		/* enable vclk_div12 gate */
 865		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 866				   VCLK_DIV12_EN, VCLK_DIV12_EN);
 867
 868		/* select vclk_div12 for HDMI-TX */
 869		regmap_update_bits(priv->hhi, HHI_HDMI_CLK_CNTL,
 870			HDMI_TX_PIXEL_SEL_MASK, 4 << HDMI_TX_PIXEL_SEL_SHIFT);
 871		break;
 872	}
 873	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 874				   HDMI_TX_PIXEL_EN, HDMI_TX_PIXEL_EN);
 875
 876	/* Set ENCI/ENCP Source */
 877	switch (venc_div) {
 878	case 1:
 879		/* enable vclk_div1 gate */
 880		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 881				   VCLK_DIV1_EN, VCLK_DIV1_EN);
 882
 883		if (hdmi_use_enci)
 884			/* select vclk_div1 for enci */
 885			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 886					   CTS_ENCI_SEL_MASK, 0);
 887		else
 888			/* select vclk_div1 for encp */
 889			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 890					   CTS_ENCP_SEL_MASK, 0);
 891		break;
 892	case 2:
 893		/* enable vclk_div2 gate */
 894		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 895				   VCLK_DIV2_EN, VCLK_DIV2_EN);
 896
 897		if (hdmi_use_enci)
 898			/* select vclk_div2 for enci */
 899			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 900				CTS_ENCI_SEL_MASK, 1 << CTS_ENCI_SEL_SHIFT);
 901		else
 902			/* select vclk_div2 for encp */
 903			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 904				CTS_ENCP_SEL_MASK, 1 << CTS_ENCP_SEL_SHIFT);
 905		break;
 906	case 4:
 907		/* enable vclk_div4 gate */
 908		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 909				   VCLK_DIV4_EN, VCLK_DIV4_EN);
 910
 911		if (hdmi_use_enci)
 912			/* select vclk_div4 for enci */
 913			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 914				CTS_ENCI_SEL_MASK, 2 << CTS_ENCI_SEL_SHIFT);
 915		else
 916			/* select vclk_div4 for encp */
 917			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 918				CTS_ENCP_SEL_MASK, 2 << CTS_ENCP_SEL_SHIFT);
 919		break;
 920	case 6:
 921		/* enable vclk_div6 gate */
 922		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 923				   VCLK_DIV6_EN, VCLK_DIV6_EN);
 924
 925		if (hdmi_use_enci)
 926			/* select vclk_div6 for enci */
 927			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 928				CTS_ENCI_SEL_MASK, 3 << CTS_ENCI_SEL_SHIFT);
 929		else
 930			/* select vclk_div6 for encp */
 931			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 932				CTS_ENCP_SEL_MASK, 3 << CTS_ENCP_SEL_SHIFT);
 933		break;
 934	case 12:
 935		/* enable vclk_div12 gate */
 936		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL,
 937				   VCLK_DIV12_EN, VCLK_DIV12_EN);
 938
 939		if (hdmi_use_enci)
 940			/* select vclk_div12 for enci */
 941			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 942				CTS_ENCI_SEL_MASK, 4 << CTS_ENCI_SEL_SHIFT);
 943		else
 944			/* select vclk_div12 for encp */
 945			regmap_update_bits(priv->hhi, HHI_VID_CLK_DIV,
 946				CTS_ENCP_SEL_MASK, 4 << CTS_ENCP_SEL_SHIFT);
 947		break;
 948	}
 949
 950	if (hdmi_use_enci)
 951		/* Enable ENCI clock gate */
 952		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 953				   CTS_ENCI_EN, CTS_ENCI_EN);
 954	else
 955		/* Enable ENCP clock gate */
 956		regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL2,
 957				   CTS_ENCP_EN, CTS_ENCP_EN);
 958
 959	regmap_update_bits(priv->hhi, HHI_VID_CLK_CNTL, VCLK_EN, VCLK_EN);
 960}
 961
 962void meson_vclk_setup(struct meson_drm *priv, unsigned int target,
 963		      unsigned int vclk_freq, unsigned int venc_freq,
 964		      unsigned int dac_freq, bool hdmi_use_enci)
 
 965{
 966	bool vic_alternate_clock = false;
 967	unsigned int freq;
 968	unsigned int hdmi_tx_div;
 969	unsigned int venc_div;
 970
 971	if (target == MESON_VCLK_TARGET_CVBS) {
 972		meson_venci_cvbs_clock_config(priv);
 973		return;
 974	} else if (target == MESON_VCLK_TARGET_DMT) {
 975		/*
 976		 * The DMT clock path is fixed after the PLL:
 977		 * - automatic PLL freq + OD management
 978		 * - vid_pll_div = VID_PLL_DIV_5
 979		 * - vclk_div = 2
 980		 * - hdmi_tx_div = 1
 981		 * - venc_div = 1
 982		 * - encp encoder
 983		 */
 984		meson_vclk_set(priv, vclk_freq * 10, 0, 0, 0,
 985			       VID_PLL_DIV_5, 2, 1, 1, false, false);
 986		return;
 987	}
 988
 989	hdmi_tx_div = vclk_freq / dac_freq;
 990
 991	if (hdmi_tx_div == 0) {
 992		pr_err("Fatal Error, invalid HDMI-TX freq %d\n",
 993		       dac_freq);
 994		return;
 995	}
 996
 997	venc_div = vclk_freq / venc_freq;
 998
 999	if (venc_div == 0) {
1000		pr_err("Fatal Error, invalid HDMI venc freq %d\n",
1001		       venc_freq);
1002		return;
1003	}
1004
1005	for (freq = 0 ; params[freq].pixel_freq ; ++freq) {
1006		if (vclk_freq == params[freq].pixel_freq ||
1007		    vclk_freq == FREQ_1000_1001(params[freq].pixel_freq)) {
1008			if (vclk_freq != params[freq].pixel_freq)
 
 
1009				vic_alternate_clock = true;
1010			else
1011				vic_alternate_clock = false;
1012
1013			if (freq == MESON_VCLK_HDMI_ENCI_54000 &&
1014			    !hdmi_use_enci)
1015				continue;
1016
1017			if (freq == MESON_VCLK_HDMI_DDR_54000 &&
1018			    hdmi_use_enci)
1019				continue;
1020
1021			if (freq == MESON_VCLK_HDMI_DDR_148500 &&
1022			    dac_freq == vclk_freq)
1023				continue;
1024
1025			if (freq == MESON_VCLK_HDMI_148500 &&
1026			    dac_freq != vclk_freq)
1027				continue;
1028			break;
1029		}
1030	}
1031
1032	if (!params[freq].pixel_freq) {
1033		pr_err("Fatal Error, invalid HDMI vclk freq %d\n", vclk_freq);
1034		return;
1035	}
1036
1037	meson_vclk_set(priv, params[freq].pll_base_freq,
1038		       params[freq].pll_od1, params[freq].pll_od2,
1039		       params[freq].pll_od3, params[freq].vid_pll_div,
1040		       params[freq].vclk_div, hdmi_tx_div, venc_div,
1041		       hdmi_use_enci, vic_alternate_clock);
1042}
1043EXPORT_SYMBOL_GPL(meson_vclk_setup);