HomeSort by: relevance | last modified time | path
    Searched defs:esr (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/dev/mii/
ihphy.c 229 uint16_t esr, bmcr, gtsr; local in function:ihphy_status
236 PHY_READ(sc, IHPHY_MII_ESR, &esr);
238 if (esr & IHPHY_ESR_LINK)
251 if ((esr & IHPHY_ESR_ANEG_STAT) == 0) {
258 switch (esr & IHPHY_ESR_SPEED) {
281 if (esr & IHPHY_ESR_DUPLEX)
  /src/sys/arch/powerpc/ibm4xx/dev/
ecc_plb.c 141 u_int32_t esr, ear; local in function:ecc_plb_intr
150 esr = mfdcr(DCR_SDRAM0_CFGDATA);
160 if (esr == 0x00) {
178 ue = (esr & SDRAM0_ECCESR_UE) != 0x00;
180 printf("ECC: Error CNT=%d ESR=%x EAR=%x %s BKNE=%d%d%d%d "
182 sc->sc_ecc_cnt, esr, ear,
184 ((esr & SDRAM0_ECCESR_BKEN(0)) != 0x00),
185 ((esr & SDRAM0_ECCESR_BKEN(1)) != 0x00),
186 ((esr & SDRAM0_ECCESR_BKEN(2)) != 0x00),
187 ((esr & SDRAM0_ECCESR_BKEN(3)) != 0x00)
    [all...]
mal.c 214 uint32_t esr; local in function:mal_serr_intr
216 esr = mfdcr(DCR_MAL0_ESR);
219 aprint_error("MAL SERR: ESR 0x%08x\n", esr);
222 mtdcr(DCR_MAL0_ESR, esr);
  /src/sys/arch/aarch64/aarch64/
fault.c 101 is_fatal_abort(uint32_t esr)
105 fsc = __SHIFTOUT(esr, ESR_ISS_DATAABORT_DFSC);
137 uint32_t esr, fsc, rw; local in function:data_abort_handler
154 esr = tf->tf_esr;
155 rw = __SHIFTOUT(esr, ESR_ISS_DATAABORT_WnR); /* 0 if IFSC */
157 fatalabort = is_fatal_abort(esr);
179 else if (__SHIFTOUT(esr, ESR_ISS_DATAABORT_CM))
241 fsc = __SHIFTOUT(esr, ESR_ISS_DATAABORT_DFSC); /* also IFSC */
252 (void *)tf->tf_far, esr);
256 (void *)tf->tf_far, esr);
    [all...]
trap.c 200 const uint32_t esr = tf->tf_esr; local in function:trap_el1h_sync
201 const uint32_t eclass = __SHIFTOUT(esr, ESR_EC); /* exception class */
222 if (__SHIFTOUT(esr, ESR_ISS) == 0x40d &&
262 " esr=%08x", eclass_trapname(eclass), tf->tf_pc, tf->tf_sp,
263 esr);
413 const uint32_t esr = tf->tf_esr; local in function:trap_el0_sync
414 const uint32_t eclass = __SHIFTOUT(esr, ESR_EC); /* exception class */
442 do_trapsignal(l, SIGFPE, FPE_FLTUND, NULL, esr); /* XXX */
447 do_trapsignal(l, SIGBUS, BUS_ADRALN, (void *)tf->tf_pc, esr);
451 do_trapsignal(l, SIGBUS, BUS_ADRALN, (void *)tf->tf_sp, esr);
825 const uint32_t esr = tf->tf_esr; local in function:trap_el0_32sync
    [all...]
  /src/sys/arch/powerpc/include/
db_machdep.h 59 u_int32_t esr; member in struct:powerpc_saved_state
  /src/sys/dev/pcmcia/
if_xi.c 273 uint8_t esr, rsr, isr, rx_status; local in function:xi_intr
289 esr = bus_space_read_1(sc->sc_bst, sc->sc_bsh, ESR);
317 while (esr & FULL_PKT_RCV) {
332 esr = bus_space_read_1(sc->sc_bst, sc->sc_bsh, ESR);
  /src/sys/arch/x86/x86/
lapic.c 828 uint32_t esr; local in function:i82489_ipi_init
845 esr = i82489_readreg(LAPIC_ESR);
846 if (esr != 0)
847 aprint_debug("%s: ESR %08x\n", __func__, esr);
855 uint32_t esr; local in function:i82489_ipi_startup
869 esr = i82489_readreg(LAPIC_ESR);
870 if (esr != 0)
871 aprint_debug("%s: ESR %08x\n", __func__, esr);
    [all...]
  /src/sys/arch/arm/sunxi/
sun8i_crypto.c 306 "uint32_t"/*esr*/);
1008 uint32_t done, esr; local in function:sun8i_crypto_intr
1011 !sun8i_crypto_poll(sc, &done, &esr))
1017 sc->sc_esr |= esr;
1053 uint32_t done, esr; local in function:sun8i_crypto_worker
1063 esr = sc->sc_esr;
1075 if (sun8i_crypto_done(sc, done, esr, getticks())) {
1082 * sun8i_crypto_poll(sc, &done, &esr)
1084 * Poll for completion. Sets done and esr to the mask of done
1092 uint32_t isr, esr; local in function:sun8i_crypto_poll
1318 uint32_t done, esr; local in function:sun8i_crypto_rng_attach
1486 uint32_t done, esr; local in function:sun8i_crypto_selftest
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_linux.cc 1750 uint64_t esr; member in struct:__sanitizer::__sanitizer_esr_context
1753 static bool Aarch64GetESR(ucontext_t *ucontext, u64 *esr) {
1760 *esr = ((__sanitizer_esr_context *)ctx)->esr;
1847 u64 esr; local in function:__sanitizer::SignalContext::GetWriteFlag
1848 if (!Aarch64GetESR(ucontext, &esr)) return UNKNOWN;
1849 return esr & ESR_ELx_WNR ? WRITE : READ;

Completed in 27 milliseconds