Home
last modified time | relevance | path

Searched refs:ntxec_reg8 (Results 1 – 3 of 3) sorted by relevance

/Linux-v6.6/drivers/pwm/
Dpwm-ntxec.c74 { NTXEC_REG_PERIOD_HIGH, ntxec_reg8(period >> 8) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
75 { NTXEC_REG_DUTY_HIGH, ntxec_reg8(duty >> 8) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
76 { NTXEC_REG_PERIOD_LOW, ntxec_reg8(period) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
77 { NTXEC_REG_DUTY_LOW, ntxec_reg8(duty) }, in ntxec_pwm_set_raw_period_and_duty_cycle()
113 res = regmap_write(priv->ec->regmap, NTXEC_REG_ENABLE, ntxec_reg8(1)); in ntxec_pwm_apply()
118 res = regmap_write(priv->ec->regmap, NTXEC_REG_AUTO_OFF_HI, ntxec_reg8(0xff)); in ntxec_pwm_apply()
122 return regmap_write(priv->ec->regmap, NTXEC_REG_AUTO_OFF_LO, ntxec_reg8(0xff)); in ntxec_pwm_apply()
124 return regmap_write(priv->ec->regmap, NTXEC_REG_ENABLE, ntxec_reg8(0)); in ntxec_pwm_apply()
/Linux-v6.6/drivers/rtc/
Drtc-ntxec.c91 { NTXEC_REG_WRITE_SECOND, ntxec_reg8(0) }, in ntxec_set_time()
92 { NTXEC_REG_WRITE_YEAR, ntxec_reg8(tm->tm_year - 100) }, in ntxec_set_time()
93 { NTXEC_REG_WRITE_MONTH, ntxec_reg8(tm->tm_mon + 1) }, in ntxec_set_time()
94 { NTXEC_REG_WRITE_DAY, ntxec_reg8(tm->tm_mday) }, in ntxec_set_time()
95 { NTXEC_REG_WRITE_HOUR, ntxec_reg8(tm->tm_hour) }, in ntxec_set_time()
96 { NTXEC_REG_WRITE_MINUTE, ntxec_reg8(tm->tm_min) }, in ntxec_set_time()
97 { NTXEC_REG_WRITE_SECOND, ntxec_reg8(tm->tm_sec) }, in ntxec_set_time()
/Linux-v6.6/include/linux/mfd/
Dntxec.h29 static inline u16 ntxec_reg8(u8 value) in ntxec_reg8() function