blob: 83f260bb4eefe59156adedd663901ba2d14d73cc [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
Jani Nikula5ea6e5e2015-04-01 10:55:04 +030037struct gmbus_pin {
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080038 const char *name;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020039 i915_reg_t reg;
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080040};
41
Jani Nikula5ea6e5e2015-04-01 10:55:04 +030042/* Map gmbus pin pairs to names and registers. */
43static const struct gmbus_pin gmbus_pins[] = {
44 [GMBUS_PIN_SSC] = { "ssc", GPIOB },
45 [GMBUS_PIN_VGADDC] = { "vga", GPIOA },
46 [GMBUS_PIN_PANEL] = { "panel", GPIOC },
47 [GMBUS_PIN_DPC] = { "dpc", GPIOD },
48 [GMBUS_PIN_DPB] = { "dpb", GPIOE },
49 [GMBUS_PIN_DPD] = { "dpd", GPIOF },
Daniel Kurtz2ed06c92012-03-28 02:36:15 +080050};
51
Jani Nikulac1bad5b2015-05-06 15:33:43 +030052static const struct gmbus_pin gmbus_pins_bdw[] = {
53 [GMBUS_PIN_VGADDC] = { "vga", GPIOA },
54 [GMBUS_PIN_DPC] = { "dpc", GPIOD },
55 [GMBUS_PIN_DPB] = { "dpb", GPIOE },
56 [GMBUS_PIN_DPD] = { "dpd", GPIOF },
57};
58
Jani Nikula6364e672015-05-06 15:33:44 +030059static const struct gmbus_pin gmbus_pins_skl[] = {
60 [GMBUS_PIN_DPC] = { "dpc", GPIOD },
61 [GMBUS_PIN_DPB] = { "dpb", GPIOE },
62 [GMBUS_PIN_DPD] = { "dpd", GPIOF },
63};
64
Jani Nikula4c272832015-04-01 10:58:05 +030065static const struct gmbus_pin gmbus_pins_bxt[] = {
Ville Syrjäläb2e8c6c2015-11-04 23:20:00 +020066 [GMBUS_PIN_1_BXT] = { "dpb", GPIOB },
67 [GMBUS_PIN_2_BXT] = { "dpc", GPIOC },
68 [GMBUS_PIN_3_BXT] = { "misc", GPIOD },
Jani Nikula4c272832015-04-01 10:58:05 +030069};
70
71/* pin is expected to be valid */
72static const struct gmbus_pin *get_gmbus_pin(struct drm_i915_private *dev_priv,
73 unsigned int pin)
74{
75 if (IS_BROXTON(dev_priv))
76 return &gmbus_pins_bxt[pin];
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070077 else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Jani Nikula6364e672015-05-06 15:33:44 +030078 return &gmbus_pins_skl[pin];
Jani Nikulac1bad5b2015-05-06 15:33:43 +030079 else if (IS_BROADWELL(dev_priv))
80 return &gmbus_pins_bdw[pin];
Jani Nikula4c272832015-04-01 10:58:05 +030081 else
82 return &gmbus_pins[pin];
83}
84
Jani Nikula88ac7932015-03-27 00:20:22 +020085bool intel_gmbus_is_valid_pin(struct drm_i915_private *dev_priv,
86 unsigned int pin)
87{
Jani Nikula4c272832015-04-01 10:58:05 +030088 unsigned int size;
89
90 if (IS_BROXTON(dev_priv))
91 size = ARRAY_SIZE(gmbus_pins_bxt);
Rodrigo Vivief11bdb2015-10-28 04:16:45 -070092 else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Jani Nikula6364e672015-05-06 15:33:44 +030093 size = ARRAY_SIZE(gmbus_pins_skl);
Jani Nikulac1bad5b2015-05-06 15:33:43 +030094 else if (IS_BROADWELL(dev_priv))
95 size = ARRAY_SIZE(gmbus_pins_bdw);
Jani Nikula4c272832015-04-01 10:58:05 +030096 else
97 size = ARRAY_SIZE(gmbus_pins);
98
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020099 return pin < size &&
100 i915_mmio_reg_valid(get_gmbus_pin(dev_priv, pin)->reg);
Jani Nikula88ac7932015-03-27 00:20:22 +0200101}
102
Chris Wilsonf899fc62010-07-20 15:44:45 -0700103/* Intel GPIO access functions */
104
Jean Delvare1849ecb2012-01-28 11:07:09 +0100105#define I2C_RISEFALL_TIME 10
Chris Wilsonf899fc62010-07-20 15:44:45 -0700106
Chris Wilsone957d772010-09-24 12:52:03 +0100107static inline struct intel_gmbus *
108to_intel_gmbus(struct i2c_adapter *i2c)
109{
110 return container_of(i2c, struct intel_gmbus, adapter);
111}
112
Chris Wilsonf899fc62010-07-20 15:44:45 -0700113void
114intel_i2c_reset(struct drm_device *dev)
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800115{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100116 struct drm_i915_private *dev_priv = to_i915(dev);
Chon Ming Lee24eb2d52013-09-27 15:31:00 +0800117
Ville Syrjälä699fc402015-09-18 20:03:38 +0300118 I915_WRITE(GMBUS0, 0);
119 I915_WRITE(GMBUS4, 0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700120}
121
122static void intel_i2c_quirk_set(struct drm_i915_private *dev_priv, bool enable)
123{
Chris Wilsonb222f262010-09-11 21:48:25 +0100124 u32 val;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800125
126 /* When using bit bashing for I2C, this bit needs to be set to 1 */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300127 if (!IS_PINEVIEW(dev_priv))
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800128 return;
Chris Wilsonb222f262010-09-11 21:48:25 +0100129
130 val = I915_READ(DSPCLK_GATE_D);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800131 if (enable)
Chris Wilsonb222f262010-09-11 21:48:25 +0100132 val |= DPCUNIT_CLOCK_GATE_DISABLE;
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800133 else
Chris Wilsonb222f262010-09-11 21:48:25 +0100134 val &= ~DPCUNIT_CLOCK_GATE_DISABLE;
135 I915_WRITE(DSPCLK_GATE_D, val);
Shaohua Li0ba0e9e2009-04-07 11:02:28 +0800136}
137
Daniel Vetter36c785f2012-02-14 22:37:22 +0100138static u32 get_reserved(struct intel_gmbus *bus)
Chris Wilsone957d772010-09-24 12:52:03 +0100139{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100140 struct drm_i915_private *dev_priv = bus->dev_priv;
Chris Wilsone957d772010-09-24 12:52:03 +0100141 u32 reserved = 0;
142
143 /* On most chips, these bits must be preserved in software. */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100144 if (!IS_I830(dev_priv) && !IS_845G(dev_priv))
Daniel Vetter36c785f2012-02-14 22:37:22 +0100145 reserved = I915_READ_NOTRACE(bus->gpio_reg) &
Yuanhan Liudb5e4172010-11-08 09:58:16 +0000146 (GPIO_DATA_PULLUP_DISABLE |
147 GPIO_CLOCK_PULLUP_DISABLE);
Chris Wilsone957d772010-09-24 12:52:03 +0100148
149 return reserved;
150}
151
Jesse Barnes79e53942008-11-07 14:24:08 -0800152static int get_clock(void *data)
153{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100154 struct intel_gmbus *bus = data;
155 struct drm_i915_private *dev_priv = bus->dev_priv;
156 u32 reserved = get_reserved(bus);
157 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_CLOCK_DIR_MASK);
158 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
159 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_CLOCK_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800160}
161
162static int get_data(void *data)
163{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100164 struct intel_gmbus *bus = data;
165 struct drm_i915_private *dev_priv = bus->dev_priv;
166 u32 reserved = get_reserved(bus);
167 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | GPIO_DATA_DIR_MASK);
168 I915_WRITE_NOTRACE(bus->gpio_reg, reserved);
169 return (I915_READ_NOTRACE(bus->gpio_reg) & GPIO_DATA_VAL_IN) != 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800170}
171
172static void set_clock(void *data, int state_high)
173{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100174 struct intel_gmbus *bus = data;
175 struct drm_i915_private *dev_priv = bus->dev_priv;
176 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100177 u32 clock_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800178
179 if (state_high)
180 clock_bits = GPIO_CLOCK_DIR_IN | GPIO_CLOCK_DIR_MASK;
181 else
182 clock_bits = GPIO_CLOCK_DIR_OUT | GPIO_CLOCK_DIR_MASK |
183 GPIO_CLOCK_VAL_MASK;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700184
Daniel Vetter36c785f2012-02-14 22:37:22 +0100185 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | clock_bits);
186 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800187}
188
189static void set_data(void *data, int state_high)
190{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100191 struct intel_gmbus *bus = data;
192 struct drm_i915_private *dev_priv = bus->dev_priv;
193 u32 reserved = get_reserved(bus);
Chris Wilsone957d772010-09-24 12:52:03 +0100194 u32 data_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -0800195
196 if (state_high)
197 data_bits = GPIO_DATA_DIR_IN | GPIO_DATA_DIR_MASK;
198 else
199 data_bits = GPIO_DATA_DIR_OUT | GPIO_DATA_DIR_MASK |
200 GPIO_DATA_VAL_MASK;
201
Daniel Vetter36c785f2012-02-14 22:37:22 +0100202 I915_WRITE_NOTRACE(bus->gpio_reg, reserved | data_bits);
203 POSTING_READ(bus->gpio_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800204}
205
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800206static int
207intel_gpio_pre_xfer(struct i2c_adapter *adapter)
208{
209 struct intel_gmbus *bus = container_of(adapter,
210 struct intel_gmbus,
211 adapter);
212 struct drm_i915_private *dev_priv = bus->dev_priv;
213
Chris Wilson91c8a322016-07-05 10:40:23 +0100214 intel_i2c_reset(&dev_priv->drm);
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800215 intel_i2c_quirk_set(dev_priv, true);
216 set_data(bus, 1);
217 set_clock(bus, 1);
218 udelay(I2C_RISEFALL_TIME);
219 return 0;
220}
221
222static void
223intel_gpio_post_xfer(struct i2c_adapter *adapter)
224{
225 struct intel_gmbus *bus = container_of(adapter,
226 struct intel_gmbus,
227 adapter);
228 struct drm_i915_private *dev_priv = bus->dev_priv;
229
230 set_data(bus, 1);
231 set_clock(bus, 1);
232 intel_i2c_quirk_set(dev_priv, false);
233}
234
Daniel Kurtz2ed06c92012-03-28 02:36:15 +0800235static void
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300236intel_gpio_setup(struct intel_gmbus *bus, unsigned int pin)
Eric Anholtf0217c42009-12-01 11:56:30 -0800237{
Daniel Vetter36c785f2012-02-14 22:37:22 +0100238 struct drm_i915_private *dev_priv = bus->dev_priv;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100239 struct i2c_algo_bit_data *algo;
Eric Anholtf0217c42009-12-01 11:56:30 -0800240
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100241 algo = &bus->bit_algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100242
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200243 bus->gpio_reg = _MMIO(dev_priv->gpio_mmio_base +
244 i915_mmio_reg_offset(get_gmbus_pin(dev_priv, pin)->reg));
Daniel Vetterc167a6f2012-02-28 00:43:09 +0100245 bus->adapter.algo_data = algo;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100246 algo->setsda = set_data;
247 algo->setscl = set_clock;
248 algo->getsda = get_data;
249 algo->getscl = get_clock;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800250 algo->pre_xfer = intel_gpio_pre_xfer;
251 algo->post_xfer = intel_gpio_post_xfer;
Daniel Vetter36c785f2012-02-14 22:37:22 +0100252 algo->udelay = I2C_RISEFALL_TIME;
253 algo->timeout = usecs_to_jiffies(2200);
254 algo->data = bus;
Jesse Barnes79e53942008-11-07 14:24:08 -0800255}
256
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100257static int gmbus_wait(struct drm_i915_private *dev_priv, u32 status, u32 irq_en)
Daniel Vetter61168c52012-12-01 13:53:43 +0100258{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100259 DEFINE_WAIT(wait);
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100260 u32 gmbus2;
261 int ret;
Jiri Kosinac12aba52013-03-19 09:56:57 +0100262
Daniel Vetter28c70f12012-12-01 13:53:45 +0100263 /* Important: The hw handles only the first bit, so set only one! Since
264 * we also need to check for NAKs besides the hw ready/idle signal, we
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100265 * need to wake up periodically and check that ourselves.
266 */
267 if (!HAS_GMBUS_IRQ(dev_priv))
268 irq_en = 0;
Daniel Vetter28c70f12012-12-01 13:53:45 +0100269
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100270 add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
271 I915_WRITE_FW(GMBUS4, irq_en);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100272
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100273 status |= GMBUS_SATOER;
274 ret = wait_for_us((gmbus2 = I915_READ_FW(GMBUS2)) & status, 2);
275 if (ret)
276 ret = wait_for((gmbus2 = I915_READ_FW(GMBUS2)) & status, 50);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100277
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100278 I915_WRITE_FW(GMBUS4, 0);
279 remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
Daniel Vetter61168c52012-12-01 13:53:43 +0100280
281 if (gmbus2 & GMBUS_SATOER)
282 return -ENXIO;
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100283
284 return ret;
Daniel Vetter61168c52012-12-01 13:53:43 +0100285}
286
287static int
Daniel Vetter2c438c02012-12-01 13:53:46 +0100288gmbus_wait_idle(struct drm_i915_private *dev_priv)
289{
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100290 DEFINE_WAIT(wait);
291 u32 irq_enable;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100292 int ret;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100293
Daniel Vetter2c438c02012-12-01 13:53:46 +0100294 /* Important: The hw handles only the first bit, so set only one! */
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100295 irq_enable = 0;
296 if (HAS_GMBUS_IRQ(dev_priv))
297 irq_enable = GMBUS_IDLE_EN;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100298
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100299 add_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
300 I915_WRITE_FW(GMBUS4, irq_enable);
Daniel Vetter2c438c02012-12-01 13:53:46 +0100301
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100302 ret = intel_wait_for_register_fw(dev_priv,
303 GMBUS2, GMBUS_ACTIVE, 0,
304 10);
Daniel Vetter2c438c02012-12-01 13:53:46 +0100305
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100306 I915_WRITE_FW(GMBUS4, 0);
307 remove_wait_queue(&dev_priv->gmbus_wait_queue, &wait);
308
309 return ret;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100310}
311
312static int
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700313gmbus_xfer_read_chunk(struct drm_i915_private *dev_priv,
314 unsigned short addr, u8 *buf, unsigned int len,
315 u32 gmbus1_index)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800316{
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100317 I915_WRITE_FW(GMBUS1,
318 gmbus1_index |
319 GMBUS_CYCLE_WAIT |
320 (len << GMBUS_BYTE_COUNT_SHIFT) |
321 (addr << GMBUS_SLAVE_ADDR_SHIFT) |
322 GMBUS_SLAVE_READ | GMBUS_SW_RDY);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800323 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800324 int ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800325 u32 val, loop = 0;
326
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100327 ret = gmbus_wait(dev_priv, GMBUS_HW_RDY, GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800328 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100329 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800330
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100331 val = I915_READ_FW(GMBUS3);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800332 do {
333 *buf++ = val & 0xff;
334 val >>= 8;
335 } while (--len && ++loop < 4);
Daniel Kurtz79985ee2012-04-13 19:47:53 +0800336 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800337
338 return 0;
339}
340
341static int
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700342gmbus_xfer_read(struct drm_i915_private *dev_priv, struct i2c_msg *msg,
343 u32 gmbus1_index)
344{
345 u8 *buf = msg->buf;
346 unsigned int rx_size = msg->len;
347 unsigned int len;
348 int ret;
349
350 do {
351 len = min(rx_size, GMBUS_BYTE_COUNT_MAX);
352
353 ret = gmbus_xfer_read_chunk(dev_priv, msg->addr,
354 buf, len, gmbus1_index);
355 if (ret)
356 return ret;
357
358 rx_size -= len;
359 buf += len;
360 } while (rx_size != 0);
361
362 return 0;
363}
364
365static int
366gmbus_xfer_write_chunk(struct drm_i915_private *dev_priv,
367 unsigned short addr, u8 *buf, unsigned int len)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800368{
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700369 unsigned int chunk_size = len;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800370 u32 val, loop;
371
372 val = loop = 0;
Daniel Kurtz26883c32012-03-30 19:46:36 +0800373 while (len && loop < 4) {
374 val |= *buf++ << (8 * loop++);
375 len -= 1;
376 }
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800377
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100378 I915_WRITE_FW(GMBUS3, val);
379 I915_WRITE_FW(GMBUS1,
380 GMBUS_CYCLE_WAIT |
381 (chunk_size << GMBUS_BYTE_COUNT_SHIFT) |
382 (addr << GMBUS_SLAVE_ADDR_SHIFT) |
383 GMBUS_SLAVE_WRITE | GMBUS_SW_RDY);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800384 while (len) {
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800385 int ret;
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800386
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800387 val = loop = 0;
388 do {
389 val |= *buf++ << (8 * loop);
390 } while (--len && ++loop < 4);
391
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100392 I915_WRITE_FW(GMBUS3, val);
Daniel Kurtz7a39a9d2012-03-30 19:46:37 +0800393
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100394 ret = gmbus_wait(dev_priv, GMBUS_HW_RDY, GMBUS_HW_RDY_EN);
Daniel Kurtz90e6b262012-03-30 19:46:41 +0800395 if (ret)
Daniel Vetter61168c52012-12-01 13:53:43 +0100396 return ret;
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800397 }
Dmitry Torokhov9535c472015-04-21 09:49:11 -0700398
399 return 0;
400}
401
402static int
403gmbus_xfer_write(struct drm_i915_private *dev_priv, struct i2c_msg *msg)
404{
405 u8 *buf = msg->buf;
406 unsigned int tx_size = msg->len;
407 unsigned int len;
408 int ret;
409
410 do {
411 len = min(tx_size, GMBUS_BYTE_COUNT_MAX);
412
413 ret = gmbus_xfer_write_chunk(dev_priv, msg->addr, buf, len);
414 if (ret)
415 return ret;
416
417 buf += len;
418 tx_size -= len;
419 } while (tx_size != 0);
420
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800421 return 0;
422}
423
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800424/*
425 * The gmbus controller can combine a 1 or 2 byte write with a read that
426 * immediately follows it by using an "INDEX" cycle.
427 */
428static bool
429gmbus_is_index_read(struct i2c_msg *msgs, int i, int num)
430{
431 return (i + 1 < num &&
432 !(msgs[i].flags & I2C_M_RD) && msgs[i].len <= 2 &&
433 (msgs[i + 1].flags & I2C_M_RD));
434}
435
436static int
437gmbus_xfer_index_read(struct drm_i915_private *dev_priv, struct i2c_msg *msgs)
438{
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800439 u32 gmbus1_index = 0;
440 u32 gmbus5 = 0;
441 int ret;
442
443 if (msgs[0].len == 2)
444 gmbus5 = GMBUS_2BYTE_INDEX_EN |
445 msgs[0].buf[1] | (msgs[0].buf[0] << 8);
446 if (msgs[0].len == 1)
447 gmbus1_index = GMBUS_CYCLE_INDEX |
448 (msgs[0].buf[0] << GMBUS_SLAVE_INDEX_SHIFT);
449
450 /* GMBUS5 holds 16-bit index */
451 if (gmbus5)
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100452 I915_WRITE_FW(GMBUS5, gmbus5);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800453
454 ret = gmbus_xfer_read(dev_priv, &msgs[1], gmbus1_index);
455
456 /* Clear GMBUS5 after each index transfer */
457 if (gmbus5)
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100458 I915_WRITE_FW(GMBUS5, 0);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800459
460 return ret;
461}
462
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800463static int
Jani Nikulabffce902015-12-01 16:29:26 +0200464do_gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num)
Chris Wilsonf899fc62010-07-20 15:44:45 -0700465{
466 struct intel_gmbus *bus = container_of(adapter,
467 struct intel_gmbus,
468 adapter);
Daniel Vetterc2b91522012-02-14 22:37:19 +0100469 struct drm_i915_private *dev_priv = bus->dev_priv;
Ville Syrjälä699fc402015-09-18 20:03:38 +0300470 int i = 0, inc, try = 0;
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800471 int ret = 0;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700472
Jani Nikula3f5f1552015-06-02 19:21:15 +0300473retry:
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100474 I915_WRITE_FW(GMBUS0, bus->reg0);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700475
Jani Nikula3f5f1552015-06-02 19:21:15 +0300476 for (; i < num; i += inc) {
477 inc = 1;
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800478 if (gmbus_is_index_read(msgs, i, num)) {
479 ret = gmbus_xfer_index_read(dev_priv, &msgs[i]);
Jani Nikula3f5f1552015-06-02 19:21:15 +0300480 inc = 2; /* an index read is two msgs */
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800481 } else if (msgs[i].flags & I2C_M_RD) {
482 ret = gmbus_xfer_read(dev_priv, &msgs[i], 0);
483 } else {
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800484 ret = gmbus_xfer_write(dev_priv, &msgs[i]);
Daniel Kurtz56f9eac2012-03-30 19:46:40 +0800485 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700486
Jani Nikula0aeb9042015-12-01 16:29:25 +0200487 if (!ret)
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100488 ret = gmbus_wait(dev_priv,
489 GMBUS_HW_WAIT_PHASE, GMBUS_HW_WAIT_EN);
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800490 if (ret == -ETIMEDOUT)
491 goto timeout;
Jani Nikula0aeb9042015-12-01 16:29:25 +0200492 else if (ret)
Daniel Kurtz924a93e2012-03-28 02:36:10 +0800493 goto clear_err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700494 }
495
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800496 /* Generate a STOP condition on the bus. Note that gmbus can't generata
497 * a STOP on the very first cycle. To simplify the code we
498 * unconditionally generate the STOP condition with an additional gmbus
499 * cycle. */
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100500 I915_WRITE_FW(GMBUS1, GMBUS_CYCLE_STOP | GMBUS_SW_RDY);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800501
Benson Leungcaae7452012-02-09 12:03:17 -0800502 /* Mark the GMBUS interface as disabled after waiting for idle.
503 * We will re-enable it at the start of the next xfer,
504 * till then let it sleep.
Chris Wilson7f58aab2011-03-30 16:20:43 +0100505 */
Daniel Vetter2c438c02012-12-01 13:53:46 +0100506 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800507 DRM_DEBUG_KMS("GMBUS [%s] timed out waiting for idle\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800508 adapter->name);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800509 ret = -ETIMEDOUT;
510 }
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100511 I915_WRITE_FW(GMBUS0, 0);
Daniel Kurtz72d66af2012-03-30 19:46:39 +0800512 ret = ret ?: i;
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500513 goto out;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700514
Daniel Kurtze646d572012-03-30 19:46:38 +0800515clear_err:
516 /*
517 * Wait for bus to IDLE before clearing NAK.
518 * If we clear the NAK while bus is still active, then it will stay
519 * active and the next transaction may fail.
Daniel Vetter65e81862012-05-21 20:19:48 +0200520 *
521 * If no ACK is received during the address phase of a transaction, the
522 * adapter must report -ENXIO. It is not clear what to return if no ACK
523 * is received at other times. But we have to be careful to not return
524 * spurious -ENXIO because that will prevent i2c and drm edid functions
525 * from retrying. So return -ENXIO only when gmbus properly quiescents -
526 * timing out seems to happen when there _is_ a ddc chip present, but
527 * it's slow responding and only answers on the 2nd retry.
Daniel Kurtze646d572012-03-30 19:46:38 +0800528 */
Daniel Vetter65e81862012-05-21 20:19:48 +0200529 ret = -ENXIO;
Daniel Vetter2c438c02012-12-01 13:53:46 +0100530 if (gmbus_wait_idle(dev_priv)) {
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800531 DRM_DEBUG_KMS("GMBUS [%s] timed out after NAK\n",
532 adapter->name);
Daniel Vetter65e81862012-05-21 20:19:48 +0200533 ret = -ETIMEDOUT;
534 }
Daniel Kurtze646d572012-03-30 19:46:38 +0800535
536 /* Toggle the Software Clear Interrupt bit. This has the effect
537 * of resetting the GMBUS controller and so clearing the
538 * BUS_ERROR raised by the slave's NAK.
539 */
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100540 I915_WRITE_FW(GMBUS1, GMBUS_SW_CLR_INT);
541 I915_WRITE_FW(GMBUS1, 0);
542 I915_WRITE_FW(GMBUS0, 0);
Daniel Kurtze646d572012-03-30 19:46:38 +0800543
Daniel Kurtz56fa6d62012-04-13 19:47:54 +0800544 DRM_DEBUG_KMS("GMBUS [%s] NAK for addr: %04x %c(%d)\n",
Daniel Kurtze646d572012-03-30 19:46:38 +0800545 adapter->name, msgs[i].addr,
546 (msgs[i].flags & I2C_M_RD) ? 'r' : 'w', msgs[i].len);
547
Jani Nikula3f5f1552015-06-02 19:21:15 +0300548 /*
549 * Passive adapters sometimes NAK the first probe. Retry the first
550 * message once on -ENXIO for GMBUS transfers; the bit banging algorithm
551 * has retries internally. See also the retry loop in
552 * drm_do_probe_ddc_edid, which bails out on the first -ENXIO.
553 */
554 if (ret == -ENXIO && i == 0 && try++ == 0) {
555 DRM_DEBUG_KMS("GMBUS [%s] NAK on first message, retry\n",
556 adapter->name);
557 goto retry;
558 }
559
Daniel Kurtze646d572012-03-30 19:46:38 +0800560 goto out;
561
Chris Wilsonf899fc62010-07-20 15:44:45 -0700562timeout:
Ville Syrjälä70677802016-03-07 17:57:00 +0200563 DRM_DEBUG_KMS("GMBUS [%s] timed out, falling back to bit banging on pin %d\n",
564 bus->adapter.name, bus->reg0 & 0xff);
Chris Wilson4e6c2d52016-08-19 17:45:02 +0100565 I915_WRITE_FW(GMBUS0, 0);
Chris Wilson7f58aab2011-03-30 16:20:43 +0100566
Jani Nikulabffce902015-12-01 16:29:26 +0200567 /*
568 * Hardware may not support GMBUS over these pins? Try GPIO bitbanging
569 * instead. Use EAGAIN to have i2c core retry.
570 */
Jani Nikulabffce902015-12-01 16:29:26 +0200571 ret = -EAGAIN;
Daniel Kurtz489fbc12012-03-28 02:36:13 +0800572
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500573out:
Jani Nikulabffce902015-12-01 16:29:26 +0200574 return ret;
575}
Ville Syrjäläf0ab43e2015-11-09 16:48:19 +0100576
Jani Nikulabffce902015-12-01 16:29:26 +0200577static int
578gmbus_xfer(struct i2c_adapter *adapter, struct i2c_msg *msgs, int num)
579{
580 struct intel_gmbus *bus = container_of(adapter, struct intel_gmbus,
581 adapter);
582 struct drm_i915_private *dev_priv = bus->dev_priv;
583 int ret;
584
585 intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
586 mutex_lock(&dev_priv->gmbus_mutex);
587
Ville Syrjälä3e4d44e2016-03-07 17:56:59 +0200588 if (bus->force_bit) {
Jani Nikulabffce902015-12-01 16:29:26 +0200589 ret = i2c_bit_algo.master_xfer(adapter, msgs, num);
Ville Syrjälä3e4d44e2016-03-07 17:56:59 +0200590 if (ret < 0)
591 bus->force_bit &= ~GMBUS_FORCE_BIT_RETRY;
592 } else {
Jani Nikulabffce902015-12-01 16:29:26 +0200593 ret = do_gmbus_xfer(adapter, msgs, num);
Ville Syrjälä3e4d44e2016-03-07 17:56:59 +0200594 if (ret == -EAGAIN)
595 bus->force_bit |= GMBUS_FORCE_BIT_RETRY;
596 }
Jani Nikulabffce902015-12-01 16:29:26 +0200597
598 mutex_unlock(&dev_priv->gmbus_mutex);
Ville Syrjäläf0ab43e2015-11-09 16:48:19 +0100599 intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
600
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500601 return ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700602}
603
604static u32 gmbus_func(struct i2c_adapter *adapter)
605{
Daniel Vetterf6f808c2012-02-14 18:58:49 +0100606 return i2c_bit_algo.functionality(adapter) &
607 (I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL |
Chris Wilsonf899fc62010-07-20 15:44:45 -0700608 /* I2C_FUNC_10BIT_ADDR | */
609 I2C_FUNC_SMBUS_READ_BLOCK_DATA |
610 I2C_FUNC_SMBUS_BLOCK_PROC_CALL);
611}
612
613static const struct i2c_algorithm gmbus_algorithm = {
614 .master_xfer = gmbus_xfer,
615 .functionality = gmbus_func
616};
617
618/**
619 * intel_gmbus_setup - instantiate all Intel i2c GMBuses
620 * @dev: DRM device
621 */
622int intel_setup_gmbus(struct drm_device *dev)
623{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100624 struct drm_i915_private *dev_priv = to_i915(dev);
David Weinehall52a05c32016-08-22 13:32:44 +0300625 struct pci_dev *pdev = dev_priv->drm.pdev;
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300626 struct intel_gmbus *bus;
627 unsigned int pin;
628 int ret;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700629
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100630 if (HAS_PCH_NOP(dev_priv))
Ben Widawskyab5c6082013-04-05 13:12:41 -0700631 return 0;
Ville Syrjäläb2e8c6c2015-11-04 23:20:00 +0200632
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100633 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ville Syrjäläd8112152013-01-24 15:29:55 +0200634 dev_priv->gpio_mmio_base = VLV_DISPLAY_BASE;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200635 else if (!HAS_GMCH_DISPLAY(dev_priv))
636 dev_priv->gpio_mmio_base =
637 i915_mmio_reg_offset(PCH_GPIOA) -
638 i915_mmio_reg_offset(GPIOA);
Daniel Vetter110447fc2012-03-23 23:43:36 +0100639
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500640 mutex_init(&dev_priv->gmbus_mutex);
Daniel Vetter28c70f12012-12-01 13:53:45 +0100641 init_waitqueue_head(&dev_priv->gmbus_wait_queue);
Yufeng Shen8a8ed1f2012-02-13 17:36:54 -0500642
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300643 for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
Jani Nikula88ac7932015-03-27 00:20:22 +0200644 if (!intel_gmbus_is_valid_pin(dev_priv, pin))
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300645 continue;
646
647 bus = &dev_priv->gmbus[pin];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700648
649 bus->adapter.owner = THIS_MODULE;
650 bus->adapter.class = I2C_CLASS_DDC;
651 snprintf(bus->adapter.name,
Jean Delvare69669452010-11-05 18:51:34 +0100652 sizeof(bus->adapter.name),
653 "i915 gmbus %s",
Jani Nikula4c272832015-04-01 10:58:05 +0300654 get_gmbus_pin(dev_priv, pin)->name);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700655
David Weinehall52a05c32016-08-22 13:32:44 +0300656 bus->adapter.dev.parent = &pdev->dev;
Daniel Vetterc2b91522012-02-14 22:37:19 +0100657 bus->dev_priv = dev_priv;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700658
659 bus->adapter.algo = &gmbus_algorithm;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700660
Ville Syrjälä8b1f1652016-03-07 17:56:57 +0200661 /*
662 * We wish to retry with bit banging
663 * after a timed out GMBUS attempt.
664 */
665 bus->adapter.retries = 1;
666
Chris Wilsone957d772010-09-24 12:52:03 +0100667 /* By default use a conservative clock rate */
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300668 bus->reg0 = pin | GMBUS_RATE_100KHZ;
Chris Wilsoncb8ea752010-09-28 13:35:47 +0100669
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200670 /* gmbus seems to be broken on i830 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100671 if (IS_I830(dev_priv))
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000672 bus->force_bit = 1;
Daniel Vetter83ee9e62012-05-13 14:44:20 +0200673
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300674 intel_gpio_setup(bus, pin);
Jani Nikulacee25162012-08-13 17:33:02 +0300675
676 ret = i2c_add_adapter(&bus->adapter);
677 if (ret)
678 goto err;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700679 }
680
Chris Wilson91c8a322016-07-05 10:40:23 +0100681 intel_i2c_reset(&dev_priv->drm);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700682
683 return 0;
684
685err:
Rasmus Villemoes2417c8c2016-02-09 21:11:13 +0100686 while (pin--) {
Jani Nikula88ac7932015-03-27 00:20:22 +0200687 if (!intel_gmbus_is_valid_pin(dev_priv, pin))
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300688 continue;
689
690 bus = &dev_priv->gmbus[pin];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700691 i2c_del_adapter(&bus->adapter);
692 }
Chris Wilsonf899fc62010-07-20 15:44:45 -0700693 return ret;
694}
695
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800696struct i2c_adapter *intel_gmbus_get_adapter(struct drm_i915_private *dev_priv,
Jani Nikula0184df42015-03-27 00:20:20 +0200697 unsigned int pin)
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800698{
Jani Nikula88ac7932015-03-27 00:20:22 +0200699 if (WARN_ON(!intel_gmbus_is_valid_pin(dev_priv, pin)))
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300700 return NULL;
701
702 return &dev_priv->gmbus[pin].adapter;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800703}
704
Chris Wilsone957d772010-09-24 12:52:03 +0100705void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed)
706{
707 struct intel_gmbus *bus = to_intel_gmbus(adapter);
708
Adam Jacksond5090b92011-06-16 16:36:28 -0400709 bus->reg0 = (bus->reg0 & ~(0x3 << 8)) | speed;
Chris Wilsone957d772010-09-24 12:52:03 +0100710}
711
712void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit)
713{
714 struct intel_gmbus *bus = to_intel_gmbus(adapter);
Ville Syrjäläade754e2016-03-07 17:56:58 +0200715 struct drm_i915_private *dev_priv = bus->dev_priv;
716
717 mutex_lock(&dev_priv->gmbus_mutex);
Chris Wilsone957d772010-09-24 12:52:03 +0100718
Chris Wilsonf2ce9fa2012-11-10 15:58:21 +0000719 bus->force_bit += force_bit ? 1 : -1;
720 DRM_DEBUG_KMS("%sabling bit-banging on %s. force bit now %d\n",
721 force_bit ? "en" : "dis", adapter->name,
722 bus->force_bit);
Ville Syrjäläade754e2016-03-07 17:56:58 +0200723
724 mutex_unlock(&dev_priv->gmbus_mutex);
Chris Wilsone957d772010-09-24 12:52:03 +0100725}
726
Chris Wilsonf899fc62010-07-20 15:44:45 -0700727void intel_teardown_gmbus(struct drm_device *dev)
728{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100729 struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300730 struct intel_gmbus *bus;
731 unsigned int pin;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700732
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300733 for (pin = 0; pin < ARRAY_SIZE(dev_priv->gmbus); pin++) {
Jani Nikula88ac7932015-03-27 00:20:22 +0200734 if (!intel_gmbus_is_valid_pin(dev_priv, pin))
Jani Nikula5ea6e5e2015-04-01 10:55:04 +0300735 continue;
736
737 bus = &dev_priv->gmbus[pin];
Chris Wilsonf899fc62010-07-20 15:44:45 -0700738 i2c_del_adapter(&bus->adapter);
739 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800740}