Home
last modified time | relevance | path

Searched refs:rsr (Results 1 – 25 of 39) sorted by relevance

12

/linux-6.3-rc2/arch/xtensa/kernel/
A Dentry.S73 rsr \flags, ps
80 rsr \flags, ps
126 rsr a0, depc
139 rsr a3, sar
292 rsr a3, sar
626 rsr a3, sar
842 rsr a2, ps
1011 rsr a2, ps
1053 rsr a0, ps
1802 rsr a2, ps
[all …]
A Dvectors.S217 rsr a2, ps
262 rsr a0, ps
272 rsr a0, exccause
293 rsr a3, exccause
312 rsr a3, excsave1
432 rsr a0, ps
443 rsr a0, depc
476 rsr a0, depc
481 rsr a0, depc
522 rsr a0, ps
[all …]
A Dalign.S173 rsr a0, depc
177 rsr a3, excsave1
183 rsr a0, sar
324 rsr a3, excsave1
337 rsr a0, ps
427 rsr a4, icount
432 rsr a3, excsave1
467 rsr a0, exccause
470 rsr a0, ps
473 rsr a0, exccause
[all …]
A Dcoprocessor.S145 rsr a0, ps
155 rsr a3, sar
159 rsr a2, depc
174 rsr a3, exccause
181 rsr a0, cpenable
195 rsr a0, excsave1 # exc_table
A Dhead.S89 rsr a2, excsave1
210 rsr a2, prid
329 rsr a0, prid
/linux-6.3-rc2/arch/xtensa/variants/dc232b/include/variant/
A Dtie-asm.h41 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-6.3-rc2/arch/xtensa/variants/de212/include/variant/
A Dtie-asm.h81 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-6.3-rc2/arch/xtensa/variants/csp/include/variant/
A Dtie-asm.h91 rsr.ACCLO \at1 // MAC16 option
93 rsr.ACCHI \at1 // MAC16 option
103 rsr.BR \at1 // boolean option
105 rsr.SCOMPARE1 \at1 // conditional store option
107 rsr.M0 \at1 // MAC16 option
109 rsr.M1 \at1 // MAC16 option
111 rsr.M2 \at1 // MAC16 option
113 rsr.M3 \at1 // MAC16 option
/linux-6.3-rc2/arch/xtensa/variants/dc233c/include/variant/
A Dtie-asm.h92 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-6.3-rc2/drivers/tty/serial/
A Dapbuart.c73 unsigned int status, ch, rsr, flag; in apbuart_rx_chars() local
85 rsr = UART_GET_STATUS(port) | UART_DUMMY_RSR_RX; in apbuart_rx_chars()
87 if (rsr & UART_STATUS_ERR) { in apbuart_rx_chars()
89 if (rsr & UART_STATUS_BR) { in apbuart_rx_chars()
90 rsr &= ~(UART_STATUS_FE | UART_STATUS_PE); in apbuart_rx_chars()
94 } else if (rsr & UART_STATUS_PE) { in apbuart_rx_chars()
96 } else if (rsr & UART_STATUS_FE) { in apbuart_rx_chars()
99 if (rsr & UART_STATUS_OE) in apbuart_rx_chars()
102 rsr &= port->read_status_mask; in apbuart_rx_chars()
104 if (rsr & UART_STATUS_PE) in apbuart_rx_chars()
[all …]
A Damba-pl010.c115 unsigned int status, ch, flag, rsr, max_count = 256; in pl010_rx_chars() local
129 if (unlikely(rsr & UART01x_RSR_ANY)) { in pl010_rx_chars()
132 if (rsr & UART01x_RSR_BE) { in pl010_rx_chars()
133 rsr &= ~(UART01x_RSR_FE | UART01x_RSR_PE); in pl010_rx_chars()
137 } else if (rsr & UART01x_RSR_PE) in pl010_rx_chars()
139 else if (rsr & UART01x_RSR_FE) in pl010_rx_chars()
141 if (rsr & UART01x_RSR_OE) in pl010_rx_chars()
144 rsr &= port->read_status_mask; in pl010_rx_chars()
146 if (rsr & UART01x_RSR_BE) in pl010_rx_chars()
148 else if (rsr & UART01x_RSR_PE) in pl010_rx_chars()
[all …]
A Dlantiq.c173 unsigned int ch = 0, rsr = 0, fifocnt; in lqasc_rx_chars() local
180 rsr = (__raw_readl(port->membase + LTQ_ASC_STATE) in lqasc_rx_chars()
189 if (rsr & ASCSTATE_ANY) { in lqasc_rx_chars()
190 if (rsr & ASCSTATE_PE) { in lqasc_rx_chars()
194 } else if (rsr & ASCSTATE_FE) { in lqasc_rx_chars()
199 if (rsr & ASCSTATE_ROE) { in lqasc_rx_chars()
205 rsr &= port->read_status_mask; in lqasc_rx_chars()
207 if (rsr & ASCSTATE_PE) in lqasc_rx_chars()
209 else if (rsr & ASCSTATE_FE) in lqasc_rx_chars()
213 if ((rsr & port->ignore_status_mask) == 0) in lqasc_rx_chars()
[all …]
/linux-6.3-rc2/drivers/watchdog/
A Dmpc8xxx_wdt.c161 u32 __iomem *rsr = ioremap(res->start, resource_size(res)); in mpc8xxx_wdt_probe() local
163 if (!rsr) in mpc8xxx_wdt_probe()
166 status = in_be32(rsr) & wdt_type->rsr_mask; in mpc8xxx_wdt_probe()
169 out_be32(rsr, wdt_type->rsr_mask); in mpc8xxx_wdt_probe()
170 iounmap(rsr); in mpc8xxx_wdt_probe()
/linux-6.3-rc2/drivers/staging/vt6655/
A Ddpc.c31 u8 *rsr, *new_rsr, *rssi; in vnt_rx_data() local
76 rsr = skb_data + bytes_received - 1; in vnt_rx_data()
77 if (*rsr & (RSR_IVLDTYP | RSR_IVLDLEN)) in vnt_rx_data()
94 if (!(*rsr & RSR_CRCOK)) in vnt_rx_data()
/linux-6.3-rc2/arch/xtensa/variants/test_kc705_be/include/variant/
A Dtie-asm.h91 rsr.ACCLO \at1 // MAC16 option
93 rsr.ACCHI \at1 // MAC16 option
103 rsr.BR \at1 // boolean option
105 rsr.SCOMPARE1 \at1 // conditional store option
107 rsr.M0 \at1 // MAC16 option
109 rsr.M1 \at1 // MAC16 option
111 rsr.M2 \at1 // MAC16 option
113 rsr.M3 \at1 // MAC16 option
/linux-6.3-rc2/arch/xtensa/variants/test_kc705_hifi/include/variant/
A Dtie-asm.h92 rsr.ACCLO \at1 // MAC16 option
94 rsr.ACCHI \at1 // MAC16 option
104 rsr.M0 \at1 // MAC16 option
106 rsr.M1 \at1 // MAC16 option
108 rsr.M2 \at1 // MAC16 option
110 rsr.M3 \at1 // MAC16 option
112 rsr.BR \at1 // boolean option
114 rsr.SCOMPARE1 \at1 // conditional store option
/linux-6.3-rc2/sound/pci/ctxfi/
A Dcthardware.h58 unsigned int rsr; /* reference sample rate in Hzs*/ member
72 int (*pll_init)(struct hw *hw, unsigned int rsr);
90 int (*src_set_rsr)(void *blk, unsigned int rsr);
153 int (*dai_srt_set_rsr)(void *blk, unsigned int rsr);
A Dctatc.c267 (atc->rsr * atc->msr)); in atc_pcm_playback_prepare()
467 pitch = atc_get_pitch((atc->rsr * atc->msr), in setup_src_node_conf()
484 conf[1].pitch = atc_get_pitch(atc->rsr, in setup_src_node_conf()
528 pitch = atc_get_pitch((atc->rsr * atc->msr), in atc_pcm_capture_get_resources()
794 unsigned int pitch, rsr = atc->pll_rate; in spdif_passthru_playback_get_resources() local
1134 if (atc->pll_rate != atc->rsr) in atc_spdif_out_passthru()
1135 err = atc_pll_init(atc, atc->rsr); in atc_spdif_out_passthru()
1343 info.rsr = atc->rsr; in atc_create_hw_devs()
1567 info.rsr = atc->rsr; in atc_hw_resume()
1673 unsigned int rsr, unsigned int msr, in ct_atc_create() argument
[all …]
A Dctdaio.c289 unsigned int rsr; in dai_set_srt_msr() local
291 for (rsr = 0; msr > 1; msr >>= 1) in dai_set_srt_msr()
292 rsr++; in dai_set_srt_msr()
294 dai->hw->dai_srt_set_rsr(dai->ctrl_blk, rsr); in dai_set_srt_msr()
468 unsigned int rsr, msr; in dai_rsc_init() local
480 for (rsr = 0, msr = desc->msr; msr > 1; msr >>= 1) in dai_rsc_init()
481 rsr++; in dai_rsc_init()
483 hw->dai_srt_set_rsr(dai->ctrl_blk, rsr); in dai_rsc_init()
A Dctatc.h76 unsigned int rsr; /* reference sample rate in Hz */ member
152 unsigned int rsr, unsigned int msr, int chip_type,
A Dctsrc.c228 unsigned int rsr, msr; in src_default_config_memrd() local
232 for (rsr = 0, msr = src->rsc.msr; msr > 1; msr >>= 1) in src_default_config_memrd()
233 rsr++; in src_default_config_memrd()
235 hw->src_set_rsr(src->rsc.ctrl_blk, rsr); in src_default_config_memrd()
296 unsigned int rsr, msr; in src_default_config_arcrw() local
301 for (rsr = 0, msr = src->rsc.msr; msr > 1; msr >>= 1) in src_default_config_arcrw()
302 rsr++; in src_default_config_arcrw()
304 hw->src_set_rsr(src->rsc.ctrl_blk, rsr); in src_default_config_arcrw()
/linux-6.3-rc2/drivers/net/ethernet/xircom/
A Dxirc2ps_cs.c976 unsigned rsr, pktlen; in xirc2ps_interrupt() local
1019 rsr = GetByte(XIRCREG0_RSR); in xirc2ps_interrupt()
1020 if (bytes_rcvd > maxrx_bytes && (rsr & PktRxOk)) { in xirc2ps_interrupt()
1025 } else if (rsr & PktRxOk) { in xirc2ps_interrupt()
1031 pr_debug("rsr=%#02x packet_length=%u\n", rsr, pktlen); in xirc2ps_interrupt()
1094 if (!(rsr & PhyPkt)) in xirc2ps_interrupt()
1098 pr_debug("rsr=%#02x\n", rsr); in xirc2ps_interrupt()
1100 if (rsr & PktTooLong) { in xirc2ps_interrupt()
1104 if (rsr & CRCErr) { in xirc2ps_interrupt()
1108 if (rsr & AlignErr) { in xirc2ps_interrupt()
/linux-6.3-rc2/kernel/rcu/
A Dtree_stall.h433 struct rcu_snap_record rsr, *rsrp; in print_cpu_stat_info() local
444 rsr.cputime_irq = kcpustat_field(kcsp, CPUTIME_IRQ, cpu); in print_cpu_stat_info()
445 rsr.cputime_softirq = kcpustat_field(kcsp, CPUTIME_SOFTIRQ, cpu); in print_cpu_stat_info()
446 rsr.cputime_system = kcpustat_field(kcsp, CPUTIME_SYSTEM, cpu); in print_cpu_stat_info()
454 div_u64(rsr.cputime_irq - rsrp->cputime_irq, NSEC_PER_MSEC), in print_cpu_stat_info()
455 div_u64(rsr.cputime_softirq - rsrp->cputime_softirq, NSEC_PER_MSEC), in print_cpu_stat_info()
456 div_u64(rsr.cputime_system - rsrp->cputime_system, NSEC_PER_MSEC), in print_cpu_stat_info()
/linux-6.3-rc2/arch/xtensa/lib/
A Dmulsi3.S59 rsr a5, ACCLO
61 rsr a4, ACCLO
/linux-6.3-rc2/arch/xtensa/variants/test_mmuhifi_c3/include/variant/
A Dtie-asm.h40 rsr \at1, BR // boolean option
46 rsr \at1, SCOMPARE1 // conditional store option

Completed in 44 milliseconds

12