blob: 8fdc9570021853e3c94fec296a7bca3e14a60b7b [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
Chris Wilsonf899fc62010-07-20 15:44:45 -07003 * Copyright © 2006-2008,2010 Intel Corporation
Jesse Barnes79e53942008-11-07 14:24:08 -08004 * Jesse Barnes <jesse.barnes@intel.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 *
25 * Authors:
26 * Eric Anholt <eric@anholt.net>
Chris Wilsonf899fc62010-07-20 15:44:45 -070027 * Chris Wilson <chris@chris-wilson.co.uk>
Jesse Barnes79e53942008-11-07 14:24:08 -080028 */
29#include <linux/i2c.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c-algo-bit.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040031#include <linux/export.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080032#include "drmP.h"
33#include "drm.h"
34#include "intel_drv.h"
35#include "i915_drm.h"
36#include "i915_drv.h"
37
Chris Wilsonf899fc62010-07-20 15:44:45 -070038/* Intel GPIO access functions */
39
Jean Delvare1849ecb2012-01-28 11:07:09 +010040#define I2C_RISEFALL_TIME 10
Chris Wilsonf899fc62010-07-20 15:44:45 -070041
Chris Wilsone957d772010-09-24 12:52:03 +010042static inline struct intel_gmbus *
43to_intel_gmbus(struct i2c_adapter *i2c)
44{
45 return container_of(i2c, struct intel_gmbus, adapter);
46}
47
Chris Wilsonf899fc62010-07-20 15:44:45 -070048void
49intel_i2c_reset(struct drm_device *dev)
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080050{
51 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf899fc62010-07-20 15:44:45 -070052 if (HAS_PCH_SPLIT(dev))
53 I915_WRITE(PCH_GMBUS0, 0);
54 else
55 I915_WRITE(GMBUS0, 0);
56}
57
58static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
59{
Chris Wilsonb222f262010-09-11 21:48:25 +010060 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080061
62 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Chris Wilsonf899fc62010-07-20 15:44:45 -070063 if (!IS_PINEVIEW(dev_priv->dev))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080064 return;
Chris Wilsonb222f262010-09-11 21:48:25 +010065
66 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080067 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +010068 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080069 else
Chris Wilsonb222f262010-09-11 21:48:25 +010070 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
71 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080072}
73
Daniel Vetter36c785f2012-02-14 22:37:22 +010074static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +010075{
Daniel Vetter36c785f2012-02-14 22:37:22 +010076 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +010077 struct drm_device *dev = dev_priv->dev;
78 u32 reserved = 0;
79
80 /* On most chips, these bits must be preserved in software. */
81 if (!IS_I830(dev) && !IS_845G(dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +010082 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +000083 (GPIO_DATA_PULLUP_DISABLE |
84 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +010085
86 return reserved;
87}
88
Jesse Barnes79e53942008-11-07 14:24:08 -080089static int get_clock(void *data)
90{
Daniel Vetter36c785f2012-02-14 22:37:22 +010091 struct intel_gmbus *bus = data;
92 struct drm_i915_private *dev_priv = bus->dev_priv;
93 u32 reserved = get_reserved(bus);
94 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
95 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
96 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080097}
98
99static int get_data(void *data)
100{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100101 struct intel_gmbus *bus = data;
102 struct drm_i915_private *dev_priv = bus->dev_priv;
103 u32 reserved = get_reserved(bus);
104 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
105 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
106 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800107}
108
109static void set_clock(void *data, int state_high)
110{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100111 struct intel_gmbus *bus = data;
112 struct drm_i915_private *dev_priv = bus->dev_priv;
113 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100114 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800115
116 if (state_high)
117 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
118 else
119 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
120 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700121
Daniel Vetter36c785f2012-02-14 22:37:22 +0100122 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
123 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800124}
125
126static void set_data(void *data, int state_high)
127{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100128 struct intel_gmbus *bus = data;
129 struct drm_i915_private *dev_priv = bus->dev_priv;
130 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100131 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800132
133 if (state_high)
134 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
135 else
136 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
137 GPIO_DATA_VAL_MASK;
138
Daniel Vetter36c785f2012-02-14 22:37:22 +0100139 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
140 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800141}
142
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100143static bool
144intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800145{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100146 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700147 static const int map_pin_to_reg[] = {
148 0,
149 GPIOB,
150 GPIOA,
151 GPIOC,
152 GPIOD,
153 GPIOE,
Zhenyu Wang7b5337d2010-10-13 16:40:12 +0800154 0,
Chris Wilsonf899fc62010-07-20 15:44:45 -0700155 GPIOF,
156 };
Daniel Vetter36c785f2012-02-14 22:37:22 +0100157 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800158
Jean Delvare69669452010-11-05 18:51:34 +0100159 if (pin >= ARRAY_SIZE(map_pin_to_reg) || !map_pin_to_reg[pin])
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100160 return false;
Eric Anholtf0217c42009-12-01 11:56:30 -0800161
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100162 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100163
164 bus->gpio_reg = map_pin_to_reg[pin];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700165 if (HAS_PCH_SPLIT(dev_priv->dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +0100166 bus->gpio_reg += PCH_GPIOA - GPIOA;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700167
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100168 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100169 algo->setsda = set_data;
170 algo->setscl = set_clock;
171 algo->getsda = get_data;
172 algo->getscl = get_clock;
173 algo->udelay = I2C_RISEFALL_TIME;
174 algo->timeout = usecs_to_jiffies(2200);
175 algo->data = bus;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700176
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100177 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800178}
179
Chris Wilsonf899fc62010-07-20 15:44:45 -0700180static int
Daniel Vetter36c785f2012-02-14 22:37:22 +0100181intel_i2c_quirk_xfer(struct intel_gmbus *bus,
Chris Wilsone957d772010-09-24 12:52:03 +0100182 struct i2c_msg *msgs,
183 int num)
Jesse Barnes79e53942008-11-07 14:24:08 -0800184{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100185 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700186 int ret;
Keith Packardf9c10a92009-05-30 12:16:25 -0700187
Chris Wilsonf899fc62010-07-20 15:44:45 -0700188 intel_i2c_reset(dev_priv->dev);
189
190 intel_i2c_quirk_set(dev_priv, true);
Daniel Vetter36c785f2012-02-14 22:37:22 +0100191 set_data(bus, 1);
192 set_clock(bus, 1);
Chris Wilsone957d772010-09-24 12:52:03 +0100193 udelay(I2C_RISEFALL_TIME);
194
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100195 ret = i2c_bit_algo.master_xfer(&bus->adapter, msgs, num);
Chris Wilsone957d772010-09-24 12:52:03 +0100196
Daniel Vetter36c785f2012-02-14 22:37:22 +0100197 set_data(bus, 1);
198 set_clock(bus, 1);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700199 intel_i2c_quirk_set(dev_priv, false);
200
201 return ret;
202}
203
204static int
205gmbus_xfer(struct i2c_adapter *adapter,
206 struct i2c_msg *msgs,
207 int num)
208{
209 struct intel_gmbus *bus = container_of(adapter,
210 struct intel_gmbus,
211 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100212 struct drm_i915_private *dev_priv = bus->dev_priv;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500213 int i, reg_offset, ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700214
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500215 mutex_lock(&dev_priv->gmbus_mutex);
216
217 if (bus->force_bit) {
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100218 ret = intel_i2c_quirk_xfer(bus, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500219 goto out;
220 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700221
222 reg_offset = HAS_PCH_SPLIT(dev_priv->dev) ? PCH_GMBUS0 - GMBUS0 : 0;
223
Chris Wilsone957d772010-09-24 12:52:03 +0100224 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700225
226 for (i = 0; i < num; i++) {
227 u16 len = msgs[i].len;
228 u8 *buf = msgs[i].buf;
229
230 if (msgs[i].flags & I2C_M_RD) {
231 I915_WRITE(GMBUS1 + reg_offset,
Benson Leungcaae7452012-02-09 12:03:17 -0800232 GMBUS_CYCLE_WAIT |
233 (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700234 (len << GMBUS_BYTE_COUNT_SHIFT) |
235 (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
236 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Chris Wilsone957d772010-09-24 12:52:03 +0100237 POSTING_READ(GMBUS2+reg_offset);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700238 do {
239 u32 val, loop = 0;
240
241 if (wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_RDY), 50))
242 goto timeout;
243 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100244 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700245
246 val = I915_READ(GMBUS3 + reg_offset);
247 do {
248 *buf++ = val & 0xff;
249 val >>= 8;
250 } while (--len && ++loop < 4);
251 } while (len);
252 } else {
Chris Wilsone957d772010-09-24 12:52:03 +0100253 u32 val, loop;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700254
Chris Wilsone957d772010-09-24 12:52:03 +0100255 val = loop = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700256 do {
Chris Wilsone957d772010-09-24 12:52:03 +0100257 val |= *buf++ << (8 * loop);
258 } while (--len && ++loop < 4);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700259
260 I915_WRITE(GMBUS3 + reg_offset, val);
261 I915_WRITE(GMBUS1 + reg_offset,
Benson Leungcaae7452012-02-09 12:03:17 -0800262 GMBUS_CYCLE_WAIT |
263 (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700264 (msgs[i].len << GMBUS_BYTE_COUNT_SHIFT) |
265 (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
266 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Chris Wilsone957d772010-09-24 12:52:03 +0100267 POSTING_READ(GMBUS2+reg_offset);
268
269 while (len) {
270 if (wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_RDY), 50))
271 goto timeout;
272 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100273 goto clear_err;
Chris Wilsone957d772010-09-24 12:52:03 +0100274
275 val = loop = 0;
276 do {
277 val |= *buf++ << (8 * loop);
278 } while (--len && ++loop < 4);
279
280 I915_WRITE(GMBUS3 + reg_offset, val);
281 POSTING_READ(GMBUS2+reg_offset);
282 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700283 }
284
285 if (i + 1 < num && wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_WAIT_PHASE), 50))
286 goto timeout;
287 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100288 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700289 }
290
Chris Wilson7f58aab2011-03-30 16:20:43 +0100291 goto done;
292
293clear_err:
294 /* Toggle the Software Clear Interrupt bit. This has the effect
295 * of resetting the GMBUS controller and so clearing the
296 * BUS_ERROR raised by the slave's NAK.
297 */
298 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
299 I915_WRITE(GMBUS1 + reg_offset, 0);
300
301done:
Benson Leungcaae7452012-02-09 12:03:17 -0800302 /* Mark the GMBUS interface as disabled after waiting for idle.
303 * We will re-enable it at the start of the next xfer,
304 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100305 */
Benson Leungcaae7452012-02-09 12:03:17 -0800306 if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
307 DRM_INFO("GMBUS timed out waiting for idle\n");
Chris Wilson7f58aab2011-03-30 16:20:43 +0100308 I915_WRITE(GMBUS0 + reg_offset, 0);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500309 ret = i;
310 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700311
312timeout:
Chris Wilsone957d772010-09-24 12:52:03 +0100313 DRM_INFO("GMBUS timed out, falling back to bit banging on pin %d [%s]\n",
314 bus->reg0 & 0xff, bus->adapter.name);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100315 I915_WRITE(GMBUS0 + reg_offset, 0);
316
Chris Wilsonf899fc62010-07-20 15:44:45 -0700317 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100318 if (!bus->has_gpio) {
319 ret = -EIO;
320 } else {
321 bus->force_bit = true;
322 ret = intel_i2c_quirk_xfer(bus, msgs, num);
323 }
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500324out:
325 mutex_unlock(&dev_priv->gmbus_mutex);
326 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700327}
328
329static u32 gmbus_func(struct i2c_adapter *adapter)
330{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100331 return i2c_bit_algo.functionality(adapter) &
332 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700333 /* I2C_FUNC_10BIT_ADDR | */
334 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
335 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
336}
337
338static const struct i2c_algorithm gmbus_algorithm = {
339 .master_xfer = gmbus_xfer,
340 .functionality = gmbus_func
341};
342
343/**
344 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
345 * @dev: DRM device
346 */
347int intel_setup_gmbus(struct drm_device *dev)
348{
Chris Wilsone957d772010-09-24 12:52:03 +0100349 static const char *names[GMBUS_NUM_PORTS] = {
Chris Wilsonf899fc62010-07-20 15:44:45 -0700350 "disabled",
351 "ssc",
352 "vga",
353 "panel",
354 "dpc",
355 "dpb",
Jean Delvare69669452010-11-05 18:51:34 +0100356 "reserved",
Chris Wilsone957d772010-09-24 12:52:03 +0100357 "dpd",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700358 };
359 struct drm_i915_private *dev_priv = dev->dev_private;
360 int ret, i;
361
Axel Lin51a59ac2012-02-10 20:04:52 +0800362 dev_priv->gmbus = kcalloc(GMBUS_NUM_PORTS, sizeof(struct intel_gmbus),
Chris Wilsonf899fc62010-07-20 15:44:45 -0700363 GFP_KERNEL);
364 if (dev_priv->gmbus == NULL)
365 return -ENOMEM;
366
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500367 mutex_init(&dev_priv->gmbus_mutex);
368
Chris Wilsonf899fc62010-07-20 15:44:45 -0700369 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
370 struct intel_gmbus *bus = &dev_priv->gmbus[i];
371
372 bus->adapter.owner = THIS_MODULE;
373 bus->adapter.class = I2C_CLASS_DDC;
374 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100375 sizeof(bus->adapter.name),
376 "i915 gmbus %s",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700377 names[i]);
378
379 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100380 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700381
382 bus->adapter.algo = &gmbus_algorithm;
383 ret = i2c_add_adapter(&bus->adapter);
384 if (ret)
385 goto err;
386
Chris Wilsone957d772010-09-24 12:52:03 +0100387 /* By default use a conservative clock rate */
388 bus->reg0 = i | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100389
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100390 bus->has_gpio = intel_gpio_setup(bus, i);
391
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100392 /* XXX force bit banging until GMBUS is fully debugged */
Daniel Vetter6a562e32012-04-09 21:10:38 +0200393 if (bus->has_gpio)
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100394 bus->force_bit = true;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700395 }
396
397 intel_i2c_reset(dev_priv->dev);
398
399 return 0;
400
401err:
402 while (--i) {
403 struct intel_gmbus *bus = &dev_priv->gmbus[i];
404 i2c_del_adapter(&bus->adapter);
405 }
406 kfree(dev_priv->gmbus);
407 dev_priv->gmbus = NULL;
408 return ret;
409}
410
Chris Wilsone957d772010-09-24 12:52:03 +0100411void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
412{
413 struct intel_gmbus *bus = to_intel_gmbus(adapter);
414
Adam Jacksond5090b92011-06-16 16:36:28 -0400415 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100416}
417
418void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
419{
420 struct intel_gmbus *bus = to_intel_gmbus(adapter);
421
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100422 if (bus->has_gpio)
423 bus->force_bit = force_bit;
Chris Wilsone957d772010-09-24 12:52:03 +0100424}
425
Chris Wilsonf899fc62010-07-20 15:44:45 -0700426void intel_teardown_gmbus(struct drm_device *dev)
427{
428 struct drm_i915_private *dev_priv = dev->dev_private;
429 int i;
430
431 if (dev_priv->gmbus == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -0800432 return;
433
Chris Wilsonf899fc62010-07-20 15:44:45 -0700434 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
435 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700436 i2c_del_adapter(&bus->adapter);
437 }
438
439 kfree(dev_priv->gmbus);
440 dev_priv->gmbus = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800441}