Lines Matching refs:status
152 * @status: adapter status
164 u32 *status, u32 * r1, u32 * r2, u32 * r3, u32 * r4)
230 * Pull the synch status from Mailbox 0.
232 if (status)
233 *status = readl(&dev->IndexRegs->Mailbox[0]);
332 u32 status = rx_readl(dev, MUnit.OMRx[0]);
337 if (unlikely(status & SELF_TEST_FAILED))
342 if (unlikely(status & KERNEL_PANIC)) {
351 if (likely((status & 0xFF000000L) == 0xBC000000L))
352 return (status >> 16) & 0xFF;
383 if (unlikely(!(status & KERNEL_UP_AND_RUNNING)))
546 unsigned long status;
559 dev->OIMR = status = rx_readb (dev, MUnit.OIMR);
561 if (((status & 0x0c) != 0x0c) || dev->init_reset) {
573 status = rx_readl(dev, MUnit.OMRx[0]);
574 if (status & KERNEL_PANIC) {
583 status = rx_readl(dev, MUnit.OMRx[0]);
584 if (status & SELF_TEST_FAILED) {
591 if (status & MONITOR_PANIC) {
599 while (!((status = rx_readl(dev, MUnit.OMRx[0])) & KERNEL_UP_AND_RUNNING))
602 (status & (KERNEL_PANIC|SELF_TEST_FAILED|MONITOR_PANIC))) ||
604 printk(KERN_ERR "%s%d: adapter kernel failed to start, init status = %lx.\n",
605 dev->name, instance, status);
609 ((status & (KERNEL_PANIC|SELF_TEST_FAILED|MONITOR_PANIC)) ||