/linux-4.4.14/arch/xtensa/kernel/ |
D | entry.S | 81 rsr \flags, ps 88 rsr \flags, ps 133 rsr a0, depc 146 rsr a3, sar 159 rsr a2, windowbase 160 rsr a3, windowstart 231 rsr a2, sar # original WINDOWBASE 279 rsr a0, depc # get a2 291 rsr a3, sar 299 rsr a2, windowbase # don't need to save these, we only [all …]
|
D | vectors.S | 77 rsr a0, exccause # retrieve exception cause 104 rsr a0, exccause # retrieve exception cause 219 rsr a2, ps 259 rsr a0, ps 269 rsr a0, exccause 286 rsr a3, exccause 305 rsr a3, excsave1 339 rsr a0, exccause 425 rsr a0, ps 427 rsr a2, windowbase [all …]
|
D | align.S | 174 rsr a0, depc 178 rsr a3, excsave1 184 rsr a0, sar 185 rsr a8, excvaddr # load unaligned memory address 204 rsr a7, epc1 # load exception address 325 rsr a3, excsave1 338 rsr a0, ps 413 rsr a4, lend # check if we reached LEND 415 rsr a4, lcount # and LCOUNT != 0 418 rsr a7, lbeg # set PC to LBEGIN [all …]
|
D | coprocessor.S | 249 rsr a3, sar 253 rsr a2, depc 266 rsr a3, exccause 273 rsr a0, cpenable 309 2: rsr a3, exccause
|
D | head.S | 90 rsr a2, excsave1 210 rsr a2, prid 325 rsr a0, prid
|
/linux-4.4.14/arch/xtensa/variants/dc232b/include/variant/ |
D | tie-asm.h | 41 rsr \at1, ACCLO // MAC16 accumulator 42 rsr \at2, ACCHI 49 rsr \at1, M0 // MAC16 registers 50 rsr \at2, M1 53 rsr \at1, M2 54 rsr \at2, M3 61 rsr \at1, SCOMPARE1 // conditional store option
|
/linux-4.4.14/arch/xtensa/variants/de212/include/variant/ |
D | tie-asm.h | 81 rsr.ACCLO \at1 // MAC16 option 83 rsr.ACCHI \at1 // MAC16 option 93 rsr.SCOMPARE1 \at1 // conditional store option 95 rsr.M0 \at1 // MAC16 option 97 rsr.M1 \at1 // MAC16 option 99 rsr.M2 \at1 // MAC16 option 101 rsr.M3 \at1 // MAC16 option
|
/linux-4.4.14/arch/xtensa/variants/dc233c/include/variant/ |
D | tie-asm.h | 92 rsr \at1, ACCLO // MAC16 option 94 rsr \at1, ACCHI // MAC16 option 104 rsr \at1, M0 // MAC16 option 106 rsr \at1, M1 // MAC16 option 108 rsr \at1, M2 // MAC16 option 110 rsr \at1, M3 // MAC16 option 112 rsr \at1, SCOMPARE1 // conditional store option
|
/linux-4.4.14/drivers/tty/serial/ |
D | apbuart.c | 76 unsigned int status, ch, rsr, flag; in apbuart_rx_chars() local 88 rsr = UART_GET_STATUS(port) | UART_DUMMY_RSR_RX; in apbuart_rx_chars() 90 if (rsr & UART_STATUS_ERR) { in apbuart_rx_chars() 92 if (rsr & UART_STATUS_BR) { in apbuart_rx_chars() 93 rsr &= ~(UART_STATUS_FE | UART_STATUS_PE); in apbuart_rx_chars() 97 } else if (rsr & UART_STATUS_PE) { in apbuart_rx_chars() 99 } else if (rsr & UART_STATUS_FE) { in apbuart_rx_chars() 102 if (rsr & UART_STATUS_OE) in apbuart_rx_chars() 105 rsr &= port->read_status_mask; in apbuart_rx_chars() 107 if (rsr & UART_STATUS_PE) in apbuart_rx_chars() [all …]
|
D | lantiq.c | 160 unsigned int ch = 0, rsr = 0, fifocnt; in lqasc_rx_chars() local 166 rsr = (ltq_r32(port->membase + LTQ_ASC_STATE) in lqasc_rx_chars() 175 if (rsr & ASCSTATE_ANY) { in lqasc_rx_chars() 176 if (rsr & ASCSTATE_PE) { in lqasc_rx_chars() 180 } else if (rsr & ASCSTATE_FE) { in lqasc_rx_chars() 185 if (rsr & ASCSTATE_ROE) { in lqasc_rx_chars() 191 rsr &= port->read_status_mask; in lqasc_rx_chars() 193 if (rsr & ASCSTATE_PE) in lqasc_rx_chars() 195 else if (rsr & ASCSTATE_FE) in lqasc_rx_chars() 199 if ((rsr & port->ignore_status_mask) == 0) in lqasc_rx_chars() [all …]
|
D | amba-pl010.c | 132 unsigned int status, ch, flag, rsr, max_count = 256; in pl010_rx_chars() local 145 rsr = readb(uap->port.membase + UART01x_RSR) | UART_DUMMY_RSR_RX; in pl010_rx_chars() 146 if (unlikely(rsr & UART01x_RSR_ANY)) { in pl010_rx_chars() 149 if (rsr & UART01x_RSR_BE) { in pl010_rx_chars() 150 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE); in pl010_rx_chars() 154 } else if (rsr & UART01x_RSR_PE) in pl010_rx_chars() 156 else if (rsr & UART01x_RSR_FE) in pl010_rx_chars() 158 if (rsr & UART01x_RSR_OE) in pl010_rx_chars() 161 rsr &= uap->port.read_status_mask; in pl010_rx_chars() 163 if (rsr & UART01x_RSR_BE) in pl010_rx_chars() [all …]
|
/linux-4.4.14/drivers/staging/vt6655/ |
D | dpc.c | 46 u8 *rsr, *new_rsr, *rssi; in vnt_rx_data() local 93 rsr = skb_data + bytes_received - 1; in vnt_rx_data() 94 if (*rsr & (RSR_IVLDTYP | RSR_IVLDLEN)) in vnt_rx_data() 111 if (!(*rsr & RSR_CRCOK)) in vnt_rx_data()
|
/linux-4.4.14/drivers/staging/vt6656/ |
D | dpc.c | 48 u8 *rsr, *new_rsr, *rssi, *frame; in vnt_rx_data() local 139 rsr = skb_data + 8 + pay_load_with_padding + 11; in vnt_rx_data() 140 if (*rsr & (RSR_IVLDTYP | RSR_IVLDLEN)) in vnt_rx_data() 161 if (!(*rsr & RSR_CRCOK)) in vnt_rx_data()
|
/linux-4.4.14/sound/pci/ctxfi/ |
D | cthardware.h | 61 unsigned int rsr; /* reference sample rate in Hzs*/ member 75 int (*pll_init)(struct hw *hw, unsigned int rsr); 93 int (*src_set_rsr)(void *blk, unsigned int rsr); 156 int (*dai_srt_set_rsr)(void *blk, unsigned int rsr);
|
D | ctatc.c | 268 (atc->rsr * atc->msr)); in atc_pcm_playback_prepare() 468 pitch = atc_get_pitch((atc->rsr * atc->msr), in setup_src_node_conf() 485 conf[1].pitch = atc_get_pitch(atc->rsr, in setup_src_node_conf() 529 pitch = atc_get_pitch((atc->rsr * atc->msr), in atc_pcm_capture_get_resources() 605 pitch = atc_get_pitch((atc->rsr * atc->msr), in atc_pcm_capture_get_resources() 692 pitch = atc_get_pitch((atc->rsr * atc->msr), in atc_pcm_capture_prepare() 795 unsigned int pitch, rsr = atc->pll_rate; in spdif_passthru_playback_get_resources() local 803 while (apcm->substream->runtime->rate > (rsr * desc.msr)) in spdif_passthru_playback_get_resources() 811 pitch = atc_get_pitch(apcm->substream->runtime->rate, (rsr * desc.msr)); in spdif_passthru_playback_get_resources() 1135 if (atc->pll_rate != atc->rsr) in atc_spdif_out_passthru() [all …]
|
D | ctdaio.c | 293 unsigned int rsr; in dai_set_srt_msr() local 295 for (rsr = 0; msr > 1; msr >>= 1) in dai_set_srt_msr() 296 rsr++; in dai_set_srt_msr() 298 dai->hw->dai_srt_set_rsr(dai->ctrl_blk, rsr); in dai_set_srt_msr() 471 unsigned int rsr, msr; in dai_rsc_init() local 483 for (rsr = 0, msr = desc->msr; msr > 1; msr >>= 1) in dai_rsc_init() 484 rsr++; in dai_rsc_init() 486 hw->dai_srt_set_rsr(dai->ctrl_blk, rsr); in dai_rsc_init()
|
D | ctatc.h | 80 unsigned int rsr; /* reference sample rate in Hz */ member 156 unsigned int rsr, unsigned int msr, int chip_type,
|
D | ctsrc.c | 232 unsigned int rsr, msr; in src_default_config_memrd() local 236 for (rsr = 0, msr = src->rsc.msr; msr > 1; msr >>= 1) in src_default_config_memrd() 237 rsr++; in src_default_config_memrd() 239 hw->src_set_rsr(src->rsc.ctrl_blk, rsr); in src_default_config_memrd() 300 unsigned int rsr, msr; in src_default_config_arcrw() local 305 for (rsr = 0, msr = src->rsc.msr; msr > 1; msr >>= 1) in src_default_config_arcrw() 306 rsr++; in src_default_config_arcrw() 308 hw->src_set_rsr(src->rsc.ctrl_blk, rsr); in src_default_config_arcrw()
|
D | cthw20k2.c | 204 static int src_set_rsr(void *blk, unsigned int rsr) in src_set_rsr() argument 208 set_field(&ctl->ctl, SRCCTL_RSR, rsr); in src_set_rsr() 842 static int dai_srt_set_rsr(void *blk, unsigned int rsr) in dai_srt_set_rsr() argument 846 set_field(&ctl->srt, SRTCTL_RSR, rsr); in dai_srt_set_rsr() 1311 static int hw_pll_init(struct hw *hw, unsigned int rsr) in hw_pll_init() argument 1322 set_field(&pllctl, PLLCTL_FD, 48000 == rsr ? 16 - 4 : 147 - 4); in hw_pll_init() 1323 set_field(&pllctl, PLLCTL_RD, 48000 == rsr ? 1 - 1 : 10 - 1); in hw_pll_init() 1328 set_field(&pllctl, PLLCTL_FD, 48000 == rsr ? 16 - 2 : 147 - 2); in hw_pll_init() 2143 err = hw_pll_init(hw, info->rsr); in hw_card_init()
|
D | cthw20k1.c | 204 static int src_set_rsr(void *blk, unsigned int rsr) in src_set_rsr() argument 208 set_field(&ctl->ctl, SRCCTL_RSR, rsr); in src_set_rsr() 852 static int dai_srt_set_rsr(void *blk, unsigned int rsr) in dai_srt_set_rsr() argument 856 set_field(&ctl->srtctl, SRTCTL_RSR, rsr); in dai_srt_set_rsr() 1317 static int hw_pll_init(struct hw *hw, unsigned int rsr) in hw_pll_init() argument 1322 pllctl = (48000 == rsr) ? 0x1480a001 : 0x1480a731; in hw_pll_init() 2017 err = hw_pll_init(hw, info->rsr); in hw_card_init()
|
D | ctpcm.c | 285 runtime->hw.rate_max = atc->rsr * atc->msr; in ct_pcm_capture_open()
|
/linux-4.4.14/drivers/net/ethernet/xircom/ |
D | xirc2ps_cs.c | 983 unsigned rsr, pktlen; in xirc2ps_interrupt() local 1026 rsr = GetByte(XIRCREG0_RSR); in xirc2ps_interrupt() 1027 if (bytes_rcvd > maxrx_bytes && (rsr & PktRxOk)) { in xirc2ps_interrupt() 1032 } else if (rsr & PktRxOk) { in xirc2ps_interrupt() 1038 pr_debug("rsr=%#02x packet_length=%u\n", rsr, pktlen); in xirc2ps_interrupt() 1101 if (!(rsr & PhyPkt)) in xirc2ps_interrupt() 1105 pr_debug("rsr=%#02x\n", rsr); in xirc2ps_interrupt() 1107 if (rsr & PktTooLong) { in xirc2ps_interrupt() 1111 if (rsr & CRCErr) { in xirc2ps_interrupt() 1115 if (rsr & AlignErr) { in xirc2ps_interrupt()
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | mpc5121.h | 17 u32 rsr; /* Reset Status Register */ member
|
/linux-4.4.14/drivers/media/pci/cx23885/ |
D | cx23888-ir.c | 543 int tsr, rsr, rto, ror, tse, rse, rte, roe, kror; in cx23888_ir_irq_handler() local 546 rsr = stats & STATS_RSR; /* Rx FIFO Service Request */ in cx23888_ir_irq_handler() 557 tsr ? "tsr" : " ", rsr ? "rsr" : " ", in cx23888_ir_irq_handler() 591 if ((rse && rsr) || (rte && rto)) { in cx23888_ir_irq_handler()
|
/linux-4.4.14/drivers/media/i2c/cx25840/ |
D | cx25840-ir.c | 532 int tsr, rsr, rto, ror, tse, rse, rte, roe, kror; in cx25840_ir_irq_handler() local 552 rsr = stats & STATS_RSR; /* Rx FIFO Service Request */ in cx25840_ir_irq_handler() 562 tsr ? "tsr" : " ", rsr ? "rsr" : " ", in cx25840_ir_irq_handler() 596 if ((rse && rsr) || (rte && rto)) { in cx25840_ir_irq_handler()
|
/linux-4.4.14/arch/xtensa/boot/boot-redboot/ |
D | bootstrap.S | 57 rsr a5, windowbase
|
/linux-4.4.14/arch/blackfin/include/asm/ |
D | bfin_serial.h | 229 u32 rsr; member
|
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/ |
D | rtl8xxxu.c | 1371 u32 val32, rsr; in rtl8723au_config_channel() local 1378 rsr = rtl8xxxu_read32(priv, REG_RESPONSE_RATE_SET); in rtl8723au_config_channel() 1412 rsr &= ~RSR_RSC_BANDWIDTH_40M; in rtl8723au_config_channel() 1414 rsr |= RSR_RSC_UPPER_SUB_CHANNEL; in rtl8723au_config_channel() 1416 rsr |= RSR_RSC_LOWER_SUB_CHANNEL; in rtl8723au_config_channel() 1417 rtl8xxxu_write32(priv, REG_RESPONSE_RATE_SET, rsr); in rtl8723au_config_channel()
|
/linux-4.4.14/drivers/block/drbd/ |
D | drbd_nl.c | 2134 int rsr; /* re-sync running */ in drbd_adm_net_opts() local 2180 rsr = conn_resync_running(connection); in drbd_adm_net_opts() 2181 if (rsr && strcmp(new_net_conf->csums_alg, old_net_conf->csums_alg)) { in drbd_adm_net_opts() 2199 if (!rsr) { in drbd_adm_net_opts()
|