Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 358299
b: refs/heads/master
c: df3ef6a
h: refs/heads/master
i:
  358297: bb8d138
  358295: 93c6c2e
v: v3
  • Loading branch information
Ben Skeggs committed Feb 20, 2013
1 parent 5a81631 commit ab4cd14
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 22 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f63740fd580e0645c5123897891b72ec25b396ef
refs/heads/master: df3ef6a1091fbdfb57306b0205edef33a1f1dcb4
16 changes: 16 additions & 0 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/i2c/aux.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,15 +150,29 @@ auxch_tx(struct nouveau_i2c *aux, int ch, u8 type, u32 addr, u8 *data, u8 size)
return ret;
}

static void
auxch_mux(struct nouveau_i2c_port *port)
{
if (port->dcb & 0x00000100) {
u32 reg = 0x00e500 + (port->drive * 0x50);
/* nfi, but neither auxch or i2c work if it's 1 */
nv_mask(port->i2c, reg + 0x0c, 0x00000001, 0x00000000);
/* nfi, but switches auxch vs normal i2c */
nv_mask(port->i2c, reg + 0x00, 0x0000f003, 0x00002002);
}
}

int
nv_rdaux(struct nouveau_i2c_port *auxch, u32 addr, u8 *data, u8 size)
{
auxch_mux(auxch);
return auxch_tx(auxch->i2c, auxch->drive, 9, addr, data, size);
}

int
nv_wraux(struct nouveau_i2c_port *auxch, u32 addr, u8 *data, u8 size)
{
auxch_mux(auxch);
return auxch_tx(auxch->i2c, auxch->drive, 8, addr, data, size);
}

Expand All @@ -169,6 +183,8 @@ aux_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs, int num)
struct i2c_msg *msg = msgs;
int ret, mcnt = num;

auxch_mux(auxch);

while (mcnt--) {
u8 remaining = msg->len;
u8 *ptr = msg->buf;
Expand Down
41 changes: 20 additions & 21 deletions trunk/drivers/gpu/drm/nouveau/core/subdev/i2c/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,29 +103,10 @@ nouveau_i2c_find(struct nouveau_i2c *i2c, u8 index)

list_for_each_entry(port, &i2c->ports, head) {
if (port->index == index)
break;
}

if (&port->head == &i2c->ports)
return NULL;

if (nv_device(i2c)->card_type >= NV_50 && (port->dcb & 0x00000100)) {
u32 reg = 0x00e500, val;
if (port->type == 6) {
reg += port->drive * 0x50;
val = 0x2002;
} else {
reg += ((port->dcb & 0x1e00) >> 9) * 0x50;
val = 0xe001;
}

/* nfi, but neither auxch or i2c work if it's 1 */
nv_mask(i2c, reg + 0x0c, 0x00000001, 0x00000000);
/* nfi, but switches auxch vs normal i2c */
nv_mask(i2c, reg + 0x00, 0x0000f003, val);
return port;
}

return port;
return NULL;
}

static int
Expand Down Expand Up @@ -241,6 +222,23 @@ nouveau_i2c_sense_sda(void *data)
return 0;
}

static int
nouveau_i2c_pre_xfer(struct i2c_adapter *adap)
{
struct nouveau_i2c_port *port = (void *)adap;
struct nouveau_i2c *i2c = port->i2c;

if (nv_device(i2c)->card_type >= NV_50 && (port->dcb & 0x00000100)) {
u32 reg = 0x00e500 + ((port->dcb & 0x1e00) >> 9) * 0x50;
/* nfi, but neither auxch or i2c work if it's 1 */
nv_mask(i2c, reg + 0x0c, 0x00000001, 0x00000000);
/* nfi, but switches auxch vs normal i2c */
nv_mask(i2c, reg + 0x00, 0x0000f003, 0x0000e001);
}

return 0;
}

static const u32 nv50_i2c_port[] = {
0x00e138, 0x00e150, 0x00e168, 0x00e180,
0x00e254, 0x00e274, 0x00e764, 0x00e780,
Expand Down Expand Up @@ -347,6 +345,7 @@ nouveau_i2c_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
port->bit.setscl = nouveau_i2c_drive_scl;
port->bit.getsda = nouveau_i2c_sense_sda;
port->bit.getscl = nouveau_i2c_sense_scl;
port->bit.pre_xfer = nouveau_i2c_pre_xfer;
ret = i2c_bit_add_bus(&port->adapter);
}
} else {
Expand Down

0 comments on commit ab4cd14

Please sign in to comment.