blob: e6c090bff9f2bd2fd37b037bb85368bcd56d811f [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 Vetterf6f808c2012-02-14 18:58:49 +0100140static bool
141intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800142{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100143 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700144 static const int map_pin_to_reg[] = {
145 0,
146 GPIOB,
147 GPIOA,
148 GPIOC,
149 GPIOD,
150 GPIOE,
Zhenyu Wang7b5337d2010-10-13 16:40:12 +0800151 0,
Chris Wilsonf899fc62010-07-20 15:44:45 -0700152 GPIOF,
153 };
Daniel Vetter36c785f2012-02-14 22:37:22 +0100154 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800155
Jean Delvare69669452010-11-05 18:51:34 +0100156 if (pin >= ARRAY_SIZE(map_pin_to_reg) || !map_pin_to_reg[pin])
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100157 return false;
Eric Anholtf0217c42009-12-01 11:56:30 -0800158
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100159 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100160
161 bus->gpio_reg = map_pin_to_reg[pin];
Daniel Vetter110447fc2012-03-23 23:43:36 +0100162 bus->gpio_reg += dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700163
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100164 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100165 algo->setsda = set_data;
166 algo->setscl = set_clock;
167 algo->getsda = get_data;
168 algo->getscl = get_clock;
169 algo->udelay = I2C_RISEFALL_TIME;
170 algo->timeout = usecs_to_jiffies(2200);
171 algo->data = bus;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700172
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100173 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800174}
175
Chris Wilsonf899fc62010-07-20 15:44:45 -0700176static int
Daniel Vetter36c785f2012-02-14 22:37:22 +0100177intel_i2c_quirk_xfer(struct intel_gmbus *bus,
Chris Wilsone957d772010-09-24 12:52:03 +0100178 struct i2c_msg *msgs,
179 int num)
Jesse Barnes79e53942008-11-07 14:24:08 -0800180{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100181 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700182 int ret;
Keith Packardf9c10a92009-05-30 12:16:25 -0700183
Chris Wilsonf899fc62010-07-20 15:44:45 -0700184 intel_i2c_reset(dev_priv->dev);
185
186 intel_i2c_quirk_set(dev_priv, true);
Daniel Vetter36c785f2012-02-14 22:37:22 +0100187 set_data(bus, 1);
188 set_clock(bus, 1);
Chris Wilsone957d772010-09-24 12:52:03 +0100189 udelay(I2C_RISEFALL_TIME);
190
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100191 ret = i2c_bit_algo.master_xfer(&bus->adapter, msgs, num);
Chris Wilsone957d772010-09-24 12:52:03 +0100192
Daniel Vetter36c785f2012-02-14 22:37:22 +0100193 set_data(bus, 1);
194 set_clock(bus, 1);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700195 intel_i2c_quirk_set(dev_priv, false);
196
197 return ret;
198}
199
200static int
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800201gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
202 bool last)
203{
204 int reg_offset = dev_priv->gpio_mmio_base;
205 u16 len = msg->len;
206 u8 *buf = msg->buf;
207
208 I915_WRITE(GMBUS1 + reg_offset,
209 GMBUS_CYCLE_WAIT |
210 (last ? GMBUS_CYCLE_STOP : 0) |
211 (len << GMBUS_BYTE_COUNT_SHIFT) |
212 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
213 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
214 POSTING_READ(GMBUS2 + reg_offset);
215 do {
216 u32 val, loop = 0;
217
218 if (wait_for(I915_READ(GMBUS2 + reg_offset) &
219 (GMBUS_SATOER | GMBUS_HW_RDY),
220 50))
221 return -ETIMEDOUT;
222 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
223 return -ENXIO;
224
225 val = I915_READ(GMBUS3 + reg_offset);
226 do {
227 *buf++ = val & 0xff;
228 val >>= 8;
229 } while (--len && ++loop < 4);
230 } while (len);
231
232 return 0;
233}
234
235static int
236gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
237 bool last)
238{
239 int reg_offset = dev_priv->gpio_mmio_base;
240 u16 len = msg->len;
241 u8 *buf = msg->buf;
242 u32 val, loop;
243
244 val = loop = 0;
245 do {
246 val |= *buf++ << (8 * loop);
247 } while (--len && ++loop < 4);
248
249 I915_WRITE(GMBUS3 + reg_offset, val);
250 I915_WRITE(GMBUS1 + reg_offset,
251 GMBUS_CYCLE_WAIT |
252 (last ? GMBUS_CYCLE_STOP : 0) |
253 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
254 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
255 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
256 POSTING_READ(GMBUS2 + reg_offset);
257 while (len) {
258 if (wait_for(I915_READ(GMBUS2 + reg_offset) &
259 (GMBUS_SATOER | GMBUS_HW_RDY),
260 50))
261 return -ETIMEDOUT;
262 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
263 return -ENXIO;
264
265 val = loop = 0;
266 do {
267 val |= *buf++ << (8 * loop);
268 } while (--len && ++loop < 4);
269
270 I915_WRITE(GMBUS3 + reg_offset, val);
271 POSTING_READ(GMBUS2 + reg_offset);
272 }
273 return 0;
274}
275
276static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700277gmbus_xfer(struct i2c_adapter *adapter,
278 struct i2c_msg *msgs,
279 int num)
280{
281 struct intel_gmbus *bus = container_of(adapter,
282 struct intel_gmbus,
283 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100284 struct drm_i915_private *dev_priv = bus->dev_priv;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500285 int i, reg_offset, ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700286
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500287 mutex_lock(&dev_priv->gmbus_mutex);
288
289 if (bus->force_bit) {
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100290 ret = intel_i2c_quirk_xfer(bus, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500291 goto out;
292 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700293
Daniel Vetter110447fc2012-03-23 23:43:36 +0100294 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700295
Chris Wilsone957d772010-09-24 12:52:03 +0100296 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700297
298 for (i = 0; i < num; i++) {
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800299 bool last = i + 1 == num;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700300
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800301 if (msgs[i].flags & I2C_M_RD)
302 ret = gmbus_xfer_read(dev_priv, &msgs[i], last);
303 else
304 ret = gmbus_xfer_write(dev_priv, &msgs[i], last);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700305
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800306 if (ret == -ETIMEDOUT)
307 goto timeout;
308 if (ret == -ENXIO)
309 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700310
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800311 if (!last &&
312 wait_for(I915_READ(GMBUS2 + reg_offset) &
313 (GMBUS_SATOER | GMBUS_HW_WAIT_PHASE),
314 50))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700315 goto timeout;
316 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100317 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700318 }
319
Chris Wilson7f58aab2011-03-30 16:20:43 +0100320 goto done;
321
322clear_err:
323 /* Toggle the Software Clear Interrupt bit. This has the effect
324 * of resetting the GMBUS controller and so clearing the
325 * BUS_ERROR raised by the slave's NAK.
326 */
327 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
328 I915_WRITE(GMBUS1 + reg_offset, 0);
329
330done:
Benson Leungcaae7452012-02-09 12:03:17 -0800331 /* Mark the GMBUS interface as disabled after waiting for idle.
332 * We will re-enable it at the start of the next xfer,
333 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100334 */
Benson Leungcaae7452012-02-09 12:03:17 -0800335 if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800336 DRM_INFO("GMBUS [%s] timed out waiting for idle\n",
337 bus->adapter.name);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100338 I915_WRITE(GMBUS0 + reg_offset, 0);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500339 ret = i;
340 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700341
342timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800343 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
344 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100345 I915_WRITE(GMBUS0 + reg_offset, 0);
346
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800347 /* Hardware may not support GMBUS over these pins?
348 * Try GPIO bitbanging instead.
349 */
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100350 if (!bus->has_gpio) {
351 ret = -EIO;
352 } else {
353 bus->force_bit = true;
354 ret = intel_i2c_quirk_xfer(bus, msgs, num);
355 }
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500356out:
357 mutex_unlock(&dev_priv->gmbus_mutex);
358 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700359}
360
361static u32 gmbus_func(struct i2c_adapter *adapter)
362{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100363 return i2c_bit_algo.functionality(adapter) &
364 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700365 /* I2C_FUNC_10BIT_ADDR | */
366 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
367 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
368}
369
370static const struct i2c_algorithm gmbus_algorithm = {
371 .master_xfer = gmbus_xfer,
372 .functionality = gmbus_func
373};
374
375/**
376 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
377 * @dev: DRM device
378 */
379int intel_setup_gmbus(struct drm_device *dev)
380{
Chris Wilsone957d772010-09-24 12:52:03 +0100381 static const char *names[GMBUS_NUM_PORTS] = {
Chris Wilsonf899fc62010-07-20 15:44:45 -0700382 "disabled",
383 "ssc",
384 "vga",
385 "panel",
386 "dpc",
387 "dpb",
Jean Delvare69669452010-11-05 18:51:34 +0100388 "reserved",
Chris Wilsone957d772010-09-24 12:52:03 +0100389 "dpd",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700390 };
391 struct drm_i915_private *dev_priv = dev->dev_private;
392 int ret, i;
393
Daniel Vetter110447fc2012-03-23 23:43:36 +0100394 if (HAS_PCH_SPLIT(dev))
395 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
396 else
397 dev_priv->gpio_mmio_base = 0;
398
Axel Lin51a59ac2012-02-10 20:04:52 +0800399 dev_priv->gmbus = kcalloc(GMBUS_NUM_PORTS, sizeof(struct intel_gmbus),
Chris Wilsonf899fc62010-07-20 15:44:45 -0700400 GFP_KERNEL);
401 if (dev_priv->gmbus == NULL)
402 return -ENOMEM;
403
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500404 mutex_init(&dev_priv->gmbus_mutex);
405
Chris Wilsonf899fc62010-07-20 15:44:45 -0700406 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
407 struct intel_gmbus *bus = &dev_priv->gmbus[i];
408
409 bus->adapter.owner = THIS_MODULE;
410 bus->adapter.class = I2C_CLASS_DDC;
411 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100412 sizeof(bus->adapter.name),
413 "i915 gmbus %s",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700414 names[i]);
415
416 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100417 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700418
419 bus->adapter.algo = &gmbus_algorithm;
420 ret = i2c_add_adapter(&bus->adapter);
421 if (ret)
422 goto err;
423
Chris Wilsone957d772010-09-24 12:52:03 +0100424 /* By default use a conservative clock rate */
425 bus->reg0 = i | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100426
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100427 bus->has_gpio = intel_gpio_setup(bus, i);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700428 }
429
430 intel_i2c_reset(dev_priv->dev);
431
432 return 0;
433
434err:
435 while (--i) {
436 struct intel_gmbus *bus = &dev_priv->gmbus[i];
437 i2c_del_adapter(&bus->adapter);
438 }
439 kfree(dev_priv->gmbus);
440 dev_priv->gmbus = NULL;
441 return ret;
442}
443
Chris Wilsone957d772010-09-24 12:52:03 +0100444void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
445{
446 struct intel_gmbus *bus = to_intel_gmbus(adapter);
447
Adam Jacksond5090b92011-06-16 16:36:28 -0400448 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100449}
450
451void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
452{
453 struct intel_gmbus *bus = to_intel_gmbus(adapter);
454
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100455 if (bus->has_gpio)
456 bus->force_bit = force_bit;
Chris Wilsone957d772010-09-24 12:52:03 +0100457}
458
Chris Wilsonf899fc62010-07-20 15:44:45 -0700459void intel_teardown_gmbus(struct drm_device *dev)
460{
461 struct drm_i915_private *dev_priv = dev->dev_private;
462 int i;
463
464 if (dev_priv->gmbus == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -0800465 return;
466
Chris Wilsonf899fc62010-07-20 15:44:45 -0700467 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
468 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700469 i2c_del_adapter(&bus->adapter);
470 }
471
472 kfree(dev_priv->gmbus);
473 dev_priv->gmbus = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800474}