1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
.\"
.\" This file and its contents are supplied under the terms of the
.\" Common Development and Distribution License ("CDDL"), version 1.0.
.\" You may only use this file in accordance with the terms of version
.\" 1.0 of the CDDL.
.\"
.\" A full copy of the text of the CDDL should have accompanied this
.\" source. A copy of the CDDL is also available via the Internet at
.\" http://www.illumos.org/license/CDDL.
.\"
.\"
.\" Copyright 2019 Joyent, Inc.
.\" Copyright 2020 Oxide Computer Company
.\"
.Dd May 19, 2020
.Dt DDI_UFM_SLOT 9F
.Os
.Sh NAME
.Nm ddi_ufm_slot ,
.Nm ddi_ufm_slot_set_version ,
.Nm ddi_ufm_slot_set_attrs ,
.Nm ddi_ufm_slot_set_misc ,
.Nm ddi_ufm_slot_set_imgsize
.Nd UFM slot property routines
.Sh SYNOPSIS
#include <sys/ddi_ufm.h>
.sp
.Ft void
.Fo ddi_ufm_slot_set_version
.Fa "ddi_ufm_slot_t *usp"
.Fa "const char *version"
.Fc
.Ft void
.Fo ddi_ufm_slot_set_attrs
.Fa "ddi_ufm_slot_t *usp"
.Fa "ddi_ufm_attr_t attrs"
.Fc
.Ft void
.Fo ddi_ufm_slot_set_misc
.Fa "ddi_ufm_slot_t *usp"
.Fa "nvlist_t *nvl"
.Fc
.Ft void
.Fo ddi_ufm_slot_set_imgsize
.Fa "ddi_ufm_slot_t *usp"
.Fa "uint64_t len"
.Fc
.Sh INTERFACE LEVEL
.Sy Evolving -
This interface is evolving still in illumos.
API and ABI stability is not guaranteed.
.Sh PARAMETERS
.Bl -tag -width Fa
.It Fa usp
A pointer to a UFM slot structure that was passed to the driver in its
.Xr ddi_ufm_op_fill_slot 9E
entry point.
.It Fa version
A device-specific ASCII string that indicates the current version of the
firmware image in the slot.
.It Fa attrs
The bitwise-inclusive-OR of one of several attributes of a firmware
slot.
See the discussion of the
.Fn ddi_ufm_op_fill_slot
function in
.Xr ddi_ufm 9E .
.It Fa nvl
An nvlist_t with ancillary, device-specific data.
.It Fa len
The length in bytes of a firmware image in a slot.
.El
.Sh DESCRIPTION
The
.Fn ddi_ufm_slot_set_version ,
.Fn ddi_ufm_slot_set_attrs ,
.Fn ddi_ufm_slot_set_misc ,
and
.Fn ddi_ufm_slot_set_imgsize
functions are used by device drivers to set information about a firmware
slot on the slot structure
.Fa usp
as a part of implementing their
.Xr ddi_ufm_op_fill_slot 9E
entry point.
For more information on slots and the use of these functions, see the
description of the
.Fn ddi_ufm_op_fill_slot
function in
.Xr ddi_ufm 9E .
.Pp
The
.Fn ddi_ufm_slot_set_version
function sets the version property of a firmware slot.
The version should be a human-readable ASCII string that describes the current
firmware revision in a way that makes sense to an administrator and someone
who is referencing the documentation of a vendor.
.Pp
The
.Fn ddi_ufm_slot_set_attrs
function describes attributes of a UFM slot as defined by the
ddi_ufm_attr_t enum.
.Pp
The
.Fn ddi_ufm_slot_set_misc
function is used by the driver to set ancillary key-value data that may
be useful to a consumer.
For example, a driver may use this method to encode specific information that
the firmware provides about how or when it was produced or installed on the
device.
The driver should create an nvlist for this purpose with
.Xr nvlist_alloc 9F .
Once the driver passes the nvlist to the
.Fn ddi_ufm_slot_set_misc
function, then the driver must not manipulate or free the nvlist at all.
It is the property of the UFM subsystem.
.Pp
the
.Fn ddi_ufm_slot_set_imgsize
function is used by the driver to indicate the size of a firmware image
in a slot.
Consumers use this to determine the amount of data that they should read
for a firmware image itself.
.Sh CONTEXT
These functions should only be called in the context of the
.Xr ddi_ufm_op_fill_slot 9E
entry point.
.Sh SEE ALSO
|