Lines Matching refs:therm
32 struct gk104_therm *therm = gk104_therm(base); in gk104_clkgate_enable() local
33 struct nvkm_device *dev = therm->base.subdev.device; in gk104_clkgate_enable()
34 const struct gk104_clkgate_engine_info *order = therm->clkgate_order; in gk104_clkgate_enable()
46 nvkm_wr32(dev, 0x020288, therm->idle_filter->fecs); in gk104_clkgate_enable()
47 nvkm_wr32(dev, 0x02028c, therm->idle_filter->hubmmu); in gk104_clkgate_enable()
61 struct gk104_therm *therm = gk104_therm(base); in gk104_clkgate_fini() local
62 struct nvkm_device *dev = therm->base.subdev.device; in gk104_clkgate_fini()
63 const struct gk104_clkgate_engine_info *order = therm->clkgate_order; in gk104_clkgate_fini()
115 struct gk104_therm *therm = kzalloc(sizeof(*therm), GFP_KERNEL); in gk104_therm_new_() local
117 if (!therm) in gk104_therm_new_()
120 nvkm_therm_ctor(&therm->base, device, type, inst, func); in gk104_therm_new_()
121 *ptherm = &therm->base; in gk104_therm_new_()
122 therm->clkgate_order = clkgate_order; in gk104_therm_new_()
123 therm->idle_filter = idle_filter; in gk104_therm_new_()