Commit d79d9102 authored by Ben Skeggs's avatar Ben Skeggs Committed by Lyude Paul

drm/nouveau/devinit/tu102-: remove attempt at loading PreOS

From Turing, HW will already have handled this and locked-down the
falcon before we get control.  So this *should* be a no-op.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
Reviewed-by: default avatarLyude Paul <lyude@redhat.com>
Acked-by: default avatarDanilo Krummrich <me@dakr.org>
Signed-off-by: default avatarLyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230919220442.202488-2-lyude@redhat.com
parent 0663e1da
......@@ -83,17 +83,9 @@ tu102_devinit_wait(struct nvkm_device *device)
}
int
tu102_devinit_post(struct nvkm_devinit *base, bool post)
tu102_devinit_post(struct nvkm_devinit *init, bool post)
{
struct nv50_devinit *init = nv50_devinit(base);
int ret;
ret = tu102_devinit_wait(init->base.subdev.device);
if (ret)
return ret;
gm200_devinit_preos(init, post);
return 0;
return tu102_devinit_wait(init->subdev.device);
}
static const struct nvkm_devinit_func
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment