]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
drm/nouveau/disp: move DAC load detection method
authorBen Skeggs <bskeggs@redhat.com>
Wed, 1 Jun 2022 10:46:31 +0000 (20:46 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 26 Jul 2022 23:05:49 +0000 (09:05 +1000)
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/nouveau/dispnv50/disp.c
drivers/gpu/drm/nouveau/include/nvif/cl5070.h
drivers/gpu/drm/nouveau/include/nvif/if0012.h
drivers/gpu/drm/nouveau/include/nvif/outp.h
drivers/gpu/drm/nouveau/nvif/outp.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv50.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/uoutp.c

index e094fb0741055bbb1aa8d3b864c19b08be6203d7..a53d685a77eb0e1ec8a1aff4e91ec44b671e5d98 100644 (file)
@@ -529,24 +529,15 @@ static enum drm_connector_status
 nv50_dac_detect(struct drm_encoder *encoder, struct drm_connector *connector)
 {
        struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
-       struct nv50_disp *disp = nv50_disp(encoder->dev);
-       struct {
-               struct nv50_disp_mthd_v1 base;
-               struct nv50_disp_dac_load_v0 load;
-       } args = {
-               .base.version = 1,
-               .base.method = NV50_DISP_MTHD_V1_DAC_LOAD,
-               .base.hasht  = nv_encoder->dcb->hasht,
-               .base.hashm  = nv_encoder->dcb->hashm,
-       };
+       u32 loadval;
        int ret;
 
-       args.load.data = nouveau_drm(encoder->dev)->vbios.dactestval;
-       if (args.load.data == 0)
-               args.load.data = 340;
+       loadval = nouveau_drm(encoder->dev)->vbios.dactestval;
+       if (loadval == 0)
+               loadval = 340;
 
-       ret = nvif_mthd(&disp->disp->object, 0, &args, sizeof(args));
-       if (ret || !args.load.load)
+       ret = nvif_outp_load_detect(&nv_encoder->outp, loadval);
+       if (ret <= 0)
                return connector_status_disconnected;
 
        return connector_status_connected;
index 53800fb4658292c05ef121acb099fe821887e6eb..56affb606adfbfc4863301fa7059de728e1a89c9 100644 (file)
@@ -30,7 +30,6 @@ struct nv50_disp_mthd_v1 {
        __u8  version;
 #define NV50_DISP_MTHD_V1_ACQUIRE                                          0x01
 #define NV50_DISP_MTHD_V1_RELEASE                                          0x02
-#define NV50_DISP_MTHD_V1_DAC_LOAD                                         0x11
 #define NV50_DISP_MTHD_V1_SOR_HDA_ELD                                      0x21
 #define NV50_DISP_MTHD_V1_SOR_HDMI_PWR                                     0x22
 #define NV50_DISP_MTHD_V1_SOR_LVDS_SCRIPT                                  0x23
@@ -50,13 +49,6 @@ struct nv50_disp_acquire_v0 {
        __u8  pad04[4];
 };
 
-struct nv50_disp_dac_load_v0 {
-       __u8  version;
-       __u8  load;
-       __u8  pad02[2];
-       __u32 data;
-};
-
 struct nv50_disp_sor_hda_eld_v0 {
        __u8  version;
        __u8  pad01[7];
index c0793e0f902fe245aa4d1fe03cb38bd0085bd520..243bd35d942f9caea0697d3e326f9099a87b2df1 100644 (file)
@@ -9,4 +9,15 @@ union nvif_outp_args {
                __u8 pad02[6];
        } v0;
 };
+
+#define NVIF_OUTP_V0_LOAD_DETECT 0x00
+
+union nvif_outp_load_detect_args {
+       struct nvif_outp_load_detect_v0 {
+               __u8  version;
+               __u8  load;
+               __u8  pad02[2];
+               __u32 data; /*TODO: move vbios loadval parsing into nvkm */
+       } v0;
+};
 #endif
index 64d2131058d535784455ad49a6b6b8e0adc14b56..0d6aa07a9184ab2ff85d62e1082503ea751020f7 100644 (file)
@@ -10,4 +10,5 @@ struct nvif_outp {
 
 int nvif_outp_ctor(struct nvif_disp *, const char *name, int id, struct nvif_outp *);
 void nvif_outp_dtor(struct nvif_outp *);
+int nvif_outp_load_detect(struct nvif_outp *, u32 loadval);
 #endif
index 5a231bf7db96122689c02bf487d942f595b0d515..7bfe91a8d6f9d11e93820b510e3d12e12ade3493 100644 (file)
 #include <nvif/class.h>
 #include <nvif/if0012.h>
 
+int
+nvif_outp_load_detect(struct nvif_outp *outp, u32 loadval)
+{
+       struct nvif_outp_load_detect_v0 args;
+       int ret;
+
+       args.version = 0;
+       args.data = loadval;
+
+       ret = nvif_mthd(&outp->object, NVIF_OUTP_V0_LOAD_DETECT, &args, sizeof(args));
+       NVIF_ERRON(ret, &outp->object, "[LOAD_DETECT data:%08x] load:%02x", args.data, args.load);
+       return ret < 0 ? ret : args.load;
+}
+
 void
 nvif_outp_dtor(struct nvif_outp *outp)
 {
index 0a28db5b75e793903a647ddf2496af08d7a2307f..0af45ccd140c566a9af30c151c068fc4792996aa 100644 (file)
@@ -109,27 +109,6 @@ nv50_disp_root_mthd_(struct nvkm_object *object, u32 mthd, void *data, u32 size)
        case NV50_DISP_MTHD_V1_RELEASE:
                nvkm_outp_release(outp, NVKM_OUTP_USER);
                return 0;
-       case NV50_DISP_MTHD_V1_DAC_LOAD: {
-               union {
-                       struct nv50_disp_dac_load_v0 v0;
-               } *args = data;
-               int ret = -ENOSYS;
-               if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
-                       if (args->v0.data & 0xfff00000)
-                               return -EINVAL;
-                       ret = nvkm_outp_acquire(outp, NVKM_OUTP_PRIV, false);
-                       if (ret)
-                               return ret;
-                       ret = outp->ior->func->sense(outp->ior, args->v0.data);
-                       nvkm_outp_release(outp, NVKM_OUTP_PRIV);
-                       if (ret < 0)
-                               return ret;
-                       args->v0.load = ret;
-                       return 0;
-               } else
-                       return ret;
-       }
-               break;
        case NV50_DISP_MTHD_V1_SOR_HDA_ELD: {
                union {
                        struct nv50_disp_sor_hda_eld_v0 v0;
index 1ea144ecdb31dd2bc1f1eed5d0bbc015a159e17f..abedb3e863610a55d8154956d8fea49248969ede 100644 (file)
  */
 #define nvkm_uoutp(p) container_of((p), struct nvkm_outp, object)
 #include "outp.h"
+#include "ior.h"
 
 #include <nvif/if0012.h>
 
+static int
+nvkm_uoutp_mthd_load_detect(struct nvkm_outp *outp, void *argv, u32 argc)
+{
+       union nvif_outp_load_detect_args *args = argv;
+       int ret;
+
+       if (argc != sizeof(args->v0) || args->v0.version != 0)
+               return -ENOSYS;
+
+       ret = nvkm_outp_acquire(outp, NVKM_OUTP_PRIV, false);
+       if (ret == 0) {
+               if (outp->ior->func->sense) {
+                       ret = outp->ior->func->sense(outp->ior, args->v0.data);
+                       args->v0.load = ret < 0 ? 0 : ret;
+               } else {
+                       ret = -EINVAL;
+               }
+               nvkm_outp_release(outp, NVKM_OUTP_PRIV);
+       }
+
+       return ret;
+}
+
 static int
 nvkm_uoutp_mthd_noacquire(struct nvkm_outp *outp, u32 mthd, void *argv, u32 argc)
 {
        switch (mthd) {
+       case NVIF_OUTP_V0_LOAD_DETECT: return nvkm_uoutp_mthd_load_detect(outp, argv, argc);
        default:
                break;
        }