blob: b31088a551f20ffc376d5e65a14d257164ec1afe [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
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800273gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
274 u32 gmbus1_index)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800275{
276 int reg_offset = dev_priv->gpio_mmio_base;
277 u16 len = msg->len;
278 u8 *buf = msg->buf;
279
280 I915_WRITE(GMBUS1 + reg_offset,
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800281 gmbus1_index |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800282 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800283 (len << GMBUS_BYTE_COUNT_SHIFT) |
284 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
285 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800286 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800287 int ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800288 u32 val, loop = 0;
289
Daniel Vetter28c70f12012-12-01 13:53:45 +0100290 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
291 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800292 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100293 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800294
295 val = I915_READ(GMBUS3 + reg_offset);
296 do {
297 *buf++ = val & 0xff;
298 val >>= 8;
299 } while (--len && ++loop < 4);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800300 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800301
302 return 0;
303}
304
305static int
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800306gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800307{
308 int reg_offset = dev_priv->gpio_mmio_base;
309 u16 len = msg->len;
310 u8 *buf = msg->buf;
311 u32 val, loop;
312
313 val = loop = 0;
Daniel Kurtz26883c32012-03-30 19:46:36 +0800314 while (len && loop < 4) {
315 val |= *buf++ << (8 * loop++);
316 len -= 1;
317 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800318
319 I915_WRITE(GMBUS3 + reg_offset, val);
320 I915_WRITE(GMBUS1 + reg_offset,
321 GMBUS_CYCLE_WAIT |
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800322 (msg->len << GMBUS_BYTE_COUNT_SHIFT) |
323 (msg->addr << GMBUS_SLAVE_ADDR_SHIFT) |
324 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800325 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800326 int ret;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800327
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800328 val = loop = 0;
329 do {
330 val |= *buf++ << (8 * loop);
331 } while (--len && ++loop < 4);
332
333 I915_WRITE(GMBUS3 + reg_offset, val);
Daniel Kurtz7a39a9d2012-03-30 19:46:37 +0800334
Daniel Vetter28c70f12012-12-01 13:53:45 +0100335 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_RDY,
336 GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800337 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100338 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800339 }
340 return 0;
341}
342
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800343/*
344 * The gmbus controller can combine a 1 or 2 byte write with a read that
345 * immediately follows it by using an "INDEX" cycle.
346 */
347static bool
348gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
349{
350 return (i + 1 < num &&
351 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
352 (msgs[i + 1].flags & I2C_M_RD));
353}
354
355static int
356gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
357{
358 int reg_offset = dev_priv->gpio_mmio_base;
359 u32 gmbus1_index = 0;
360 u32 gmbus5 = 0;
361 int ret;
362
363 if (msgs[0].len == 2)
364 gmbus5 = GMBUS_2BYTE_INDEX_EN |
365 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
366 if (msgs[0].len == 1)
367 gmbus1_index = GMBUS_CYCLE_INDEX |
368 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
369
370 /* GMBUS5 holds 16-bit index */
371 if (gmbus5)
372 I915_WRITE(GMBUS5 + reg_offset, gmbus5);
373
374 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
375
376 /* Clear GMBUS5 after each index transfer */
377 if (gmbus5)
378 I915_WRITE(GMBUS5 + reg_offset, 0);
379
380 return ret;
381}
382
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800383static int
Chris Wilsonf899fc62010-07-20 15:44:45 -0700384gmbus_xfer(struct i2c_adapter *adapter,
385 struct i2c_msg *msgs,
386 int num)
387{
388 struct intel_gmbus *bus = container_of(adapter,
389 struct intel_gmbus,
390 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100391 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800392 int i, reg_offset;
393 int ret = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700394
Paulo Zanonic67a4702013-08-19 13:18:09 -0300395 intel_aux_display_runtime_get(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500396 mutex_lock(&dev_priv->gmbus_mutex);
397
398 if (bus->force_bit) {
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800399 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500400 goto out;
401 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700402
Daniel Vetter110447fc2012-03-23 23:43:36 +0100403 reg_offset = dev_priv->gpio_mmio_base;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700404
Chris Wilsone957d772010-09-24 12:52:03 +0100405 I915_WRITE(GMBUS0 + reg_offset, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700406
407 for (i = 0; i < num; i++) {
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800408 if (gmbus_is_index_read(msgs, i, num)) {
409 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
410 i += 1; /* set i to the index of the read xfer */
411 } else if (msgs[i].flags & I2C_M_RD) {
412 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
413 } else {
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800414 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800415 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700416
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800417 if (ret == -ETIMEDOUT)
418 goto timeout;
419 if (ret == -ENXIO)
420 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700421
Daniel Vetter28c70f12012-12-01 13:53:45 +0100422 ret = gmbus_wait_hw_status(dev_priv, GMBUS_HW_WAIT_PHASE,
423 GMBUS_HW_WAIT_EN);
Daniel Vetter61168c52012-12-01 13:53:43 +0100424 if (ret == -ENXIO)
425 goto clear_err;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800426 if (ret)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700427 goto timeout;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700428 }
429
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800430 /* Generate a STOP condition on the bus. Note that gmbus can't generata
431 * a STOP on the very first cycle. To simplify the code we
432 * unconditionally generate the STOP condition with an additional gmbus
433 * cycle. */
434 I915_WRITE(GMBUS1 + reg_offset, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
435
Benson Leungcaae7452012-02-09 12:03:17 -0800436 /* Mark the GMBUS interface as disabled after waiting for idle.
437 * We will re-enable it at the start of the next xfer,
438 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100439 */
Daniel Vetter2c438c02012-12-01 13:53:46 +0100440 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800441 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800442 adapter->name);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800443 ret = -ETIMEDOUT;
444 }
Chris Wilson7f58aab2011-03-30 16:20:43 +0100445 I915_WRITE(GMBUS0 + reg_offset, 0);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800446 ret = ret ?: i;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500447 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700448
Daniel Kurtze646d572012-03-30 19:46:38 +0800449clear_err:
450 /*
451 * Wait for bus to IDLE before clearing NAK.
452 * If we clear the NAK while bus is still active, then it will stay
453 * active and the next transaction may fail.
Daniel Vetter65e81862012-05-21 20:19:48 +0200454 *
455 * If no ACK is received during the address phase of a transaction, the
456 * adapter must report -ENXIO. It is not clear what to return if no ACK
457 * is received at other times. But we have to be careful to not return
458 * spurious -ENXIO because that will prevent i2c and drm edid functions
459 * from retrying. So return -ENXIO only when gmbus properly quiescents -
460 * timing out seems to happen when there _is_ a ddc chip present, but
461 * it's slow responding and only answers on the 2nd retry.
Daniel Kurtze646d572012-03-30 19:46:38 +0800462 */
Daniel Vetter65e81862012-05-21 20:19:48 +0200463 ret = -ENXIO;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100464 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800465 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
466 adapter->name);
Daniel Vetter65e81862012-05-21 20:19:48 +0200467 ret = -ETIMEDOUT;
468 }
Daniel Kurtze646d572012-03-30 19:46:38 +0800469
470 /* Toggle the Software Clear Interrupt bit. This has the effect
471 * of resetting the GMBUS controller and so clearing the
472 * BUS_ERROR raised by the slave's NAK.
473 */
474 I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
475 I915_WRITE(GMBUS1 + reg_offset, 0);
476 I915_WRITE(GMBUS0 + reg_offset, 0);
477
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800478 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800479 adapter->name, msgs[i].addr,
480 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
481
Daniel Kurtze646d572012-03-30 19:46:38 +0800482 goto out;
483
Chris Wilsonf899fc62010-07-20 15:44:45 -0700484timeout:
Daniel Kurtz874e3cc2012-03-28 02:36:11 +0800485 DRM_INFO("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
486 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100487 I915_WRITE(GMBUS0 + reg_offset, 0);
488
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800489 /* Hardware may not support GMBUS over these pins? Try GPIO bitbanging instead. */
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000490 bus->force_bit = 1;
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800491 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800492
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500493out:
494 mutex_unlock(&dev_priv->gmbus_mutex);
Paulo Zanonic67a4702013-08-19 13:18:09 -0300495 intel_aux_display_runtime_put(dev_priv);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500496 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700497}
498
499static u32 gmbus_func(struct i2c_adapter *adapter)
500{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100501 return i2c_bit_algo.functionality(adapter) &
502 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700503 /* I2C_FUNC_10BIT_ADDR | */
504 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
505 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
506}
507
508static const struct i2c_algorithm gmbus_algorithm = {
509 .master_xfer = gmbus_xfer,
510 .functionality = gmbus_func
511};
512
513/**
514 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
515 * @dev: DRM device
516 */
517int intel_setup_gmbus(struct drm_device *dev)
518{
Chris Wilsonf899fc62010-07-20 15:44:45 -0700519 struct drm_i915_private *dev_priv = dev->dev_private;
520 int ret, i;
521
Ben Widawskyab5c6082013-04-05 13:12:41 -0700522 if (HAS_PCH_NOP(dev))
523 return 0;
524 else if (HAS_PCH_SPLIT(dev))
Daniel Vetter110447fc2012-03-23 23:43:36 +0100525 dev_priv->gpio_mmio_base = PCH_GPIOA - GPIOA;
Ville Syrjäläd8112152013-01-24 15:29:55 +0200526 else if (IS_VALLEYVIEW(dev))
527 dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
Daniel Vetter110447fc2012-03-23 23:43:36 +0100528 else
529 dev_priv->gpio_mmio_base = 0;
530
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500531 mutex_init(&dev_priv->gmbus_mutex);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100532 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500533
Chris Wilsonf899fc62010-07-20 15:44:45 -0700534 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
535 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800536 u32 port = i + 1; /* +1 to map gmbus index to pin pair */
Chris Wilsonf899fc62010-07-20 15:44:45 -0700537
538 bus->adapter.owner = THIS_MODULE;
539 bus->adapter.class = I2C_CLASS_DDC;
540 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100541 sizeof(bus->adapter.name),
542 "i915 gmbus %s",
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800543 gmbus_ports[i].name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700544
545 bus->adapter.dev.parent = &dev->pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100546 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700547
548 bus->adapter.algo = &gmbus_algorithm;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700549
Chris Wilsone957d772010-09-24 12:52:03 +0100550 /* By default use a conservative clock rate */
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800551 bus->reg0 = port | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100552
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200553 /* gmbus seems to be broken on i830 */
554 if (IS_I830(dev))
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000555 bus->force_bit = 1;
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200556
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800557 intel_gpio_setup(bus, port);
Jani Nikulacee25162012-08-13 17:33:02 +0300558
559 ret = i2c_add_adapter(&bus->adapter);
560 if (ret)
561 goto err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700562 }
563
564 intel_i2c_reset(dev_priv->dev);
565
566 return 0;
567
568err:
569 while (--i) {
570 struct intel_gmbus *bus = &dev_priv->gmbus[i];
571 i2c_del_adapter(&bus->adapter);
572 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700573 return ret;
574}
575
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800576struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
577 unsigned port)
578{
579 WARN_ON(!intel_gmbus_is_port_valid(port));
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800580 /* -1 to map pin pair to gmbus index */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800581 return (intel_gmbus_is_port_valid(port)) ?
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800582 &dev_priv->gmbus[port - 1].adapter : NULL;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800583}
584
Chris Wilsone957d772010-09-24 12:52:03 +0100585void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
586{
587 struct intel_gmbus *bus = to_intel_gmbus(adapter);
588
Adam Jacksond5090b92011-06-16 16:36:28 -0400589 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100590}
591
592void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
593{
594 struct intel_gmbus *bus = to_intel_gmbus(adapter);
595
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000596 bus->force_bit += force_bit ? 1 : -1;
597 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
598 force_bit ? "en" : "dis", adapter->name,
599 bus->force_bit);
Chris Wilsone957d772010-09-24 12:52:03 +0100600}
601
Chris Wilsonf899fc62010-07-20 15:44:45 -0700602void intel_teardown_gmbus(struct drm_device *dev)
603{
604 struct drm_i915_private *dev_priv = dev->dev_private;
605 int i;
606
Chris Wilsonf899fc62010-07-20 15:44:45 -0700607 for (i = 0; i < GMBUS_NUM_PORTS; i++) {
608 struct intel_gmbus *bus = &dev_priv->gmbus[i];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700609 i2c_del_adapter(&bus->adapter);
610 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800611}