1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include "priv.h"
25
26int
27nv_rdaux(struct nvkm_i2c_port *port, u32 addr, u8 *data, u8 size)
28{
29 struct nvkm_i2c *i2c = nvkm_i2c(port);
30 if (port->func->aux) {
31 int ret = i2c->acquire(port, 0);
32 if (ret == 0) {
33 ret = port->func->aux(port, true, 9, addr, data, size);
34 i2c->release(port);
35 }
36 return ret;
37 }
38 return -ENODEV;
39}
40
41int
42nv_wraux(struct nvkm_i2c_port *port, u32 addr, u8 *data, u8 size)
43{
44 struct nvkm_i2c *i2c = nvkm_i2c(port);
45 if (port->func->aux) {
46 int ret = i2c->acquire(port, 0);
47 if (ret == 0) {
48 ret = port->func->aux(port, true, 8, addr, data, size);
49 i2c->release(port);
50 }
51 return ret;
52 }
53 return -ENODEV;
54}
55
56static int
57aux_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
58{
59 struct nvkm_i2c_port *port = adap->algo_data;
60 struct nvkm_i2c *i2c = nvkm_i2c(port);
61 struct i2c_msg *msg = msgs;
62 int ret, mcnt = num;
63
64 if (!port->func->aux)
65 return -ENODEV;
66
67 ret = i2c->acquire(port, 0);
68 if (ret)
69 return ret;
70
71 while (mcnt--) {
72 u8 remaining = msg->len;
73 u8 *ptr = msg->buf;
74
75 while (remaining) {
76 u8 cnt = (remaining > 16) ? 16 : remaining;
77 u8 cmd;
78
79 if (msg->flags & I2C_M_RD)
80 cmd = 1;
81 else
82 cmd = 0;
83
84 if (mcnt || remaining > 16)
85 cmd |= 4;
86
87 ret = port->func->aux(port, true, cmd, msg->addr, ptr, cnt);
88 if (ret < 0) {
89 i2c->release(port);
90 return ret;
91 }
92
93 ptr += cnt;
94 remaining -= cnt;
95 }
96
97 msg++;
98 }
99
100 i2c->release(port);
101 return num;
102}
103
104static u32
105aux_func(struct i2c_adapter *adap)
106{
107 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
108}
109
110const struct i2c_algorithm nvkm_i2c_aux_algo = {
111 .master_xfer = aux_xfer,
112 .functionality = aux_func
113};
114