intel_i2c.c 20.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/i2c.h>
#include <linux/i2c-algo-bit.h>
31
#include <linux/export.h>
32
#include <drm/drmP.h>
J
Jesse Barnes 已提交
33
#include "intel_drv.h"
34
#include <drm/i915_drm.h>
J
Jesse Barnes 已提交
35 36
#include "i915_drv.h"

37
struct gmbus_pin {
38
	const char *name;
39
	i915_reg_t reg;
40 41
};

42 43 44 45 46 47 48 49
/* 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 },
50 51
};

52 53 54 55 56 57 58
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 },
};

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

71 72 73 74 75 76 77
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 },
};

J
Jani Nikula 已提交
78 79 80 81
/* pin is expected to be valid */
static const struct gmbus_pin *get_gmbus_pin(struct drm_i915_private *dev_priv,
					     unsigned int pin)
{
82 83 84
	if (HAS_PCH_CNP(dev_priv))
		return &gmbus_pins_cnp[pin];
	else if (IS_GEN9_LP(dev_priv))
J
Jani Nikula 已提交
85
		return &gmbus_pins_bxt[pin];
86
	else if (IS_GEN9_BC(dev_priv))
87
		return &gmbus_pins_skl[pin];
88 89
	else if (IS_BROADWELL(dev_priv))
		return &gmbus_pins_bdw[pin];
J
Jani Nikula 已提交
90 91 92 93
	else
		return &gmbus_pins[pin];
}

94 95 96
bool intel_gmbus_is_valid_pin(struct drm_i915_private *dev_priv,
			      unsigned int pin)
{
J
Jani Nikula 已提交
97 98
	unsigned int size;

99 100 101
	if (HAS_PCH_CNP(dev_priv))
		size = ARRAY_SIZE(gmbus_pins_cnp);
	else if (IS_GEN9_LP(dev_priv))
J
Jani Nikula 已提交
102
		size = ARRAY_SIZE(gmbus_pins_bxt);
103
	else if (IS_GEN9_BC(dev_priv))
104
		size = ARRAY_SIZE(gmbus_pins_skl);
105 106
	else if (IS_BROADWELL(dev_priv))
		size = ARRAY_SIZE(gmbus_pins_bdw);
J
Jani Nikula 已提交
107 108 109
	else
		size = ARRAY_SIZE(gmbus_pins);

110 111
	return pin < size &&
		i915_mmio_reg_valid(get_gmbus_pin(dev_priv, pin)->reg);
112 113
}

114 115
/* Intel GPIO access functions */

J
Jean Delvare 已提交
116
#define I2C_RISEFALL_TIME 10
117

C
Chris Wilson 已提交
118 119 120 121 122 123
static inline struct intel_gmbus *
to_intel_gmbus(struct i2c_adapter *i2c)
{
	return container_of(i2c, struct intel_gmbus, adapter);
}

124
void
125
intel_i2c_reset(struct drm_i915_private *dev_priv)
126
{
127 128
	I915_WRITE(GMBUS0, 0);
	I915_WRITE(GMBUS4, 0);
129 130
}

131 132
static void pnv_gmbus_clock_gating(struct drm_i915_private *dev_priv,
				   bool enable)
133
{
134
	u32 val;
135 136

	/* When using bit bashing for I2C, this bit needs to be set to 1 */
137
	val = I915_READ(DSPCLK_GATE_D);
138 139
	if (!enable)
		val |= PNV_GMBUSUNIT_CLOCK_GATE_DISABLE;
140
	else
141
		val &= ~PNV_GMBUSUNIT_CLOCK_GATE_DISABLE;
142
	I915_WRITE(DSPCLK_GATE_D, val);
143 144
}

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
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);
}

171
static u32 get_reserved(struct intel_gmbus *bus)
C
Chris Wilson 已提交
172
{
173
	struct drm_i915_private *dev_priv = bus->dev_priv;
C
Chris Wilson 已提交
174 175 176
	u32 reserved = 0;

	/* On most chips, these bits must be preserved in software. */
177
	if (!IS_I830(dev_priv) && !IS_I845G(dev_priv))
178
		reserved = I915_READ_NOTRACE(bus->gpio_reg) &
179 180
					     (GPIO_DATA_PULLUP_DISABLE |
					      GPIO_CLOCK_PULLUP_DISABLE);
C
Chris Wilson 已提交
181 182 183 184

	return reserved;
}

J
Jesse Barnes 已提交
185 186
static int get_clock(void *data)
{
187 188 189 190 191 192
	struct intel_gmbus *bus = data;
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u32 reserved = get_reserved(bus);
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
	return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
J
Jesse Barnes 已提交
193 194 195 196
}

static int get_data(void *data)
{
197 198 199 200 201 202
	struct intel_gmbus *bus = data;
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u32 reserved = get_reserved(bus);
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
	return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
J
Jesse Barnes 已提交
203 204 205 206
}

static void set_clock(void *data, int state_high)
{
207 208 209
	struct intel_gmbus *bus = data;
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u32 reserved = get_reserved(bus);
C
Chris Wilson 已提交
210
	u32 clock_bits;
J
Jesse Barnes 已提交
211 212 213 214 215 216

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

218 219
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
	POSTING_READ(bus->gpio_reg);
J
Jesse Barnes 已提交
220 221 222 223
}

static void set_data(void *data, int state_high)
{
224 225 226
	struct intel_gmbus *bus = data;
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u32 reserved = get_reserved(bus);
C
Chris Wilson 已提交
227
	u32 data_bits;
J
Jesse Barnes 已提交
228 229 230 231 232 233 234

	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;

235 236
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
	POSTING_READ(bus->gpio_reg);
J
Jesse Barnes 已提交
237 238
}

239 240 241 242 243 244 245 246
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;

247
	intel_i2c_reset(dev_priv);
248 249 250 251

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

252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
	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);
268 269 270

	if (IS_PINEVIEW(dev_priv))
		pnv_gmbus_clock_gating(dev_priv, true);
271 272
}

273
static void
274
intel_gpio_setup(struct intel_gmbus *bus, unsigned int pin)
275
{
276 277
	struct drm_i915_private *dev_priv = bus->dev_priv;
	struct i2c_algo_bit_data *algo;
278

279
	algo = &bus->bit_algo;
280

281 282
	bus->gpio_reg = _MMIO(dev_priv->gpio_mmio_base +
			      i915_mmio_reg_offset(get_gmbus_pin(dev_priv, pin)->reg));
283
	bus->adapter.algo_data = algo;
284 285 286 287
	algo->setsda = set_data;
	algo->setscl = set_clock;
	algo->getsda = get_data;
	algo->getscl = get_clock;
288 289
	algo->pre_xfer = intel_gpio_pre_xfer;
	algo->post_xfer = intel_gpio_post_xfer;
290 291 292
	algo->udelay = I2C_RISEFALL_TIME;
	algo->timeout = usecs_to_jiffies(2200);
	algo->data = bus;
J
Jesse Barnes 已提交
293 294
}

295
static int gmbus_wait(struct drm_i915_private *dev_priv, u32 status, u32 irq_en)
296
{
297
	DEFINE_WAIT(wait);
298 299
	u32 gmbus2;
	int ret;
300

301 302
	/* 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
303 304 305 306
	 * need to wake up periodically and check that ourselves.
	 */
	if (!HAS_GMBUS_IRQ(dev_priv))
		irq_en = 0;
307

308 309
	add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
	I915_WRITE_FW(GMBUS4, irq_en);
310

311 312 313 314
	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);
315

316 317
	I915_WRITE_FW(GMBUS4, 0);
	remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
318 319 320

	if (gmbus2 & GMBUS_SATOER)
		return -ENXIO;
321 322

	return ret;
323 324
}

325 326 327
static int
gmbus_wait_idle(struct drm_i915_private *dev_priv)
{
328 329
	DEFINE_WAIT(wait);
	u32 irq_enable;
330 331 332
	int ret;

	/* Important: The hw handles only the first bit, so set only one! */
333 334 335
	irq_enable = 0;
	if (HAS_GMBUS_IRQ(dev_priv))
		irq_enable = GMBUS_IDLE_EN;
336

337 338
	add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
	I915_WRITE_FW(GMBUS4, irq_enable);
339

340 341 342
	ret = intel_wait_for_register_fw(dev_priv,
					 GMBUS2, GMBUS_ACTIVE, 0,
					 10);
343

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

	return ret;
348 349
}

350
static int
351 352 353
gmbus_xfer_read_chunk(struct drm_i915_private *dev_priv,
		      unsigned short addr, u8 *buf, unsigned int len,
		      u32 gmbus1_index)
354
{
355 356 357 358 359 360
	I915_WRITE_FW(GMBUS1,
		      gmbus1_index |
		      GMBUS_CYCLE_WAIT |
		      (len << GMBUS_BYTE_COUNT_SHIFT) |
		      (addr << GMBUS_SLAVE_ADDR_SHIFT) |
		      GMBUS_SLAVE_READ | GMBUS_SW_RDY);
361
	while (len) {
362
		int ret;
363 364
		u32 val, loop = 0;

365
		ret = gmbus_wait(dev_priv, GMBUS_HW_RDY, GMBUS_HW_RDY_EN);
366
		if (ret)
367
			return ret;
368

369
		val = I915_READ_FW(GMBUS3);
370 371 372 373
		do {
			*buf++ = val & 0xff;
			val >>= 8;
		} while (--len && ++loop < 4);
374
	}
375 376 377 378 379

	return 0;
}

static int
380 381
gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
		u32 gmbus1_index)
382 383
{
	u8 *buf = msg->buf;
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
	unsigned int rx_size = msg->len;
	unsigned int len;
	int ret;

	do {
		len = min(rx_size, GMBUS_BYTE_COUNT_MAX);

		ret = gmbus_xfer_read_chunk(dev_priv, msg->addr,
					    buf, len, gmbus1_index);
		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,
		       unsigned short addr, u8 *buf, unsigned int len)
{
	unsigned int chunk_size = len;
408 409 410
	u32 val, loop;

	val = loop = 0;
411 412 413 414
	while (len && loop < 4) {
		val |= *buf++ << (8 * loop++);
		len -= 1;
	}
415

416 417 418 419 420 421
	I915_WRITE_FW(GMBUS3, val);
	I915_WRITE_FW(GMBUS1,
		      GMBUS_CYCLE_WAIT |
		      (chunk_size << GMBUS_BYTE_COUNT_SHIFT) |
		      (addr << GMBUS_SLAVE_ADDR_SHIFT) |
		      GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
422
	while (len) {
423 424
		int ret;

425 426 427 428 429
		val = loop = 0;
		do {
			val |= *buf++ << (8 * loop);
		} while (--len && ++loop < 4);

430
		I915_WRITE_FW(GMBUS3, val);
431

432
		ret = gmbus_wait(dev_priv, GMBUS_HW_RDY, GMBUS_HW_RDY_EN);
433
		if (ret)
434
			return ret;
435
	}
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458

	return 0;
}

static int
gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
{
	u8 *buf = msg->buf;
	unsigned int tx_size = msg->len;
	unsigned int len;
	int ret;

	do {
		len = min(tx_size, GMBUS_BYTE_COUNT_MAX);

		ret = gmbus_xfer_write_chunk(dev_priv, msg->addr, buf, len);
		if (ret)
			return ret;

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

459 460 461
	return 0;
}

462 463 464 465 466 467 468 469
/*
 * The gmbus controller can combine a 1 or 2 byte write with a read that
 * immediately follows it by using an "INDEX" cycle.
 */
static bool
gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
{
	return (i + 1 < num &&
470
		msgs[i].addr == msgs[i + 1].addr &&
471 472
		!(msgs[i].flags & I2C_M_RD) &&
		(msgs[i].len == 1 || msgs[i].len == 2) &&
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
		(msgs[i + 1].flags & I2C_M_RD));
}

static int
gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
{
	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)
492
		I915_WRITE_FW(GMBUS5, gmbus5);
493 494 495 496 497

	ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);

	/* Clear GMBUS5 after each index transfer */
	if (gmbus5)
498
		I915_WRITE_FW(GMBUS5, 0);
499 500 501 502

	return ret;
}

503
static int
504
do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num)
505 506 507 508
{
	struct intel_gmbus *bus = container_of(adapter,
					       struct intel_gmbus,
					       adapter);
509
	struct drm_i915_private *dev_priv = bus->dev_priv;
510
	int i = 0, inc, try = 0;
511
	int ret = 0;
512

513 514 515 516 517 518 519
	/* Display WA #0868: skl,bxt,kbl,cfl,glk,cnl */
	if (IS_GEN9_LP(dev_priv))
		bxt_gmbus_clock_gating(dev_priv, false);
	else if (HAS_PCH_SPT(dev_priv) ||
		 HAS_PCH_KBP(dev_priv) || HAS_PCH_CNP(dev_priv))
		pch_gmbus_clock_gating(dev_priv, false);

520
retry:
521
	I915_WRITE_FW(GMBUS0, bus->reg0);
522

523 524
	for (; i < num; i += inc) {
		inc = 1;
525 526
		if (gmbus_is_index_read(msgs, i, num)) {
			ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
527
			inc = 2; /* an index read is two msgs */
528 529 530
		} else if (msgs[i].flags & I2C_M_RD) {
			ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
		} else {
531
			ret = gmbus_xfer_write(dev_priv, &msgs[i]);
532
		}
533

534
		if (!ret)
535 536
			ret = gmbus_wait(dev_priv,
					 GMBUS_HW_WAIT_PHASE, GMBUS_HW_WAIT_EN);
537 538
		if (ret == -ETIMEDOUT)
			goto timeout;
539
		else if (ret)
540
			goto clear_err;
541 542
	}

543 544 545 546
	/* 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. */
547
	I915_WRITE_FW(GMBUS1, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
548

549 550 551 552
	/* 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.
	 */
553
	if (gmbus_wait_idle(dev_priv)) {
554
		DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
555
			 adapter->name);
556 557
		ret = -ETIMEDOUT;
	}
558
	I915_WRITE_FW(GMBUS0, 0);
559
	ret = ret ?: i;
560
	goto out;
561 562

clear_err:
563 564 565 566
	/*
	 * 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.
567 568 569 570 571 572 573 574
	 *
	 * 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.
575
	 */
576
	ret = -ENXIO;
577
	if (gmbus_wait_idle(dev_priv)) {
578 579
		DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
			      adapter->name);
580 581
		ret = -ETIMEDOUT;
	}
582

583 584 585 586
	/* 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.
	 */
587 588 589
	I915_WRITE_FW(GMBUS1, GMBUS_SW_CLR_INT);
	I915_WRITE_FW(GMBUS1, 0);
	I915_WRITE_FW(GMBUS0, 0);
590

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

595 596 597 598 599 600 601 602 603 604 605 606
	/*
	 * 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;
	}

607
	goto out;
608 609

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

614 615 616 617 618
	/*
	 * Hardware may not support GMBUS over these pins? Try GPIO bitbanging
	 * instead. Use EAGAIN to have i2c core retry.
	 */
	ret = -EAGAIN;
619

620
out:
621 622 623 624 625 626 627
	/* Display WA #0868: skl,bxt,kbl,cfl,glk,cnl */
	if (IS_GEN9_LP(dev_priv))
		bxt_gmbus_clock_gating(dev_priv, true);
	else if (HAS_PCH_SPT(dev_priv) ||
		 HAS_PCH_KBP(dev_priv) || HAS_PCH_CNP(dev_priv))
		pch_gmbus_clock_gating(dev_priv, true);

628 629 630 631 632 633 634 635 636 637 638 639 640
	return ret;
}

static int
gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num)
{
	struct intel_gmbus *bus = container_of(adapter, struct intel_gmbus,
					       adapter);
	struct drm_i915_private *dev_priv = bus->dev_priv;
	int ret;

	intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);

641
	if (bus->force_bit) {
642
		ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
643 644 645
		if (ret < 0)
			bus->force_bit &= ~GMBUS_FORCE_BIT_RETRY;
	} else {
646
		ret = do_gmbus_xfer(adapter, msgs, num);
647 648 649
		if (ret == -EAGAIN)
			bus->force_bit |= GMBUS_FORCE_BIT_RETRY;
	}
650 651 652

	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);

653
	return ret;
654 655 656 657
}

static u32 gmbus_func(struct i2c_adapter *adapter)
{
658 659
	return i2c_bit_algo.functionality(adapter) &
		(I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
660 661 662 663 664 665 666 667 668 669
		/* 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
};

670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
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);
}

697
static const struct i2c_lock_operations gmbus_lock_ops = {
698 699 700 701 702
	.lock_bus =    gmbus_lock_bus,
	.trylock_bus = gmbus_trylock_bus,
	.unlock_bus =  gmbus_unlock_bus,
};

J
Jesse Barnes 已提交
703
/**
704
 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
705
 * @dev_priv: i915 device private
J
Jesse Barnes 已提交
706
 */
707
int intel_setup_gmbus(struct drm_i915_private *dev_priv)
708
{
D
David Weinehall 已提交
709
	struct pci_dev *pdev = dev_priv->drm.pdev;
710 711 712
	struct intel_gmbus *bus;
	unsigned int pin;
	int ret;
713

714
	if (HAS_PCH_NOP(dev_priv))
715
		return 0;
716

717
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
718
		dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
719 720 721 722
	else if (!HAS_GMCH_DISPLAY(dev_priv))
		dev_priv->gpio_mmio_base =
			i915_mmio_reg_offset(PCH_GPIOA) -
			i915_mmio_reg_offset(GPIOA);
723

724
	mutex_init(&dev_priv->gmbus_mutex);
725
	init_waitqueue_head(&dev_priv->gmbus_wait_queue);
726

727
	for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
728
		if (!intel_gmbus_is_valid_pin(dev_priv, pin))
729 730 731
			continue;

		bus = &dev_priv->gmbus[pin];
732 733 734 735

		bus->adapter.owner = THIS_MODULE;
		bus->adapter.class = I2C_CLASS_DDC;
		snprintf(bus->adapter.name,
736 737
			 sizeof(bus->adapter.name),
			 "i915 gmbus %s",
J
Jani Nikula 已提交
738
			 get_gmbus_pin(dev_priv, pin)->name);
739

D
David Weinehall 已提交
740
		bus->adapter.dev.parent = &pdev->dev;
741
		bus->dev_priv = dev_priv;
742 743

		bus->adapter.algo = &gmbus_algorithm;
744
		bus->adapter.lock_ops = &gmbus_lock_ops;
745

746 747 748 749 750 751
		/*
		 * We wish to retry with bit banging
		 * after a timed out GMBUS attempt.
		 */
		bus->adapter.retries = 1;

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

D
Daniel Vetter 已提交
755
		/* gmbus seems to be broken on i830 */
756
		if (IS_I830(dev_priv))
757
			bus->force_bit = 1;
D
Daniel Vetter 已提交
758

759
		intel_gpio_setup(bus, pin);
760 761 762 763

		ret = i2c_add_adapter(&bus->adapter);
		if (ret)
			goto err;
764 765
	}

766
	intel_i2c_reset(dev_priv);
767 768 769 770

	return 0;

err:
771
	while (pin--) {
772
		if (!intel_gmbus_is_valid_pin(dev_priv, pin))
773 774 775
			continue;

		bus = &dev_priv->gmbus[pin];
776 777 778 779 780
		i2c_del_adapter(&bus->adapter);
	}
	return ret;
}

781
struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
782
					    unsigned int pin)
783
{
784
	if (WARN_ON(!intel_gmbus_is_valid_pin(dev_priv, pin)))
785 786 787
		return NULL;

	return &dev_priv->gmbus[pin].adapter;
788 789
}

C
Chris Wilson 已提交
790 791 792 793
void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);

794
	bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
C
Chris Wilson 已提交
795 796 797 798 799
}

void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);
800 801 802
	struct drm_i915_private *dev_priv = bus->dev_priv;

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

804 805 806 807
	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);
808 809

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

812
void intel_teardown_gmbus(struct drm_i915_private *dev_priv)
J
Jesse Barnes 已提交
813
{
814 815 816 817
	struct intel_gmbus *bus;
	unsigned int pin;

	for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
818
		if (!intel_gmbus_is_valid_pin(dev_priv, pin))
819
			continue;
820

821
		bus = &dev_priv->gmbus[pin];
822 823
		i2c_del_adapter(&bus->adapter);
	}
J
Jesse Barnes 已提交
824
}