intel_i2c.c 11.9 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 31 32 33 34 35 36
 */
#include <linux/i2c.h>
#include <linux/i2c-algo-bit.h>
#include "drmP.h"
#include "drm.h"
#include "intel_drv.h"
#include "i915_drm.h"
#include "i915_drv.h"

37 38 39 40
/* Intel GPIO access functions */

#define I2C_RISEFALL_TIME 20

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

47 48 49 50 51 52 53 54 55
struct intel_gpio {
	struct i2c_adapter adapter;
	struct i2c_algo_bit_data algo;
	struct drm_i915_private *dev_priv;
	u32 reg;
};

void
intel_i2c_reset(struct drm_device *dev)
56 57
{
	struct drm_i915_private *dev_priv = dev->dev_private;
58 59 60 61 62 63 64 65
	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)
{
66
	u32 val;
67 68

	/* When using bit bashing for I2C, this bit needs to be set to 1 */
69
	if (!IS_PINEVIEW(dev_priv->dev))
70
		return;
71 72

	val = I915_READ(DSPCLK_GATE_D);
73
	if (enable)
74
		val |= DPCUNIT_CLOCK_GATE_DISABLE;
75
	else
76 77
		val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
	I915_WRITE(DSPCLK_GATE_D, val);
78 79
}

C
Chris Wilson 已提交
80 81 82 83 84 85 86 87
static u32 get_reserved(struct intel_gpio *gpio)
{
	struct drm_i915_private *dev_priv = gpio->dev_priv;
	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))
88 89 90
		reserved = I915_READ_NOTRACE(gpio->reg) &
					     (GPIO_DATA_PULLUP_DISABLE |
					      GPIO_CLOCK_PULLUP_DISABLE);
C
Chris Wilson 已提交
91 92 93 94

	return reserved;
}

J
Jesse Barnes 已提交
95 96
static int get_clock(void *data)
{
97 98
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
C
Chris Wilson 已提交
99
	u32 reserved = get_reserved(gpio);
100 101 102
	I915_WRITE_NOTRACE(gpio->reg, reserved | GPIO_CLOCK_DIR_MASK);
	I915_WRITE_NOTRACE(gpio->reg, reserved);
	return (I915_READ_NOTRACE(gpio->reg) & GPIO_CLOCK_VAL_IN) != 0;
J
Jesse Barnes 已提交
103 104 105 106
}

static int get_data(void *data)
{
107 108
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
C
Chris Wilson 已提交
109
	u32 reserved = get_reserved(gpio);
110 111 112
	I915_WRITE_NOTRACE(gpio->reg, reserved | GPIO_DATA_DIR_MASK);
	I915_WRITE_NOTRACE(gpio->reg, reserved);
	return (I915_READ_NOTRACE(gpio->reg) & GPIO_DATA_VAL_IN) != 0;
J
Jesse Barnes 已提交
113 114 115 116
}

static void set_clock(void *data, int state_high)
{
117 118
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
C
Chris Wilson 已提交
119 120
	u32 reserved = get_reserved(gpio);
	u32 clock_bits;
J
Jesse Barnes 已提交
121 122 123 124 125 126

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

128
	I915_WRITE_NOTRACE(gpio->reg, reserved | clock_bits);
129
	POSTING_READ(gpio->reg);
J
Jesse Barnes 已提交
130 131 132 133
}

static void set_data(void *data, int state_high)
{
134 135
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
C
Chris Wilson 已提交
136 137
	u32 reserved = get_reserved(gpio);
	u32 data_bits;
J
Jesse Barnes 已提交
138 139 140 141 142 143 144

	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;

145
	I915_WRITE_NOTRACE(gpio->reg, reserved | data_bits);
146
	POSTING_READ(gpio->reg);
J
Jesse Barnes 已提交
147 148
}

149 150
static struct i2c_adapter *
intel_gpio_create(struct drm_i915_private *dev_priv, u32 pin)
151
{
152 153 154 155 156 157 158
	static const int map_pin_to_reg[] = {
		0,
		GPIOB,
		GPIOA,
		GPIOC,
		GPIOD,
		GPIOE,
159
		0,
160 161 162
		GPIOF,
	};
	struct intel_gpio *gpio;
163

164
	if (pin >= ARRAY_SIZE(map_pin_to_reg) || !map_pin_to_reg[pin])
165
		return NULL;
166

167 168 169
	gpio = kzalloc(sizeof(struct intel_gpio), GFP_KERNEL);
	if (gpio == NULL)
		return NULL;
J
Jesse Barnes 已提交
170

171 172 173 174
	gpio->reg = map_pin_to_reg[pin];
	if (HAS_PCH_SPLIT(dev_priv->dev))
		gpio->reg += PCH_GPIOA - GPIOA;
	gpio->dev_priv = dev_priv;
J
Jesse Barnes 已提交
175

176 177
	snprintf(gpio->adapter.name, sizeof(gpio->adapter.name),
		 "i915 GPIO%c", "?BACDE?F"[pin]);
178 179 180 181 182 183 184 185 186 187 188 189
	gpio->adapter.owner = THIS_MODULE;
	gpio->adapter.algo_data	= &gpio->algo;
	gpio->adapter.dev.parent = &dev_priv->dev->pdev->dev;
	gpio->algo.setsda = set_data;
	gpio->algo.setscl = set_clock;
	gpio->algo.getsda = get_data;
	gpio->algo.getscl = get_clock;
	gpio->algo.udelay = I2C_RISEFALL_TIME;
	gpio->algo.timeout = usecs_to_jiffies(2200);
	gpio->algo.data = gpio;

	if (i2c_bit_add_bus(&gpio->adapter))
J
Jesse Barnes 已提交
190 191
		goto out_free;

192
	return &gpio->adapter;
J
Jesse Barnes 已提交
193 194

out_free:
195
	kfree(gpio);
J
Jesse Barnes 已提交
196 197 198
	return NULL;
}

199
static int
C
Chris Wilson 已提交
200 201 202 203
intel_i2c_quirk_xfer(struct drm_i915_private *dev_priv,
		     struct i2c_adapter *adapter,
		     struct i2c_msg *msgs,
		     int num)
204
{
C
Chris Wilson 已提交
205 206 207
	struct intel_gpio *gpio = container_of(adapter,
					       struct intel_gpio,
					       adapter);
208 209 210 211 212
	int ret;

	intel_i2c_reset(dev_priv->dev);

	intel_i2c_quirk_set(dev_priv, true);
C
Chris Wilson 已提交
213 214 215 216 217 218 219 220
	set_data(gpio, 1);
	set_clock(gpio, 1);
	udelay(I2C_RISEFALL_TIME);

	ret = adapter->algo->master_xfer(adapter, msgs, num);

	set_data(gpio, 1);
	set_clock(gpio, 1);
221 222 223 224 225 226 227 228 229 230 231 232 233 234
	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);
	struct drm_i915_private *dev_priv = adapter->algo_data;
C
Chris Wilson 已提交
235
	int i, reg_offset;
236

C
Chris Wilson 已提交
237 238 239
	if (bus->force_bit)
		return intel_i2c_quirk_xfer(dev_priv,
					    bus->force_bit, msgs, num);
240 241 242

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

C
Chris Wilson 已提交
243
	I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
244 245 246 247 248 249 250 251 252 253 254

	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,
				   GMBUS_CYCLE_WAIT | (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
				   (len << GMBUS_BYTE_COUNT_SHIFT) |
				   (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
				   GMBUS_SLAVE_READ | GMBUS_SW_RDY);
C
Chris Wilson 已提交
255
			POSTING_READ(GMBUS2+reg_offset);
256 257 258 259 260 261
			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)
262
					goto clear_err;
263 264 265 266 267 268 269 270

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

C
Chris Wilson 已提交
273
			val = loop = 0;
274
			do {
C
Chris Wilson 已提交
275 276
				val |= *buf++ << (8 * loop);
			} while (--len && ++loop < 4);
277 278 279

			I915_WRITE(GMBUS3 + reg_offset, val);
			I915_WRITE(GMBUS1 + reg_offset,
C
Chris Wilson 已提交
280
				   (i + 1 == num ? GMBUS_CYCLE_STOP : GMBUS_CYCLE_WAIT) |
281 282 283
				   (msgs[i].len << GMBUS_BYTE_COUNT_SHIFT) |
				   (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
				   GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
C
Chris Wilson 已提交
284 285 286 287 288 289
			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)
290
					goto clear_err;
C
Chris Wilson 已提交
291 292 293 294 295 296 297 298 299

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

				I915_WRITE(GMBUS3 + reg_offset, val);
				POSTING_READ(GMBUS2+reg_offset);
			}
300 301 302 303 304
		}

		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)
305
			goto clear_err;
306 307
	}

308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
	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:
	/* Mark the GMBUS interface as disabled. We will re-enable it at the
	 * start of the next xfer, till then let it sleep.
	 */
	I915_WRITE(GMBUS0 + reg_offset, 0);
	return i;
324 325

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

330
	/* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
C
Chris Wilson 已提交
331 332
	bus->force_bit = intel_gpio_create(dev_priv, bus->reg0 & 0xff);
	if (!bus->force_bit)
333 334
		return -ENOMEM;

C
Chris Wilson 已提交
335
	return intel_i2c_quirk_xfer(dev_priv, bus->force_bit, msgs, num);
336 337 338 339
}

static u32 gmbus_func(struct i2c_adapter *adapter)
{
C
Chris Wilson 已提交
340 341 342 343 344 345 346
	struct intel_gmbus *bus = container_of(adapter,
					       struct intel_gmbus,
					       adapter);

	if (bus->force_bit)
		bus->force_bit->algo->functionality(bus->force_bit);

347 348 349 350 351 352 353 354 355 356 357
	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 已提交
358
/**
359 360
 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
 * @dev: DRM device
J
Jesse Barnes 已提交
361
 */
362 363
int intel_setup_gmbus(struct drm_device *dev)
{
C
Chris Wilson 已提交
364
	static const char *names[GMBUS_NUM_PORTS] = {
365 366 367 368 369 370
		"disabled",
		"ssc",
		"vga",
		"panel",
		"dpc",
		"dpb",
371
		"reserved",
C
Chris Wilson 已提交
372
		"dpd",
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
	};
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret, i;

	dev_priv->gmbus = kcalloc(sizeof(struct intel_gmbus), GMBUS_NUM_PORTS,
				  GFP_KERNEL);
	if (dev_priv->gmbus == NULL)
		return -ENOMEM;

	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,
388 389
			 sizeof(bus->adapter.name),
			 "i915 gmbus %s",
390 391 392 393 394 395 396 397 398 399
			 names[i]);

		bus->adapter.dev.parent = &dev->pdev->dev;
		bus->adapter.algo_data	= dev_priv;

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

C
Chris Wilson 已提交
400 401
		/* By default use a conservative clock rate */
		bus->reg0 = i | GMBUS_RATE_100KHZ;
402 403

		/* XXX force bit banging until GMBUS is fully debugged */
404
		bus->force_bit = intel_gpio_create(dev_priv, i);
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
	}

	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 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
{
	struct intel_gmbus *bus = to_intel_gmbus(adapter);

	/* speed:
	 * 0x0 = 100 KHz
	 * 0x1 = 50 KHz
	 * 0x2 = 400 KHz
	 * 0x3 = 1000 Khz
	 */
	bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | (speed << 8);
}

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) {
			struct drm_i915_private *dev_priv = adapter->algo_data;
			bus->force_bit = intel_gpio_create(dev_priv,
							   bus->reg0 & 0xff);
		}
	} else {
		if (bus->force_bit) {
			i2c_del_adapter(bus->force_bit);
			kfree(bus->force_bit);
			bus->force_bit = NULL;
		}
	}
}

453
void intel_teardown_gmbus(struct drm_device *dev)
J
Jesse Barnes 已提交
454
{
455 456
	struct drm_i915_private *dev_priv = dev->dev_private;
	int i;
457

458
	if (dev_priv->gmbus == NULL)
J
Jesse Barnes 已提交
459 460
		return;

461 462
	for (i = 0; i < GMBUS_NUM_PORTS; i++) {
		struct intel_gmbus *bus = &dev_priv->gmbus[i];
C
Chris Wilson 已提交
463 464 465
		if (bus->force_bit) {
			i2c_del_adapter(bus->force_bit);
			kfree(bus->force_bit);
466 467 468 469 470 471
		}
		i2c_del_adapter(&bus->adapter);
	}

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