intel_gmbus.c 24.8 KB
Newer Older
J
Jesse Barnes 已提交
1 2
/*
 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
3
 * Copyright © 2006-2008,2010 Intel Corporation
J
Jesse Barnes 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
 *   Jesse Barnes <jesse.barnes@intel.com>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 *	Eric Anholt <eric@anholt.net>
27
 *	Chris Wilson <chris@chris-wilson.co.uk>
J
Jesse Barnes 已提交
28
 */
29

30
#include <linux/export.h>
31 32 33
#include <linux/i2c-algo-bit.h>
#include <linux/i2c.h>

34
#include <drm/drm_hdcp.h>
35

J
Jesse Barnes 已提交
36
#include "i915_drv.h"
37
#include "intel_display_types.h"
38
#include "intel_gmbus.h"
J
Jesse Barnes 已提交
39

40
struct gmbus_pin {
41
	const char *name;
42
	enum i915_gpio gpio;
43 44
};

45 46 47 48 49 50 51 52
/* Map gmbus pin pairs to names and registers. */
static const struct gmbus_pin gmbus_pins[] = {
	[GMBUS_PIN_SSC] = { "ssc", GPIOB },
	[GMBUS_PIN_VGADDC] = { "vga", GPIOA },
	[GMBUS_PIN_PANEL] = { "panel", GPIOC },
	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
53 54
};

55 56 57 58 59 60 61
static const struct gmbus_pin gmbus_pins_bdw[] = {
	[GMBUS_PIN_VGADDC] = { "vga", GPIOA },
	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
};

62 63 64 65 66 67
static const struct gmbus_pin gmbus_pins_skl[] = {
	[GMBUS_PIN_DPC] = { "dpc", GPIOD },
	[GMBUS_PIN_DPB] = { "dpb", GPIOE },
	[GMBUS_PIN_DPD] = { "dpd", GPIOF },
};

J
Jani Nikula 已提交
68
static const struct gmbus_pin gmbus_pins_bxt[] = {
69 70 71
	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
J
Jani Nikula 已提交
72 73
};

74 75 76 77 78 79 80
static const struct gmbus_pin gmbus_pins_cnp[] = {
	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
	[GMBUS_PIN_4_CNP] = { "dpd", GPIOE },
};

81
static const struct gmbus_pin gmbus_pins_icp[] = {
82 83 84 85 86 87 88 89 90 91 92
	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
	[GMBUS_PIN_3_BXT] = { "dpc", GPIOD },
	[GMBUS_PIN_9_TC1_ICP] = { "tc1", GPIOJ },
	[GMBUS_PIN_10_TC2_ICP] = { "tc2", GPIOK },
	[GMBUS_PIN_11_TC3_ICP] = { "tc3", GPIOL },
	[GMBUS_PIN_12_TC4_ICP] = { "tc4", GPIOM },
	[GMBUS_PIN_13_TC5_TGP] = { "tc5", GPION },
	[GMBUS_PIN_14_TC6_TGP] = { "tc6", GPIOO },
};

J
Jani Nikula 已提交
93 94 95 96
/* pin is expected to be valid */
static const struct gmbus_pin *get_gmbus_pin(struct drm_i915_private *dev_priv,
					     unsigned int pin)
{
97
	if (INTEL_PCH_TYPE(dev_priv) >= PCH_ICP)
98 99
		return &gmbus_pins_icp[pin];
	else if (HAS_PCH_CNP(dev_priv))
100 101
		return &gmbus_pins_cnp[pin];
	else if (IS_GEN9_LP(dev_priv))
J
Jani Nikula 已提交
102
		return &gmbus_pins_bxt[pin];
103
	else if (IS_GEN9_BC(dev_priv))
104
		return &gmbus_pins_skl[pin];
105 106
	else if (IS_BROADWELL(dev_priv))
		return &gmbus_pins_bdw[pin];
J
Jani Nikula 已提交
107 108 109 110
	else
		return &gmbus_pins[pin];
}

111 112 113
bool intel_gmbus_is_valid_pin(struct drm_i915_private *dev_priv,
			      unsigned int pin)
{
J
Jani Nikula 已提交
114 115
	unsigned int size;

116
	if (INTEL_PCH_TYPE(dev_priv) >= PCH_ICP)
117 118
		size = ARRAY_SIZE(gmbus_pins_icp);
	else if (HAS_PCH_CNP(dev_priv))
119 120
		size = ARRAY_SIZE(gmbus_pins_cnp);
	else if (IS_GEN9_LP(dev_priv))
J
Jani Nikula 已提交
121
		size = ARRAY_SIZE(gmbus_pins_bxt);
122
	else if (IS_GEN9_BC(dev_priv))
123
		size = ARRAY_SIZE(gmbus_pins_skl);
124 125
	else if (IS_BROADWELL(dev_priv))
		size = ARRAY_SIZE(gmbus_pins_bdw);
J
Jani Nikula 已提交
126 127 128
	else
		size = ARRAY_SIZE(gmbus_pins);

129
	return pin < size && get_gmbus_pin(dev_priv, pin)->name;
130 131
}

132 133
/* Intel GPIO access functions */

J
Jean Delvare 已提交
134
#define I2C_RISEFALL_TIME 10
135

C
Chris Wilson 已提交
136 137 138 139 140 141
static inline struct intel_gmbus *
to_intel_gmbus(struct i2c_adapter *i2c)
{
	return container_of(i2c, struct intel_gmbus, adapter);
}

142
void
143
intel_gmbus_reset(struct drm_i915_private *dev_priv)
144
{
145 146
	intel_de_write(dev_priv, GMBUS0, 0);
	intel_de_write(dev_priv, GMBUS4, 0);
147 148
}

149 150
static void pnv_gmbus_clock_gating(struct drm_i915_private *dev_priv,
				   bool enable)
151
{
152
	u32 val;
153 154

	/* When using bit bashing for I2C, this bit needs to be set to 1 */
155
	val = intel_de_read(dev_priv, DSPCLK_GATE_D);
156 157
	if (!enable)
		val |= PNV_GMBUSUNIT_CLOCK_GATE_DISABLE;
158
	else
159
		val &= ~PNV_GMBUSUNIT_CLOCK_GATE_DISABLE;
160
	intel_de_write(dev_priv, DSPCLK_GATE_D, val);
161 162
}

163 164 165 166 167
static void pch_gmbus_clock_gating(struct drm_i915_private *dev_priv,
				   bool enable)
{
	u32 val;

168
	val = intel_de_read(dev_priv, SOUTH_DSPCLK_GATE_D);
169 170 171 172
	if (!enable)
		val |= PCH_GMBUSUNIT_CLOCK_GATE_DISABLE;
	else
		val &= ~PCH_GMBUSUNIT_CLOCK_GATE_DISABLE;
173
	intel_de_write(dev_priv, SOUTH_DSPCLK_GATE_D, val);
174 175 176 177 178 179 180
}

static void bxt_gmbus_clock_gating(struct drm_i915_private *dev_priv,
				   bool enable)
{
	u32 val;

181
	val = intel_de_read(dev_priv, GEN9_CLKGATE_DIS_4);
182 183 184 185
	if (!enable)
		val |= BXT_GMBUS_GATING_DIS;
	else
		val &= ~BXT_GMBUS_GATING_DIS;
186
	intel_de_write(dev_priv, GEN9_CLKGATE_DIS_4, val);
187 188
}

189
static u32 get_reserved(struct intel_gmbus *bus)
C
Chris Wilson 已提交
190
{
191 192
	struct drm_i915_private *i915 = bus->dev_priv;
	struct intel_uncore *uncore = &i915->uncore;
C
Chris Wilson 已提交
193 194 195
	u32 reserved = 0;

	/* On most chips, these bits must be preserved in software. */
196 197 198 199
	if (!IS_I830(i915) && !IS_I845G(i915))
		reserved = intel_uncore_read_notrace(uncore, bus->gpio_reg) &
			   (GPIO_DATA_PULLUP_DISABLE |
			    GPIO_CLOCK_PULLUP_DISABLE);
C
Chris Wilson 已提交
200 201 202 203

	return reserved;
}

J
Jesse Barnes 已提交
204 205
static int get_clock(void *data)
{
206
	struct intel_gmbus *bus = data;
207
	struct intel_uncore *uncore = &bus->dev_priv->uncore;
208
	u32 reserved = get_reserved(bus);
209 210 211 212 213 214 215 216

	intel_uncore_write_notrace(uncore,
				   bus->gpio_reg,
				   reserved | GPIO_CLOCK_DIR_MASK);
	intel_uncore_write_notrace(uncore, bus->gpio_reg, reserved);

	return (intel_uncore_read_notrace(uncore, bus->gpio_reg) &
		GPIO_CLOCK_VAL_IN) != 0;
J
Jesse Barnes 已提交
217 218 219 220
}

static int get_data(void *data)
{
221
	struct intel_gmbus *bus = data;
222
	struct intel_uncore *uncore = &bus->dev_priv->uncore;
223
	u32 reserved = get_reserved(bus);
224 225 226 227 228 229 230 231

	intel_uncore_write_notrace(uncore,
				   bus->gpio_reg,
				   reserved | GPIO_DATA_DIR_MASK);
	intel_uncore_write_notrace(uncore, bus->gpio_reg, reserved);

	return (intel_uncore_read_notrace(uncore, bus->gpio_reg) &
		GPIO_DATA_VAL_IN) != 0;
J
Jesse Barnes 已提交
232 233 234 235
}

static void set_clock(void *data, int state_high)
{
236
	struct intel_gmbus *bus = data;
237
	struct intel_uncore *uncore = &bus->dev_priv->uncore;
238
	u32 reserved = get_reserved(bus);
C
Chris Wilson 已提交
239
	u32 clock_bits;
J
Jesse Barnes 已提交
240 241 242 243 244

	if (state_high)
		clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
	else
		clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
245
			     GPIO_CLOCK_VAL_MASK;
246

247 248 249 250
	intel_uncore_write_notrace(uncore,
				   bus->gpio_reg,
				   reserved | clock_bits);
	intel_uncore_posting_read(uncore, bus->gpio_reg);
J
Jesse Barnes 已提交
251 252 253 254
}

static void set_data(void *data, int state_high)
{
255
	struct intel_gmbus *bus = data;
256
	struct intel_uncore *uncore = &bus->dev_priv->uncore;
257
	u32 reserved = get_reserved(bus);
C
Chris Wilson 已提交
258
	u32 data_bits;
J
Jesse Barnes 已提交
259 260 261 262 263 264 265

	if (state_high)
		data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
	else
		data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
			GPIO_DATA_VAL_MASK;

266 267
	intel_uncore_write_notrace(uncore, bus->gpio_reg, reserved | data_bits);
	intel_uncore_posting_read(uncore, bus->gpio_reg);
J
Jesse Barnes 已提交
268 269
}

270 271 272 273 274 275 276 277
static int
intel_gpio_pre_xfer(struct i2c_adapter *adapter)
{
	struct intel_gmbus *bus = container_of(adapter,
					       struct intel_gmbus,
					       adapter);
	struct drm_i915_private *dev_priv = bus->dev_priv;

278
	intel_gmbus_reset(dev_priv);
279 280 281 282

	if (IS_PINEVIEW(dev_priv))
		pnv_gmbus_clock_gating(dev_priv, false);

283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
	set_data(bus, 1);
	set_clock(bus, 1);
	udelay(I2C_RISEFALL_TIME);
	return 0;
}

static void
intel_gpio_post_xfer(struct i2c_adapter *adapter)
{
	struct intel_gmbus *bus = container_of(adapter,
					       struct intel_gmbus,
					       adapter);
	struct drm_i915_private *dev_priv = bus->dev_priv;

	set_data(bus, 1);
	set_clock(bus, 1);
299 300 301

	if (IS_PINEVIEW(dev_priv))
		pnv_gmbus_clock_gating(dev_priv, true);
302 303
}

304
static void
305
intel_gpio_setup(struct intel_gmbus *bus, unsigned int pin)
306
{
307 308
	struct drm_i915_private *dev_priv = bus->dev_priv;
	struct i2c_algo_bit_data *algo;
309

310
	algo = &bus->bit_algo;
311

312
	bus->gpio_reg = GPIO(get_gmbus_pin(dev_priv, pin)->gpio);
313
	bus->adapter.algo_data = algo;
314 315 316 317
	algo->setsda = set_data;
	algo->setscl = set_clock;
	algo->getsda = get_data;
	algo->getscl = get_clock;
318 319
	algo->pre_xfer = intel_gpio_pre_xfer;
	algo->post_xfer = intel_gpio_post_xfer;
320 321 322
	algo->udelay = I2C_RISEFALL_TIME;
	algo->timeout = usecs_to_jiffies(2200);
	algo->data = bus;
J
Jesse Barnes 已提交
323 324
}

325
static int gmbus_wait(struct drm_i915_private *dev_priv, u32 status, u32 irq_en)
326
{
327
	DEFINE_WAIT(wait);
328 329
	u32 gmbus2;
	int ret;
330

331 332
	/* Important: The hw handles only the first bit, so set only one! Since
	 * we also need to check for NAKs besides the hw ready/idle signal, we
333 334 335 336
	 * need to wake up periodically and check that ourselves.
	 */
	if (!HAS_GMBUS_IRQ(dev_priv))
		irq_en = 0;
337

338
	add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
339
	intel_de_write_fw(dev_priv, GMBUS4, irq_en);
340

341
	status |= GMBUS_SATOER;
342 343
	ret = wait_for_us((gmbus2 = intel_de_read_fw(dev_priv, GMBUS2)) & status,
			  2);
344
	if (ret)
345 346
		ret = wait_for((gmbus2 = intel_de_read_fw(dev_priv, GMBUS2)) & status,
			       50);
347

348
	intel_de_write_fw(dev_priv, GMBUS4, 0);
349
	remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
350 351 352

	if (gmbus2 & GMBUS_SATOER)
		return -ENXIO;
353 354

	return ret;
355 356
}

357 358 359
static int
gmbus_wait_idle(struct drm_i915_private *dev_priv)
{
360 361
	DEFINE_WAIT(wait);
	u32 irq_enable;
362 363 364
	int ret;

	/* Important: The hw handles only the first bit, so set only one! */
365 366 367
	irq_enable = 0;
	if (HAS_GMBUS_IRQ(dev_priv))
		irq_enable = GMBUS_IDLE_EN;
368

369
	add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
370
	intel_de_write_fw(dev_priv, GMBUS4, irq_enable);
371

372
	ret = intel_wait_for_register_fw(&dev_priv->uncore,
373 374
					 GMBUS2, GMBUS_ACTIVE, 0,
					 10);
375

376
	intel_de_write_fw(dev_priv, GMBUS4, 0);
377 378 379
	remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);

	return ret;
380 381
}

382 383 384 385 386 387 388
static inline
unsigned int gmbus_max_xfer_size(struct drm_i915_private *dev_priv)
{
	return INTEL_GEN(dev_priv) >= 9 ? GEN9_GMBUS_BYTE_COUNT_MAX :
	       GMBUS_BYTE_COUNT_MAX;
}

389
static int
390 391
gmbus_xfer_read_chunk(struct drm_i915_private *dev_priv,
		      unsigned short addr, u8 *buf, unsigned int len,
R
Ramalingam C 已提交
392
		      u32 gmbus0_reg, u32 gmbus1_index)
393
{
R
Ramalingam C 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407
	unsigned int size = len;
	bool burst_read = len > gmbus_max_xfer_size(dev_priv);
	bool extra_byte_added = false;

	if (burst_read) {
		/*
		 * As per HW Spec, for 512Bytes need to read extra Byte and
		 * Ignore the extra byte read.
		 */
		if (len == 512) {
			extra_byte_added = true;
			len++;
		}
		size = len % 256 + 256;
408 409
		intel_de_write_fw(dev_priv, GMBUS0,
				  gmbus0_reg | GMBUS_BYTE_CNT_OVERRIDE);
R
Ramalingam C 已提交
410 411
	}

412 413
	intel_de_write_fw(dev_priv, GMBUS1,
			  gmbus1_index | GMBUS_CYCLE_WAIT | (size << GMBUS_BYTE_COUNT_SHIFT) | (addr << GMBUS_SLAVE_ADDR_SHIFT) | GMBUS_SLAVE_READ | GMBUS_SW_RDY);
414
	while (len) {
415
		int ret;
416 417
		u32 val, loop = 0;

418
		ret = gmbus_wait(dev_priv, GMBUS_HW_RDY, GMBUS_HW_RDY_EN);
419
		if (ret)
420
			return ret;
421

422
		val = intel_de_read_fw(dev_priv, GMBUS3);
423
		do {
R
Ramalingam C 已提交
424 425 426
			if (extra_byte_added && len == 1)
				break;

427 428 429
			*buf++ = val & 0xff;
			val >>= 8;
		} while (--len && ++loop < 4);
R
Ramalingam C 已提交
430 431 432

		if (burst_read && len == size - 4)
			/* Reset the override bit */
433
			intel_de_write_fw(dev_priv, GMBUS0, gmbus0_reg);
434
	}
435 436 437 438

	return 0;
}

R
Ramalingam C 已提交
439 440 441 442 443 444 445 446 447 448
/*
 * HW spec says that 512Bytes in Burst read need special treatment.
 * But it doesn't talk about other multiple of 256Bytes. And couldn't locate
 * an I2C slave, which supports such a lengthy burst read too for experiments.
 *
 * So until things get clarified on HW support, to avoid the burst read length
 * in fold of 256Bytes except 512, max burst read length is fixed at 767Bytes.
 */
#define INTEL_GMBUS_BURST_READ_MAX_LEN		767U

449
static int
450
gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
R
Ramalingam C 已提交
451
		u32 gmbus0_reg, u32 gmbus1_index)
452 453
{
	u8 *buf = msg->buf;
454 455 456 457 458
	unsigned int rx_size = msg->len;
	unsigned int len;
	int ret;

	do {
R
Ramalingam C 已提交
459 460 461 462
		if (HAS_GMBUS_BURST_READ(dev_priv))
			len = min(rx_size, INTEL_GMBUS_BURST_READ_MAX_LEN);
		else
			len = min(rx_size, gmbus_max_xfer_size(dev_priv));
463

R
Ramalingam C 已提交
464 465
		ret = gmbus_xfer_read_chunk(dev_priv, msg->addr, buf, len,
					    gmbus0_reg, gmbus1_index);
466 467 468 469 470 471 472 473 474 475 476 477
		if (ret)
			return ret;

		rx_size -= len;
		buf += len;
	} while (rx_size != 0);

	return 0;
}

static int
gmbus_xfer_write_chunk(struct drm_i915_private *dev_priv,
478 479
		       unsigned short addr, u8 *buf, unsigned int len,
		       u32 gmbus1_index)
480 481
{
	unsigned int chunk_size = len;
482 483 484
	u32 val, loop;

	val = loop = 0;
485 486 487 488
	while (len && loop < 4) {
		val |= *buf++ << (8 * loop++);
		len -= 1;
	}
489

490 491 492
	intel_de_write_fw(dev_priv, GMBUS3, val);
	intel_de_write_fw(dev_priv, GMBUS1,
			  gmbus1_index | GMBUS_CYCLE_WAIT | (chunk_size << GMBUS_BYTE_COUNT_SHIFT) | (addr << GMBUS_SLAVE_ADDR_SHIFT) | GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
493
	while (len) {
494 495
		int ret;

496 497 498 499 500
		val = loop = 0;
		do {
			val |= *buf++ << (8 * loop);
		} while (--len && ++loop < 4);

501
		intel_de_write_fw(dev_priv, GMBUS3, val);
502

503
		ret = gmbus_wait(dev_priv, GMBUS_HW_RDY, GMBUS_HW_RDY_EN);
504
		if (ret)
505
			return ret;
506
	}
507 508 509 510 511

	return 0;
}

static int
512 513
gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
		 u32 gmbus1_index)
514 515 516 517 518 519 520
{
	u8 *buf = msg->buf;
	unsigned int tx_size = msg->len;
	unsigned int len;
	int ret;

	do {
521
		len = min(tx_size, gmbus_max_xfer_size(dev_priv));
522

523 524
		ret = gmbus_xfer_write_chunk(dev_priv, msg->addr, buf, len,
					     gmbus1_index);
525 526 527 528 529 530 531
		if (ret)
			return ret;

		buf += len;
		tx_size -= len;
	} while (tx_size != 0);

532 533 534
	return 0;
}

535
/*
536 537
 * The gmbus controller can combine a 1 or 2 byte write with another read/write
 * that immediately follows it by using an "INDEX" cycle.
538 539
 */
static bool
540
gmbus_is_index_xfer(struct i2c_msg *msgs, int i, int num)
541 542
{
	return (i + 1 < num &&
543
		msgs[i].addr == msgs[i + 1].addr &&
544 545
		!(msgs[i].flags & I2C_M_RD) &&
		(msgs[i].len == 1 || msgs[i].len == 2) &&
546
		msgs[i + 1].len > 0);
547 548 549
}

static int
R
Ramalingam C 已提交
550 551
gmbus_index_xfer(struct drm_i915_private *dev_priv, struct i2c_msg *msgs,
		 u32 gmbus0_reg)
552 553 554 555 556 557 558 559 560 561 562 563 564 565
{
	u32 gmbus1_index = 0;
	u32 gmbus5 = 0;
	int ret;

	if (msgs[0].len == 2)
		gmbus5 = GMBUS_2BYTE_INDEX_EN |
			 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
	if (msgs[0].len == 1)
		gmbus1_index = GMBUS_CYCLE_INDEX |
			       (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);

	/* GMBUS5 holds 16-bit index */
	if (gmbus5)
566
		intel_de_write_fw(dev_priv, GMBUS5, gmbus5);
567

568
	if (msgs[1].flags & I2C_M_RD)
R
Ramalingam C 已提交
569 570
		ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus0_reg,
				      gmbus1_index);
571 572
	else
		ret = gmbus_xfer_write(dev_priv, &msgs[1], gmbus1_index);
573 574 575

	/* Clear GMBUS5 after each index transfer */
	if (gmbus5)
576
		intel_de_write_fw(dev_priv, GMBUS5, 0);
577 578 579 580

	return ret;
}

581
static int
582 583
do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num,
	      u32 gmbus0_source)
584 585 586 587
{
	struct intel_gmbus *bus = container_of(adapter,
					       struct intel_gmbus,
					       adapter);
588
	struct drm_i915_private *dev_priv = bus->dev_priv;
589
	int i = 0, inc, try = 0;
590
	int ret = 0;
591

592 593 594
	/* Display WA #0868: skl,bxt,kbl,cfl,glk,cnl */
	if (IS_GEN9_LP(dev_priv))
		bxt_gmbus_clock_gating(dev_priv, false);
V
Ville Syrjälä 已提交
595
	else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_CNP(dev_priv))
596 597
		pch_gmbus_clock_gating(dev_priv, false);

598
retry:
599
	intel_de_write_fw(dev_priv, GMBUS0, gmbus0_source | bus->reg0);
600

601 602
	for (; i < num; i += inc) {
		inc = 1;
603
		if (gmbus_is_index_xfer(msgs, i, num)) {
R
Ramalingam C 已提交
604 605
			ret = gmbus_index_xfer(dev_priv, &msgs[i],
					       gmbus0_source | bus->reg0);
606
			inc = 2; /* an index transmission is two msgs */
607
		} else if (msgs[i].flags & I2C_M_RD) {
R
Ramalingam C 已提交
608 609
			ret = gmbus_xfer_read(dev_priv, &msgs[i],
					      gmbus0_source | bus->reg0, 0);
610
		} else {
611
			ret = gmbus_xfer_write(dev_priv, &msgs[i], 0);
612
		}
613

614
		if (!ret)
615 616
			ret = gmbus_wait(dev_priv,
					 GMBUS_HW_WAIT_PHASE, GMBUS_HW_WAIT_EN);
617 618
		if (ret == -ETIMEDOUT)
			goto timeout;
619
		else if (ret)
620
			goto clear_err;
621 622
	}

623 624 625 626
	/* Generate a STOP condition on the bus. Note that gmbus can't generata
	 * a STOP on the very first cycle. To simplify the code we
	 * unconditionally generate the STOP condition with an additional gmbus
	 * cycle. */
627
	intel_de_write_fw(dev_priv, GMBUS1, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
628

629 630 631 632
	/* Mark the GMBUS interface as disabled after waiting for idle.
	 * We will re-enable it at the start of the next xfer,
	 * till then let it sleep.
	 */
633
	if (gmbus_wait_idle(dev_priv)) {
634
		DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
635
			 adapter->name);
636 637
		ret = -ETIMEDOUT;
	}
638
	intel_de_write_fw(dev_priv, GMBUS0, 0);
639
	ret = ret ?: i;
640
	goto out;
641 642

clear_err:
643 644 645 646
	/*
	 * Wait for bus to IDLE before clearing NAK.
	 * If we clear the NAK while bus is still active, then it will stay
	 * active and the next transaction may fail.
647 648 649 650 651 652 653 654
	 *
	 * If no ACK is received during the address phase of a transaction, the
	 * adapter must report -ENXIO. It is not clear what to return if no ACK
	 * is received at other times. But we have to be careful to not return
	 * spurious -ENXIO because that will prevent i2c and drm edid functions
	 * from retrying. So return -ENXIO only when gmbus properly quiescents -
	 * timing out seems to happen when there _is_ a ddc chip present, but
	 * it's slow responding and only answers on the 2nd retry.
655
	 */
656
	ret = -ENXIO;
657
	if (gmbus_wait_idle(dev_priv)) {
658 659
		DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
			      adapter->name);
660 661
		ret = -ETIMEDOUT;
	}
662

663 664 665 666
	/* Toggle the Software Clear Interrupt bit. This has the effect
	 * of resetting the GMBUS controller and so clearing the
	 * BUS_ERROR raised by the slave's NAK.
	 */
667 668 669
	intel_de_write_fw(dev_priv, GMBUS1, GMBUS_SW_CLR_INT);
	intel_de_write_fw(dev_priv, GMBUS1, 0);
	intel_de_write_fw(dev_priv, GMBUS0, 0);
670

671
	DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
672 673 674
			 adapter->name, msgs[i].addr,
			 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);

675 676 677 678 679 680 681 682 683 684 685 686
	/*
	 * Passive adapters sometimes NAK the first probe. Retry the first
	 * message once on -ENXIO for GMBUS transfers; the bit banging algorithm
	 * has retries internally. See also the retry loop in
	 * drm_do_probe_ddc_edid, which bails out on the first -ENXIO.
	 */
	if (ret == -ENXIO && i == 0 && try++ == 0) {
		DRM_DEBUG_KMS("GMBUS [%s] NAK on first message, retry\n",
			      adapter->name);
		goto retry;
	}

687
	goto out;
688 689

timeout:
690 691
	DRM_DEBUG_KMS("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
		      bus->adapter.name, bus->reg0 & 0xff);
692
	intel_de_write_fw(dev_priv, GMBUS0, 0);
693

694 695 696 697 698
	/*
	 * Hardware may not support GMBUS over these pins? Try GPIO bitbanging
	 * instead. Use EAGAIN to have i2c core retry.
	 */
	ret = -EAGAIN;
699

700
out:
701 702 703
	/* Display WA #0868: skl,bxt,kbl,cfl,glk,cnl */
	if (IS_GEN9_LP(dev_priv))
		bxt_gmbus_clock_gating(dev_priv, true);
V
Ville Syrjälä 已提交
704
	else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_CNP(dev_priv))
705 706
		pch_gmbus_clock_gating(dev_priv, true);

707 708 709 710 711 712
	return ret;
}

static int
gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num)
{
713 714
	struct intel_gmbus *bus =
		container_of(adapter, struct intel_gmbus, adapter);
715
	struct drm_i915_private *dev_priv = bus->dev_priv;
716
	intel_wakeref_t wakeref;
717 718
	int ret;

719
	wakeref = intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
720

721
	if (bus->force_bit) {
722
		ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
723 724 725
		if (ret < 0)
			bus->force_bit &= ~GMBUS_FORCE_BIT_RETRY;
	} else {
726
		ret = do_gmbus_xfer(adapter, msgs, num, 0);
727 728 729
		if (ret == -EAGAIN)
			bus->force_bit |= GMBUS_FORCE_BIT_RETRY;
	}
730

731
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS, wakeref);
732

733
	return ret;
734 735
}

736 737
int intel_gmbus_output_aksv(struct i2c_adapter *adapter)
{
738 739
	struct intel_gmbus *bus =
		container_of(adapter, struct intel_gmbus, adapter);
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u8 cmd = DRM_HDCP_DDC_AKSV;
	u8 buf[DRM_HDCP_KSV_LEN] = { 0 };
	struct i2c_msg msgs[] = {
		{
			.addr = DRM_HDCP_DDC_ADDR,
			.flags = 0,
			.len = sizeof(cmd),
			.buf = &cmd,
		},
		{
			.addr = DRM_HDCP_DDC_ADDR,
			.flags = 0,
			.len = sizeof(buf),
			.buf = buf,
		}
	};
757 758
	intel_wakeref_t wakeref;
	int ret;
759

760
	wakeref = intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
761 762 763 764 765 766 767 768 769 770
	mutex_lock(&dev_priv->gmbus_mutex);

	/*
	 * In order to output Aksv to the receiver, use an indexed write to
	 * pass the i2c command, and tell GMBUS to use the HW-provided value
	 * instead of sourcing GMBUS3 for the data.
	 */
	ret = do_gmbus_xfer(adapter, msgs, ARRAY_SIZE(msgs), GMBUS_AKSV_SELECT);

	mutex_unlock(&dev_priv->gmbus_mutex);
771
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS, wakeref);
772 773 774 775

	return ret;
}

776 777
static u32 gmbus_func(struct i2c_adapter *adapter)
{
778 779
	return i2c_bit_algo.functionality(adapter) &
		(I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
780 781 782 783 784 785 786 787 788 789
		/* I2C_FUNC_10BIT_ADDR | */
		I2C_FUNC_SMBUS_READ_BLOCK_DATA |
		I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
}

static const struct i2c_algorithm gmbus_algorithm = {
	.master_xfer	= gmbus_xfer,
	.functionality	= gmbus_func
};

790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816
static void gmbus_lock_bus(struct i2c_adapter *adapter,
			   unsigned int flags)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);
	struct drm_i915_private *dev_priv = bus->dev_priv;

	mutex_lock(&dev_priv->gmbus_mutex);
}

static int gmbus_trylock_bus(struct i2c_adapter *adapter,
			     unsigned int flags)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);
	struct drm_i915_private *dev_priv = bus->dev_priv;

	return mutex_trylock(&dev_priv->gmbus_mutex);
}

static void gmbus_unlock_bus(struct i2c_adapter *adapter,
			     unsigned int flags)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);
	struct drm_i915_private *dev_priv = bus->dev_priv;

	mutex_unlock(&dev_priv->gmbus_mutex);
}

817
static const struct i2c_lock_operations gmbus_lock_ops = {
818 819 820 821 822
	.lock_bus =    gmbus_lock_bus,
	.trylock_bus = gmbus_trylock_bus,
	.unlock_bus =  gmbus_unlock_bus,
};

J
Jesse Barnes 已提交
823
/**
824
 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
825
 * @dev_priv: i915 device private
J
Jesse Barnes 已提交
826
 */
827
int intel_gmbus_setup(struct drm_i915_private *dev_priv)
828
{
D
David Weinehall 已提交
829
	struct pci_dev *pdev = dev_priv->drm.pdev;
830 831 832
	struct intel_gmbus *bus;
	unsigned int pin;
	int ret;
833

834
	if (!HAS_DISPLAY(dev_priv) || !INTEL_DISPLAY_ENABLED(dev_priv))
835
		return 0;
836

837
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
838
		dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
R
Rodrigo Vivi 已提交
839
	else if (!HAS_GMCH(dev_priv))
840 841 842 843 844
		/*
		 * Broxton uses the same PCH offsets for South Display Engine,
		 * even though it doesn't have a PCH.
		 */
		dev_priv->gpio_mmio_base = PCH_DISPLAY_BASE;
845

846
	mutex_init(&dev_priv->gmbus_mutex);
847
	init_waitqueue_head(&dev_priv->gmbus_wait_queue);
848

849
	for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
850
		if (!intel_gmbus_is_valid_pin(dev_priv, pin))
851 852 853
			continue;

		bus = &dev_priv->gmbus[pin];
854 855 856 857

		bus->adapter.owner = THIS_MODULE;
		bus->adapter.class = I2C_CLASS_DDC;
		snprintf(bus->adapter.name,
858 859
			 sizeof(bus->adapter.name),
			 "i915 gmbus %s",
J
Jani Nikula 已提交
860
			 get_gmbus_pin(dev_priv, pin)->name);
861

D
David Weinehall 已提交
862
		bus->adapter.dev.parent = &pdev->dev;
863
		bus->dev_priv = dev_priv;
864 865

		bus->adapter.algo = &gmbus_algorithm;
866
		bus->adapter.lock_ops = &gmbus_lock_ops;
867

868 869 870 871 872 873
		/*
		 * We wish to retry with bit banging
		 * after a timed out GMBUS attempt.
		 */
		bus->adapter.retries = 1;

C
Chris Wilson 已提交
874
		/* By default use a conservative clock rate */
875
		bus->reg0 = pin | GMBUS_RATE_100KHZ;
876

D
Daniel Vetter 已提交
877
		/* gmbus seems to be broken on i830 */
878
		if (IS_I830(dev_priv))
879
			bus->force_bit = 1;
D
Daniel Vetter 已提交
880

881
		intel_gpio_setup(bus, pin);
882 883 884 885

		ret = i2c_add_adapter(&bus->adapter);
		if (ret)
			goto err;
886 887
	}

888
	intel_gmbus_reset(dev_priv);
889 890 891 892

	return 0;

err:
893
	while (pin--) {
894
		if (!intel_gmbus_is_valid_pin(dev_priv, pin))
895 896 897
			continue;

		bus = &dev_priv->gmbus[pin];
898 899 900 901 902
		i2c_del_adapter(&bus->adapter);
	}
	return ret;
}

903
struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
904
					    unsigned int pin)
905
{
906 907
	if (drm_WARN_ON(&dev_priv->drm,
			!intel_gmbus_is_valid_pin(dev_priv, pin)))
908 909 910
		return NULL;

	return &dev_priv->gmbus[pin].adapter;
911 912
}

C
Chris Wilson 已提交
913 914 915 916
void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);

917
	bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
C
Chris Wilson 已提交
918 919 920 921 922
}

void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);
923 924 925
	struct drm_i915_private *dev_priv = bus->dev_priv;

	mutex_lock(&dev_priv->gmbus_mutex);
C
Chris Wilson 已提交
926

927 928 929 930
	bus->force_bit += force_bit ? 1 : -1;
	DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
		      force_bit ? "en" : "dis", adapter->name,
		      bus->force_bit);
931 932

	mutex_unlock(&dev_priv->gmbus_mutex);
C
Chris Wilson 已提交
933 934
}

935 936 937 938 939 940 941 942
bool intel_gmbus_is_forced_bit(struct i2c_adapter *adapter)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);

	return bus->force_bit;
}

void intel_gmbus_teardown(struct drm_i915_private *dev_priv)
J
Jesse Barnes 已提交
943
{
944 945 946 947
	struct intel_gmbus *bus;
	unsigned int pin;

	for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
948
		if (!intel_gmbus_is_valid_pin(dev_priv, pin))
949
			continue;
950

951
		bus = &dev_priv->gmbus[pin];
952 953
		i2c_del_adapter(&bus->adapter);
	}
J
Jesse Barnes 已提交
954
}