drm/nouveau/i2c/tu102-: prepare for GSP-RM

- disable I2C completely when GSP-RM detected

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230918202149.4343-14-skeggsb@gmail.com
This commit is contained in:
Ben Skeggs 2023-09-19 06:21:18 +10:00 committed by Dave Airlie
parent 2cfad4b048
commit a25a5d560d

View File

@ -24,6 +24,8 @@
#include "priv.h"
#include "pad.h"
#include <subdev/gsp.h>
static void
gm200_aux_autodpcd(struct nvkm_i2c *i2c, int aux, bool enable)
{
@ -44,5 +46,8 @@ int
gm200_i2c_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst,
struct nvkm_i2c **pi2c)
{
if (nvkm_gsp_rm(device->gsp))
return -ENODEV;
return nvkm_i2c_new_(&gm200_i2c, device, type, inst, pi2c);
}