Home
last modified time | relevance | path

Searched refs:stat0 (Results 1 – 8 of 8) sorted by relevance

/arch/alpha/kernel/
Dcore_apecs.c129 unsigned int stat0, value; in conf_read() local
137 stat0 = *(vuip)APECS_IOC_DCSR; in conf_read()
138 *(vuip)APECS_IOC_DCSR = stat0; in conf_read()
140 DBGC(("conf_read: APECS DCSR was 0x%x\n", stat0)); in conf_read()
179 stat0 = *(vuip)APECS_IOC_DCSR; in conf_read()
180 DBGC(("conf_read: APECS DCSR after read 0x%x\n", stat0)); in conf_read()
183 if (stat0 & 0xffe0U) { in conf_read()
185 if (!(stat0 & 0x0800)) { in conf_read()
186 printk("apecs.c:conf_read: got stat0=%x\n", stat0); in conf_read()
190 *(vuip)APECS_IOC_DCSR = stat0; in conf_read()
[all …]
Dcore_lca.c131 unsigned long flags, code, stat0; in conf_read() local
137 stat0 = *(vulp)LCA_IOC_STAT0; in conf_read()
138 *(vulp)LCA_IOC_STAT0 = stat0; in conf_read()
145 stat0 = *(vulp)LCA_IOC_STAT0; in conf_read()
146 if (stat0 & LCA_IOC_STAT0_ERR) { in conf_read()
147 code = ((stat0 >> LCA_IOC_STAT0_CODE_SHIFT) in conf_read()
150 printk("lca.c:conf_read: got stat0=%lx\n", stat0); in conf_read()
154 *(vulp)LCA_IOC_STAT0 = stat0; in conf_read()
169 unsigned long flags, code, stat0; in conf_write() local
174 stat0 = *(vulp)LCA_IOC_STAT0; in conf_write()
[all …]
Dcore_mcpcia.c91 unsigned int stat0, value, cpu; in conf_read() local
101 stat0 = *(vuip)MCPCIA_CAP_ERR(mid); in conf_read()
102 *(vuip)MCPCIA_CAP_ERR(mid) = stat0; in conf_read()
105 DBG_CFG(("conf_read: MCPCIA_CAP_ERR(%d) was 0x%x\n", mid, stat0)); in conf_read()
139 unsigned int stat0, cpu; in conf_write() local
146 stat0 = *(vuip)MCPCIA_CAP_ERR(mid); in conf_write()
147 *(vuip)MCPCIA_CAP_ERR(mid) = stat0; mb(); in conf_write()
149 DBG_CFG(("conf_write: MCPCIA CAP_ERR(%d) was 0x%x\n", mid, stat0)); in conf_write()
Dcore_cia.c108 int stat0, value; in conf_read() local
115 stat0 = *(vip)CIA_IOC_CIA_ERR; in conf_read()
116 *(vip)CIA_IOC_CIA_ERR = stat0; in conf_read()
163 int stat0, cia_cfg = 0; in conf_write() local
169 stat0 = *(vip)CIA_IOC_CIA_ERR; in conf_write()
170 *(vip)CIA_IOC_CIA_ERR = stat0; in conf_write()
/arch/mips/include/asm/octeon/
Dcvmx-pip.h371 union cvmx_pip_stat0_prtx stat0; in cvmx_pip_get_port_status() local
389 stat0.u64 = cvmx_read_csr(CVMX_PIP_STAT0_PRTX(port_num)); in cvmx_pip_get_port_status()
406 status->dropped_octets = stat0.s.drp_octs; in cvmx_pip_get_port_status()
407 status->dropped_packets = stat0.s.drp_pkts; in cvmx_pip_get_port_status()
Dcvmx-spxx-defs.h72 uint64_t stat0:1; member
74 uint64_t stat0:1;
/arch/arm/common/
Dsa1111.c201 unsigned int stat0, stat1, i; in sa1111_irq_handler() local
205 stat0 = sa1111_readl(mapbase + SA1111_INTSTATCLR0); in sa1111_irq_handler()
208 sa1111_writel(stat0, mapbase + SA1111_INTSTATCLR0); in sa1111_irq_handler()
214 if (stat0 == 0 && stat1 == 0) { in sa1111_irq_handler()
219 for (i = 0; stat0; i++, stat0 >>= 1) in sa1111_irq_handler()
220 if (stat0 & 1) in sa1111_irq_handler()
/arch/mips/cavium-octeon/executive/
Dcvmx-spi.c220 if (spxx_bist_stat.s.stat0) in cvmx_spi_reset_cb()