14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * CDDL HEADER START
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * The contents of this file are subject to the terms of the
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Common Development and Distribution License (the "License").
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * You may not use this file except in compliance with the License.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * or http://www.opensolaris.org/os/licensing.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * See the License for the specific language governing permissions
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * and limitations under the License.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * When distributing Covered Code, include this CDDL HEADER in each
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * If applicable, add the following below this CDDL HEADER, with the
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * fields enclosed by brackets "[]" replaced with your own identifying
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * information: Portions Copyright [yyyy] [name of copyright owner]
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * CDDL HEADER END
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
104a37ccc1f0447ab5567644c98d5ed7266d3211Zach Kissel * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Use is subject to license terms.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#pragma dictionary "SUN4V"
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Eversholt rules for the N2 PIU extention to Fire nexus driver
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define HB_FIT 400
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define NONFATAL_COUNT 10
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define NONFATAL_TIME 1hour
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define PCIEX_DEV_FIT 1000
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define LINK_EVENTS_COUNT 10
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define LINK_EVENTS_TIME 1h
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Test for primary or secondary ereports
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define IS_PRIMARY (payloadprop("primary"))
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define IS_SECONDARY (! payloadprop("primary"))
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * payload: mmu-tfsr
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Extract the request id, the BDF value, in the MMU TFSR register
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * PRM 2.0, pg 243
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Request ID: bits 15:0
14ea4bb737263733ad80a36b4f73f681c30a6b45sd *
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Example:
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * 0x7766554433221100
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * ^^^^
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define MMU_REQ_ID_BIT_MODULO (1 << 16)
14ea4bb737263733ad80a36b4f73f681c30a6b45sd#define MMU_MATCH_BDF(mmu_tfsr, b, d, f) \
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ( IS_PRIMARY && \
14ea4bb737263733ad80a36b4f73f681c30a6b45sd (((mmu_tfsr) % MMU_REQ_ID_BIT_MODULO) == ((b << 8) | (d << 3) | f)) \
14ea4bb737263733ad80a36b4f73f681c30a6b45sd )
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Faults, upsets and defects
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* N2 Asic */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdfru hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdasru hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.fire.asic@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.n2.soc@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.n2.crossbar@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.n2.dmu@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.n2.ncu@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.n2.siu@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent fault.io.n2.niu@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd FITrate=HB_FIT, FRU=hostbridge/pciexrc, ASRU=hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* No diagnosis */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent upset.io.fire.nodiag@hostbridge;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Additional "DMC" errors to fire.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * N2 asic parity error
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.dmu.iotsbdesc_dpe@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Additional "PEC" errors to fire.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.peu.err_sds_los@hostbridge/pciexrc{within(5s)};
59ac0c1669407488b67ae9e273667a340dccc611davemqevent ereport.io.n2.peu.lwc@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.peu.nfp@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Unique SOC errors to N2
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.soc */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncumondotable@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncuctagce@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncuinttable@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncudataparity@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.crossbar */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncupcxdata@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncudmucredit@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.dmu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siidmuctague@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siidmuctagce@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siidmuaparity@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siidmudparity@hostbridge/pciexrc{within(5s)};
104a37ccc1f0447ab5567644c98d5ed7266d3211Zach Kisselevent ereport.io.n2.soc.dmuinternal@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.ncu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncupcxue@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.dmuncucredit@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncumondofifo@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncucpxue@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncudmuue@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.siu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.ncuctague@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.sioctague@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.dmusiicredit@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.dmudataparity@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.sioctagce@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.dmuctagce@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.dmuctague@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.niu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siiniuctagce@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siiniuctague@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siiniuaparity@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.siiniudparity@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.niuctague@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.niuctagce@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.n2.soc.niudataparity@hostbridge/pciexrc{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.niu/niufn */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.device.inval_state@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.device.no_response@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.device.stall@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.device.badint_limit@niu/niufn{within(5s)};
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephhevent ereport.io.device.intern_corr@niu/niufn{within(5s)};
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephhevent ereport.io.device.intern_uncorr@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.device.nf-device@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Fault at the adjacent node which is right below the Fire ASIC
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent error.io.fire.pec.adjacentnode@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.fire.pec.adjacentnode@hostbridge/pciexrc (0) ->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.peu.nfp@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * DMU N2 asic parity error
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.fire.asic@hostbridge/pciexrc (0)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.dmu.iotsbdesc_dpe@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/*
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * Surprise remove or serdes los, similar to fire ldn event,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd * don't diag.
14ea4bb737263733ad80a36b4f73f681c30a6b45sd */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop upset.io.fire.nodiag@hostbridge (0)->
59ac0c1669407488b67ae9e273667a340dccc611davemq ereport.io.n2.peu.err_sds_los@hostbridge/pciexrc,
59ac0c1669407488b67ae9e273667a340dccc611davemq ereport.io.n2.peu.lwc@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* SOC Errors */
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.soc */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.soc@hostbridge/pciexrc (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncumondotable@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncuctagce@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncuinttable@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncudataparity@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.crossbar */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.crossbar@hostbridge/pciexrc (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncudmucredit@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncupcxdata@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.dmu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.dmu@hostbridge/pciexrc (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siidmuctague@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siidmuctagce@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siidmuaparity@hostbridge/pciexrc,
104a37ccc1f0447ab5567644c98d5ed7266d3211Zach Kissel ereport.io.n2.soc.siidmudparity@hostbridge/pciexrc,
104a37ccc1f0447ab5567644c98d5ed7266d3211Zach Kissel ereport.io.n2.soc.dmuinternal@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.ncu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.ncu@hostbridge/pciexrc (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncupcxue@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.dmuncucredit@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncumondofifo@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncucpxue@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncudmuue@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.siu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.siu@hostbridge/pciexrc (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.ncuctague@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.sioctague@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.dmusiicredit@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.dmudataparity@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.sioctagce@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.dmuctagce@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.dmuctague@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.n2.niu */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.niu@hostbridge/pciexrc (0)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siiniuctague@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siiniuaparity@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siiniudparity@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.siiniuctagce@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.niuctague@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.niuctagce@hostbridge/pciexrc,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.n2.soc.niudataparity@hostbridge/pciexrc;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* n2 niu/niufn */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent error.io.device.f-device@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent error.io.device.nf-device@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent error.io.service.restored@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.service.lost@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.service.restored@niu/niufn{within(30s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.service.degraded@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent ereport.io.service.unaffected@niu/niufn{within(5s)};
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault error propogation */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop fault.io.n2.niu@hostbridge/pciexrc (0)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd error.io.device.f-device@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd error.io.device.nf-device@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sd/* fault.io.niu/niufn */
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.service.restored@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.lost@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.degraded@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.service.restored@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.restored@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.device.f-device@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.inval_state@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.no_response@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.stall@niu/niufn,
3779d2d24dac3a9a84c5eefdeee36f7559299b2cstephh ereport.io.device.badint_limit@niu/niufn,
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephh ereport.io.device.intern_corr@niu/niufn,
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephh ereport.io.device.intern_uncorr@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.device.f-device@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.lost@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.degraded@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdengine serd.io.device.nonfatal@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd N=NONFATAL_COUNT, T=NONFATAL_TIME, method=persistent,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd trip=ereport.io.device.nf-device@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdevent upset.io.device.nonfatal@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd engine=serd.io.device.nonfatal@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.device.nf-device@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.nf-device@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop error.io.device.nf-device@niu/niufn (0)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.inval_state@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.no_response@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.stall@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.badint_limit@niu/niufn,
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephh ereport.io.device.intern_corr@niu/niufn,
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephh ereport.io.device.intern_uncorr@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.unaffected@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd error.io.service.restored@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop upset.io.device.nonfatal@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.inval_state@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.no_response@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.device.stall@niu/niufn,
3779d2d24dac3a9a84c5eefdeee36f7559299b2cstephh ereport.io.device.badint_limit@niu/niufn,
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephh ereport.io.device.intern_corr@niu/niufn,
05d7cf284e1a38c8b80fcd4e074f782f3f34717estephh ereport.io.device.intern_uncorr@niu/niufn;
14ea4bb737263733ad80a36b4f73f681c30a6b45sd
14ea4bb737263733ad80a36b4f73f681c30a6b45sdprop upset.io.device.nonfatal@niu/niufn (1)->
14ea4bb737263733ad80a36b4f73f681c30a6b45sd ereport.io.service.unaffected@niu/niufn,
14ea4bb737263733ad80a36b4f73f681c30a6b45sd error.io.service.restored@niu/niufn;