intel_gmbus.c 24.2 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
#include <drm/i915_drm.h>
36

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

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

46 47 48 49 50 51 52 53
/* 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 },
54 55
};

56 57 58 59 60 61 62
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 },
};

63 64 65 66 67 68
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 已提交
69
static const struct gmbus_pin gmbus_pins_bxt[] = {
70 71 72
	[GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
	[GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
	[GMBUS_PIN_3_BXT] = { "misc", GPIOD },
J
Jani Nikula 已提交
73 74
};

75 76 77 78 79 80 81
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 },
};

82
static const struct gmbus_pin gmbus_pins_icp[] = {
83 84 85 86 87 88
	[GMBUS_PIN_1_BXT] = { "dpa", GPIOB },
	[GMBUS_PIN_2_BXT] = { "dpb", GPIOC },
	[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 },
89 90
};

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

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

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

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

130 131
/* Intel GPIO access functions */

J
Jean Delvare 已提交
132
#define I2C_RISEFALL_TIME 10
133

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

140
void
141
intel_gmbus_reset(struct drm_i915_private *dev_priv)
142
{
143 144
	I915_WRITE(GMBUS0, 0);
	I915_WRITE(GMBUS4, 0);
145 146
}

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

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

161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
static void pch_gmbus_clock_gating(struct drm_i915_private *dev_priv,
				   bool enable)
{
	u32 val;

	val = I915_READ(SOUTH_DSPCLK_GATE_D);
	if (!enable)
		val |= PCH_GMBUSUNIT_CLOCK_GATE_DISABLE;
	else
		val &= ~PCH_GMBUSUNIT_CLOCK_GATE_DISABLE;
	I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
}

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

	val = I915_READ(GEN9_CLKGATE_DIS_4);
	if (!enable)
		val |= BXT_GMBUS_GATING_DIS;
	else
		val &= ~BXT_GMBUS_GATING_DIS;
	I915_WRITE(GEN9_CLKGATE_DIS_4, val);
}

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

	/* On most chips, these bits must be preserved in software. */
194 195 196 197
	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 已提交
198 199 200 201

	return reserved;
}

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

	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 已提交
215 216 217 218
}

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

	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 已提交
230 231 232 233
}

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

	if (state_high)
		clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
	else
		clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
243
			     GPIO_CLOCK_VAL_MASK;
244

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

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

	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;

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

268 269 270 271 272 273 274 275
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;

276
	intel_gmbus_reset(dev_priv);
277 278 279 280

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

281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
	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);
297 298 299

	if (IS_PINEVIEW(dev_priv))
		pnv_gmbus_clock_gating(dev_priv, true);
300 301
}

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

308
	algo = &bus->bit_algo;
309

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

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

329 330
	/* 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
331 332 333 334
	 * need to wake up periodically and check that ourselves.
	 */
	if (!HAS_GMBUS_IRQ(dev_priv))
		irq_en = 0;
335

336 337
	add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
	I915_WRITE_FW(GMBUS4, irq_en);
338

339 340 341 342
	status |= GMBUS_SATOER;
	ret = wait_for_us((gmbus2 = I915_READ_FW(GMBUS2)) & status, 2);
	if (ret)
		ret = wait_for((gmbus2 = I915_READ_FW(GMBUS2)) & status, 50);
343

344 345
	I915_WRITE_FW(GMBUS4, 0);
	remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
346 347 348

	if (gmbus2 & GMBUS_SATOER)
		return -ENXIO;
349 350

	return ret;
351 352
}

353 354 355
static int
gmbus_wait_idle(struct drm_i915_private *dev_priv)
{
356 357
	DEFINE_WAIT(wait);
	u32 irq_enable;
358 359 360
	int ret;

	/* Important: The hw handles only the first bit, so set only one! */
361 362 363
	irq_enable = 0;
	if (HAS_GMBUS_IRQ(dev_priv))
		irq_enable = GMBUS_IDLE_EN;
364

365 366
	add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
	I915_WRITE_FW(GMBUS4, irq_enable);
367

368
	ret = intel_wait_for_register_fw(&dev_priv->uncore,
369 370
					 GMBUS2, GMBUS_ACTIVE, 0,
					 10);
371

372 373 374 375
	I915_WRITE_FW(GMBUS4, 0);
	remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);

	return ret;
376 377
}

378 379 380 381 382 383 384
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;
}

385
static int
386 387
gmbus_xfer_read_chunk(struct drm_i915_private *dev_priv,
		      unsigned short addr, u8 *buf, unsigned int len,
R
Ramalingam C 已提交
388
		      u32 gmbus0_reg, u32 gmbus1_index)
389
{
R
Ramalingam C 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
	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;
		I915_WRITE_FW(GMBUS0, gmbus0_reg | GMBUS_BYTE_CNT_OVERRIDE);
	}

407 408 409
	I915_WRITE_FW(GMBUS1,
		      gmbus1_index |
		      GMBUS_CYCLE_WAIT |
R
Ramalingam C 已提交
410
		      (size << GMBUS_BYTE_COUNT_SHIFT) |
411 412
		      (addr << GMBUS_SLAVE_ADDR_SHIFT) |
		      GMBUS_SLAVE_READ | GMBUS_SW_RDY);
413
	while (len) {
414
		int ret;
415 416
		u32 val, loop = 0;

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

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

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

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

	return 0;
}

R
Ramalingam C 已提交
438 439 440 441 442 443 444 445 446 447
/*
 * 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

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

	do {
R
Ramalingam C 已提交
458 459 460 461
		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));
462

R
Ramalingam C 已提交
463 464
		ret = gmbus_xfer_read_chunk(dev_priv, msg->addr, buf, len,
					    gmbus0_reg, gmbus1_index);
465 466 467 468 469 470 471 472 473 474 475 476
		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,
477 478
		       unsigned short addr, u8 *buf, unsigned int len,
		       u32 gmbus1_index)
479 480
{
	unsigned int chunk_size = len;
481 482 483
	u32 val, loop;

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

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

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

503
		I915_WRITE_FW(GMBUS3, val);
504

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

	return 0;
}

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

	do {
523
		len = min(tx_size, gmbus_max_xfer_size(dev_priv));
524

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

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

534 535 536
	return 0;
}

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

static int
R
Ramalingam C 已提交
552 553
gmbus_index_xfer(struct drm_i915_private *dev_priv, struct i2c_msg *msgs,
		 u32 gmbus0_reg)
554 555 556 557 558 559 560 561 562 563 564 565 566 567
{
	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)
568
		I915_WRITE_FW(GMBUS5, gmbus5);
569

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

	/* Clear GMBUS5 after each index transfer */
	if (gmbus5)
578
		I915_WRITE_FW(GMBUS5, 0);
579 580 581 582

	return ret;
}

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

594 595 596
	/* 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ä 已提交
597
	else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_CNP(dev_priv))
598 599
		pch_gmbus_clock_gating(dev_priv, false);

600
retry:
601
	I915_WRITE_FW(GMBUS0, gmbus0_source | bus->reg0);
602

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

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

625 626 627 628
	/* 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. */
629
	I915_WRITE_FW(GMBUS1, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
630

631 632 633 634
	/* 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.
	 */
635
	if (gmbus_wait_idle(dev_priv)) {
636
		DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
637
			 adapter->name);
638 639
		ret = -ETIMEDOUT;
	}
640
	I915_WRITE_FW(GMBUS0, 0);
641
	ret = ret ?: i;
642
	goto out;
643 644

clear_err:
645 646 647 648
	/*
	 * 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.
649 650 651 652 653 654 655 656
	 *
	 * 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.
657
	 */
658
	ret = -ENXIO;
659
	if (gmbus_wait_idle(dev_priv)) {
660 661
		DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
			      adapter->name);
662 663
		ret = -ETIMEDOUT;
	}
664

665 666 667 668
	/* 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.
	 */
669 670 671
	I915_WRITE_FW(GMBUS1, GMBUS_SW_CLR_INT);
	I915_WRITE_FW(GMBUS1, 0);
	I915_WRITE_FW(GMBUS0, 0);
672

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

677 678 679 680 681 682 683 684 685 686 687 688
	/*
	 * 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;
	}

689
	goto out;
690 691

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

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

702
out:
703 704 705
	/* 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ä 已提交
706
	else if (HAS_PCH_SPT(dev_priv) || HAS_PCH_CNP(dev_priv))
707 708
		pch_gmbus_clock_gating(dev_priv, true);

709 710 711 712 713 714
	return ret;
}

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

721
	wakeref = intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
722

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

733
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS, wakeref);
734

735
	return ret;
736 737
}

738 739
int intel_gmbus_output_aksv(struct i2c_adapter *adapter)
{
740 741
	struct intel_gmbus *bus =
		container_of(adapter, struct intel_gmbus, adapter);
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
	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,
		}
	};
759 760
	intel_wakeref_t wakeref;
	int ret;
761

762
	wakeref = intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
763 764 765 766 767 768 769 770 771 772
	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);
773
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS, wakeref);
774 775 776 777

	return ret;
}

778 779
static u32 gmbus_func(struct i2c_adapter *adapter)
{
780 781
	return i2c_bit_algo.functionality(adapter) &
		(I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
782 783 784 785 786 787 788 789 790 791
		/* 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
};

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 817 818
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);
}

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

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

836
	if (!HAS_DISPLAY(dev_priv))
837
		return 0;
838

839
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
840
		dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
R
Rodrigo Vivi 已提交
841
	else if (!HAS_GMCH(dev_priv))
842 843 844 845 846
		/*
		 * 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;
847

848
	mutex_init(&dev_priv->gmbus_mutex);
849
	init_waitqueue_head(&dev_priv->gmbus_wait_queue);
850

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

		bus = &dev_priv->gmbus[pin];
856 857 858 859

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

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

		bus->adapter.algo = &gmbus_algorithm;
868
		bus->adapter.lock_ops = &gmbus_lock_ops;
869

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

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

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

883
		intel_gpio_setup(bus, pin);
884 885 886 887

		ret = i2c_add_adapter(&bus->adapter);
		if (ret)
			goto err;
888 889
	}

890
	intel_gmbus_reset(dev_priv);
891 892 893 894

	return 0;

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

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

905
struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
906
					    unsigned int pin)
907
{
908
	if (WARN_ON(!intel_gmbus_is_valid_pin(dev_priv, pin)))
909 910 911
		return NULL;

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

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

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

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

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

928 929 930 931
	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);
932 933

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

936 937 938 939 940 941 942 943
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 已提交
944
{
945 946 947 948
	struct intel_gmbus *bus;
	unsigned int pin;

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

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