drm/nouveau/disp/g94-: port OR DP lane mapping to nvkm_ior
authorBen Skeggs <bskeggs@redhat.com>
Fri, 19 May 2017 13:59:35 +0000 (23:59 +1000)
committerBen Skeggs <bskeggs@redhat.com>
Fri, 16 Jun 2017 04:04:54 +0000 (14:04 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgf119.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgk104.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm107.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgm200.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgt215.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sormcp77.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sormcp89.c

index 0b5115d..f40819e 100644 (file)
@@ -49,6 +49,10 @@ struct nvkm_ior_func {
                             u8 max_ac_packet, u8 rekey, u8 *avi, u8 avi_size,
                             u8 *vendor, u8 vendor_size);
        } hdmi;
+
+       struct {
+               u8 lanes[4];
+       } dp;
 };
 
 int nvkm_ior_new_(const struct nvkm_ior_func *func, struct nvkm_disp *,
index 3175bb3..3bcd31a 100644 (file)
@@ -44,14 +44,7 @@ g94_sor_loff(struct nvkm_output_dp *outp)
 u32
 g94_sor_dp_lane_map(struct nvkm_device *device, u8 lane)
 {
-       static const u8 gm100[] = { 0, 8, 16, 24 };
-       static const u8 mcp89[] = { 24, 16, 8, 0 }; /* thanks, apple.. */
-       static const u8   g94[] = { 16, 8, 0, 24 };
-       if (device->chipset >= 0x110)
-               return gm100[lane];
-       if (device->chipset == 0xaf)
-               return mcp89[lane];
-       return g94[lane];
+       return nvkm_ior_find(device->disp, SOR, -1)->func->dp.lanes[lane] * 8;
 }
 
 static int
@@ -305,6 +298,9 @@ static const struct nvkm_ior_func
 g94_sor = {
        .state = g94_sor_state,
        .power = nv50_sor_power,
+       .dp = {
+               .lanes = { 2, 1, 0, 3},
+       },
 };
 
 int
index c3ce42e..c97c178 100644 (file)
@@ -160,6 +160,9 @@ gf119_sor = {
        .hdmi = {
                .ctrl = gf119_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 2, 1, 0, 3 },
+       },
 };
 
 int
index 9f71f94..6d85a28 100644 (file)
@@ -28,6 +28,9 @@ gk104_sor = {
        .hdmi = {
                .ctrl = gk104_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 2, 1, 0, 3 },
+       },
 };
 
 int
index acffeff..bb055cd 100644 (file)
@@ -60,6 +60,9 @@ gm107_sor = {
        .hdmi = {
                .ctrl = gk104_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 0, 1, 2, 3 },
+       },
 };
 
 int
index c8773d0..11fed49 100644 (file)
@@ -41,7 +41,7 @@ gm200_sor_loff(struct nvkm_output_dp *outp)
 static inline u32
 gm200_sor_dp_lane_map(struct nvkm_device *device, u8 lane)
 {
-       return lane * 0x08;
+       return nvkm_ior_find(device->disp, SOR, -1)->func->dp.lanes[lane] * 8;
 }
 
 static int
@@ -137,6 +137,9 @@ gm200_sor = {
        .hdmi = {
                .ctrl = gk104_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 0, 1, 2, 3 },
+       },
 };
 
 int
index 7036eee..2212552 100644 (file)
@@ -28,6 +28,9 @@ gt215_sor = {
        .hdmi = {
                .ctrl = gt215_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 2, 1, 0, 3 },
+       },
 };
 
 int
index a074a47..a771d10 100644 (file)
@@ -28,6 +28,9 @@ mcp77_sor = {
        .hdmi = {
                .ctrl = g84_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 2, 1, 0, 3},
+       },
 };
 
 int
index 56cf11f..aece6be 100644 (file)
@@ -28,6 +28,9 @@ mcp89_sor = {
        .hdmi = {
                .ctrl = gt215_hdmi_ctrl,
        },
+       .dp = {
+               .lanes = { 3, 2, 1, 0 },
+       },
 };
 
 int