On Mon, 25 Sep 2023 01:18:38 -0700, Badal Nilawar wrote: > > +static umode_t > +xe_hwmon_is_visible(const void *drvdata, enum hwmon_sensor_types type, > + u32 attr, int channel) > +{ > + struct xe_hwmon *hwmon = (struct xe_hwmon *)drvdata; > + int ret; > + > + xe_device_mem_access_get(gt_to_xe(hwmon->gt)); Maybe we do xe_device_mem_access_get/put in xe_hwmon_process_reg where it is needed? E.g. xe_hwmon_is_visible doesn't need to do this because it doesn't read/write registers. Also do we need to take forcewake? i915 had forcewake table so it would take forcewake automatically but XE doesn't do that. Thanks. -- Ashutosh