intel_i2c.c 11.3 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>
J
Jesse Barnes 已提交
32 33 34 35 36 37
#include "drmP.h"
#include "drm.h"
#include "intel_drv.h"
#include "i915_drm.h"
#include "i915_drv.h"

38 39
/* Intel GPIO access functions */

J
Jean Delvare 已提交
40
#define I2C_RISEFALL_TIME 10
41

C
Chris Wilson 已提交
42 43 44 45 46 47
static inline struct intel_gmbus *
to_intel_gmbus(struct i2c_adapter *i2c)
{
	return container_of(i2c, struct intel_gmbus, adapter);
}

48 49
void
intel_i2c_reset(struct drm_device *dev)
50 51
{
	struct drm_i915_private *dev_priv = dev->dev_private;
52 53 54 55 56 57 58 59
	if (HAS_PCH_SPLIT(dev))
		I915_WRITE(PCH_GMBUS0, 0);
	else
		I915_WRITE(GMBUS0, 0);
}

static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
{
60
	u32 val;
61 62

	/* When using bit bashing for I2C, this bit needs to be set to 1 */
63
	if (!IS_PINEVIEW(dev_priv->dev))
64
		return;
65 66

	val = I915_READ(DSPCLK_GATE_D);
67
	if (enable)
68
		val |= DPCUNIT_CLOCK_GATE_DISABLE;
69
	else
70 71
		val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
	I915_WRITE(DSPCLK_GATE_D, val);
72 73
}

74
static u32 get_reserved(struct intel_gmbus *bus)
C
Chris Wilson 已提交
75
{
76
	struct drm_i915_private *dev_priv = bus->dev_priv;
C
Chris Wilson 已提交
77 78 79 80 81
	struct drm_device *dev = dev_priv->dev;
	u32 reserved = 0;

	/* On most chips, these bits must be preserved in software. */
	if (!IS_I830(dev) && !IS_845G(dev))
82
		reserved = I915_READ_NOTRACE(bus->gpio_reg) &
83 84
					     (GPIO_DATA_PULLUP_DISABLE |
					      GPIO_CLOCK_PULLUP_DISABLE);
C
Chris Wilson 已提交
85 86 87 88

	return reserved;
}

J
Jesse Barnes 已提交
89 90
static int get_clock(void *data)
{
91 92 93 94 95 96
	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 已提交
97 98 99 100
}

static int get_data(void *data)
{
101 102 103 104 105 106
	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 已提交
107 108 109 110
}

static void set_clock(void *data, int state_high)
{
111 112 113
	struct intel_gmbus *bus = data;
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u32 reserved = get_reserved(bus);
C
Chris Wilson 已提交
114
	u32 clock_bits;
J
Jesse Barnes 已提交
115 116 117 118 119 120

	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;
121

122 123
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
	POSTING_READ(bus->gpio_reg);
J
Jesse Barnes 已提交
124 125 126 127
}

static void set_data(void *data, int state_high)
{
128 129 130
	struct intel_gmbus *bus = data;
	struct drm_i915_private *dev_priv = bus->dev_priv;
	u32 reserved = get_reserved(bus);
C
Chris Wilson 已提交
131
	u32 data_bits;
J
Jesse Barnes 已提交
132 133 134 135 136 137 138

	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;

139 140
	I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
	POSTING_READ(bus->gpio_reg);
J
Jesse Barnes 已提交
141 142
}

143
static struct i2c_adapter *
144
intel_gpio_create(struct intel_gmbus *bus, u32 pin)
145
{
146
	struct drm_i915_private *dev_priv = bus->dev_priv;
147 148 149 150 151 152 153
	static const int map_pin_to_reg[] = {
		0,
		GPIOB,
		GPIOA,
		GPIOC,
		GPIOD,
		GPIOE,
154
		0,
155 156
		GPIOF,
	};
157
	struct i2c_algo_bit_data *algo;
158

159
	if (pin >= ARRAY_SIZE(map_pin_to_reg) || !map_pin_to_reg[pin])
160
		return NULL;
161

162
	algo = &bus->bit_algo;
163 164

	bus->gpio_reg = map_pin_to_reg[pin];
165
	if (HAS_PCH_SPLIT(dev_priv->dev))
166
		bus->gpio_reg += PCH_GPIOA - GPIOA;
J
Jesse Barnes 已提交
167

168
	bus->adapter.algo_data = algo;
169 170 171 172 173 174 175 176
	algo->setsda = set_data;
	algo->setscl = set_clock;
	algo->getsda = get_data;
	algo->getscl = get_clock;
	algo->udelay = I2C_RISEFALL_TIME;
	algo->timeout = usecs_to_jiffies(2200);
	algo->data = bus;

177
	return &bus->adapter;
J
Jesse Barnes 已提交
178 179
}

180
static int
181
intel_i2c_quirk_xfer(struct intel_gmbus *bus,
C
Chris Wilson 已提交
182 183 184
		     struct i2c_adapter *adapter,
		     struct i2c_msg *msgs,
		     int num)
185
{
186
	struct drm_i915_private *dev_priv = bus->dev_priv;
187 188 189 190 191
	int ret;

	intel_i2c_reset(dev_priv->dev);

	intel_i2c_quirk_set(dev_priv, true);
192 193
	set_data(bus, 1);
	set_clock(bus, 1);
C
Chris Wilson 已提交
194 195
	udelay(I2C_RISEFALL_TIME);

196
	ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
C
Chris Wilson 已提交
197

198 199
	set_data(bus, 1);
	set_clock(bus, 1);
200 201 202 203 204 205 206 207 208 209 210 211 212
	intel_i2c_quirk_set(dev_priv, false);

	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);
213
	struct drm_i915_private *dev_priv = bus->dev_priv;
214
	int i, reg_offset, ret;
215

216 217 218
	mutex_lock(&dev_priv->gmbus_mutex);

	if (bus->force_bit) {
219
		ret = intel_i2c_quirk_xfer(bus, bus->force_bit, msgs, num);
220 221
		goto out;
	}
222 223 224

	reg_offset = HAS_PCH_SPLIT(dev_priv->dev) ? PCH_GMBUS0 - GMBUS0 : 0;

C
Chris Wilson 已提交
225
	I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
226 227 228 229 230 231 232

	for (i = 0; i < num; i++) {
		u16 len = msgs[i].len;
		u8 *buf = msgs[i].buf;

		if (msgs[i].flags & I2C_M_RD) {
			I915_WRITE(GMBUS1 + reg_offset,
233 234
				   GMBUS_CYCLE_WAIT |
				   (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
235 236 237
				   (len << GMBUS_BYTE_COUNT_SHIFT) |
				   (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
				   GMBUS_SLAVE_READ | GMBUS_SW_RDY);
C
Chris Wilson 已提交
238
			POSTING_READ(GMBUS2+reg_offset);
239 240 241 242 243 244
			do {
				u32 val, loop = 0;

				if (wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_RDY), 50))
					goto timeout;
				if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
245
					goto clear_err;
246 247 248 249 250 251 252 253

				val = I915_READ(GMBUS3 + reg_offset);
				do {
					*buf++ = val & 0xff;
					val >>= 8;
				} while (--len && ++loop < 4);
			} while (len);
		} else {
C
Chris Wilson 已提交
254
			u32 val, loop;
255

C
Chris Wilson 已提交
256
			val = loop = 0;
257
			do {
C
Chris Wilson 已提交
258 259
				val |= *buf++ << (8 * loop);
			} while (--len && ++loop < 4);
260 261 262

			I915_WRITE(GMBUS3 + reg_offset, val);
			I915_WRITE(GMBUS1 + reg_offset,
263 264
				   GMBUS_CYCLE_WAIT |
				   (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
265 266 267
				   (msgs[i].len << GMBUS_BYTE_COUNT_SHIFT) |
				   (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
				   GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
C
Chris Wilson 已提交
268 269 270 271 272 273
			POSTING_READ(GMBUS2+reg_offset);

			while (len) {
				if (wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_RDY), 50))
					goto timeout;
				if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
274
					goto clear_err;
C
Chris Wilson 已提交
275 276 277 278 279 280 281 282 283

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

				I915_WRITE(GMBUS3 + reg_offset, val);
				POSTING_READ(GMBUS2+reg_offset);
			}
284 285 286 287 288
		}

		if (i + 1 < num && wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_WAIT_PHASE), 50))
			goto timeout;
		if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
289
			goto clear_err;
290 291
	}

292 293 294 295 296 297 298 299 300 301 302
	goto done;

clear_err:
	/* 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.
	 */
	I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
	I915_WRITE(GMBUS1 + reg_offset, 0);

done:
303 304 305
	/* 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.
306
	 */
307 308
	if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
		DRM_INFO("GMBUS timed out waiting for idle\n");
309
	I915_WRITE(GMBUS0 + reg_offset, 0);
310 311
	ret = i;
	goto out;
312 313

timeout:
C
Chris Wilson 已提交
314 315
	DRM_INFO("GMBUS timed out, falling back to bit banging on pin %d [%s]\n",
		 bus->reg0 & 0xff, bus->adapter.name);
316 317
	I915_WRITE(GMBUS0 + reg_offset, 0);

318
	/* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
319
	bus->force_bit = intel_gpio_create(bus, bus->reg0 & 0xff);
C
Chris Wilson 已提交
320
	if (!bus->force_bit)
321 322
		ret = -ENOMEM;
	else
323
		ret = intel_i2c_quirk_xfer(bus, bus->force_bit, msgs, num);
324 325 326
out:
	mutex_unlock(&dev_priv->gmbus_mutex);
	return ret;
327 328 329 330
}

static u32 gmbus_func(struct i2c_adapter *adapter)
{
C
Chris Wilson 已提交
331 332 333 334 335
	struct intel_gmbus *bus = container_of(adapter,
					       struct intel_gmbus,
					       adapter);

	if (bus->force_bit)
336
		i2c_bit_algo.functionality(bus->force_bit);
C
Chris Wilson 已提交
337

338 339 340 341 342 343 344 345 346 347 348
	return (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
		/* 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
};

J
Jesse Barnes 已提交
349
/**
350 351
 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
 * @dev: DRM device
J
Jesse Barnes 已提交
352
 */
353 354
int intel_setup_gmbus(struct drm_device *dev)
{
C
Chris Wilson 已提交
355
	static const char *names[GMBUS_NUM_PORTS] = {
356 357 358 359 360 361
		"disabled",
		"ssc",
		"vga",
		"panel",
		"dpc",
		"dpb",
362
		"reserved",
C
Chris Wilson 已提交
363
		"dpd",
364 365 366 367
	};
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret, i;

A
Axel Lin 已提交
368
	dev_priv->gmbus = kcalloc(GMBUS_NUM_PORTS, sizeof(struct intel_gmbus),
369 370 371 372
				  GFP_KERNEL);
	if (dev_priv->gmbus == NULL)
		return -ENOMEM;

373 374
	mutex_init(&dev_priv->gmbus_mutex);

375 376 377 378 379 380
	for (i = 0; i < GMBUS_NUM_PORTS; i++) {
		struct intel_gmbus *bus = &dev_priv->gmbus[i];

		bus->adapter.owner = THIS_MODULE;
		bus->adapter.class = I2C_CLASS_DDC;
		snprintf(bus->adapter.name,
381 382
			 sizeof(bus->adapter.name),
			 "i915 gmbus %s",
383 384 385
			 names[i]);

		bus->adapter.dev.parent = &dev->pdev->dev;
386
		bus->dev_priv = dev_priv;
387 388 389 390 391 392

		bus->adapter.algo = &gmbus_algorithm;
		ret = i2c_add_adapter(&bus->adapter);
		if (ret)
			goto err;

C
Chris Wilson 已提交
393 394
		/* By default use a conservative clock rate */
		bus->reg0 = i | GMBUS_RATE_100KHZ;
395 396

		/* XXX force bit banging until GMBUS is fully debugged */
397
		bus->force_bit = intel_gpio_create(bus, i);
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
	}

	intel_i2c_reset(dev_priv->dev);

	return 0;

err:
	while (--i) {
		struct intel_gmbus *bus = &dev_priv->gmbus[i];
		i2c_del_adapter(&bus->adapter);
	}
	kfree(dev_priv->gmbus);
	dev_priv->gmbus = NULL;
	return ret;
}

C
Chris Wilson 已提交
414 415 416 417
void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);

418
	bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
C
Chris Wilson 已提交
419 420 421 422 423 424 425 426
}

void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);

	if (force_bit) {
		if (bus->force_bit == NULL) {
427
			bus->force_bit = intel_gpio_create(bus,
C
Chris Wilson 已提交
428 429 430 431 432 433 434 435 436
							   bus->reg0 & 0xff);
		}
	} else {
		if (bus->force_bit) {
			bus->force_bit = NULL;
		}
	}
}

437
void intel_teardown_gmbus(struct drm_device *dev)
J
Jesse Barnes 已提交
438
{
439 440
	struct drm_i915_private *dev_priv = dev->dev_private;
	int i;
441

442
	if (dev_priv->gmbus == NULL)
J
Jesse Barnes 已提交
443 444
		return;

445 446 447 448 449 450 451
	for (i = 0; i < GMBUS_NUM_PORTS; i++) {
		struct intel_gmbus *bus = &dev_priv->gmbus[i];
		i2c_del_adapter(&bus->adapter);
	}

	kfree(dev_priv->gmbus);
	dev_priv->gmbus = NULL;
J
Jesse Barnes 已提交
452
}