blob: 56e437e3158021a09641d188affc6129f0b1eda8 [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>
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080033#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "i915_drv.h"
36
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080037struct gmbus_port {
38 const char *name;
39 int reg;
40};
41
42static const struct gmbus_port gmbus_ports[] = {
43 { "ssc", GPIOB },
44 { "vga", GPIOA },
45 { "panel", GPIOC },
46 { "dpc", GPIOD },
47 { "dpb", GPIOE },
48 { "dpd", GPIOF },
49};
50
Chris Wilsonf899fc62010-07-20 15:44:45 -070051/* Intel GPIO access functions */
52
Jean Delvare1849ecb2012-01-28 11:07:09 +010053#define I2C_RISEFALL_TIME 10
Chris Wilsonf899fc62010-07-20 15:44:45 -070054
Chris Wilsone957d772010-09-24 12:52:03 +010055static inline struct intel_gmbus *
56to_intel_gmbus(struct i2c_adapter *i2c)
57{
58 return container_of(i2c, struct intel_gmbus, adapter);
59}
60
Chris Wilsonf899fc62010-07-20 15:44:45 -070061void
62intel_i2c_reset(struct drm_device *dev)
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080063{
64 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee24eb2d52013-09-27 15:31:00 +080065
Daniel Vetter110447fc2012-03-23 23:43:36 +010066 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS0, 0);
Daniel Vetter28c70f12012-12-01 13:53:45 +010067 I915_WRITE(dev_priv->gpio_mmio_base + GMBUS4, 0);
Chris Wilsonf899fc62010-07-20 15:44:45 -070068}
69
70static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
71{
Chris Wilsonb222f262010-09-11 21:48:25 +010072 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080073
74 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Chris Wilsonf899fc62010-07-20 15:44:45 -070075 if (!IS_PINEVIEW(dev_priv->dev))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080076 return;
Chris Wilsonb222f262010-09-11 21:48:25 +010077
78 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080079 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +010080 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080081 else
Chris Wilsonb222f262010-09-11 21:48:25 +010082 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
83 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +080084}
85
Daniel Vetter36c785f2012-02-14 22:37:22 +010086static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +010087{
Daniel Vetter36c785f2012-02-14 22:37:22 +010088 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +010089 struct drm_device *dev = dev_priv->dev;
90 u32 reserved = 0;
91
92 /* On most chips, these bits must be preserved in software. */
93 if (!IS_I830(dev) && !IS_845G(dev))
Daniel Vetter36c785f2012-02-14 22:37:22 +010094 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +000095 (GPIO_DATA_PULLUP_DISABLE |
96 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +010097
98 return reserved;
99}
100
Jesse Barnes79e53942008-11-07 14:24:08 -0800101static int get_clock(void *data)
102{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100103 struct intel_gmbus *bus = data;
104 struct drm_i915_private *dev_priv = bus->dev_priv;
105 u32 reserved = get_reserved(bus);
106 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
107 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
108 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800109}
110
111static int get_data(void *data)
112{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100113 struct intel_gmbus *bus = data;
114 struct drm_i915_private *dev_priv = bus->dev_priv;
115 u32 reserved = get_reserved(bus);
116 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
117 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
118 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800119}
120
121static void set_clock(void *data, int state_high)
122{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100123 struct intel_gmbus *bus = data;
124 struct drm_i915_private *dev_priv = bus->dev_priv;
125 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100126 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800127
128 if (state_high)
129 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
130 else
131 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
132 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700133
Daniel Vetter36c785f2012-02-14 22:37:22 +0100134 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
135 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800136}
137
138static void set_data(void *data, int state_high)
139{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100140 struct intel_gmbus *bus = data;
141 struct drm_i915_private *dev_priv = bus->dev_priv;
142 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100143 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800144
145 if (state_high)
146 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
147 else
148 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
149 GPIO_DATA_VAL_MASK;
150
Daniel Vetter36c785f2012-02-14 22:37:22 +0100151 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
152 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800153}
154
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800155static int
156intel_gpio_pre_xfer(struct i2c_adapter *adapter)
157{
158 struct intel_gmbus *bus = container_of(adapter,
159 struct intel_gmbus,
160 adapter);
161 struct drm_i915_private *dev_priv = bus->dev_priv;
162
163 intel_i2c_reset(dev_priv->dev);
164 intel_i2c_quirk_set(dev_priv, true);
165 set_data(bus, 1);
166 set_clock(bus, 1);
167 udelay(I2C_RISEFALL_TIME);
168 return 0;
169}
170
171static void
172intel_gpio_post_xfer(struct i2c_adapter *adapter)
173{
174 struct intel_gmbus *bus = container_of(adapter,
175 struct intel_gmbus,
176 adapter);
177 struct drm_i915_private *dev_priv = bus->dev_priv;
178
179 set_data(bus, 1);
180 set_clock(bus, 1);
181 intel_i2c_quirk_set(dev_priv, false);
182}
183
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800184static void
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100185intel_gpio_setup(struct intel_gmbus *bus, u32 pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800186{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100187 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100188 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800189
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100190 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100191
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800192 /* -1 to map pin pair to gmbus index */
193 bus->gpio_reg = dev_priv->gpio_mmio_base + gmbus_ports[pin - 1].reg;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700194
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100195 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100196 algo->setsda = set_data;
197 algo->setscl = set_clock;
198 algo->getsda = get_data;
199 algo->getscl = get_clock;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800200 algo->pre_xfer = intel_gpio_pre_xfer;
201 algo->post_xfer = intel_gpio_post_xfer;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100202 algo->udelay = I2C_RISEFALL_TIME;
203 algo->timeout = usecs_to_jiffies(2200);
204 algo->data = bus;
Jesse Barnes79e53942008-11-07 14:24:08 -0800205}
206
Chris Wilsonf899fc62010-07-20 15:44:45 -0700207static int
Daniel Vetter61168c52012-12-01 13:53:43 +0100208gmbus_wait_hw_status(struct drm_i915_private *dev_priv,
Daniel Vetter28c70f12012-12-01 13:53:45 +0100209 u32 gmbus2_status,
210 u32 gmbus4_irq_en)
Daniel Vetter61168c52012-12-01 13:53:43 +0100211{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100212 int i;
Daniel Vetter61168c52012-12-01 13:53:43 +0100213 int reg_offset = dev_priv->gpio_mmio_base;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100214 u32 gmbus2 = 0;
215 DEFINE_WAIT(wait);
Daniel Vetter61168c52012-12-01 13:53:43 +0100216
Jiri Kosinac12aba52013-03-19 09:56:57 +0100217 if (!HAS_GMBUS_IRQ(dev_priv->dev))
218 gmbus4_irq_en = 0;
219
Daniel Vetter28c70f12012-12-01 13:53:45 +0100220 /* Important: The hw handles only the first bit, so set only one! Since
221 * we also need to check for NAKs besides the hw ready/idle signal, we
222 * need to wake up periodically and check that ourselves. */
223 I915_WRITE(GMBUS4 + reg_offset, gmbus4_irq_en);
224
Imre Deak2554fc12013-05-21 20:03:18 +0300225 for (i = 0; i < msecs_to_jiffies_timeout(50); i++) {
Daniel Vetter28c70f12012-12-01 13:53:45 +0100226 prepare_to_wait(&dev_priv->gmbus_wait_queue, &wait,
227 TASK_UNINTERRUPTIBLE);
228
Daniel Vetteref04f002012-12-01 21:03:59 +0100229 gmbus2 = I915_READ_NOTRACE(GMBUS2 + reg_offset);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100230 if (gmbus2 & (GMBUS_SATOER | gmbus2_status))
231 break;
232
233 schedule_timeout(1);
234 }
235 finish_wait(&dev_priv->gmbus_wait_queue, &wait);
236
237 I915_WRITE(GMBUS4 + reg_offset, 0);
Daniel Vetter61168c52012-12-01 13:53:43 +0100238
239 if (gmbus2 & GMBUS_SATOER)
240 return -ENXIO;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100241 if (gmbus2 & gmbus2_status)
242 return 0;
243 return -ETIMEDOUT;
Daniel Vetter61168c52012-12-01 13:53:43 +0100244}
245
246static int
Daniel Vetter2c438c02012-12-01 13:53:46 +0100247gmbus_wait_idle(struct drm_i915_private *dev_priv)
248{
249 int ret;
250 int reg_offset = dev_priv->gpio_mmio_base;
251
Daniel Vetteref04f002012-12-01 21:03:59 +0100252#define C ((I915_READ_NOTRACE(GMBUS2 + reg_offset) & GMBUS_ACTIVE) == 0)
Daniel Vetter2c438c02012-12-01 13:53:46 +0100253
254 if (!HAS_GMBUS_IRQ(dev_priv->dev))
255 return wait_for(C, 10);
256
257 /* Important: The hw handles only the first bit, so set only one! */
258 I915_WRITE(GMBUS4 + reg_offset, GMBUS_IDLE_EN);
259
Imre Deak35987062013-05-21 20:03:20 +0300260 ret = wait_event_timeout(dev_priv->gmbus_wait_queue, C,
261 msecs_to_jiffies_timeout(10));
Daniel Vetter2c438c02012-12-01 13:53:46 +0100262
263 I915_WRITE(GMBUS4 + reg_offset, 0);
264
265 if (ret)
266 return 0;
267 else
268 return -ETIMEDOUT;
269#undef C
270}
271
272static int
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700273gmbus_xfer_read_chunk(struct drm_i915_private *dev_priv,
274 unsigned short addr, u8 *buf, unsigned int len,
275 u32 gmbus1_index)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800276{
277 int reg_offset = dev_priv->gpio_mmio_base;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800278
279 I915_WRITE(GMBUS1 + reg_offset,
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800280 gmbus1_index |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800281 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800282 (len << GMBUS_BYTE_COUNT_SHIFT) |
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700283 (addr << GMBUS_SLAVE_ADDR_SHIFT) |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800284 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800285 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800286 int ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800287 u32 val, loop = 0;
288
Daniel Vetter28c70f12012-12-01 13:53:45 +0100289 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
290 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800291 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100292 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800293
294 val = I915_READ(GMBUS3 + reg_offset);
295 do {
296 *buf++ = val & 0xff;
297 val >>= 8;
298 } while (--len && ++loop < 4);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800299 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800300
301 return 0;
302}
303
304static int
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700305gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
306 u32 gmbus1_index)
307{
308 u8 *buf = msg->buf;
309 unsigned int rx_size = msg->len;
310 unsigned int len;
311 int ret;
312
313 do {
314 len = min(rx_size, GMBUS_BYTE_COUNT_MAX);
315
316 ret = gmbus_xfer_read_chunk(dev_priv, msg->addr,
317 buf, len, gmbus1_index);
318 if (ret)
319 return ret;
320
321 rx_size -= len;
322 buf += len;
323 } while (rx_size != 0);
324
325 return 0;
326}
327
328static int
329gmbus_xfer_write_chunk(struct drm_i915_private *dev_priv,
330 unsigned short addr, u8 *buf, unsigned int len)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800331{
332 int reg_offset = dev_priv->gpio_mmio_base;
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700333 unsigned int chunk_size = len;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800334 u32 val, loop;
335
336 val = loop = 0;
Daniel Kurtz26883c32012-03-30 19:46:36 +0800337 while (len && loop < 4) {
338 val |= *buf++ << (8 * loop++);
339 len -= 1;
340 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800341
342 I915_WRITE(GMBUS3 + reg_offset, val);
343 I915_WRITE(GMBUS1 + reg_offset,
344 GMBUS_CYCLE_WAIT |
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700345 (chunk_size << GMBUS_BYTE_COUNT_SHIFT) |
346 (addr << GMBUS_SLAVE_ADDR_SHIFT) |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800347 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800348 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800349 int ret;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800350
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800351 val = loop = 0;
352 do {
353 val |= *buf++ << (8 * loop);
354 } while (--len && ++loop < 4);
355
356 I915_WRITE(GMBUS3 + reg_offset, val);
Daniel Kurtz7a39a9d2012-03-30 19:46:37 +0800357
Daniel Vetter28c70f12012-12-01 13:53:45 +0100358 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
359 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800360 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100361 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800362 }
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700363
364 return 0;
365}
366
367static int
368gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
369{
370 u8 *buf = msg->buf;
371 unsigned int tx_size = msg->len;
372 unsigned int len;
373 int ret;
374
375 do {
376 len = min(tx_size, GMBUS_BYTE_COUNT_MAX);
377
378 ret = gmbus_xfer_write_chunk(dev_priv, msg->addr, buf, len);
379 if (ret)
380 return ret;
381
382 buf += len;
383 tx_size -= len;
384 } while (tx_size != 0);
385
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800386 return 0;
387}
388
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800389/*
390 * The gmbus controller can combine a 1 or 2 byte write with a read that
391 * immediately follows it by using an "INDEX" cycle.
392 */
393static bool
394gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
395{
396 return (i + 1 < num &&
397 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
398 (msgs[i + 1].flags & I2C_M_RD));
399}
400
401static int
402gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
403{
404 int reg_offset = dev_priv->gpio_mmio_base;
405 u32 gmbus1_index = 0;
406 u32 gmbus5 = 0;
407 int ret;
408
409 if (msgs[0].len == 2)
410 gmbus5 = GMBUS_2BYTE_INDEX_EN |
411 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
412 if (msgs[0].len == 1)
413 gmbus1_index = GMBUS_CYCLE_INDEX |
414 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
415
416 /* GMBUS5 holds 16-bit index */
417 if (gmbus5)
418 I915_WRITE(GMBUS5 + reg_offset, gmbus5);
419
420 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
421
422 /* Clear GMBUS5 after each index transfer */
423 if (gmbus5)
424 I915_WRITE(GMBUS5 + reg_offset, 0);
425
426 return ret;
427}
428
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800429static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700430gmbus_xfer(struct i2c_adapter *adapter,
431 struct i2c_msg *msgs,
432 int num)
433{
434 struct intel_gmbus *bus = container_of(adapter,
435 struct intel_gmbus,
436 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100437 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800438 int i, reg_offset;
439 int ret = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700440
Paulo Zanonic67a4702013-08-19 13:18:09 -0300441 intel_aux_display_runtime_get(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500442 mutex_lock(&dev_priv->gmbus_mutex);
443
444 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800445 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500446 goto out;
447 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700448
Daniel Vetter110447fc2012-03-23 23:43:36 +0100449 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700450
Chris Wilsone957d772010-09-24 12:52:03 +0100451 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700452
453 for (i = 0; i < num; i++) {
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800454 if (gmbus_is_index_read(msgs, i, num)) {
455 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
456 i += 1; /* set i to the index of the read xfer */
457 } else if (msgs[i].flags & I2C_M_RD) {
458 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
459 } else {
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800460 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800461 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700462
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800463 if (ret == -ETIMEDOUT)
464 goto timeout;
465 if (ret == -ENXIO)
466 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700467
Daniel Vetter28c70f12012-12-01 13:53:45 +0100468 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_WAIT_PHASE,
469 GMBUS_HW_WAIT_EN);
Daniel Vetter61168c52012-12-01 13:53:43 +0100470 if (ret == -ENXIO)
471 goto clear_err;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800472 if (ret)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700473 goto timeout;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700474 }
475
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800476 /* Generate a STOP condition on the bus. Note that gmbus can't generata
477 * a STOP on the very first cycle. To simplify the code we
478 * unconditionally generate the STOP condition with an additional gmbus
479 * cycle. */
480 I915_WRITE(GMBUS1 + reg_offset, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
481
Benson Leungcaae7452012-02-09 12:03:17 -0800482 /* Mark the GMBUS interface as disabled after waiting for idle.
483 * We will re-enable it at the start of the next xfer,
484 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100485 */
Daniel Vetter2c438c02012-12-01 13:53:46 +0100486 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800487 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800488 adapter->name);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800489 ret = -ETIMEDOUT;
490 }
Chris Wilson7f58aab2011-03-30 16:20:43 +0100491 I915_WRITE(GMBUS0 + reg_offset, 0);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800492 ret = ret ?: i;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500493 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700494
Daniel Kurtze646d572012-03-30 19:46:38 +0800495clear_err:
496 /*
497 * Wait for bus to IDLE before clearing NAK.
498 * If we clear the NAK while bus is still active, then it will stay
499 * active and the next transaction may fail.
Daniel Vetter65e81862012-05-21 20:19:48 +0200500 *
501 * If no ACK is received during the address phase of a transaction, the
502 * adapter must report -ENXIO. It is not clear what to return if no ACK
503 * is received at other times. But we have to be careful to not return
504 * spurious -ENXIO because that will prevent i2c and drm edid functions
505 * from retrying. So return -ENXIO only when gmbus properly quiescents -
506 * timing out seems to happen when there _is_ a ddc chip present, but
507 * it's slow responding and only answers on the 2nd retry.
Daniel Kurtze646d572012-03-30 19:46:38 +0800508 */
Daniel Vetter65e81862012-05-21 20:19:48 +0200509 ret = -ENXIO;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100510 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800511 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
512 adapter->name);
Daniel Vetter65e81862012-05-21 20:19:48 +0200513 ret = -ETIMEDOUT;
514 }
Daniel Kurtze646d572012-03-30 19:46:38 +0800515
516 /* Toggle the Software Clear Interrupt bit. This has the effect
517 * of resetting the GMBUS controller and so clearing the
518 * BUS_ERROR raised by the slave's NAK.
519 */
520 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
521 I915_WRITE(GMBUS1 + reg_offset, 0);
522 I915_WRITE(GMBUS0 + reg_offset, 0);
523
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800524 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800525 adapter->name, msgs[i].addr,
526 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
527
Daniel Kurtze646d572012-03-30 19:46:38 +0800528 goto out;
529
Chris Wilsonf899fc62010-07-20 15:44:45 -0700530timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800531 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
532 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100533 I915_WRITE(GMBUS0 + reg_offset, 0);
534
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800535 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000536 bus->force_bit = 1;
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800537 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800538
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500539out:
540 mutex_unlock(&dev_priv->gmbus_mutex);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300541 intel_aux_display_runtime_put(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500542 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700543}
544
545static u32 gmbus_func(struct i2c_adapter *adapter)
546{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100547 return i2c_bit_algo.functionality(adapter) &
548 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700549 /* I2C_FUNC_10BIT_ADDR | */
550 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
551 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
552}
553
554static const struct i2c_algorithm gmbus_algorithm = {
555 .master_xfer = gmbus_xfer,
556 .functionality = gmbus_func
557};
558
559/**
560 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
561 * @dev: DRM device
562 */
563int intel_setup_gmbus(struct drm_device *dev)
564{
Chris Wilsonf899fc62010-07-20 15:44:45 -0700565 struct drm_i915_private *dev_priv = dev->dev_private;
566 int ret, i;
567
Ben Widawskyab5c6082013-04-05 13:12:41 -0700568 if (HAS_PCH_NOP(dev))
569 return 0;
570 else if (HAS_PCH_SPLIT(dev))
Daniel Vetter110447fc2012-03-23 23:43:36 +0100571 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
Ville Syrjäläd8112152013-01-24 15:29:55 +0200572 else if (IS_VALLEYVIEW(dev))
573 dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
Daniel Vetter110447fc2012-03-23 23:43:36 +0100574 else
575 dev_priv->gpio_mmio_base = 0;
576
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500577 mutex_init(&dev_priv->gmbus_mutex);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100578 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500579
Chris Wilsonf899fc62010-07-20 15:44:45 -0700580 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
581 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800582 u32 port = i + 1; /* +1 to map gmbus index to pin pair */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700583
584 bus->adapter.owner = THIS_MODULE;
585 bus->adapter.class = I2C_CLASS_DDC;
586 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100587 sizeof(bus->adapter.name),
588 "i915 gmbus %s",
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800589 gmbus_ports[i].name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700590
591 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100592 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700593
594 bus->adapter.algo = &gmbus_algorithm;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700595
Chris Wilsone957d772010-09-24 12:52:03 +0100596 /* By default use a conservative clock rate */
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800597 bus->reg0 = port | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100598
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200599 /* gmbus seems to be broken on i830 */
600 if (IS_I830(dev))
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000601 bus->force_bit = 1;
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200602
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800603 intel_gpio_setup(bus, port);
Jani Nikulacee25162012-08-13 17:33:02 +0300604
605 ret = i2c_add_adapter(&bus->adapter);
606 if (ret)
607 goto err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700608 }
609
610 intel_i2c_reset(dev_priv->dev);
611
612 return 0;
613
614err:
615 while (--i) {
616 struct intel_gmbus *bus = &dev_priv->gmbus[i];
617 i2c_del_adapter(&bus->adapter);
618 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700619 return ret;
620}
621
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800622struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
623 unsigned port)
624{
625 WARN_ON(!intel_gmbus_is_port_valid(port));
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800626 /* -1 to map pin pair to gmbus index */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800627 return (intel_gmbus_is_port_valid(port)) ?
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800628 &dev_priv->gmbus[port - 1].adapter : NULL;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800629}
630
Chris Wilsone957d772010-09-24 12:52:03 +0100631void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
632{
633 struct intel_gmbus *bus = to_intel_gmbus(adapter);
634
Adam Jacksond5090b92011-06-16 16:36:28 -0400635 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100636}
637
638void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
639{
640 struct intel_gmbus *bus = to_intel_gmbus(adapter);
641
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000642 bus->force_bit += force_bit ? 1 : -1;
643 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
644 force_bit ? "en" : "dis", adapter->name,
645 bus->force_bit);
Chris Wilsone957d772010-09-24 12:52:03 +0100646}
647
Chris Wilsonf899fc62010-07-20 15:44:45 -0700648void intel_teardown_gmbus(struct drm_device *dev)
649{
650 struct drm_i915_private *dev_priv = dev->dev_private;
651 int i;
652
Chris Wilsonf899fc62010-07-20 15:44:45 -0700653 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
654 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700655 i2c_del_adapter(&bus->adapter);
656 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800657}