Home | History | Annotate | Download | only in nouveau

Lines Matching refs:attr

199 	&sensor_dev_attr_pwm1_min.dev_attr.attr,
200 &sensor_dev_attr_pwm1_max.dev_attr.attr,
208 &sensor_dev_attr_temp1_auto_point1_pwm.dev_attr.attr,
209 &sensor_dev_attr_temp1_auto_point1_temp.dev_attr.attr,
210 &sensor_dev_attr_temp1_auto_point1_temp_hyst.dev_attr.attr,
292 nouveau_chip_is_visible(const void *data, u32 attr, int channel)
294 switch (attr) {
303 nouveau_power_is_visible(const void *data, u32 attr, int channel)
311 switch (attr) {
328 nouveau_temp_is_visible(const void *data, u32 attr, int channel)
336 switch (attr) {
352 nouveau_pwm_is_visible(const void *data, u32 attr, int channel)
361 switch (attr) {
371 nouveau_input_is_visible(const void *data, u32 attr, int channel)
379 switch (attr) {
391 nouveau_fan_is_visible(const void *data, u32 attr, int channel)
399 switch (attr) {
408 nouveau_chip_read(struct device *dev, u32 attr, int channel, long *val)
410 switch (attr) {
422 nouveau_temp_read(struct device *dev, u32 attr, int channel, long *val)
432 switch (attr) {
471 nouveau_fan_read(struct device *dev, u32 attr, int channel, long *val)
480 switch (attr) {
494 nouveau_in_read(struct device *dev, u32 attr, int channel, long *val)
504 switch (attr) {
525 nouveau_pwm_read(struct device *dev, u32 attr, int channel, long *val)
534 switch (attr) {
551 nouveau_power_read(struct device *dev, u32 attr, int channel, long *val)
560 switch (attr) {
580 nouveau_temp_write(struct device *dev, u32 attr, int channel, long val)
589 switch (attr) {
614 nouveau_pwm_write(struct device *dev, u32 attr, int channel, long val)
623 switch (attr) {
634 nouveau_is_visible(const void *data, enum hwmon_sensor_types type, u32 attr,
639 return nouveau_chip_is_visible(data, attr, channel);
641 return nouveau_temp_is_visible(data, attr, channel);
643 return nouveau_fan_is_visible(data, attr, channel);
645 return nouveau_input_is_visible(data, attr, channel);
647 attr, channel);
649 return nouveau_power_is_visible(data, attr, channel);
658 nouveau_read_string(struct device *dev, enum hwmon_sensor_types type, u32 attr,
661 if (type == hwmon_in && attr == hwmon_in_label) {
670 nouveau_read(struct device *dev, enum hwmon_sensor_types type, u32 attr,
675 return nouveau_chip_read(dev, attr, channel, val);
677 return nouveau_temp_read(dev, attr, channel, val);
679 return nouveau_fan_read(dev, attr, channel, val);
681 return nouveau_in_read(dev, attr, channel, val);
683 return nouveau_pwm_read(dev, attr, channel, val);
685 return nouveau_power_read(dev, attr, channel, val);
692 nouveau_write(struct device *dev, enum hwmon_sensor_types type, u32 attr,
697 return nouveau_temp_write(dev, attr, channel, val);
699 return nouveau_pwm_write(dev, attr, channel, val);