Re: lm-senser can't detect thermal on thermal_zone

From: Zhang Rui
Date: Tue Jun 14 2016 - 02:32:25 EST


On Thu, 2016-06-09 at 03:07 +0000, Kuninori Morimoto wrote:
>
> Hi Zhang
>
> Can you check this email ?
>
> >
> > >
> > > Thank you for your help
> > >
> > > >
> > > > >
> > > > > non thermal-zon
> > > > > ÂÂsensor command: OK
> > > > > ÂÂread from /sys/class/thermal/thermal_zone0 : OK
> > > > >
> > > > > thermal-zon
> > > > > ÂÂsensor command: NG
> > > > > ÂÂread from /sys/class/thermal/thermal_zone0 : OK
> > > > config THERMAL_HWMON
> > > > ÂÂÂÂÂÂÂÂbool
> > > > ÂÂÂÂÂÂÂÂprompt "Expose thermal sensors as hwmon device"
> > > > ÂÂÂÂÂÂÂÂdepends on HWMON=y || HWMON=THERMAL
> > > > ÂÂÂÂÂÂÂÂdefault y
> > > >
> > > > please check if the thermal subsystem is built in, while hwmon
> > > > subsystem
> > > > is built as module.
> > > > you should either set CONFIG_HWMON=y, or set both CONFIG_HWMON
> > > > and
> > > > CONFIG_THERMAL as module.
> > > Thanks. but it seems our system has it.
> > >
> > > I noticed that thermal_zone case uses of_parse_thermal_zones()
> > > and it has this.
> > >
> > > /* No hwmon because there might be hwmon drivers
> > > registering */
> > > tzp->no_hwmon = true;
> > >
> > > and on thermal_zone_device_register() check this for hwmon
> > >
> > > struct thermal_zone_device *thermal_zone_device_register(xxxx)
> > > {
> > > ...
> > > if (!tz->tzp || !tz->tzp->no_hwmon) {
> > > result = thermal_add_hwmon_sysfs(tz);
> > > ...
> > > }
> > > ...
> > > }
> > >
> > > Does this mean "thermal_zone doesn't use lm-senser" ?

I'd prefer to say of_thermal registered thermal_zone doesn't use lm-
sensor.
If you're really want to see hwmon interface, I think you should use
thermal API (thermal_zone_device_register) directly.

thanks,
rui