xref: /illumos-gate/usr/src/uts/common/sys/fm/protocol.h (revision cbf75e67acb6c32a2f4884f28a839d59f7988d37)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5ea8dc4b6Seschrock  * Common Development and Distribution License (the "License").
6ea8dc4b6Seschrock  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21d9638e54Smws 
227c478bd9Sstevel@tonic-gate /*
2395efa359SEric Schrock  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #ifndef	_SYS_FM_PROTOCOL_H
287c478bd9Sstevel@tonic-gate #define	_SYS_FM_PROTOCOL_H
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
317c478bd9Sstevel@tonic-gate extern "C" {
327c478bd9Sstevel@tonic-gate #endif
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #ifdef _KERNEL
357c478bd9Sstevel@tonic-gate #include <sys/varargs.h>
367c478bd9Sstevel@tonic-gate #include <sys/nvpair.h>
377c478bd9Sstevel@tonic-gate #else
387c478bd9Sstevel@tonic-gate #include <libnvpair.h>
397c478bd9Sstevel@tonic-gate #include <stdarg.h>
407c478bd9Sstevel@tonic-gate #endif
417c478bd9Sstevel@tonic-gate #include <sys/processor.h>
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate /* FM common member names */
447c478bd9Sstevel@tonic-gate #define	FM_CLASS			"class"
457c478bd9Sstevel@tonic-gate #define	FM_VERSION			"version"
467c478bd9Sstevel@tonic-gate 
477c478bd9Sstevel@tonic-gate /* FM event class values */
487c478bd9Sstevel@tonic-gate #define	FM_EREPORT_CLASS		"ereport"
497c478bd9Sstevel@tonic-gate #define	FM_FAULT_CLASS			"fault"
507c478bd9Sstevel@tonic-gate #define	FM_RSRC_CLASS			"resource"
517c478bd9Sstevel@tonic-gate #define	FM_LIST_EVENT			"list"
52d9638e54Smws 
53d9638e54Smws /* FM list.* event class values */
547c478bd9Sstevel@tonic-gate #define	FM_LIST_SUSPECT_CLASS		FM_LIST_EVENT ".suspect"
55d9638e54Smws #define	FM_LIST_ISOLATED_CLASS		FM_LIST_EVENT ".isolated"
56d9638e54Smws #define	FM_LIST_REPAIRED_CLASS		FM_LIST_EVENT ".repaired"
5725c6ff4bSstephh #define	FM_LIST_UPDATED_CLASS		FM_LIST_EVENT ".updated"
5825c6ff4bSstephh #define	FM_LIST_RESOLVED_CLASS		FM_LIST_EVENT ".resolved"
597c478bd9Sstevel@tonic-gate 
607c478bd9Sstevel@tonic-gate /* ereport class subcategory values */
617c478bd9Sstevel@tonic-gate #define	FM_ERROR_CPU			"cpu"
627c478bd9Sstevel@tonic-gate #define	FM_ERROR_IO			"io"
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate /* ereport version and payload member names */
657c478bd9Sstevel@tonic-gate #define	FM_EREPORT_VERS0		0
667c478bd9Sstevel@tonic-gate #define	FM_EREPORT_VERSION		FM_EREPORT_VERS0
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate /* ereport payload member names */
697c478bd9Sstevel@tonic-gate #define	FM_EREPORT_DETECTOR		"detector"
707c478bd9Sstevel@tonic-gate #define	FM_EREPORT_ENA			"ena"
717c478bd9Sstevel@tonic-gate 
72d9638e54Smws /* list.* event payload member names */
737c478bd9Sstevel@tonic-gate #define	FM_LIST_EVENT_SIZE		"list-sz"
747c478bd9Sstevel@tonic-gate 
7525c6ff4bSstephh /*
7625c6ff4bSstephh  * list.suspect, isolated, updated, repaired and resolved
7725c6ff4bSstephh  * versions/payload member names.
7825c6ff4bSstephh  */
797c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_UUID			"uuid"
807c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DIAG_CODE		"code"
817c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DIAG_TIME		"diag-time"
827c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DE			"de"
837c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_FAULT_LIST		"fault-list"
847c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_FAULT_SZ		"fault-list-sz"
85d9638e54Smws #define	FM_SUSPECT_FAULT_STATUS		"fault-status"
867c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_MESSAGE		"message"
87b7d3956bSstephh #define	FM_SUSPECT_RETIRE		"retire"
88b7d3956bSstephh #define	FM_SUSPECT_RESPONSE		"response"
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_VERS0		0
917c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_VERSION		FM_SUSPECT_VERS0
927c478bd9Sstevel@tonic-gate 
9344743693Sstephh #define	FM_SUSPECT_FAULTY		0x1
9444743693Sstephh #define	FM_SUSPECT_UNUSABLE		0x2
9544743693Sstephh #define	FM_SUSPECT_NOT_PRESENT		0x4
9625c6ff4bSstephh #define	FM_SUSPECT_DEGRADED		0x8
9725c6ff4bSstephh #define	FM_SUSPECT_REPAIRED		0x10
9825c6ff4bSstephh #define	FM_SUSPECT_REPLACED		0x20
9925c6ff4bSstephh #define	FM_SUSPECT_ACQUITTED		0x40
10044743693Sstephh 
1017c478bd9Sstevel@tonic-gate /* fault event versions and payload member names */
1027c478bd9Sstevel@tonic-gate #define	FM_FAULT_VERS0			0
1037c478bd9Sstevel@tonic-gate #define	FM_FAULT_VERSION		FM_FAULT_VERS0
1047c478bd9Sstevel@tonic-gate 
1057c478bd9Sstevel@tonic-gate #define	FM_FAULT_ASRU			"asru"
1067c478bd9Sstevel@tonic-gate #define	FM_FAULT_FRU			"fru"
1077c478bd9Sstevel@tonic-gate #define	FM_FAULT_FRU_LABEL		"fru-label"
1087c478bd9Sstevel@tonic-gate #define	FM_FAULT_CERTAINTY		"certainty"
1097c478bd9Sstevel@tonic-gate #define	FM_FAULT_RESOURCE		"resource"
1109dd0f810Scindi #define	FM_FAULT_LOCATION		"location"
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate /* resource event versions and payload member names */
1137c478bd9Sstevel@tonic-gate #define	FM_RSRC_VERS0			0
1147c478bd9Sstevel@tonic-gate #define	FM_RSRC_VERSION			FM_RSRC_VERS0
1157c478bd9Sstevel@tonic-gate #define	FM_RSRC_RESOURCE		"resource"
1167c478bd9Sstevel@tonic-gate 
117d9638e54Smws /* resource.fm.asru.* payload member names */
1187c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_UUID		"uuid"
119d9638e54Smws #define	FM_RSRC_ASRU_CODE		"code"
1207c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_FAULTY		"faulty"
12125c6ff4bSstephh #define	FM_RSRC_ASRU_REPAIRED		"repaired"
12225c6ff4bSstephh #define	FM_RSRC_ASRU_REPLACED		"replaced"
12325c6ff4bSstephh #define	FM_RSRC_ASRU_ACQUITTED		"acquitted"
1247c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_UNUSABLE		"unusable"
1257c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_EVENT		"event"
1267c478bd9Sstevel@tonic-gate 
127d9638e54Smws /* resource.fm.xprt.* versions and payload member names */
128d9638e54Smws #define	FM_RSRC_XPRT_VERS0		0
129d9638e54Smws #define	FM_RSRC_XPRT_VERSION		FM_RSRC_XPRT_VERS0
130d9638e54Smws #define	FM_RSRC_XPRT_UUID		"uuid"
131d9638e54Smws #define	FM_RSRC_XPRT_SUBCLASS		"subclass"
132*cbf75e67SStephen Hanson #define	FM_RSRC_XPRT_FAULT_STATUS	"fault-status"
133*cbf75e67SStephen Hanson #define	FM_RSRC_XPRT_FAULT_HAS_ASRU	"fault-has-asru"
134d9638e54Smws 
1357c478bd9Sstevel@tonic-gate /*
1367c478bd9Sstevel@tonic-gate  * FM ENA Format Macros
1377c478bd9Sstevel@tonic-gate  */
1387c478bd9Sstevel@tonic-gate #define	ENA_FORMAT_MASK			0x3
1397c478bd9Sstevel@tonic-gate #define	ENA_FORMAT(ena)			((ena) & ENA_FORMAT_MASK)
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate /* ENA format types */
1427c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT0			0
1437c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT1			1
1447c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT2			2
1457c478bd9Sstevel@tonic-gate 
1467c478bd9Sstevel@tonic-gate /* Format 1 */
1477c478bd9Sstevel@tonic-gate #define	ENA_FMT1_GEN_MASK		0x00000000000003FCull
1487c478bd9Sstevel@tonic-gate #define	ENA_FMT1_ID_MASK		0xFFFFFFFFFFFFFC00ull
1497c478bd9Sstevel@tonic-gate #define	ENA_FMT1_CPUID_MASK		0x00000000000FFC00ull
1507c478bd9Sstevel@tonic-gate #define	ENA_FMT1_TIME_MASK		0xFFFFFFFFFFF00000ull
1517c478bd9Sstevel@tonic-gate #define	ENA_FMT1_GEN_SHFT		2
1527c478bd9Sstevel@tonic-gate #define	ENA_FMT1_ID_SHFT		10
1537c478bd9Sstevel@tonic-gate #define	ENA_FMT1_CPUID_SHFT		ENA_FMT1_ID_SHFT
1547c478bd9Sstevel@tonic-gate #define	ENA_FMT1_TIME_SHFT		20
1557c478bd9Sstevel@tonic-gate 
1567c478bd9Sstevel@tonic-gate /* Format 2 */
1577c478bd9Sstevel@tonic-gate #define	ENA_FMT2_GEN_MASK		0x00000000000003FCull
1587c478bd9Sstevel@tonic-gate #define	ENA_FMT2_ID_MASK		0xFFFFFFFFFFFFFC00ull
1597c478bd9Sstevel@tonic-gate #define	ENA_FMT2_TIME_MASK		ENA_FMT2_ID_MASK
1607c478bd9Sstevel@tonic-gate #define	ENA_FMT2_GEN_SHFT		2
1617c478bd9Sstevel@tonic-gate #define	ENA_FMT2_ID_SHFT		10
1627c478bd9Sstevel@tonic-gate #define	ENA_FMT2_TIME_SHFT		ENA_FMT2_ID_SHFT
1637c478bd9Sstevel@tonic-gate 
1647c478bd9Sstevel@tonic-gate /* Common FMRI type names */
1657c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTHORITY		"authority"
1667c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME			"scheme"
1677c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTHORITY		"svc-authority"
168825ba0f2Srobj #define	FM_FMRI_FACILITY		"facility"
1697c478bd9Sstevel@tonic-gate 
1707c478bd9Sstevel@tonic-gate /* FMRI authority-type member names */
1717c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_CHASSIS		"chassis-id"
1727c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_PRODUCT		"product-id"
1737c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_DOMAIN		"domain-id"
1747c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_SERVER		"server-id"
1757c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_HOST		"host-id"
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate #define	FM_AUTH_VERS0			0
1787c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_VERSION		FM_AUTH_VERS0
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate /* scheme name values */
1817c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_FMD		"fmd"
1827c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_DEV		"dev"
1837c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_HC		"hc"
1847c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_SVC		"svc"
1857c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_CPU		"cpu"
1867c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_MEM		"mem"
1877c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_MOD		"mod"
1887c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_PKG		"pkg"
1897c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_LEGACY		"legacy-hc"
190ea8dc4b6Seschrock #define	FM_FMRI_SCHEME_ZFS		"zfs"
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate /* Scheme versions */
1937c478bd9Sstevel@tonic-gate #define	FMD_SCHEME_VERSION0		0
1947c478bd9Sstevel@tonic-gate #define	FM_FMD_SCHEME_VERSION		FMD_SCHEME_VERSION0
1957c478bd9Sstevel@tonic-gate #define	DEV_SCHEME_VERSION0		0
1967c478bd9Sstevel@tonic-gate #define	FM_DEV_SCHEME_VERSION		DEV_SCHEME_VERSION0
1977c478bd9Sstevel@tonic-gate #define	FM_HC_VERS0			0
1987c478bd9Sstevel@tonic-gate #define	FM_HC_SCHEME_VERSION		FM_HC_VERS0
1997c478bd9Sstevel@tonic-gate #define	CPU_SCHEME_VERSION0		0
2007aec1d6eScindi #define	CPU_SCHEME_VERSION1		1
2017aec1d6eScindi #define	FM_CPU_SCHEME_VERSION		CPU_SCHEME_VERSION1
2027c478bd9Sstevel@tonic-gate #define	MEM_SCHEME_VERSION0		0
2037c478bd9Sstevel@tonic-gate #define	FM_MEM_SCHEME_VERSION		MEM_SCHEME_VERSION0
2047c478bd9Sstevel@tonic-gate #define	MOD_SCHEME_VERSION0		0
2057c478bd9Sstevel@tonic-gate #define	FM_MOD_SCHEME_VERSION		MOD_SCHEME_VERSION0
2067c478bd9Sstevel@tonic-gate #define	PKG_SCHEME_VERSION0		0
2077c478bd9Sstevel@tonic-gate #define	FM_PKG_SCHEME_VERSION		PKG_SCHEME_VERSION0
2087c478bd9Sstevel@tonic-gate #define	LEGACY_SCHEME_VERSION0		0
2097c478bd9Sstevel@tonic-gate #define	FM_LEGACY_SCHEME_VERSION	LEGACY_SCHEME_VERSION0
21095efa359SEric Schrock #define	SVC_SCHEME_VERSION0		0
21195efa359SEric Schrock #define	FM_SVC_SCHEME_VERSION		SVC_SCHEME_VERSION0
212ea8dc4b6Seschrock #define	ZFS_SCHEME_VERSION0		0
213ea8dc4b6Seschrock #define	FM_ZFS_SCHEME_VERSION		ZFS_SCHEME_VERSION0
2147c478bd9Sstevel@tonic-gate 
2157c478bd9Sstevel@tonic-gate /* hc scheme member names */
2167c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_SERIAL_ID		"serial"
2177c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_PART			"part"
2187c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_REVISION		"revision"
2197c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_ROOT			"hc-root"
2207c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_LIST_SZ		"hc-list-sz"
2217c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_LIST			"hc-list"
2227aec1d6eScindi #define	FM_FMRI_HC_SPECIFIC		"hc-specific"
2237c478bd9Sstevel@tonic-gate 
224825ba0f2Srobj /* facility member names */
225825ba0f2Srobj #define	FM_FMRI_FACILITY_NAME		"facility-name"
226825ba0f2Srobj #define	FM_FMRI_FACILITY_TYPE		"facility-type"
227825ba0f2Srobj 
2287c478bd9Sstevel@tonic-gate /* hc-list version and member names */
2297c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_NAME			"hc-name"
2307c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_ID			"hc-id"
2317c478bd9Sstevel@tonic-gate 
2327c478bd9Sstevel@tonic-gate #define	HC_LIST_VERSION0		0
2337c478bd9Sstevel@tonic-gate #define	FM_HC_LIST_VERSION		HC_LIST_VERSION0
2347c478bd9Sstevel@tonic-gate 
2357aec1d6eScindi /* hc-specific member names */
2367aec1d6eScindi #define	FM_FMRI_HC_SPECIFIC_OFFSET	"offset"
237e4b86885SCheng Sean Ye #define	FM_FMRI_HC_SPECIFIC_PHYSADDR	"physaddr"
2387aec1d6eScindi 
2397c478bd9Sstevel@tonic-gate /* fmd module scheme member names */
2407c478bd9Sstevel@tonic-gate #define	FM_FMRI_FMD_NAME		"mod-name"
2417c478bd9Sstevel@tonic-gate #define	FM_FMRI_FMD_VERSION		"mod-version"
2427c478bd9Sstevel@tonic-gate 
2437c478bd9Sstevel@tonic-gate /* dev scheme member names */
2447c478bd9Sstevel@tonic-gate #define	FM_FMRI_DEV_ID			"devid"
2457c478bd9Sstevel@tonic-gate #define	FM_FMRI_DEV_PATH		"device-path"
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate /* pkg scheme member names */
2487c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_BASEDIR		"pkg-basedir"
2497c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_INST		"pkg-inst"
2507c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_VERSION		"pkg-version"
2517c478bd9Sstevel@tonic-gate 
2527c478bd9Sstevel@tonic-gate /* svc scheme member names */
25395efa359SEric Schrock #define	FM_FMRI_SVC_NAME		"svc-name"
25495efa359SEric Schrock #define	FM_FMRI_SVC_INSTANCE		"svc-instance"
25595efa359SEric Schrock #define	FM_FMRI_SVC_CONTRACT_ID		"svc-contract-id"
2567c478bd9Sstevel@tonic-gate 
2577c478bd9Sstevel@tonic-gate /* svc-authority member names */
2587c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTH_SCOPE		"scope"
25995efa359SEric Schrock #define	FM_FMRI_SVC_AUTH_SYSTEM_FQN	"system-fqn"
2607c478bd9Sstevel@tonic-gate 
2617c478bd9Sstevel@tonic-gate /* cpu scheme member names */
2627c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_ID			"cpuid"
2637c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_SERIAL_ID		"serial"
2647c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_MASK		"cpumask"
2656dfee483Stsien #define	FM_FMRI_CPU_VID			"cpuvid"
2666dfee483Stsien #define	FM_FMRI_CPU_CPUFRU		"cpufru"
2677bebe46cSjc #define	FM_FMRI_CPU_CACHE_INDEX		"cacheindex"
2687bebe46cSjc #define	FM_FMRI_CPU_CACHE_WAY		"cacheway"
2697bebe46cSjc #define	FM_FMRI_CPU_CACHE_BIT		"cachebit"
2707bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE		"cachetype"
2717bebe46cSjc 
2727bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE_L2	0
2737bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE_L3	1
2747c478bd9Sstevel@tonic-gate 
2757c478bd9Sstevel@tonic-gate /* legacy-hc scheme member names */
2767c478bd9Sstevel@tonic-gate #define	FM_FMRI_LEGACY_HC		"component"
2779dd0f810Scindi #define	FM_FMRI_LEGACY_HC_PREFIX	FM_FMRI_SCHEME_HC":///" \
2789dd0f810Scindi     FM_FMRI_LEGACY_HC"="
2797c478bd9Sstevel@tonic-gate 
2807c478bd9Sstevel@tonic-gate /* mem scheme member names */
2817c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_UNUM		"unum"
2827c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_SERIAL_ID		"serial"
2837c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_PHYSADDR		"physaddr"
284822fb41dStsien #define	FM_FMRI_MEM_MEMCONFIG		"memconfig"
285d00f0155Sayznaga #define	FM_FMRI_MEM_OFFSET		"offset"
2867c478bd9Sstevel@tonic-gate 
2877c478bd9Sstevel@tonic-gate /* mod scheme member names */
2887c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_PKG			"mod-pkg"
2897c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_NAME		"mod-name"
2907c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_ID			"mod-id"
2917c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_DESC		"mod-desc"
2927c478bd9Sstevel@tonic-gate 
293ea8dc4b6Seschrock /* zfs scheme member names */
294ea8dc4b6Seschrock #define	FM_FMRI_ZFS_POOL		"pool"
295ea8dc4b6Seschrock #define	FM_FMRI_ZFS_VDEV		"vdev"
296ea8dc4b6Seschrock 
2977c478bd9Sstevel@tonic-gate extern nv_alloc_t *fm_nva_xcreate(char *, size_t);
2987c478bd9Sstevel@tonic-gate extern void fm_nva_xdestroy(nv_alloc_t *);
2997c478bd9Sstevel@tonic-gate 
3007c478bd9Sstevel@tonic-gate extern nvlist_t *fm_nvlist_create(nv_alloc_t *);
3017c478bd9Sstevel@tonic-gate extern void fm_nvlist_destroy(nvlist_t *, int);
3027c478bd9Sstevel@tonic-gate 
3037c478bd9Sstevel@tonic-gate #define	FM_NVA_FREE	0		/* free allocator on nvlist_destroy */
3047c478bd9Sstevel@tonic-gate #define	FM_NVA_RETAIN	1		/* keep allocator on nvlist_destroy */
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate extern void fm_ereport_set(nvlist_t *, int, const char *, uint64_t,
3077c478bd9Sstevel@tonic-gate     const nvlist_t *, ...);
3087c478bd9Sstevel@tonic-gate extern void fm_payload_set(nvlist_t *, ...);
3097c478bd9Sstevel@tonic-gate extern int i_fm_payload_set(nvlist_t *, const char *, va_list);
3107aec1d6eScindi extern void fm_fmri_hc_set(nvlist_t *, int, const nvlist_t *, nvlist_t *,
3117aec1d6eScindi     int, ...);
3127c478bd9Sstevel@tonic-gate extern void fm_fmri_dev_set(nvlist_t *, int, const nvlist_t *, const char *,
3137c478bd9Sstevel@tonic-gate     const char *);
3147c478bd9Sstevel@tonic-gate extern void fm_fmri_de_set(nvlist_t *, int, const nvlist_t *, const char *);
3157c478bd9Sstevel@tonic-gate extern void fm_fmri_cpu_set(nvlist_t *, int, const nvlist_t *, uint32_t,
3167aec1d6eScindi     uint8_t *, const char *);
3177c478bd9Sstevel@tonic-gate extern void fm_fmri_mem_set(nvlist_t *, int, const nvlist_t *, const char *,
318d00f0155Sayznaga     const char *, uint64_t);
3197c478bd9Sstevel@tonic-gate extern void fm_authority_set(nvlist_t *, int, const char *, const char *,
3207c478bd9Sstevel@tonic-gate     const char *, const char *);
321ea8dc4b6Seschrock extern void fm_fmri_zfs_set(nvlist_t *, int, uint64_t, uint64_t);
3227c478bd9Sstevel@tonic-gate 
3237c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_increment(uint64_t);
3247c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generate(uint64_t, uchar_t);
3257c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generate_cpu(uint64_t, processorid_t, uchar_t);
3267c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generation_get(uint64_t);
3277c478bd9Sstevel@tonic-gate extern uchar_t fm_ena_format_get(uint64_t);
3287c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_id_get(uint64_t);
3297c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_time_get(uint64_t);
3307c478bd9Sstevel@tonic-gate 
3317c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
3327c478bd9Sstevel@tonic-gate }
3337c478bd9Sstevel@tonic-gate #endif
3347c478bd9Sstevel@tonic-gate 
3357c478bd9Sstevel@tonic-gate #endif /* _SYS_FM_PROTOCOL_H */
336