xref: /illumos-gate/usr/src/uts/common/sys/fm/protocol.h (revision 7bebe46c240b554f47faeed19186123896281967)
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 /*
23*7bebe46cSjc  * Copyright 2008 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 #pragma ident	"%Z%%M%	%I%	%E% SMI"
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
337c478bd9Sstevel@tonic-gate extern "C" {
347c478bd9Sstevel@tonic-gate #endif
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #ifdef _KERNEL
377c478bd9Sstevel@tonic-gate #include <sys/varargs.h>
387c478bd9Sstevel@tonic-gate #include <sys/nvpair.h>
397c478bd9Sstevel@tonic-gate #else
407c478bd9Sstevel@tonic-gate #include <libnvpair.h>
417c478bd9Sstevel@tonic-gate #include <stdarg.h>
427c478bd9Sstevel@tonic-gate #endif
437c478bd9Sstevel@tonic-gate #include <sys/processor.h>
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /* FM common member names */
467c478bd9Sstevel@tonic-gate #define	FM_CLASS			"class"
477c478bd9Sstevel@tonic-gate #define	FM_VERSION			"version"
487c478bd9Sstevel@tonic-gate 
497c478bd9Sstevel@tonic-gate /* FM event class values */
507c478bd9Sstevel@tonic-gate #define	FM_EREPORT_CLASS		"ereport"
517c478bd9Sstevel@tonic-gate #define	FM_FAULT_CLASS			"fault"
527c478bd9Sstevel@tonic-gate #define	FM_RSRC_CLASS			"resource"
537c478bd9Sstevel@tonic-gate #define	FM_LIST_EVENT			"list"
54d9638e54Smws 
55d9638e54Smws /* FM list.* event class values */
567c478bd9Sstevel@tonic-gate #define	FM_LIST_SUSPECT_CLASS		FM_LIST_EVENT ".suspect"
57d9638e54Smws #define	FM_LIST_ISOLATED_CLASS		FM_LIST_EVENT ".isolated"
58d9638e54Smws #define	FM_LIST_REPAIRED_CLASS		FM_LIST_EVENT ".repaired"
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 
75d9638e54Smws /* list.suspect, isolated, and repaired versions and payload member names */
767c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_UUID			"uuid"
777c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DIAG_CODE		"code"
787c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DIAG_TIME		"diag-time"
797c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_DE			"de"
807c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_FAULT_LIST		"fault-list"
817c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_FAULT_SZ		"fault-list-sz"
82d9638e54Smws #define	FM_SUSPECT_FAULT_STATUS		"fault-status"
837c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_MESSAGE		"message"
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_VERS0		0
867c478bd9Sstevel@tonic-gate #define	FM_SUSPECT_VERSION		FM_SUSPECT_VERS0
877c478bd9Sstevel@tonic-gate 
8844743693Sstephh #define	FM_SUSPECT_FAULTY		0x1
8944743693Sstephh #define	FM_SUSPECT_UNUSABLE		0x2
9044743693Sstephh #define	FM_SUSPECT_NOT_PRESENT		0x4
9144743693Sstephh 
927c478bd9Sstevel@tonic-gate /* fault event versions and payload member names */
937c478bd9Sstevel@tonic-gate #define	FM_FAULT_VERS0			0
947c478bd9Sstevel@tonic-gate #define	FM_FAULT_VERSION		FM_FAULT_VERS0
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate #define	FM_FAULT_ASRU			"asru"
977c478bd9Sstevel@tonic-gate #define	FM_FAULT_FRU			"fru"
987c478bd9Sstevel@tonic-gate #define	FM_FAULT_FRU_LABEL		"fru-label"
997c478bd9Sstevel@tonic-gate #define	FM_FAULT_CERTAINTY		"certainty"
1007c478bd9Sstevel@tonic-gate #define	FM_FAULT_RESOURCE		"resource"
1019dd0f810Scindi #define	FM_FAULT_LOCATION		"location"
1027c478bd9Sstevel@tonic-gate 
1037c478bd9Sstevel@tonic-gate /* resource event versions and payload member names */
1047c478bd9Sstevel@tonic-gate #define	FM_RSRC_VERS0			0
1057c478bd9Sstevel@tonic-gate #define	FM_RSRC_VERSION			FM_RSRC_VERS0
1067c478bd9Sstevel@tonic-gate #define	FM_RSRC_RESOURCE		"resource"
1077c478bd9Sstevel@tonic-gate 
108d9638e54Smws /* resource.fm.asru.* payload member names */
1097c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_UUID		"uuid"
110d9638e54Smws #define	FM_RSRC_ASRU_CODE		"code"
1117c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_FAULTY		"faulty"
1127c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_UNUSABLE		"unusable"
1137c478bd9Sstevel@tonic-gate #define	FM_RSRC_ASRU_EVENT		"event"
1147c478bd9Sstevel@tonic-gate 
115d9638e54Smws /* resource.fm.xprt.* versions and payload member names */
116d9638e54Smws #define	FM_RSRC_XPRT_VERS0		0
117d9638e54Smws #define	FM_RSRC_XPRT_VERSION		FM_RSRC_XPRT_VERS0
118d9638e54Smws #define	FM_RSRC_XPRT_UUID		"uuid"
119d9638e54Smws #define	FM_RSRC_XPRT_SUBCLASS		"subclass"
120d9638e54Smws 
1217c478bd9Sstevel@tonic-gate /*
1227c478bd9Sstevel@tonic-gate  * FM ENA Format Macros
1237c478bd9Sstevel@tonic-gate  */
1247c478bd9Sstevel@tonic-gate #define	ENA_FORMAT_MASK			0x3
1257c478bd9Sstevel@tonic-gate #define	ENA_FORMAT(ena)			((ena) & ENA_FORMAT_MASK)
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate /* ENA format types */
1287c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT0			0
1297c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT1			1
1307c478bd9Sstevel@tonic-gate #define	FM_ENA_FMT2			2
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate /* Format 1 */
1337c478bd9Sstevel@tonic-gate #define	ENA_FMT1_GEN_MASK		0x00000000000003FCull
1347c478bd9Sstevel@tonic-gate #define	ENA_FMT1_ID_MASK		0xFFFFFFFFFFFFFC00ull
1357c478bd9Sstevel@tonic-gate #define	ENA_FMT1_CPUID_MASK		0x00000000000FFC00ull
1367c478bd9Sstevel@tonic-gate #define	ENA_FMT1_TIME_MASK		0xFFFFFFFFFFF00000ull
1377c478bd9Sstevel@tonic-gate #define	ENA_FMT1_GEN_SHFT		2
1387c478bd9Sstevel@tonic-gate #define	ENA_FMT1_ID_SHFT		10
1397c478bd9Sstevel@tonic-gate #define	ENA_FMT1_CPUID_SHFT		ENA_FMT1_ID_SHFT
1407c478bd9Sstevel@tonic-gate #define	ENA_FMT1_TIME_SHFT		20
1417c478bd9Sstevel@tonic-gate 
1427c478bd9Sstevel@tonic-gate /* Format 2 */
1437c478bd9Sstevel@tonic-gate #define	ENA_FMT2_GEN_MASK		0x00000000000003FCull
1447c478bd9Sstevel@tonic-gate #define	ENA_FMT2_ID_MASK		0xFFFFFFFFFFFFFC00ull
1457c478bd9Sstevel@tonic-gate #define	ENA_FMT2_TIME_MASK		ENA_FMT2_ID_MASK
1467c478bd9Sstevel@tonic-gate #define	ENA_FMT2_GEN_SHFT		2
1477c478bd9Sstevel@tonic-gate #define	ENA_FMT2_ID_SHFT		10
1487c478bd9Sstevel@tonic-gate #define	ENA_FMT2_TIME_SHFT		ENA_FMT2_ID_SHFT
1497c478bd9Sstevel@tonic-gate 
1507c478bd9Sstevel@tonic-gate /* Common FMRI type names */
1517c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTHORITY		"authority"
1527c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME			"scheme"
1537c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTHORITY		"svc-authority"
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate /* FMRI authority-type member names */
1567c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_CHASSIS		"chassis-id"
1577c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_PRODUCT		"product-id"
1587c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_DOMAIN		"domain-id"
1597c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_SERVER		"server-id"
1607c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_HOST		"host-id"
1617c478bd9Sstevel@tonic-gate 
1627c478bd9Sstevel@tonic-gate #define	FM_AUTH_VERS0			0
1637c478bd9Sstevel@tonic-gate #define	FM_FMRI_AUTH_VERSION		FM_AUTH_VERS0
1647c478bd9Sstevel@tonic-gate 
1657c478bd9Sstevel@tonic-gate /* scheme name values */
1667c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_FMD		"fmd"
1677c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_DEV		"dev"
1687c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_HC		"hc"
1697c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_SVC		"svc"
1707c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_CPU		"cpu"
1717c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_MEM		"mem"
1727c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_MOD		"mod"
1737c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_PKG		"pkg"
1747c478bd9Sstevel@tonic-gate #define	FM_FMRI_SCHEME_LEGACY		"legacy-hc"
175ea8dc4b6Seschrock #define	FM_FMRI_SCHEME_ZFS		"zfs"
1767c478bd9Sstevel@tonic-gate 
1777c478bd9Sstevel@tonic-gate /* Scheme versions */
1787c478bd9Sstevel@tonic-gate #define	FMD_SCHEME_VERSION0		0
1797c478bd9Sstevel@tonic-gate #define	FM_FMD_SCHEME_VERSION		FMD_SCHEME_VERSION0
1807c478bd9Sstevel@tonic-gate #define	DEV_SCHEME_VERSION0		0
1817c478bd9Sstevel@tonic-gate #define	FM_DEV_SCHEME_VERSION		DEV_SCHEME_VERSION0
1827c478bd9Sstevel@tonic-gate #define	FM_HC_VERS0			0
1837c478bd9Sstevel@tonic-gate #define	FM_HC_SCHEME_VERSION		FM_HC_VERS0
1847c478bd9Sstevel@tonic-gate #define	CPU_SCHEME_VERSION0		0
1857aec1d6eScindi #define	CPU_SCHEME_VERSION1		1
1867aec1d6eScindi #define	FM_CPU_SCHEME_VERSION		CPU_SCHEME_VERSION1
1877c478bd9Sstevel@tonic-gate #define	MEM_SCHEME_VERSION0		0
1887c478bd9Sstevel@tonic-gate #define	FM_MEM_SCHEME_VERSION		MEM_SCHEME_VERSION0
1897c478bd9Sstevel@tonic-gate #define	MOD_SCHEME_VERSION0		0
1907c478bd9Sstevel@tonic-gate #define	FM_MOD_SCHEME_VERSION		MOD_SCHEME_VERSION0
1917c478bd9Sstevel@tonic-gate #define	PKG_SCHEME_VERSION0		0
1927c478bd9Sstevel@tonic-gate #define	FM_PKG_SCHEME_VERSION		PKG_SCHEME_VERSION0
1937c478bd9Sstevel@tonic-gate #define	LEGACY_SCHEME_VERSION0		0
1947c478bd9Sstevel@tonic-gate #define	FM_LEGACY_SCHEME_VERSION	LEGACY_SCHEME_VERSION0
195ea8dc4b6Seschrock #define	ZFS_SCHEME_VERSION0		0
196ea8dc4b6Seschrock #define	FM_ZFS_SCHEME_VERSION		ZFS_SCHEME_VERSION0
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate /* hc scheme member names */
1997c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_SERIAL_ID		"serial"
2007c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_PART			"part"
2017c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_REVISION		"revision"
2027c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_ROOT			"hc-root"
2037c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_LIST_SZ		"hc-list-sz"
2047c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_LIST			"hc-list"
2057aec1d6eScindi #define	FM_FMRI_HC_SPECIFIC		"hc-specific"
2067c478bd9Sstevel@tonic-gate 
2077c478bd9Sstevel@tonic-gate /* hc-list version and member names */
2087c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_NAME			"hc-name"
2097c478bd9Sstevel@tonic-gate #define	FM_FMRI_HC_ID			"hc-id"
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate #define	HC_LIST_VERSION0		0
2127c478bd9Sstevel@tonic-gate #define	FM_HC_LIST_VERSION		HC_LIST_VERSION0
2137c478bd9Sstevel@tonic-gate 
2147aec1d6eScindi /* hc-specific member names */
2157aec1d6eScindi #define	FM_FMRI_HC_SPECIFIC_OFFSET	"offset"
2167aec1d6eScindi 
2177c478bd9Sstevel@tonic-gate /* fmd module scheme member names */
2187c478bd9Sstevel@tonic-gate #define	FM_FMRI_FMD_NAME		"mod-name"
2197c478bd9Sstevel@tonic-gate #define	FM_FMRI_FMD_VERSION		"mod-version"
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate /* dev scheme member names */
2227c478bd9Sstevel@tonic-gate #define	FM_FMRI_DEV_ID			"devid"
2237c478bd9Sstevel@tonic-gate #define	FM_FMRI_DEV_PATH		"device-path"
2247c478bd9Sstevel@tonic-gate 
2257c478bd9Sstevel@tonic-gate /* pkg scheme member names */
2267c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_BASEDIR		"pkg-basedir"
2277c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_INST		"pkg-inst"
2287c478bd9Sstevel@tonic-gate #define	FM_FMRI_PKG_VERSION		"pkg-version"
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate /* svc scheme member names */
2317c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_NAME		"service-name"
2327c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_VERSION		"service-version"
2337c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_INSTANCE		"instance"
2347c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_CONTRACT_ID		"contract-id"
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate /* svc-authority member names */
2377c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTH_SCOPE		"scope"
2387c478bd9Sstevel@tonic-gate #define	FM_FMRI_SVC_AUTH_SYSTEM_FQN	"system-FQN"
2397c478bd9Sstevel@tonic-gate 
2407c478bd9Sstevel@tonic-gate /* cpu scheme member names */
2417c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_ID			"cpuid"
2427c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_SERIAL_ID		"serial"
2437c478bd9Sstevel@tonic-gate #define	FM_FMRI_CPU_MASK		"cpumask"
2446dfee483Stsien #define	FM_FMRI_CPU_VID			"cpuvid"
2456dfee483Stsien #define	FM_FMRI_CPU_CPUFRU		"cpufru"
246*7bebe46cSjc #define	FM_FMRI_CPU_CACHE_INDEX		"cacheindex"
247*7bebe46cSjc #define	FM_FMRI_CPU_CACHE_WAY		"cacheway"
248*7bebe46cSjc #define	FM_FMRI_CPU_CACHE_BIT		"cachebit"
249*7bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE		"cachetype"
250*7bebe46cSjc 
251*7bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE_L2	0
252*7bebe46cSjc #define	FM_FMRI_CPU_CACHE_TYPE_L3	1
2537c478bd9Sstevel@tonic-gate 
2547c478bd9Sstevel@tonic-gate /* legacy-hc scheme member names */
2557c478bd9Sstevel@tonic-gate #define	FM_FMRI_LEGACY_HC		"component"
2569dd0f810Scindi #define	FM_FMRI_LEGACY_HC_PREFIX	FM_FMRI_SCHEME_HC":///" \
2579dd0f810Scindi     FM_FMRI_LEGACY_HC"="
2587c478bd9Sstevel@tonic-gate 
2597c478bd9Sstevel@tonic-gate /* mem scheme member names */
2607c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_UNUM		"unum"
2617c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_SERIAL_ID		"serial"
2627c478bd9Sstevel@tonic-gate #define	FM_FMRI_MEM_PHYSADDR		"physaddr"
263822fb41dStsien #define	FM_FMRI_MEM_MEMCONFIG		"memconfig"
264d00f0155Sayznaga #define	FM_FMRI_MEM_OFFSET		"offset"
2657c478bd9Sstevel@tonic-gate 
2667c478bd9Sstevel@tonic-gate /* mod scheme member names */
2677c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_PKG			"mod-pkg"
2687c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_NAME		"mod-name"
2697c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_ID			"mod-id"
2707c478bd9Sstevel@tonic-gate #define	FM_FMRI_MOD_DESC		"mod-desc"
2717c478bd9Sstevel@tonic-gate 
272ea8dc4b6Seschrock /* zfs scheme member names */
273ea8dc4b6Seschrock #define	FM_FMRI_ZFS_POOL		"pool"
274ea8dc4b6Seschrock #define	FM_FMRI_ZFS_VDEV		"vdev"
275ea8dc4b6Seschrock 
2767c478bd9Sstevel@tonic-gate extern nv_alloc_t *fm_nva_xcreate(char *, size_t);
2777c478bd9Sstevel@tonic-gate extern void fm_nva_xdestroy(nv_alloc_t *);
2787c478bd9Sstevel@tonic-gate 
2797c478bd9Sstevel@tonic-gate extern nvlist_t *fm_nvlist_create(nv_alloc_t *);
2807c478bd9Sstevel@tonic-gate extern void fm_nvlist_destroy(nvlist_t *, int);
2817c478bd9Sstevel@tonic-gate 
2827c478bd9Sstevel@tonic-gate #define	FM_NVA_FREE	0		/* free allocator on nvlist_destroy */
2837c478bd9Sstevel@tonic-gate #define	FM_NVA_RETAIN	1		/* keep allocator on nvlist_destroy */
2847c478bd9Sstevel@tonic-gate 
2857c478bd9Sstevel@tonic-gate extern void fm_ereport_set(nvlist_t *, int, const char *, uint64_t,
2867c478bd9Sstevel@tonic-gate     const nvlist_t *, ...);
2877c478bd9Sstevel@tonic-gate extern void fm_payload_set(nvlist_t *, ...);
2887c478bd9Sstevel@tonic-gate extern int i_fm_payload_set(nvlist_t *, const char *, va_list);
2897aec1d6eScindi extern void fm_fmri_hc_set(nvlist_t *, int, const nvlist_t *, nvlist_t *,
2907aec1d6eScindi     int, ...);
2917c478bd9Sstevel@tonic-gate extern void fm_fmri_dev_set(nvlist_t *, int, const nvlist_t *, const char *,
2927c478bd9Sstevel@tonic-gate     const char *);
2937c478bd9Sstevel@tonic-gate extern void fm_fmri_de_set(nvlist_t *, int, const nvlist_t *, const char *);
2947c478bd9Sstevel@tonic-gate extern void fm_fmri_cpu_set(nvlist_t *, int, const nvlist_t *, uint32_t,
2957aec1d6eScindi     uint8_t *, const char *);
2967c478bd9Sstevel@tonic-gate extern void fm_fmri_mem_set(nvlist_t *, int, const nvlist_t *, const char *,
297d00f0155Sayznaga     const char *, uint64_t);
2987c478bd9Sstevel@tonic-gate extern void fm_authority_set(nvlist_t *, int, const char *, const char *,
2997c478bd9Sstevel@tonic-gate     const char *, const char *);
300ea8dc4b6Seschrock extern void fm_fmri_zfs_set(nvlist_t *, int, uint64_t, uint64_t);
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_increment(uint64_t);
3037c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generate(uint64_t, uchar_t);
3047c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generate_cpu(uint64_t, processorid_t, uchar_t);
3057c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_generation_get(uint64_t);
3067c478bd9Sstevel@tonic-gate extern uchar_t fm_ena_format_get(uint64_t);
3077c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_id_get(uint64_t);
3087c478bd9Sstevel@tonic-gate extern uint64_t fm_ena_time_get(uint64_t);
3097c478bd9Sstevel@tonic-gate 
3107c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
3117c478bd9Sstevel@tonic-gate }
3127c478bd9Sstevel@tonic-gate #endif
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate #endif /* _SYS_FM_PROTOCOL_H */
315