blob: 9dfedb0e00d47145cb490031e9edcd584cdfa165 [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
Chris Wilsonf899fc62010-07-20 15:44:45 -0700143static struct i2c_adapter *
Daniel Vetter36c785f2012-02-14 22:37:22 +0100144intel_gpio_create(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_adapter *adapter;
158 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800159
Jean Delvare69669452010-11-05 18:51:34 +0100160 if (pin >= ARRAY_SIZE(map_pin_to_reg) || !map_pin_to_reg[pin])
Chris Wilsonf899fc62010-07-20 15:44:45 -0700161 return NULL;
Eric Anholtf0217c42009-12-01 11:56:30 -0800162
Daniel Vetter36c785f2012-02-14 22:37:22 +0100163 adapter = kzalloc(sizeof(struct i2c_adapter), GFP_KERNEL);
164 if (adapter == NULL)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700165 return NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800166
Daniel Vetter36c785f2012-02-14 22:37:22 +0100167 algo = kzalloc(sizeof(struct i2c_algo_bit_data), GFP_KERNEL);
168 if (algo == NULL)
169 goto out_adap;
170
171 bus->gpio_reg = map_pin_to_reg[pin];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700172 if (HAS_PCH_SPLIT(dev_priv->dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +0100173 bus->gpio_reg += PCH_GPIOA - GPIOA;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700174
Daniel Vetter36c785f2012-02-14 22:37:22 +0100175 snprintf(adapter->name, sizeof(adapter->name),
Jean Delvare69669452010-11-05 18:51:34 +0100176 "i915 GPIO%c", "?BACDE?F"[pin]);
Daniel Vetter36c785f2012-02-14 22:37:22 +0100177 adapter->owner = THIS_MODULE;
178 adapter->algo_data = algo;
179 adapter->dev.parent = &dev_priv->dev->pdev->dev;
180 algo->setsda = set_data;
181 algo->setscl = set_clock;
182 algo->getsda = get_data;
183 algo->getscl = get_clock;
184 algo->udelay = I2C_RISEFALL_TIME;
185 algo->timeout = usecs_to_jiffies(2200);
186 algo->data = bus;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700187
Daniel Vetter36c785f2012-02-14 22:37:22 +0100188 if (i2c_bit_add_bus(adapter))
189 goto out_algo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800190
Daniel Vetter36c785f2012-02-14 22:37:22 +0100191 return adapter;
Jesse Barnes79e53942008-11-07 14:24:08 -0800192
Daniel Vetter36c785f2012-02-14 22:37:22 +0100193out_algo:
194 kfree(algo);
195out_adap:
196 kfree(adapter);
Jesse Barnes79e53942008-11-07 14:24:08 -0800197 return NULL;
198}
199
Chris Wilsonf899fc62010-07-20 15:44:45 -0700200static int
Daniel Vetter36c785f2012-02-14 22:37:22 +0100201intel_i2c_quirk_xfer(struct intel_gmbus *bus,
Chris Wilsone957d772010-09-24 12:52:03 +0100202 struct i2c_adapter *adapter,
203 struct i2c_msg *msgs,
204 int num)
Jesse Barnes79e53942008-11-07 14:24:08 -0800205{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100206 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700207 int ret;
Keith Packardf9c10a92009-05-30 12:16:25 -0700208
Chris Wilsonf899fc62010-07-20 15:44:45 -0700209 intel_i2c_reset(dev_priv->dev);
210
211 intel_i2c_quirk_set(dev_priv, true);
Daniel Vetter36c785f2012-02-14 22:37:22 +0100212 set_data(bus, 1);
213 set_clock(bus, 1);
Chris Wilsone957d772010-09-24 12:52:03 +0100214 udelay(I2C_RISEFALL_TIME);
215
216 ret = adapter->algo->master_xfer(adapter, msgs, num);
217
Daniel Vetter36c785f2012-02-14 22:37:22 +0100218 set_data(bus, 1);
219 set_clock(bus, 1);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700220 intel_i2c_quirk_set(dev_priv, false);
221
222 return ret;
223}
224
225static int
226gmbus_xfer(struct i2c_adapter *adapter,
227 struct i2c_msg *msgs,
228 int num)
229{
230 struct intel_gmbus *bus = container_of(adapter,
231 struct intel_gmbus,
232 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100233 struct drm_i915_private *dev_priv = bus->dev_priv;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500234 int i, reg_offset, ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700235
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500236 mutex_lock(&dev_priv->gmbus_mutex);
237
238 if (bus->force_bit) {
Daniel Vetter36c785f2012-02-14 22:37:22 +0100239 ret = intel_i2c_quirk_xfer(bus, bus->force_bit, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500240 goto out;
241 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700242
243 reg_offset = HAS_PCH_SPLIT(dev_priv->dev) ? PCH_GMBUS0 - GMBUS0 : 0;
244
Chris Wilsone957d772010-09-24 12:52:03 +0100245 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700246
247 for (i = 0; i < num; i++) {
248 u16 len = msgs[i].len;
249 u8 *buf = msgs[i].buf;
250
251 if (msgs[i].flags & I2C_M_RD) {
252 I915_WRITE(GMBUS1 + reg_offset,
Benson Leungcaae7452012-02-09 12:03:17 -0800253 GMBUS_CYCLE_WAIT |
254 (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700255 (len << GMBUS_BYTE_COUNT_SHIFT) |
256 (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
257 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Chris Wilsone957d772010-09-24 12:52:03 +0100258 POSTING_READ(GMBUS2+reg_offset);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700259 do {
260 u32 val, loop = 0;
261
262 if (wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_RDY), 50))
263 goto timeout;
264 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100265 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700266
267 val = I915_READ(GMBUS3 + reg_offset);
268 do {
269 *buf++ = val & 0xff;
270 val >>= 8;
271 } while (--len && ++loop < 4);
272 } while (len);
273 } else {
Chris Wilsone957d772010-09-24 12:52:03 +0100274 u32 val, loop;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700275
Chris Wilsone957d772010-09-24 12:52:03 +0100276 val = loop = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700277 do {
Chris Wilsone957d772010-09-24 12:52:03 +0100278 val |= *buf++ << (8 * loop);
279 } while (--len && ++loop < 4);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700280
281 I915_WRITE(GMBUS3 + reg_offset, val);
282 I915_WRITE(GMBUS1 + reg_offset,
Benson Leungcaae7452012-02-09 12:03:17 -0800283 GMBUS_CYCLE_WAIT |
284 (i + 1 == num ? GMBUS_CYCLE_STOP : 0) |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700285 (msgs[i].len << GMBUS_BYTE_COUNT_SHIFT) |
286 (msgs[i].addr << GMBUS_SLAVE_ADDR_SHIFT) |
287 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Chris Wilsone957d772010-09-24 12:52:03 +0100288 POSTING_READ(GMBUS2+reg_offset);
289
290 while (len) {
291 if (wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_RDY), 50))
292 goto timeout;
293 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100294 goto clear_err;
Chris Wilsone957d772010-09-24 12:52:03 +0100295
296 val = loop = 0;
297 do {
298 val |= *buf++ << (8 * loop);
299 } while (--len && ++loop < 4);
300
301 I915_WRITE(GMBUS3 + reg_offset, val);
302 POSTING_READ(GMBUS2+reg_offset);
303 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700304 }
305
306 if (i + 1 < num && wait_for(I915_READ(GMBUS2 + reg_offset) & (GMBUS_SATOER | GMBUS_HW_WAIT_PHASE), 50))
307 goto timeout;
308 if (I915_READ(GMBUS2 + reg_offset) & GMBUS_SATOER)
Chris Wilson7f58aab2011-03-30 16:20:43 +0100309 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700310 }
311
Chris Wilson7f58aab2011-03-30 16:20:43 +0100312 goto done;
313
314clear_err:
315 /* Toggle the Software Clear Interrupt bit. This has the effect
316 * of resetting the GMBUS controller and so clearing the
317 * BUS_ERROR raised by the slave's NAK.
318 */
319 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
320 I915_WRITE(GMBUS1 + reg_offset, 0);
321
322done:
Benson Leungcaae7452012-02-09 12:03:17 -0800323 /* Mark the GMBUS interface as disabled after waiting for idle.
324 * We will re-enable it at the start of the next xfer,
325 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100326 */
Benson Leungcaae7452012-02-09 12:03:17 -0800327 if (wait_for((I915_READ(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0, 10))
328 DRM_INFO("GMBUS timed out waiting for idle\n");
Chris Wilson7f58aab2011-03-30 16:20:43 +0100329 I915_WRITE(GMBUS0 + reg_offset, 0);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500330 ret = i;
331 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700332
333timeout:
Chris Wilsone957d772010-09-24 12:52:03 +0100334 DRM_INFO("GMBUS timed out, falling back to bit banging on pin %d [%s]\n",
335 bus->reg0 & 0xff, bus->adapter.name);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100336 I915_WRITE(GMBUS0 + reg_offset, 0);
337
Chris Wilsonf899fc62010-07-20 15:44:45 -0700338 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Daniel Vetter36c785f2012-02-14 22:37:22 +0100339 bus->force_bit = intel_gpio_create(bus, bus->reg0 & 0xff);
Chris Wilsone957d772010-09-24 12:52:03 +0100340 if (!bus->force_bit)
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500341 ret = -ENOMEM;
342 else
Daniel Vetter36c785f2012-02-14 22:37:22 +0100343 ret = intel_i2c_quirk_xfer(bus, bus->force_bit, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500344out:
345 mutex_unlock(&dev_priv->gmbus_mutex);
346 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700347}
348
349static u32 gmbus_func(struct i2c_adapter *adapter)
350{
Chris Wilsone957d772010-09-24 12:52:03 +0100351 struct intel_gmbus *bus = container_of(adapter,
352 struct intel_gmbus,
353 adapter);
354
355 if (bus->force_bit)
356 bus->force_bit->algo->functionality(bus->force_bit);
357
Chris Wilsonf899fc62010-07-20 15:44:45 -0700358 return (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
359 /* I2C_FUNC_10BIT_ADDR | */
360 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
361 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
362}
363
364static const struct i2c_algorithm gmbus_algorithm = {
365 .master_xfer = gmbus_xfer,
366 .functionality = gmbus_func
367};
368
369/**
370 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
371 * @dev: DRM device
372 */
373int intel_setup_gmbus(struct drm_device *dev)
374{
Chris Wilsone957d772010-09-24 12:52:03 +0100375 static const char *names[GMBUS_NUM_PORTS] = {
Chris Wilsonf899fc62010-07-20 15:44:45 -0700376 "disabled",
377 "ssc",
378 "vga",
379 "panel",
380 "dpc",
381 "dpb",
Jean Delvare69669452010-11-05 18:51:34 +0100382 "reserved",
Chris Wilsone957d772010-09-24 12:52:03 +0100383 "dpd",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700384 };
385 struct drm_i915_private *dev_priv = dev->dev_private;
386 int ret, i;
387
Axel Lin51a59ac2012-02-10 20:04:52 +0800388 dev_priv->gmbus = kcalloc(GMBUS_NUM_PORTS, sizeof(struct intel_gmbus),
Chris Wilsonf899fc62010-07-20 15:44:45 -0700389 GFP_KERNEL);
390 if (dev_priv->gmbus == NULL)
391 return -ENOMEM;
392
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500393 mutex_init(&dev_priv->gmbus_mutex);
394
Chris Wilsonf899fc62010-07-20 15:44:45 -0700395 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
396 struct intel_gmbus *bus = &dev_priv->gmbus[i];
397
398 bus->adapter.owner = THIS_MODULE;
399 bus->adapter.class = I2C_CLASS_DDC;
400 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100401 sizeof(bus->adapter.name),
402 "i915 gmbus %s",
Chris Wilsonf899fc62010-07-20 15:44:45 -0700403 names[i]);
404
405 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100406 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700407
408 bus->adapter.algo = &gmbus_algorithm;
409 ret = i2c_add_adapter(&bus->adapter);
410 if (ret)
411 goto err;
412
Chris Wilsone957d772010-09-24 12:52:03 +0100413 /* By default use a conservative clock rate */
414 bus->reg0 = i | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100415
416 /* XXX force bit banging until GMBUS is fully debugged */
Daniel Vetter36c785f2012-02-14 22:37:22 +0100417 bus->force_bit = intel_gpio_create(bus, i);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700418 }
419
420 intel_i2c_reset(dev_priv->dev);
421
422 return 0;
423
424err:
425 while (--i) {
426 struct intel_gmbus *bus = &dev_priv->gmbus[i];
427 i2c_del_adapter(&bus->adapter);
428 }
429 kfree(dev_priv->gmbus);
430 dev_priv->gmbus = NULL;
431 return ret;
432}
433
Chris Wilsone957d772010-09-24 12:52:03 +0100434void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
435{
436 struct intel_gmbus *bus = to_intel_gmbus(adapter);
437
Adam Jacksond5090b92011-06-16 16:36:28 -0400438 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100439}
440
441void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
442{
443 struct intel_gmbus *bus = to_intel_gmbus(adapter);
444
445 if (force_bit) {
446 if (bus->force_bit == NULL) {
Daniel Vetter36c785f2012-02-14 22:37:22 +0100447 bus->force_bit = intel_gpio_create(bus,
Chris Wilsone957d772010-09-24 12:52:03 +0100448 bus->reg0 & 0xff);
449 }
450 } else {
451 if (bus->force_bit) {
452 i2c_del_adapter(bus->force_bit);
Daniel Vetter36c785f2012-02-14 22:37:22 +0100453 kfree(bus->force_bit->algo);
Chris Wilsone957d772010-09-24 12:52:03 +0100454 kfree(bus->force_bit);
455 bus->force_bit = NULL;
456 }
457 }
458}
459
Chris Wilsonf899fc62010-07-20 15:44:45 -0700460void intel_teardown_gmbus(struct drm_device *dev)
461{
462 struct drm_i915_private *dev_priv = dev->dev_private;
463 int i;
464
465 if (dev_priv->gmbus == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -0800466 return;
467
Chris Wilsonf899fc62010-07-20 15:44:45 -0700468 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
469 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsone957d772010-09-24 12:52:03 +0100470 if (bus->force_bit) {
471 i2c_del_adapter(bus->force_bit);
Daniel Vetter36c785f2012-02-14 22:37:22 +0100472 kfree(bus->force_bit->algo);
Chris Wilsone957d772010-09-24 12:52:03 +0100473 kfree(bus->force_bit);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700474 }
475 i2c_del_adapter(&bus->adapter);
476 }
477
478 kfree(dev_priv->gmbus);
479 dev_priv->gmbus = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -0800480}