|
@@ -21,63 +21,34 @@
|
|
|
*
|
|
|
* Authors: Ben Skeggs
|
|
|
*/
|
|
|
-#include "nv50.h"
|
|
|
-#include "outp.h"
|
|
|
+#include "ior.h"
|
|
|
|
|
|
-#include <core/client.h>
|
|
|
-#include <subdev/bios.h>
|
|
|
-#include <subdev/bios/dcb.h>
|
|
|
-#include <subdev/timer.h>
|
|
|
-
|
|
|
-#include <nvif/cl5070.h>
|
|
|
-#include <nvif/unpack.h>
|
|
|
-
|
|
|
-int
|
|
|
-gf119_hda_eld(NV50_DISP_MTHD_V1)
|
|
|
+void
|
|
|
+gf119_hda_eld(struct nvkm_ior *ior, u8 *data, u8 size)
|
|
|
{
|
|
|
- struct nvkm_device *device = disp->base.engine.subdev.device;
|
|
|
- union {
|
|
|
- struct nv50_disp_sor_hda_eld_v0 v0;
|
|
|
- } *args = data;
|
|
|
- const u32 soff = outp->or * 0x030;
|
|
|
- const u32 hoff = head * 0x800;
|
|
|
- int ret = -ENOSYS, i;
|
|
|
+ struct nvkm_device *device = ior->disp->engine.subdev.device;
|
|
|
+ const u32 soff = 0x030 * ior->id;
|
|
|
+ int i;
|
|
|
|
|
|
- nvif_ioctl(object, "disp sor hda eld size %d\n", size);
|
|
|
- if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) {
|
|
|
- nvif_ioctl(object, "disp sor hda eld vers %d\n",
|
|
|
- args->v0.version);
|
|
|
- if (size > 0x60)
|
|
|
- return -E2BIG;
|
|
|
- } else
|
|
|
- return ret;
|
|
|
+ for (i = 0; i < size; i++)
|
|
|
+ nvkm_wr32(device, 0x10ec00 + soff, (i << 8) | data[i]);
|
|
|
+ for (; i < 0x60; i++)
|
|
|
+ nvkm_wr32(device, 0x10ec00 + soff, (i << 8));
|
|
|
+ nvkm_mask(device, 0x10ec10 + soff, 0x80000002, 0x80000002);
|
|
|
+}
|
|
|
|
|
|
- if (size && args->v0.data[0]) {
|
|
|
- if (outp->info.type == DCB_OUTPUT_DP) {
|
|
|
- nvkm_mask(device, 0x616618 + hoff, 0x8000000c, 0x80000001);
|
|
|
- nvkm_msec(device, 2000,
|
|
|
- u32 tmp = nvkm_rd32(device, 0x616618 + hoff);
|
|
|
- if (!(tmp & 0x80000000))
|
|
|
- break;
|
|
|
- );
|
|
|
- }
|
|
|
+void
|
|
|
+gf119_hda_hpd(struct nvkm_ior *ior, int head, bool present)
|
|
|
+{
|
|
|
+ struct nvkm_device *device = ior->disp->engine.subdev.device;
|
|
|
+ const u32 hoff = 0x800 * head;
|
|
|
+ u32 data = 0x80000000;
|
|
|
+ u32 mask = 0x80000001;
|
|
|
+ if (present) {
|
|
|
nvkm_mask(device, 0x616548 + hoff, 0x00000070, 0x00000000);
|
|
|
- for (i = 0; i < size; i++)
|
|
|
- nvkm_wr32(device, 0x10ec00 + soff, (i << 8) | args->v0.data[i]);
|
|
|
- for (; i < 0x60; i++)
|
|
|
- nvkm_wr32(device, 0x10ec00 + soff, (i << 8));
|
|
|
- nvkm_mask(device, 0x10ec10 + soff, 0x80000003, 0x80000003);
|
|
|
+ data |= 0x00000001;
|
|
|
} else {
|
|
|
- if (outp->info.type == DCB_OUTPUT_DP) {
|
|
|
- nvkm_mask(device, 0x616618 + hoff, 0x80000001, 0x80000000);
|
|
|
- nvkm_msec(device, 2000,
|
|
|
- u32 tmp = nvkm_rd32(device, 0x616618 + hoff);
|
|
|
- if (!(tmp & 0x80000000))
|
|
|
- break;
|
|
|
- );
|
|
|
- }
|
|
|
- nvkm_mask(device, 0x10ec10 + soff, 0x80000003, 0x80000000 | !!size);
|
|
|
+ mask |= 0x00000002;
|
|
|
}
|
|
|
-
|
|
|
- return 0;
|
|
|
+ nvkm_mask(device, 0x10ec10 + ior->id * 0x030, mask, data);
|
|
|
}
|