blob: 02eb42be2e9e91f674dd4d20479c0cc3ea125ecf [file] [log] [blame]
Ben Skeggs4196faa2012-07-10 14:36:38 +10001/*
2 * Copyright 2009 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Ben Skeggs
23 */
24
Ben Skeggsc26fe842014-05-13 13:59:26 +100025#include "priv.h"
Ben Skeggs4196faa2012-07-10 14:36:38 +100026
Ben Skeggs31a34aa2013-02-14 20:59:41 -050027int
28nv_rdaux(struct nouveau_i2c_port *port, u32 addr, u8 *data, u8 size)
Ben Skeggs4196faa2012-07-10 14:36:38 +100029{
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100030 struct nouveau_i2c *i2c = nouveau_i2c(port);
Ben Skeggs7dcd060c2013-02-16 15:21:58 +100031 if (port->func->aux) {
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100032 int ret = i2c->acquire(port, 0);
33 if (ret == 0) {
34 ret = port->func->aux(port, true, 9, addr, data, size);
35 i2c->release(port);
36 }
37 return ret;
Ben Skeggs4196faa2012-07-10 14:36:38 +100038 }
Ben Skeggs31a34aa2013-02-14 20:59:41 -050039 return -ENODEV;
Ben Skeggsdf3ef6a2013-02-11 20:06:04 +100040}
41
Ben Skeggs4196faa2012-07-10 14:36:38 +100042int
Ben Skeggs31a34aa2013-02-14 20:59:41 -050043nv_wraux(struct nouveau_i2c_port *port, u32 addr, u8 *data, u8 size)
Ben Skeggs4196faa2012-07-10 14:36:38 +100044{
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100045 struct nouveau_i2c *i2c = nouveau_i2c(port);
Ben Skeggs7dcd060c2013-02-16 15:21:58 +100046 if (port->func->aux) {
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100047 int ret = i2c->acquire(port, 0);
48 if (ret == 0) {
49 ret = port->func->aux(port, true, 8, addr, data, size);
50 i2c->release(port);
51 }
52 return ret;
Ben Skeggs31a34aa2013-02-14 20:59:41 -050053 }
54 return -ENODEV;
Ben Skeggs4196faa2012-07-10 14:36:38 +100055}
56
57static int
58aux_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
59{
Ben Skeggs7dcd060c2013-02-16 15:21:58 +100060 struct nouveau_i2c_port *port = adap->algo_data;
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100061 struct nouveau_i2c *i2c = nouveau_i2c(port);
Ben Skeggs4196faa2012-07-10 14:36:38 +100062 struct i2c_msg *msg = msgs;
63 int ret, mcnt = num;
64
Ben Skeggs7dcd060c2013-02-16 15:21:58 +100065 if (!port->func->aux)
Ben Skeggs31a34aa2013-02-14 20:59:41 -050066 return -ENODEV;
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100067
68 ret = i2c->acquire(port, 0);
69 if (ret)
70 return ret;
Ben Skeggsdf3ef6a2013-02-11 20:06:04 +100071
Ben Skeggs4196faa2012-07-10 14:36:38 +100072 while (mcnt--) {
73 u8 remaining = msg->len;
74 u8 *ptr = msg->buf;
75
76 while (remaining) {
77 u8 cnt = (remaining > 16) ? 16 : remaining;
78 u8 cmd;
79
80 if (msg->flags & I2C_M_RD)
81 cmd = 1;
82 else
83 cmd = 0;
84
85 if (mcnt || remaining > 16)
86 cmd |= 4; /* MOT */
87
Ben Skeggs842c2952014-05-07 15:13:45 +100088 ret = port->func->aux(port, true, cmd, msg->addr, ptr, cnt);
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100089 if (ret < 0) {
90 i2c->release(port);
Ben Skeggs4196faa2012-07-10 14:36:38 +100091 return ret;
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +100092 }
Ben Skeggs4196faa2012-07-10 14:36:38 +100093
94 ptr += cnt;
95 remaining -= cnt;
96 }
97
98 msg++;
99 }
100
Ben Skeggsd2ae2eb2014-05-29 11:07:16 +1000101 i2c->release(port);
Ben Skeggs4196faa2012-07-10 14:36:38 +1000102 return num;
103}
104
105static u32
106aux_func(struct i2c_adapter *adap)
107{
108 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
109}
110
111const struct i2c_algorithm nouveau_i2c_aux_algo = {
112 .master_xfer = aux_xfer,
113 .functionality = aux_func
114};