blob: 1bb63624a7934babda83bf32d015d605f22f87a5 [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;
Daniel Vetter110447fc2012-03-23 23:43:36 +010052 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS0, 0);
Chris Wilsonf899fc62010-07-20 15:44:45 -070053}
54
55static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
56{
Chris Wilsonb222f262010-09-11 21:48:25 +010057 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080058
59 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Chris Wilsonf899fc62010-07-20 15:44:45 -070060 if (!IS_PINEVIEW(dev_priv->dev))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080061 return;
Chris Wilsonb222f262010-09-11 21:48:25 +010062
63 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080064 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +010065 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080066 else
Chris Wilsonb222f262010-09-11 21:48:25 +010067 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
68 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080069}
70
Daniel Vetter36c785f2012-02-14 22:37:22 +010071static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +010072{
Daniel Vetter36c785f2012-02-14 22:37:22 +010073 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +010074 struct drm_device *dev = dev_priv->dev;
75 u32 reserved = 0;
76
77 /* On most chips, these bits must be preserved in software. */
78 if (!IS_I830(dev) && !IS_845G(dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +010079 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +000080 (GPIO_DATA_PULLUP_DISABLE |
81 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +010082
83 return reserved;
84}
85
Jesse Barnes79e53942008-11-07 14:24:08 -080086static int get_clock(void *data)
87{
Daniel Vetter36c785f2012-02-14 22:37:22 +010088 struct intel_gmbus *bus = data;
89 struct drm_i915_private *dev_priv = bus->dev_priv;
90 u32 reserved = get_reserved(bus);
91 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
92 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
93 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080094}
95
96static int get_data(void *data)
97{
Daniel Vetter36c785f2012-02-14 22:37:22 +010098 struct intel_gmbus *bus = data;
99 struct drm_i915_private *dev_priv = bus->dev_priv;
100 u32 reserved = get_reserved(bus);
101 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
102 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
103 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800104}
105
106static void set_clock(void *data, int state_high)
107{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100108 struct intel_gmbus *bus = data;
109 struct drm_i915_private *dev_priv = bus->dev_priv;
110 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100111 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800112
113 if (state_high)
114 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
115 else
116 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
117 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700118
Daniel Vetter36c785f2012-02-14 22:37:22 +0100119 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
120 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800121}
122
123static void set_data(void *data, int state_high)
124{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100125 struct intel_gmbus *bus = data;
126 struct drm_i915_private *dev_priv = bus->dev_priv;
127 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100128 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800129
130 if (state_high)
131 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
132 else
133 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
134 GPIO_DATA_VAL_MASK;
135
Daniel Vetter36c785f2012-02-14 22:37:22 +0100136 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
137 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800138}
139
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800140static int
141intel_gpio_pre_xfer(struct i2c_adapter *adapter)
142{
143 struct intel_gmbus *bus = container_of(adapter,
144 struct intel_gmbus,
145 adapter);
146 struct drm_i915_private *dev_priv = bus->dev_priv;
147
148 intel_i2c_reset(dev_priv->dev);
149 intel_i2c_quirk_set(dev_priv, true);
150 set_data(bus, 1);
151 set_clock(bus, 1);
152 udelay(I2C_RISEFALL_TIME);
153 return 0;
154}
155
156static void
157intel_gpio_post_xfer(struct i2c_adapter *adapter)
158{
159 struct intel_gmbus *bus = container_of(adapter,
160 struct intel_gmbus,
161 adapter);
162 struct drm_i915_private *dev_priv = bus->dev_priv;
163
164 set_data(bus, 1);
165 set_clock(bus, 1);
166 intel_i2c_quirk_set(dev_priv, false);
167}
168
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100169static bool
170intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800171{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100172 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700173 static const int map_pin_to_reg[] = {
174 0,
175 GPIOB,
176 GPIOA,
177 GPIOC,
178 GPIOD,
179 GPIOE,
180 GPIOF,
Daniel Kurtze4fd17a2012-03-28 02:36:12 +0800181 0,
Chris Wilsonf899fc62010-07-20 15:44:45 -0700182 };
Daniel Vetter36c785f2012-02-14 22:37:22 +0100183 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800184
Jean Delvare69669452010-11-05 18:51:34 +0100185 if (pin >= ARRAY_SIZE(map_pin_to_reg) || !map_pin_to_reg[pin])
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100186 return false;
Eric Anholtf0217c42009-12-01 11:56:30 -0800187
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100188 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100189
190 bus->gpio_reg = map_pin_to_reg[pin];
Daniel Vetter110447fc2012-03-23 23:43:36 +0100191 bus->gpio_reg += dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700192
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100193 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100194 algo->setsda = set_data;
195 algo->setscl = set_clock;
196 algo->getsda = get_data;
197 algo->getscl = get_clock;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800198 algo->pre_xfer = intel_gpio_pre_xfer;
199 algo->post_xfer = intel_gpio_post_xfer;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100200 algo->udelay = I2C_RISEFALL_TIME;
201 algo->timeout = usecs_to_jiffies(2200);
202 algo->data = bus;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700203
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100204 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800205}
206
Chris Wilsonf899fc62010-07-20 15:44:45 -0700207static int
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800208gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
209 bool last)
210{
211 int reg_offset = dev_priv->gpio_mmio_base;
212 u16 len = msg->len;
213 u8 *buf = msg->buf;
214
215 I915_WRITE(GMBUS1 + reg_offset,
216 GMBUS_CYCLE_WAIT |
217 (last ? GMBUS_CYCLE_STOP : 0) |
218 (len << GMBUS_BYTE_COUNT_SHIFT) |
219 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
220 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
221 POSTING_READ(GMBUS2 + reg_offset);
222 do {
223 u32 val, loop = 0;
224
225 if (wait_for(I915_READ(GMBUS2 + reg_offset) &
226 (GMBUS_SATOER | GMBUS_HW_RDY),
227 50))
228 return -ETIMEDOUT;
229 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
230 return -ENXIO;
231
232 val = I915_READ(GMBUS3 + reg_offset);
233 do {
234 *buf++ = val & 0xff;
235 val >>= 8;
236 } while (--len && ++loop < 4);
237 } while (len);
238
239 return 0;
240}
241
242static int
243gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
244 bool last)
245{
246 int reg_offset = dev_priv->gpio_mmio_base;
247 u16 len = msg->len;
248 u8 *buf = msg->buf;
249 u32 val, loop;
250
251 val = loop = 0;
252 do {
253 val |= *buf++ << (8 * loop);
254 } while (--len && ++loop < 4);
255
256 I915_WRITE(GMBUS3 + reg_offset, val);
257 I915_WRITE(GMBUS1 + reg_offset,
258 GMBUS_CYCLE_WAIT |
259 (last ? GMBUS_CYCLE_STOP : 0) |
260 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
261 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
262 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
263 POSTING_READ(GMBUS2 + reg_offset);
264 while (len) {
265 if (wait_for(I915_READ(GMBUS2 + reg_offset) &
266 (GMBUS_SATOER | GMBUS_HW_RDY),
267 50))
268 return -ETIMEDOUT;
269 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
270 return -ENXIO;
271
272 val = loop = 0;
273 do {
274 val |= *buf++ << (8 * loop);
275 } while (--len && ++loop < 4);
276
277 I915_WRITE(GMBUS3 + reg_offset, val);
278 POSTING_READ(GMBUS2 + reg_offset);
279 }
280 return 0;
281}
282
283static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700284gmbus_xfer(struct i2c_adapter *adapter,
285 struct i2c_msg *msgs,
286 int num)
287{
288 struct intel_gmbus *bus = container_of(adapter,
289 struct intel_gmbus,
290 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100291 struct drm_i915_private *dev_priv = bus->dev_priv;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500292 int i, reg_offset, ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700293
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500294 mutex_lock(&dev_priv->gmbus_mutex);
295
296 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800297 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500298 goto out;
299 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700300
Daniel Vetter110447fc2012-03-23 23:43:36 +0100301 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700302
Chris Wilsone957d772010-09-24 12:52:03 +0100303 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700304
305 for (i = 0; i < num; i++) {
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800306 bool last = i + 1 == num;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700307
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800308 if (msgs[i].flags & I2C_M_RD)
309 ret = gmbus_xfer_read(dev_priv, &msgs[i], last);
310 else
311 ret = gmbus_xfer_write(dev_priv, &msgs[i], last);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700312
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800313 if (ret == -ETIMEDOUT)
314 goto timeout;
315 if (ret == -ENXIO)
316 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700317
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800318 if (!last &&
319 wait_for(I915_READ(GMBUS2 + reg_offset) &
320 (GMBUS_SATOER | GMBUS_HW_WAIT_PHASE),
321 50))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700322 goto timeout;
323 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100324 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700325 }
326
Chris Wilson7f58aab2011-03-30 16:20:43 +0100327 goto done;
328
329clear_err:
330 /* Toggle the Software Clear Interrupt bit. This has the effect
331 * of resetting the GMBUS controller and so clearing the
332 * BUS_ERROR raised by the slave's NAK.
333 */
334 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
335 I915_WRITE(GMBUS1 + reg_offset, 0);
336
337done:
Benson Leungcaae7452012-02-09 12:03:17 -0800338 /* Mark the GMBUS interface as disabled after waiting for idle.
339 * We will re-enable it at the start of the next xfer,
340 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100341 */
Benson Leungcaae7452012-02-09 12:03:17 -0800342 if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800343 DRM_INFO("GMBUS [%s] timed out waiting for idle\n",
344 bus->adapter.name);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100345 I915_WRITE(GMBUS0 + reg_offset, 0);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500346 ret = i;
347 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700348
349timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800350 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
351 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100352 I915_WRITE(GMBUS0 + reg_offset, 0);
353
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800354 /* Hardware may not support GMBUS over these pins?
355 * Try GPIO bitbanging instead.
356 */
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100357 if (!bus->has_gpio) {
358 ret = -EIO;
359 } else {
360 bus->force_bit = true;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800361 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100362 }
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800363
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500364out:
365 mutex_unlock(&dev_priv->gmbus_mutex);
366 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700367}
368
369static u32 gmbus_func(struct i2c_adapter *adapter)
370{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100371 return i2c_bit_algo.functionality(adapter) &
372 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700373 /* I2C_FUNC_10BIT_ADDR | */
374 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
375 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
376}
377
378static const struct i2c_algorithm gmbus_algorithm = {
379 .master_xfer = gmbus_xfer,
380 .functionality = gmbus_func
381};
382
383/**
384 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
385 * @dev: DRM device
386 */
387int intel_setup_gmbus(struct drm_device *dev)
388{
Chris Wilsone957d772010-09-24 12:52:03 +0100389 static const char *names[GMBUS_NUM_PORTS] = {
Chris Wilsonf899fc62010-07-20 15:44:45 -0700390 "disabled",
391 "ssc",
392 "vga",
393 "panel",
394 "dpc",
395 "dpb",
Chris Wilsone957d772010-09-24 12:52:03 +0100396 "dpd",
Daniel Kurtze4fd17a2012-03-28 02:36:12 +0800397 "reserved",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700398 };
399 struct drm_i915_private *dev_priv = dev->dev_private;
400 int ret, i;
401
Daniel Vetter110447fc2012-03-23 23:43:36 +0100402 if (HAS_PCH_SPLIT(dev))
403 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
404 else
405 dev_priv->gpio_mmio_base = 0;
406
Axel Lin51a59ac2012-02-10 20:04:52 +0800407 dev_priv->gmbus = kcalloc(GMBUS_NUM_PORTS, sizeof(struct intel_gmbus),
Chris Wilsonf899fc62010-07-20 15:44:45 -0700408 GFP_KERNEL);
409 if (dev_priv->gmbus == NULL)
410 return -ENOMEM;
411
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500412 mutex_init(&dev_priv->gmbus_mutex);
413
Chris Wilsonf899fc62010-07-20 15:44:45 -0700414 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
415 struct intel_gmbus *bus = &dev_priv->gmbus[i];
416
417 bus->adapter.owner = THIS_MODULE;
418 bus->adapter.class = I2C_CLASS_DDC;
419 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100420 sizeof(bus->adapter.name),
421 "i915 gmbus %s",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700422 names[i]);
423
424 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100425 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700426
427 bus->adapter.algo = &gmbus_algorithm;
428 ret = i2c_add_adapter(&bus->adapter);
429 if (ret)
430 goto err;
431
Chris Wilsone957d772010-09-24 12:52:03 +0100432 /* By default use a conservative clock rate */
433 bus->reg0 = i | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100434
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100435 bus->has_gpio = intel_gpio_setup(bus, i);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700436 }
437
438 intel_i2c_reset(dev_priv->dev);
439
440 return 0;
441
442err:
443 while (--i) {
444 struct intel_gmbus *bus = &dev_priv->gmbus[i];
445 i2c_del_adapter(&bus->adapter);
446 }
447 kfree(dev_priv->gmbus);
448 dev_priv->gmbus = NULL;
449 return ret;
450}
451
Chris Wilsone957d772010-09-24 12:52:03 +0100452void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
453{
454 struct intel_gmbus *bus = to_intel_gmbus(adapter);
455
Adam Jacksond5090b92011-06-16 16:36:28 -0400456 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100457}
458
459void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
460{
461 struct intel_gmbus *bus = to_intel_gmbus(adapter);
462
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100463 if (bus->has_gpio)
464 bus->force_bit = force_bit;
Chris Wilsone957d772010-09-24 12:52:03 +0100465}
466
Chris Wilsonf899fc62010-07-20 15:44:45 -0700467void intel_teardown_gmbus(struct drm_device *dev)
468{
469 struct drm_i915_private *dev_priv = dev->dev_private;
470 int i;
471
472 if (dev_priv->gmbus == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -0800473 return;
474
Chris Wilsonf899fc62010-07-20 15:44:45 -0700475 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
476 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700477 i2c_del_adapter(&bus->adapter);
478 }
479
480 kfree(dev_priv->gmbus);
481 dev_priv->gmbus = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800482}