drm/nouveau/i2c: add support for DCB_I2C_PMGR port type
authorBen Skeggs <bskeggs@redhat.com>
Mon, 18 Aug 2014 22:25:40 +0000 (08:25 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Tue, 2 Dec 2014 05:43:47 +0000 (15:43 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/core/subdev/i2c/base.c

index 3376356..0dc605d 100644 (file)
@@ -556,6 +556,18 @@ nouveau_i2c_create_(struct nouveau_object *parent,
                        nouveau_i2c_create_port(i2c, NV_I2C_AUX(index),
                                                info.type, &info);
                        break;
+               case DCB_I2C_PMGR:
+                       if (info.drive != DCB_I2C_UNUSED) {
+                               nouveau_i2c_create_port(i2c, NV_I2C_PORT(index),
+                                                       DCB_I2C_NVIO_BIT,
+                                                       &info);
+                       }
+                       if (info.auxch != DCB_I2C_UNUSED) {
+                               nouveau_i2c_create_port(i2c, NV_I2C_AUX(index),
+                                                       DCB_I2C_NVIO_AUX,
+                                                       &info);
+                       }
+                       break;
                case DCB_I2C_UNUSED:
                default:
                        continue;