/linux/tools/testing/selftests/powerpc/math/ |
A D | fpu_asm.S | 14 bne cr1,1f 17 bne cr1,1f 20 bne cr1,1f 23 bne cr1,1f 26 bne cr1,1f 29 bne cr1,1f 32 bne cr1,1f 35 bne cr1,1f 38 bne cr1,1f 41 bne cr1,1f [all …]
|
/linux/drivers/spi/ |
A D | spi-sh.c | 78 unsigned long cr1; member 204 ss->cr1 &= ~SPI_SH_TBE; in spi_sh_send() 394 unsigned long cr1; in spi_sh_irq() local 397 if (cr1 & SPI_SH_TBE) in spi_sh_irq() 398 ss->cr1 |= SPI_SH_TBE; in spi_sh_irq() 399 if (cr1 & SPI_SH_TBF) in spi_sh_irq() 400 ss->cr1 |= SPI_SH_TBF; in spi_sh_irq() 401 if (cr1 & SPI_SH_RBE) in spi_sh_irq() 402 ss->cr1 |= SPI_SH_RBE; in spi_sh_irq() 403 if (cr1 & SPI_SH_RBF) in spi_sh_irq() [all …]
|
/linux/drivers/counter/ |
A D | stm32-timer-cnt.c | 25 u32 cr1; member 104 u32 cr1, sms; in stm32_count_function_write() local 124 regmap_read(priv->regmap, TIM_CR1, &cr1); in stm32_count_function_write() 144 u32 cr1; in stm32_count_direction_read() local 146 regmap_read(priv->regmap, TIM_CR1, &cr1); in stm32_count_direction_read() 185 u32 cr1; in stm32_count_enable_read() local 187 regmap_read(priv->regmap, TIM_CR1, &cr1); in stm32_count_enable_read() 189 *enable = cr1 & TIM_CR1_CEN; in stm32_count_enable_read() 198 u32 cr1; in stm32_count_enable_write() local 202 if (!(cr1 & TIM_CR1_CEN)) in stm32_count_enable_write() [all …]
|
/linux/drivers/tty/serial/ |
A D | stm32-usart.c | 84 *cr1 |= rs485_deat_dedt; in stm32_usart_config_reg_rs485() 96 *cr1 |= rs485_deat_dedt; in stm32_usart_config_reg_rs485() 115 cr1 = readl_relaxed(port->membase + ofs->cr1); in stm32_usart_config_rs485() 140 writel_relaxed(cr1, port->membase + ofs->cr1); in stm32_usart_config_rs485() 928 u32 cr1, cr2, cr3, isr; in stm32_usart_set_termios() local 979 cr1 |= USART_CR1_PCE; in stm32_usart_set_termios() 990 cr1 |= USART_CR1_M0; in stm32_usart_set_termios() 992 cr1 |= USART_CR1_M1; in stm32_usart_set_termios() 1020 cr1 |= USART_CR1_PS; in stm32_usart_set_termios() 1081 cr1 |= USART_CR1_PEIE; in stm32_usart_set_termios() [all …]
|
A D | fsl_linflexuart.c | 329 unsigned long cr, ier, cr1; in linflex_setup_watermark() local 343 cr1 = LINFLEXD_LINCR1_BF | LINFLEXD_LINCR1_MME in linflex_setup_watermark() 345 writel(cr1, sport->membase + LINCR1); in linflex_setup_watermark() 369 cr1 &= ~(LINFLEXD_LINCR1_INIT); in linflex_setup_watermark() 371 writel(cr1, sport->membase + LINCR1); in linflex_setup_watermark() 419 unsigned long cr, old_cr, cr1; in linflex_set_termios() local 426 cr1 = readl(port->membase + LINCR1); in linflex_set_termios() 427 cr1 |= LINFLEXD_LINCR1_INIT; in linflex_set_termios() 428 writel(cr1, port->membase + LINCR1); in linflex_set_termios() 519 cr1 &= ~(LINFLEXD_LINCR1_INIT); in linflex_set_termios() [all …]
|
A D | stm32-usart.h | 12 u8 cr1; member 48 .cr1 = 0x0c, 65 .cr1 = 0x00, 87 .cr1 = 0x00,
|
/linux/drivers/i2c/busses/ |
A D | i2c-stm32f4.c | 489 u32 cr1; in stm32f4_i2c_handle_rx_addr() local 506 cr1 = readl_relaxed(i2c_dev->base + STM32F4_I2C_CR1); in stm32f4_i2c_handle_rx_addr() 507 cr1 &= ~(STM32F4_I2C_CR1_ACK | STM32F4_I2C_CR1_POS); in stm32f4_i2c_handle_rx_addr() 508 writel_relaxed(cr1, i2c_dev->base + STM32F4_I2C_CR1); in stm32f4_i2c_handle_rx_addr() 513 cr1 |= STM32F4_I2C_CR1_STOP; in stm32f4_i2c_handle_rx_addr() 515 cr1 |= STM32F4_I2C_CR1_START; in stm32f4_i2c_handle_rx_addr() 516 writel_relaxed(cr1, i2c_dev->base + STM32F4_I2C_CR1); in stm32f4_i2c_handle_rx_addr() 527 cr1 &= ~STM32F4_I2C_CR1_ACK; in stm32f4_i2c_handle_rx_addr() 528 cr1 |= STM32F4_I2C_CR1_POS; in stm32f4_i2c_handle_rx_addr() 542 cr1 |= STM32F4_I2C_CR1_ACK; in stm32f4_i2c_handle_rx_addr() [all …]
|
A D | i2c-stm32f7.c | 193 u32 cr1; member 873 u32 cr1, cr2; in stm32f7_i2c_xfer_msg() local 936 cr1 |= STM32F7_I2C_CR1_RXIE; in stm32f7_i2c_xfer_msg() 938 cr1 |= STM32F7_I2C_CR1_TXIE; in stm32f7_i2c_xfer_msg() 963 u32 cr1, cr2; in stm32f7_i2c_smbus_xfer_msg() local 1065 cr1 |= STM32F7_I2C_CR1_PECEN; in stm32f7_i2c_smbus_xfer_msg() 1128 u32 cr1, cr2; in stm32f7_i2c_smbus_rep_start() local 1167 cr1 |= STM32F7_I2C_CR1_RXIE; in stm32f7_i2c_smbus_rep_start() 1194 cr1 |= STM32F7_I2C_CR1_RXIE; in stm32f7_i2c_smbus_rep_start() 2401 u32 cr1; in stm32f7_i2c_regs_restore() local [all …]
|
/linux/arch/powerpc/kernel/vdso32/ |
A D | getcpu.S | 23 cmpwi cr1,r4,0 30 beqlr cr1 39 cmpwi cr1, r4, 0 45 beqlr cr1
|
/linux/arch/powerpc/kernel/ |
A D | head_8xx.S | 331 cmpwi cr1, r11, RPN_PATTERN 360 cror 4*cr1+eq, 4*cr1+eq, 4*cr7+eq 361 bne cr1, 1f 406 cmpli cr1, r11, PAGE_OFFSET@h 408 blt+ cr1, 3f 431 beq+ cr1, 142f 432 cmpwi cr1, r10, 940 /* Is dcbi? */ 433 beq+ cr1, 142f 437 beq+ cr1, 142f 439 beq+ cr1, 142f [all …]
|
A D | cpu_setup_6xx.S | 189 cmpwi cr1,r10,9 191 cror 4*cr0+eq,4*cr0+eq,4*cr1+eq 334 cmplwi cr1,r3,0x000c /* 7400 */ 342 cror 4*cr1+eq,4*cr1+eq,4*cr2+eq 346 cror 4*cr0+eq,4*cr0+eq,4*cr1+eq 355 beq cr1,1f 405 cmplwi cr1,r3,0x000c /* 7400 */ 413 cror 4*cr1+eq,4*cr1+eq,4*cr2+eq 417 cror 4*cr0+eq,4*cr0+eq,4*cr1+eq 436 1: beq cr1,2f
|
/linux/sound/soc/stm/ |
A D | stm32_sai_sub.c | 340 int ret, cr1, mask; in stm32_sai_set_clk_div() local 648 int cr1, frcr = 0; in stm32_sai_set_dai_fmt() local 655 cr1 = SAI_XCR1_NODIV; in stm32_sai_set_dai_fmt() 669 cr1 |= SAI_XCR1_CKSTR; in stm32_sai_set_dai_fmt() 701 cr1 ^= SAI_XCR1_CKSTR; in stm32_sai_set_dai_fmt() 708 cr1 ^= SAI_XCR1_CKSTR; in stm32_sai_set_dai_fmt() 725 cr1 |= SAI_XCR1_SLAVE; in stm32_sai_set_dai_fmt() 740 cr1 |= SAI_XCR1_SLAVE; in stm32_sai_set_dai_fmt() 810 int cr1, cr1_mask, ret; in stm32_sai_set_config() local 847 cr1 |= SAI_XCR1_MONO; in stm32_sai_set_config() [all …]
|
/linux/tools/testing/selftests/powerpc/stringloops/ |
A D | memcmp_64.S | 102 cmpdi cr1,r5,0 115 beq cr1,.Lzero 287 cmpld cr1,rC,rD 301 bne cr1,.LcmpCD 312 cmpld cr1,rC,rD 328 bne cr1,.LcmpCD 336 cmpld cr1,rC,rD 345 bne cr1,.LcmpCD 361 cmpld cr1,rC,rD 366 bne cr1,.LcmpCD [all …]
|
A D | memcmp_32.S | 29 cmplwi cr1, r3, 2 30 blt- cr1, 4f 35 beqlr cr1
|
/linux/arch/powerpc/lib/ |
A D | memcmp_64.S | 102 cmpdi cr1,r5,0 115 beq cr1,.Lzero 287 cmpld cr1,rC,rD 301 bne cr1,.LcmpCD 312 cmpld cr1,rC,rD 328 bne cr1,.LcmpCD 336 cmpld cr1,rC,rD 345 bne cr1,.LcmpCD 361 cmpld cr1,rC,rD 366 bne cr1,.LcmpCD [all …]
|
A D | memcmp_32.S | 29 cmplwi cr1, r3, 2 30 blt- cr1, 4f 35 beqlr cr1
|
A D | memcpy_64.S | 42 cmpldi cr1,r5,16 46 blt cr1,.Lshort_copy 75 blt cr1,3f 162 cmpwi cr1,r5,8 165 ble cr1,6f 188 cmpldi cr1,r5,16
|
A D | copyuser_64.S | 57 cmpldi cr1,r5,16 70 blt cr1,.Lshort_copy 92 blt cr1,.Ldo_tail /* if < 16 bytes to copy */ 94 cmpdi cr1,r0,0 106 beq cr1,72f 227 6: cmpwi cr1,r5,8 231 ble cr1,7f 270 cmpldi cr1,r5,16
|
A D | mem_64.S | 25 cmplw cr1,r5,r0 37 cmplw cr1,r5,r0 /* do we get that far? */ 41 blt cr1,8f
|
/linux/drivers/staging/media/imx/ |
A D | imx7-media-csi.c | 243 cr1 |= BIT_RFF_OR_INT; in imx7_csi_hw_enable_irq() 244 cr1 |= BIT_FB1_DMA_DONE_INTEN; in imx7_csi_hw_enable_irq() 245 cr1 |= BIT_FB2_DMA_DONE_INTEN; in imx7_csi_hw_enable_irq() 247 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); in imx7_csi_hw_enable_irq() 254 cr1 &= ~BIT_RFF_OR_INT; in imx7_csi_hw_disable_irq() 255 cr1 &= ~BIT_FB1_DMA_DONE_INTEN; in imx7_csi_hw_disable_irq() 256 cr1 &= ~BIT_FB2_DMA_DONE_INTEN; in imx7_csi_hw_disable_irq() 258 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); in imx7_csi_hw_disable_irq() 292 imx7_csi_reg_write(csi, cr1, CSI_CSICR1); in imx7_csi_rx_fifo_clear() 427 u32 cr1, cr18; in imx7_csi_configure() local [all …]
|
/linux/arch/s390/lib/ |
A D | uaccess.c | 22 unsigned long cr1, cr7; in debug_user_asce() local 24 __ctl_store(cr1, 1, 1); in debug_user_asce() 26 if (cr1 == S390_lowcore.kernel_asce && cr7 == S390_lowcore.user_asce) in debug_user_asce() 31 exit ? "exit" : "entry", cr1, cr7, in debug_user_asce()
|
/linux/tools/testing/selftests/powerpc/copyloops/ |
A D | memcpy_64.S | 42 cmpldi cr1,r5,16 46 blt cr1,.Lshort_copy 75 blt cr1,3f 162 cmpwi cr1,r5,8 165 ble cr1,6f 188 cmpldi cr1,r5,16
|
A D | copyuser_64.S | 57 cmpldi cr1,r5,16 70 blt cr1,.Lshort_copy 92 blt cr1,.Ldo_tail /* if < 16 bytes to copy */ 94 cmpdi cr1,r0,0 106 beq cr1,72f 227 6: cmpwi cr1,r5,8 231 ble cr1,7f 270 cmpldi cr1,r5,16
|
/linux/arch/powerpc/kernel/vdso64/ |
A D | getcpu.S | 22 cmpdi cr1,r4,0 27 1: beq cr1,2f
|
/linux/drivers/input/touchscreen/ |
A D | mc13783_ts.c | 71 int cr0, cr1; in mc13783_ts_report_sample() local 84 cr1 = (priv->sample[3] >> 12) & 0xfff; in mc13783_ts_report_sample() 88 x0, x1, x2, y0, y1, y2, cr0, cr1); in mc13783_ts_report_sample() 93 cr0 = (cr0 + cr1) / 2; in mc13783_ts_report_sample()
|