Lines Matching refs:wm

133 static void wm9705_phy_init(struct wm97xx *wm)  in wm9705_phy_init()  argument
141 wm97xx_reg_write(wm, AC97_AUX, 0x8000); in wm9705_phy_init()
142 wm97xx_reg_write(wm, AC97_VIDEO, 0x8000); in wm9705_phy_init()
147 dev_dbg(wm->dev, in wm9705_phy_init()
150 dev_dbg(wm->dev, in wm9705_phy_init()
158 dev_dbg(wm->dev, "supplied delay out of range."); in wm9705_phy_init()
164 dev_dbg(wm->dev, "setting adc sample delay to %d u Secs.", in wm9705_phy_init()
169 dev_dbg(wm->dev, "setting pdd to Vmid/%d", 1 - (pdd & 0x000f)); in wm9705_phy_init()
174 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER1, dig1); in wm9705_phy_init()
175 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER2, dig2); in wm9705_phy_init()
178 static void wm9705_dig_enable(struct wm97xx *wm, int enable) in wm9705_dig_enable() argument
181 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER2, in wm9705_dig_enable()
182 wm->dig[2] | WM97XX_PRP_DET_DIG); in wm9705_dig_enable()
183 wm97xx_reg_read(wm, AC97_WM97XX_DIGITISER_RD); /* dummy read */ in wm9705_dig_enable()
185 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER2, in wm9705_dig_enable()
186 wm->dig[2] & ~WM97XX_PRP_DET_DIG); in wm9705_dig_enable()
189 static void wm9705_aux_prepare(struct wm97xx *wm) in wm9705_aux_prepare() argument
191 memcpy(wm->dig_save, wm->dig, sizeof(wm->dig)); in wm9705_aux_prepare()
192 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER1, 0); in wm9705_aux_prepare()
193 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER2, WM97XX_PRP_DET_DIG); in wm9705_aux_prepare()
196 static void wm9705_dig_restore(struct wm97xx *wm) in wm9705_dig_restore() argument
198 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER1, wm->dig_save[1]); in wm9705_dig_restore()
199 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER2, wm->dig_save[2]); in wm9705_dig_restore()
202 static inline int is_pden(struct wm97xx *wm) in is_pden() argument
204 return wm->dig[2] & WM9705_PDEN; in is_pden()
210 static int wm9705_poll_sample(struct wm97xx *wm, int adcsel, int *sample) in wm9705_poll_sample() argument
215 if (wants_pen && !wm->pen_probably_down) { in wm9705_poll_sample()
216 u16 data = wm97xx_reg_read(wm, AC97_WM97XX_DIGITISER_RD); in wm9705_poll_sample()
219 wm->pen_probably_down = 1; in wm9705_poll_sample()
223 if (wm->mach_ops && wm->mach_ops->pre_sample) in wm9705_poll_sample()
224 wm->mach_ops->pre_sample(adcsel); in wm9705_poll_sample()
225 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER1, (adcsel & WM97XX_ADCSEL_MASK) in wm9705_poll_sample()
232 while ((wm97xx_reg_read(wm, AC97_WM97XX_DIGITISER1) & WM97XX_POLL) in wm9705_poll_sample()
240 if (is_pden(wm)) in wm9705_poll_sample()
241 wm->pen_probably_down = 0; in wm9705_poll_sample()
243 dev_dbg(wm->dev, "adc sample timeout"); in wm9705_poll_sample()
247 *sample = wm97xx_reg_read(wm, AC97_WM97XX_DIGITISER_RD); in wm9705_poll_sample()
248 if (wm->mach_ops && wm->mach_ops->post_sample) in wm9705_poll_sample()
249 wm->mach_ops->post_sample(adcsel); in wm9705_poll_sample()
253 dev_dbg(wm->dev, "adc wrong sample, wanted %x got %x", in wm9705_poll_sample()
260 wm->pen_probably_down = 0; in wm9705_poll_sample()
270 static int wm9705_poll_touch(struct wm97xx *wm, struct wm97xx_data *data) in wm9705_poll_touch() argument
274 rc = wm9705_poll_sample(wm, WM97XX_ADCSEL_X | WM97XX_PEN_DOWN, &data->x); in wm9705_poll_touch()
277 rc = wm9705_poll_sample(wm, WM97XX_ADCSEL_Y | WM97XX_PEN_DOWN, &data->y); in wm9705_poll_touch()
281 rc = wm9705_poll_sample(wm, WM97XX_ADCSEL_PRES | WM97XX_PEN_DOWN, &data->p); in wm9705_poll_touch()
294 static int wm9705_acc_enable(struct wm97xx *wm, int enable) in wm9705_acc_enable() argument
299 dig1 = wm->dig[1]; in wm9705_acc_enable()
300 dig2 = wm->dig[2]; in wm9705_acc_enable()
304 if (wm->mach_ops->acc_startup && in wm9705_acc_enable()
305 (ret = wm->mach_ops->acc_startup(wm)) < 0) in wm9705_acc_enable()
311 WM97XX_SLT(wm->acc_slot) | in wm9705_acc_enable()
312 WM97XX_RATE(wm->acc_rate); in wm9705_acc_enable()
319 if (wm->mach_ops->acc_shutdown) in wm9705_acc_enable()
320 wm->mach_ops->acc_shutdown(wm); in wm9705_acc_enable()
323 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER1, dig1); in wm9705_acc_enable()
324 wm97xx_reg_write(wm, AC97_WM97XX_DIGITISER2, dig2); in wm9705_acc_enable()