]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/g94/i2c: add aux channel interrupt driver
authorBen Skeggs <bskeggs@redhat.com>
Tue, 13 May 2014 04:50:25 +0000 (14:50 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Wed, 11 Jun 2014 06:10:25 +0000 (16:10 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/core/subdev/i2c/nv94.c
drivers/gpu/drm/nouveau/core/subdev/i2c/nvd0.c
drivers/gpu/drm/nouveau/core/subdev/i2c/priv.h

index 900f464c716c645542d1cacf7d5653adacd54f89..ec0bd68a9027dd56dd97b53e9d20c6f2148fed72 100644 (file)
 
 #include "nv50.h"
 
+void
+nv94_aux_stat(struct nouveau_i2c *i2c, u32 *hi, u32 *lo, u32 *rq, u32 *tx)
+{
+       u32 intr = nv_rd32(i2c, 0x00e06c);
+       u32 stat = nv_rd32(i2c, 0x00e068) & intr, i;
+       for (i = 0, *hi = *lo = *rq = *tx = 0; i < 8; i++) {
+               if ((stat & (1 << (i * 4)))) *hi |= 1 << i;
+               if ((stat & (2 << (i * 4)))) *lo |= 1 << i;
+               if ((stat & (4 << (i * 4)))) *rq |= 1 << i;
+               if ((stat & (8 << (i * 4)))) *tx |= 1 << i;
+       }
+       nv_wr32(i2c, 0x00e06c, intr);
+}
+
+void
+nv94_aux_mask(struct nouveau_i2c *i2c, u32 type, u32 mask, u32 data)
+{
+       u32 temp = nv_rd32(i2c, 0x00e068), i;
+       for (i = 0; i < 8; i++) {
+               if (mask & (1 << i)) {
+                       if (!(data & (1 << i))) {
+                               temp &= ~(type << (i * 4));
+                               continue;
+                       }
+                       temp |= type << (i * 4);
+               }
+       }
+       nv_wr32(i2c, 0x00e068, temp);
+}
+
 #define AUX_DBG(fmt, args...) nv_debug(aux, "AUXCH(%d): " fmt, ch, ##args)
 #define AUX_ERR(fmt, args...) nv_error(aux, "AUXCH(%d): " fmt, ch, ##args)
 
@@ -273,4 +303,7 @@ nv94_i2c_oclass = &(struct nouveau_i2c_impl) {
                .fini = _nouveau_i2c_fini,
        },
        .sclass = nv94_i2c_sclass,
+       .aux = 4,
+       .aux_stat = nv94_aux_stat,
+       .aux_mask = nv94_aux_mask,
 }.base;
index 5237906e568f603d5ad062a691b25561d1f7d4c4..b0b8047fb2b51bb52dcaf9297ccb9f9d40a72372 100644 (file)
@@ -106,4 +106,7 @@ nvd0_i2c_oclass = &(struct nouveau_i2c_impl) {
                .fini = _nouveau_i2c_fini,
        },
        .sclass = nvd0_i2c_sclass,
+       .aux = 4,
+       .aux_stat = nv94_aux_stat,
+       .aux_mask = nv94_aux_mask,
 }.base;
index 27b9a9717229a9c22d139e67ce74144f433f20cd..a835d9e9ccb552fa496312b96a4da6e815d4078c 100644 (file)
@@ -73,4 +73,7 @@ struct nouveau_i2c_impl {
        void (*aux_mask)(struct nouveau_i2c *, u32, u32, u32);
 };
 
+void nv94_aux_stat(struct nouveau_i2c *, u32 *, u32 *, u32 *, u32 *);
+void nv94_aux_mask(struct nouveau_i2c *, u32, u32, u32);
+
 #endif