blob: dcde6f64777a9f88c24c533940290dd7c44a6da2 [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
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080038struct gmbus_port {
39 const char *name;
40 int reg;
41};
42
43static const struct gmbus_port gmbus_ports[] = {
44 { "ssc", GPIOB },
45 { "vga", GPIOA },
46 { "panel", GPIOC },
47 { "dpc", GPIOD },
48 { "dpb", GPIOE },
49 { "dpd", GPIOF },
50};
51
Chris Wilsonf899fc62010-07-20 15:44:45 -070052/* Intel GPIO access functions */
53
Jean Delvare1849ecb2012-01-28 11:07:09 +010054#define I2C_RISEFALL_TIME 10
Chris Wilsonf899fc62010-07-20 15:44:45 -070055
Chris Wilsone957d772010-09-24 12:52:03 +010056static inline struct intel_gmbus *
57to_intel_gmbus(struct i2c_adapter *i2c)
58{
59 return container_of(i2c, struct intel_gmbus, adapter);
60}
61
Chris Wilsonf899fc62010-07-20 15:44:45 -070062void
63intel_i2c_reset(struct drm_device *dev)
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080064{
65 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter110447fc2012-03-23 23:43:36 +010066 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS0, 0);
Chris Wilsonf899fc62010-07-20 15:44:45 -070067}
68
69static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
70{
Chris Wilsonb222f262010-09-11 21:48:25 +010071 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080072
73 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Chris Wilsonf899fc62010-07-20 15:44:45 -070074 if (!IS_PINEVIEW(dev_priv->dev))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080075 return;
Chris Wilsonb222f262010-09-11 21:48:25 +010076
77 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080078 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +010079 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080080 else
Chris Wilsonb222f262010-09-11 21:48:25 +010081 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
82 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080083}
84
Daniel Vetter36c785f2012-02-14 22:37:22 +010085static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +010086{
Daniel Vetter36c785f2012-02-14 22:37:22 +010087 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +010088 struct drm_device *dev = dev_priv->dev;
89 u32 reserved = 0;
90
91 /* On most chips, these bits must be preserved in software. */
92 if (!IS_I830(dev) && !IS_845G(dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +010093 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +000094 (GPIO_DATA_PULLUP_DISABLE |
95 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +010096
97 return reserved;
98}
99
Jesse Barnes79e53942008-11-07 14:24:08 -0800100static int get_clock(void *data)
101{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100102 struct intel_gmbus *bus = data;
103 struct drm_i915_private *dev_priv = bus->dev_priv;
104 u32 reserved = get_reserved(bus);
105 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
106 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
107 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800108}
109
110static int get_data(void *data)
111{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100112 struct intel_gmbus *bus = data;
113 struct drm_i915_private *dev_priv = bus->dev_priv;
114 u32 reserved = get_reserved(bus);
115 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
116 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
117 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800118}
119
120static void set_clock(void *data, int state_high)
121{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100122 struct intel_gmbus *bus = data;
123 struct drm_i915_private *dev_priv = bus->dev_priv;
124 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100125 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800126
127 if (state_high)
128 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
129 else
130 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
131 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700132
Daniel Vetter36c785f2012-02-14 22:37:22 +0100133 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
134 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800135}
136
137static void set_data(void *data, int state_high)
138{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100139 struct intel_gmbus *bus = data;
140 struct drm_i915_private *dev_priv = bus->dev_priv;
141 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100142 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800143
144 if (state_high)
145 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
146 else
147 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
148 GPIO_DATA_VAL_MASK;
149
Daniel Vetter36c785f2012-02-14 22:37:22 +0100150 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
151 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800152}
153
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800154static int
155intel_gpio_pre_xfer(struct i2c_adapter *adapter)
156{
157 struct intel_gmbus *bus = container_of(adapter,
158 struct intel_gmbus,
159 adapter);
160 struct drm_i915_private *dev_priv = bus->dev_priv;
161
162 intel_i2c_reset(dev_priv->dev);
163 intel_i2c_quirk_set(dev_priv, true);
164 set_data(bus, 1);
165 set_clock(bus, 1);
166 udelay(I2C_RISEFALL_TIME);
167 return 0;
168}
169
170static void
171intel_gpio_post_xfer(struct i2c_adapter *adapter)
172{
173 struct intel_gmbus *bus = container_of(adapter,
174 struct intel_gmbus,
175 adapter);
176 struct drm_i915_private *dev_priv = bus->dev_priv;
177
178 set_data(bus, 1);
179 set_clock(bus, 1);
180 intel_i2c_quirk_set(dev_priv, false);
181}
182
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800183static void
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100184intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800185{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100186 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100187 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800188
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100189 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100190
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800191 /* -1 to map pin pair to gmbus index */
192 bus->gpio_reg = dev_priv->gpio_mmio_base + gmbus_ports[pin - 1].reg;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700193
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100194 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100195 algo->setsda = set_data;
196 algo->setscl = set_clock;
197 algo->getsda = get_data;
198 algo->getscl = get_clock;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800199 algo->pre_xfer = intel_gpio_pre_xfer;
200 algo->post_xfer = intel_gpio_post_xfer;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100201 algo->udelay = I2C_RISEFALL_TIME;
202 algo->timeout = usecs_to_jiffies(2200);
203 algo->data = bus;
Jesse Barnes79e53942008-11-07 14:24:08 -0800204}
205
Chris Wilsonf899fc62010-07-20 15:44:45 -0700206static int
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800207gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
208 bool last)
209{
210 int reg_offset = dev_priv->gpio_mmio_base;
211 u16 len = msg->len;
212 u8 *buf = msg->buf;
213
214 I915_WRITE(GMBUS1 + reg_offset,
215 GMBUS_CYCLE_WAIT |
216 (last ? GMBUS_CYCLE_STOP : 0) |
217 (len << GMBUS_BYTE_COUNT_SHIFT) |
218 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
219 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
220 POSTING_READ(GMBUS2 + reg_offset);
221 do {
222 u32 val, loop = 0;
223
224 if (wait_for(I915_READ(GMBUS2 + reg_offset) &
225 (GMBUS_SATOER | GMBUS_HW_RDY),
226 50))
227 return -ETIMEDOUT;
228 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
229 return -ENXIO;
230
231 val = I915_READ(GMBUS3 + reg_offset);
232 do {
233 *buf++ = val & 0xff;
234 val >>= 8;
235 } while (--len && ++loop < 4);
236 } while (len);
237
238 return 0;
239}
240
241static int
242gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
243 bool last)
244{
245 int reg_offset = dev_priv->gpio_mmio_base;
246 u16 len = msg->len;
247 u8 *buf = msg->buf;
248 u32 val, loop;
249
250 val = loop = 0;
251 do {
252 val |= *buf++ << (8 * loop);
253 } while (--len && ++loop < 4);
254
255 I915_WRITE(GMBUS3 + reg_offset, val);
256 I915_WRITE(GMBUS1 + reg_offset,
257 GMBUS_CYCLE_WAIT |
258 (last ? GMBUS_CYCLE_STOP : 0) |
259 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
260 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
261 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
262 POSTING_READ(GMBUS2 + reg_offset);
263 while (len) {
264 if (wait_for(I915_READ(GMBUS2 + reg_offset) &
265 (GMBUS_SATOER | GMBUS_HW_RDY),
266 50))
267 return -ETIMEDOUT;
268 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
269 return -ENXIO;
270
271 val = loop = 0;
272 do {
273 val |= *buf++ << (8 * loop);
274 } while (--len && ++loop < 4);
275
276 I915_WRITE(GMBUS3 + reg_offset, val);
277 POSTING_READ(GMBUS2 + reg_offset);
278 }
279 return 0;
280}
281
282static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700283gmbus_xfer(struct i2c_adapter *adapter,
284 struct i2c_msg *msgs,
285 int num)
286{
287 struct intel_gmbus *bus = container_of(adapter,
288 struct intel_gmbus,
289 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100290 struct drm_i915_private *dev_priv = bus->dev_priv;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500291 int i, reg_offset, ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700292
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500293 mutex_lock(&dev_priv->gmbus_mutex);
294
295 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800296 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500297 goto out;
298 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700299
Daniel Vetter110447fc2012-03-23 23:43:36 +0100300 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700301
Chris Wilsone957d772010-09-24 12:52:03 +0100302 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700303
304 for (i = 0; i < num; i++) {
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800305 bool last = i + 1 == num;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700306
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800307 if (msgs[i].flags & I2C_M_RD)
308 ret = gmbus_xfer_read(dev_priv, &msgs[i], last);
309 else
310 ret = gmbus_xfer_write(dev_priv, &msgs[i], last);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700311
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800312 if (ret == -ETIMEDOUT)
313 goto timeout;
314 if (ret == -ENXIO)
315 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700316
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800317 if (!last &&
318 wait_for(I915_READ(GMBUS2 + reg_offset) &
319 (GMBUS_SATOER | GMBUS_HW_WAIT_PHASE),
320 50))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700321 goto timeout;
322 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100323 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700324 }
325
Chris Wilson7f58aab2011-03-30 16:20:43 +0100326 goto done;
327
328clear_err:
329 /* Toggle the Software Clear Interrupt bit. This has the effect
330 * of resetting the GMBUS controller and so clearing the
331 * BUS_ERROR raised by the slave's NAK.
332 */
333 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
334 I915_WRITE(GMBUS1 + reg_offset, 0);
335
336done:
Benson Leungcaae7452012-02-09 12:03:17 -0800337 /* Mark the GMBUS interface as disabled after waiting for idle.
338 * We will re-enable it at the start of the next xfer,
339 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100340 */
Benson Leungcaae7452012-02-09 12:03:17 -0800341 if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800342 DRM_INFO("GMBUS [%s] timed out waiting for idle\n",
343 bus->adapter.name);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100344 I915_WRITE(GMBUS0 + reg_offset, 0);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500345 ret = i;
346 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700347
348timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800349 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
350 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100351 I915_WRITE(GMBUS0 + reg_offset, 0);
352
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800353 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
354 bus->force_bit = true;
355 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800356
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500357out:
358 mutex_unlock(&dev_priv->gmbus_mutex);
359 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700360}
361
362static u32 gmbus_func(struct i2c_adapter *adapter)
363{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100364 return i2c_bit_algo.functionality(adapter) &
365 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700366 /* I2C_FUNC_10BIT_ADDR | */
367 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
368 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
369}
370
371static const struct i2c_algorithm gmbus_algorithm = {
372 .master_xfer = gmbus_xfer,
373 .functionality = gmbus_func
374};
375
376/**
377 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
378 * @dev: DRM device
379 */
380int intel_setup_gmbus(struct drm_device *dev)
381{
Chris Wilsonf899fc62010-07-20 15:44:45 -0700382 struct drm_i915_private *dev_priv = dev->dev_private;
383 int ret, i;
384
Daniel Vetter110447fc2012-03-23 23:43:36 +0100385 if (HAS_PCH_SPLIT(dev))
386 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
387 else
388 dev_priv->gpio_mmio_base = 0;
389
Axel Lin51a59ac2012-02-10 20:04:52 +0800390 dev_priv->gmbus = kcalloc(GMBUS_NUM_PORTS, sizeof(struct intel_gmbus),
Chris Wilsonf899fc62010-07-20 15:44:45 -0700391 GFP_KERNEL);
392 if (dev_priv->gmbus == NULL)
393 return -ENOMEM;
394
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500395 mutex_init(&dev_priv->gmbus_mutex);
396
Chris Wilsonf899fc62010-07-20 15:44:45 -0700397 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
398 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800399 u32 port = i + 1; /* +1 to map gmbus index to pin pair */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700400
401 bus->adapter.owner = THIS_MODULE;
402 bus->adapter.class = I2C_CLASS_DDC;
403 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100404 sizeof(bus->adapter.name),
405 "i915 gmbus %s",
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800406 gmbus_ports[i].name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700407
408 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100409 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700410
411 bus->adapter.algo = &gmbus_algorithm;
412 ret = i2c_add_adapter(&bus->adapter);
413 if (ret)
414 goto err;
415
Chris Wilsone957d772010-09-24 12:52:03 +0100416 /* By default use a conservative clock rate */
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800417 bus->reg0 = port | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100418
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800419 intel_gpio_setup(bus, port);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700420 }
421
422 intel_i2c_reset(dev_priv->dev);
423
424 return 0;
425
426err:
427 while (--i) {
428 struct intel_gmbus *bus = &dev_priv->gmbus[i];
429 i2c_del_adapter(&bus->adapter);
430 }
431 kfree(dev_priv->gmbus);
432 dev_priv->gmbus = NULL;
433 return ret;
434}
435
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800436struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
437 unsigned port)
438{
439 WARN_ON(!intel_gmbus_is_port_valid(port));
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800440 /* -1 to map pin pair to gmbus index */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800441 return (intel_gmbus_is_port_valid(port)) ?
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800442 &dev_priv->gmbus[port - 1].adapter : NULL;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800443}
444
Chris Wilsone957d772010-09-24 12:52:03 +0100445void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
446{
447 struct intel_gmbus *bus = to_intel_gmbus(adapter);
448
Adam Jacksond5090b92011-06-16 16:36:28 -0400449 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100450}
451
452void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
453{
454 struct intel_gmbus *bus = to_intel_gmbus(adapter);
455
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800456 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}