/src/sys/arch/arm/xscale/ |
i80200_icu.c | 53 /* Software shadow copy of INTCTL. */ 54 static volatile uint32_t intctl; variable in typeref:typename:volatile uint32_t 76 intctl = 0; 79 : "r" (intctl)); 101 intctl |= intr; 104 : "r" (intctl)); 121 intctl &= ~intr; 124 : "r" (intctl));
|
i80200_icu.c | 53 /* Software shadow copy of INTCTL. */ 54 static volatile uint32_t intctl; variable in typeref:typename:volatile uint32_t 76 intctl = 0; 79 : "r" (intctl)); 101 intctl |= intr; 104 : "r" (intctl)); 121 intctl &= ~intr; 124 : "r" (intctl));
|
/src/sys/arch/arm/sunxi/ |
sun4i_spi.c | 315 uint32_t intctl; local in function:sun4ispi_set_interrupt_mask 317 intctl = SPI_INTCTL_TX_INT_EN; 318 intctl |= SPI_INTCTL_RF_OF_INT_EN; 319 intctl |= SPI_INTCTL_TF_UR_INT_EN; 323 intctl |= SPI_INTCTL_RF_HALF_FU_INT_EN; 325 intctl |= SPI_INTCTL_RF_RDY_INT_EN; 329 intctl |= SPI_INTCTL_TF_HALF_EMP_INT_EN; 331 SPIREG_WRITE(sc, SPI_INTCTL, intctl);
|
sun4i_spi.c | 315 uint32_t intctl; local in function:sun4ispi_set_interrupt_mask 317 intctl = SPI_INTCTL_TX_INT_EN; 318 intctl |= SPI_INTCTL_RF_OF_INT_EN; 319 intctl |= SPI_INTCTL_TF_UR_INT_EN; 323 intctl |= SPI_INTCTL_RF_HALF_FU_INT_EN; 325 intctl |= SPI_INTCTL_RF_RDY_INT_EN; 329 intctl |= SPI_INTCTL_TF_HALF_EMP_INT_EN; 331 SPIREG_WRITE(sc, SPI_INTCTL, intctl);
|
/src/sys/dev/hdaudio/ |
hdaudio.c | 1204 uint32_t intctl; local in function:hdaudio_stream_start 1268 intctl = hda_read4(sc, HDAUDIO_MMIO_INTCTL); 1269 intctl |= (1 << st->st_shift); 1270 hda_write4(sc, HDAUDIO_MMIO_INTCTL, intctl); 1285 uint32_t intctl; local in function:hdaudio_stream_stop 1300 intctl = hda_read4(sc, HDAUDIO_MMIO_INTCTL); 1301 intctl &= ~(1 << st->st_shift); 1302 hda_write4(sc, HDAUDIO_MMIO_INTCTL, intctl);
|
hdaudio.c | 1204 uint32_t intctl; local in function:hdaudio_stream_start 1268 intctl = hda_read4(sc, HDAUDIO_MMIO_INTCTL); 1269 intctl |= (1 << st->st_shift); 1270 hda_write4(sc, HDAUDIO_MMIO_INTCTL, intctl); 1285 uint32_t intctl; local in function:hdaudio_stream_stop 1300 intctl = hda_read4(sc, HDAUDIO_MMIO_INTCTL); 1301 intctl &= ~(1 << st->st_shift); 1302 hda_write4(sc, HDAUDIO_MMIO_INTCTL, intctl);
|