Lines Matching refs:w
81 unsigned int w; in omap_mcbsp_st_on() local
87 w = MCBSP_ST_READ(mcbsp, SYSCONFIG); in omap_mcbsp_st_on()
88 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w & ~(ST_AUTOIDLE)); in omap_mcbsp_st_on()
91 w = MCBSP_READ(mcbsp, SSELCR); in omap_mcbsp_st_on()
92 MCBSP_WRITE(mcbsp, SSELCR, w | SIDETONEEN); in omap_mcbsp_st_on()
95 w = MCBSP_ST_READ(mcbsp, SSELCR); in omap_mcbsp_st_on()
96 MCBSP_ST_WRITE(mcbsp, SSELCR, w | ST_SIDETONEEN); in omap_mcbsp_st_on()
101 unsigned int w; in omap_mcbsp_st_off() local
103 w = MCBSP_ST_READ(mcbsp, SSELCR); in omap_mcbsp_st_off()
104 MCBSP_ST_WRITE(mcbsp, SSELCR, w & ~(ST_SIDETONEEN)); in omap_mcbsp_st_off()
106 w = MCBSP_READ(mcbsp, SSELCR); in omap_mcbsp_st_off()
107 MCBSP_WRITE(mcbsp, SSELCR, w & ~(SIDETONEEN)); in omap_mcbsp_st_off()
110 w = MCBSP_ST_READ(mcbsp, SYSCONFIG); in omap_mcbsp_st_off()
111 MCBSP_ST_WRITE(mcbsp, SYSCONFIG, w | ST_AUTOIDLE); in omap_mcbsp_st_off()