intel_i2c.c 9.6 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 41 42 43 44 45 46 47 48 49
/* Intel GPIO access functions */

#define I2C_RISEFALL_TIME 20

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)
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
}

J
Jesse Barnes 已提交
74 75
static int get_clock(void *data)
{
76 77 78
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
	return (I915_READ(gpio->reg) & GPIO_CLOCK_VAL_IN) != 0;
J
Jesse Barnes 已提交
79 80 81 82
}

static int get_data(void *data)
{
83 84 85
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
	return (I915_READ(gpio->reg) & GPIO_DATA_VAL_IN) != 0;
J
Jesse Barnes 已提交
86 87 88 89
}

static void set_clock(void *data, int state_high)
{
90 91
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
92
	struct drm_device *dev = dev_priv->dev;
J
Jesse Barnes 已提交
93 94 95 96
	u32 reserved = 0, clock_bits;

	/* On most chips, these bits must be preserved in software. */
	if (!IS_I830(dev) && !IS_845G(dev))
97
		reserved = I915_READ(gpio->reg) & (GPIO_DATA_PULLUP_DISABLE |
J
Jesse Barnes 已提交
98 99 100 101 102 103 104
						   GPIO_CLOCK_PULLUP_DISABLE);

	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;
105 106 107

	I915_WRITE(gpio->reg, reserved | clock_bits);
	POSTING_READ(gpio->reg);
J
Jesse Barnes 已提交
108 109 110 111
}

static void set_data(void *data, int state_high)
{
112 113
	struct intel_gpio *gpio = data;
	struct drm_i915_private *dev_priv = gpio->dev_priv;
114
	struct drm_device *dev = dev_priv->dev;
J
Jesse Barnes 已提交
115 116 117 118
	u32 reserved = 0, data_bits;

	/* On most chips, these bits must be preserved in software. */
	if (!IS_I830(dev) && !IS_845G(dev))
119
		reserved = I915_READ(gpio->reg) & (GPIO_DATA_PULLUP_DISABLE |
J
Jesse Barnes 已提交
120 121 122 123 124 125 126 127
						   GPIO_CLOCK_PULLUP_DISABLE);

	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;

128 129
	I915_WRITE(gpio->reg, reserved | data_bits);
	POSTING_READ(gpio->reg);
J
Jesse Barnes 已提交
130 131
}

132 133
static struct i2c_adapter *
intel_gpio_create(struct drm_i915_private *dev_priv, u32 pin)
134
{
135 136 137 138 139 140 141 142 143 144
	static const int map_pin_to_reg[] = {
		0,
		GPIOB,
		GPIOA,
		GPIOC,
		GPIOD,
		GPIOE,
		GPIOF,
	};
	struct intel_gpio *gpio;
145

146 147
	if (pin < 1 || pin > 7)
		return NULL;
148

149 150 151
	gpio = kzalloc(sizeof(struct intel_gpio), GFP_KERNEL);
	if (gpio == NULL)
		return NULL;
J
Jesse Barnes 已提交
152

153 154 155 156
	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 已提交
157

158 159 160 161 162 163 164 165 166 167 168 169 170
	snprintf(gpio->adapter.name, I2C_NAME_SIZE, "GPIO %d", pin);
	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 已提交
171 172
		goto out_free;

173
	intel_i2c_reset(dev_priv->dev);
174

J
Jesse Barnes 已提交
175
	/* JJJ:  raise SCL and SDA? */
176 177
	intel_i2c_quirk_set(dev_priv, true);
	set_data(gpio, 1);
178
	udelay(I2C_RISEFALL_TIME);
179
	set_clock(gpio, 1);
180
	udelay(I2C_RISEFALL_TIME);
181
	intel_i2c_quirk_set(dev_priv, false);
J
Jesse Barnes 已提交
182

183
	return &gpio->adapter;
J
Jesse Barnes 已提交
184 185

out_free:
186
	kfree(gpio);
J
Jesse Barnes 已提交
187 188 189
	return NULL;
}

190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
static int
quirk_i2c_transfer(struct drm_i915_private *dev_priv,
		   struct i2c_adapter *adapter,
		   struct i2c_msg *msgs,
		   int num)
{
	int ret;

	intel_i2c_reset(dev_priv->dev);

	intel_i2c_quirk_set(dev_priv, true);
	ret = i2c_transfer(adapter, msgs, num);
	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;
	int i, speed, reg_offset;

	if (bus->force_bitbanging)
		return quirk_i2c_transfer(dev_priv, bus->force_bitbanging, msgs, num);

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

	speed = GMBUS_RATE_100KHZ;
	if (INTEL_INFO(dev_priv->dev)->gen > 4 || IS_G4X(dev_priv->dev)) {
		if (bus->pin == GMBUS_PORT_DPB) /* SDVO only? */
			speed = GMBUS_RATE_1MHZ;
		else
			speed = GMBUS_RATE_400KHZ;
	}
	I915_WRITE(GMBUS0 + reg_offset, speed | bus->pin);

	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);
			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)
					return 0;

				val = I915_READ(GMBUS3 + reg_offset);
				do {
					*buf++ = val & 0xff;
					val >>= 8;
				} while (--len && ++loop < 4);
			} while (len);
		} else {
			u32 val = 0, loop = 0;

			BUG_ON(msgs[i].len > 4);

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

			I915_WRITE(GMBUS3 + reg_offset, val);
			I915_WRITE(GMBUS1 + reg_offset,
				   (i + 1 == num ? GMBUS_CYCLE_STOP : GMBUS_CYCLE_WAIT ) |
				   (msgs[i].len << GMBUS_BYTE_COUNT_SHIFT) |
				   (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
				   GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
		}

		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)
			return 0;
	}

	return num;

timeout:
	DRM_INFO("GMBUS timed out, falling back to bit banging on pin %d\n", bus->pin);
	/* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
	bus->force_bitbanging = intel_gpio_create(dev_priv, bus->pin);
	if (!bus->force_bitbanging)
		return -ENOMEM;

	return quirk_i2c_transfer(dev_priv, bus->force_bitbanging, msgs, num);
}

static u32 gmbus_func(struct i2c_adapter *adapter)
{
	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 已提交
304
/**
305 306
 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
 * @dev: DRM device
J
Jesse Barnes 已提交
307
 */
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
int intel_setup_gmbus(struct drm_device *dev)
{
	static const char *names[] = {
		"disabled",
		"ssc",
		"vga",
		"panel",
		"dpc",
		"dpb",
		"dpd",
		"reserved"
	};
	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,
			 I2C_NAME_SIZE,
			 "gmbus %s",
			 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;

		bus->pin = i;
	}

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

void intel_teardown_gmbus(struct drm_device *dev)
J
Jesse Barnes 已提交
364
{
365 366
	struct drm_i915_private *dev_priv = dev->dev_private;
	int i;
367

368
	if (dev_priv->gmbus == NULL)
J
Jesse Barnes 已提交
369 370
		return;

371 372 373 374 375 376 377 378 379 380 381
	for (i = 0; i < GMBUS_NUM_PORTS; i++) {
		struct intel_gmbus *bus = &dev_priv->gmbus[i];
		if (bus->force_bitbanging) {
			i2c_del_adapter(bus->force_bitbanging);
			kfree(bus->force_bitbanging);
		}
		i2c_del_adapter(&bus->adapter);
	}

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