static inline u32
nvkm_mc_intr_mask(struct nvkm_mc *mc)
{
- u32 intr = nv_rd32(mc, 0x000100);
+ struct nvkm_device *device = mc->subdev.device;
+ u32 intr = nvkm_rd32(device, 0x000100);
if (intr == 0xffffffff) /* likely fallen off the bus */
intr = 0x00000000;
return intr;
nvkm_mc_intr(int irq, void *arg)
{
struct nvkm_mc *mc = arg;
+ struct nvkm_device *device = mc->subdev.device;
const struct nvkm_mc_oclass *oclass = (void *)nv_object(mc)->oclass;
const struct nvkm_mc_intr *map = oclass->intr;
struct nvkm_subdev *unit;
u32 intr;
- nv_wr32(mc, 0x000140, 0x00000000);
- nv_rd32(mc, 0x000140);
+ nvkm_wr32(device, 0x000140, 0x00000000);
+ nvkm_rd32(device, 0x000140);
intr = nvkm_mc_intr_mask(mc);
if (mc->use_msi)
oclass->msi_rearm(mc);
nv_error(mc, "unknown intr 0x%08x\n", stat);
}
- nv_wr32(mc, 0x000140, 0x00000001);
+ nvkm_wr32(device, 0x000140, 0x00000001);
return intr ? IRQ_HANDLED : IRQ_NONE;
}
_nvkm_mc_fini(struct nvkm_object *object, bool suspend)
{
struct nvkm_mc *mc = (void *)object;
- nv_wr32(mc, 0x000140, 0x00000000);
+ struct nvkm_device *device = mc->subdev.device;
+ nvkm_wr32(device, 0x000140, 0x00000000);
return nvkm_subdev_fini(&mc->subdev, suspend);
}
_nvkm_mc_init(struct nvkm_object *object)
{
struct nvkm_mc *mc = (void *)object;
+ struct nvkm_device *device = mc->subdev.device;
int ret = nvkm_subdev_init(&mc->subdev);
if (ret)
return ret;
- nv_wr32(mc, 0x000140, 0x00000001);
+ nvkm_wr32(device, 0x000140, 0x00000001);
return 0;
}
void
_nvkm_mc_dtor(struct nvkm_object *object)
{
- struct nvkm_device *device = nv_device(object);
struct nvkm_mc *mc = (void *)object;
+ struct nvkm_device *device = mc->subdev.device;
free_irq(mc->irq, mc);
if (mc->use_msi)
pci_disable_msi(device->pdev);
struct nvkm_oclass *bclass, int length, void **pobject)
{
const struct nvkm_mc_oclass *oclass = (void *)bclass;
- struct nvkm_device *device = nv_device(parent);
+ struct nvkm_device *device = (void *)parent;
struct nvkm_mc *mc;
int ret;
static void
gf100_mc_msi_rearm(struct nvkm_mc *mc)
{
- nv_wr32(mc, 0x088704, 0x00000000);
+ nvkm_wr32(mc->subdev.device, 0x088704, 0x00000000);
}
void
gf100_mc_unk260(struct nvkm_mc *mc, u32 data)
{
- nv_wr32(mc, 0x000260, data);
+ nvkm_wr32(mc->subdev.device, 0x000260, data);
}
struct nvkm_oclass *
nv04_mc_init(struct nvkm_object *object)
{
struct nvkm_mc *mc = (void *)object;
+ struct nvkm_device *device = mc->subdev.device;
- nv_wr32(mc, 0x000200, 0xffffffff); /* everything enabled */
- nv_wr32(mc, 0x001850, 0x00000001); /* disable rom access */
+ nvkm_wr32(device, 0x000200, 0xffffffff); /* everything enabled */
+ nvkm_wr32(device, 0x001850, 0x00000001); /* disable rom access */
return nvkm_mc_init(mc);
}
void
nv40_mc_msi_rearm(struct nvkm_mc *mc)
{
- nv_wr08(mc, 0x088068, 0xff);
+ nvkm_wr08(mc->subdev.device, 0x088068, 0xff);
}
struct nvkm_oclass *
nv44_mc_init(struct nvkm_object *object)
{
struct nvkm_mc *mc = (void *)object;
- u32 tmp = nv_rd32(mc, 0x10020c);
+ struct nvkm_device *device = mc->subdev.device;
+ u32 tmp = nvkm_rd32(device, 0x10020c);
- nv_wr32(mc, 0x000200, 0xffffffff); /* everything enabled */
+ nvkm_wr32(device, 0x000200, 0xffffffff); /* everything enabled */
- nv_wr32(mc, 0x001700, tmp);
- nv_wr32(mc, 0x001704, 0);
- nv_wr32(mc, 0x001708, 0);
- nv_wr32(mc, 0x00170c, tmp);
+ nvkm_wr32(device, 0x001700, tmp);
+ nvkm_wr32(device, 0x001704, 0);
+ nvkm_wr32(device, 0x001708, 0);
+ nvkm_wr32(device, 0x00170c, tmp);
return nvkm_mc_init(mc);
}
static void
nv50_mc_msi_rearm(struct nvkm_mc *mc)
{
- struct nvkm_device *device = nv_device(mc);
+ struct nvkm_device *device = mc->subdev.device;
pci_write_config_byte(device->pdev, 0x68, 0xff);
}
nv50_mc_init(struct nvkm_object *object)
{
struct nvkm_mc *mc = (void *)object;
- nv_wr32(mc, 0x000200, 0xffffffff); /* everything on */
+ struct nvkm_device *device = mc->subdev.device;
+ nvkm_wr32(device, 0x000200, 0xffffffff); /* everything on */
return nvkm_mc_init(mc);
}