2 * Copyright(c) 2013-2015 Intel Corporation. All rights reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
16 #include <linux/ndctl.h>
17 #include <linux/sizes.h>
18 #include <linux/uuid.h>
24 NSINDEX_SEQ_MASK
= 0x3,
25 NSLABEL_UUID_LEN
= 16,
26 NSLABEL_NAME_LEN
= 64,
27 NSLABEL_FLAG_ROLABEL
= 0x1, /* read-only label */
28 NSLABEL_FLAG_LOCAL
= 0x2, /* DIMM-local namespace */
29 NSLABEL_FLAG_BTT
= 0x4, /* namespace contains a BTT */
30 NSLABEL_FLAG_UPDATING
= 0x8, /* label being updated */
31 BTT_ALIGN
= 4096, /* all btt structures */
33 BTTINFO_UUID_LEN
= 16,
34 BTTINFO_FLAG_ERROR
= 0x1, /* error state (read-only) */
35 BTTINFO_MAJOR_VERSION
= 1,
36 ND_LABEL_MIN_SIZE
= 256 * 4, /* see sizeof_namespace_index() */
37 ND_LABEL_ID_SIZE
= 50,
38 ND_NSINDEX_INIT
= 0x1,
42 * struct nd_namespace_index - label set superblock
43 * @sig: NAMESPACE_INDEX\0
45 * @seq: sequence number for this index
46 * @myoff: offset of this index in label area
47 * @mysize: size of this index struct
48 * @otheroff: offset of other index
49 * @labeloff: offset of first label slot
50 * @nslot: total number of label slots
51 * @major: label area major version
52 * @minor: label area minor version
53 * @checksum: fletcher64 of all fields
54 * @free[0]: bitmap, nlabel bits
56 * The size of free[] is rounded up so the total struct size is a
57 * multiple of NSINDEX_ALIGN bytes. Any bits this allocates beyond
58 * nlabel bits must be zero.
60 struct nd_namespace_index
{
61 u8 sig
[NSINDEX_SIG_LEN
];
77 * struct nd_namespace_label - namespace superblock
78 * @uuid: UUID per RFC 4122
79 * @name: optional name (NULL-terminated)
80 * @flags: see NSLABEL_FLAG_*
81 * @nlabel: num labels to describe this ns
82 * @position: labels position in set
83 * @isetcookie: interleave set cookie
84 * @lbasize: LBA size in bytes or 0 for pmem
85 * @dpa: DPA of NVM range on this DIMM
86 * @rawsize: size of namespace
87 * @slot: slot of this label in label area
88 * @unused: must be zero
90 struct nd_namespace_label
{
91 u8 uuid
[NSLABEL_UUID_LEN
];
92 u8 name
[NSLABEL_NAME_LEN
];
102 * Accessing fields past this point should be gated by a
103 * namespace_label_has() check.
108 guid_t abstraction_guid
;
113 #define NVDIMM_BTT_GUID "8aed63a2-29a2-4c66-8b12-f05d15d3922a"
114 #define NVDIMM_BTT2_GUID "18633bfc-1735-4217-8ac9-17239282d3f8"
115 #define NVDIMM_PFN_GUID "266400ba-fb9f-4677-bcb0-968f11d0d225"
116 #define NVDIMM_DAX_GUID "97a86d9c-3cdd-4eda-986f-5068b4f80088"
119 * struct nd_label_id - identifier string for dpa allocation
120 * @id: "{blk|pmem}-<namespace uuid>"
123 char id
[ND_LABEL_ID_SIZE
];
127 * If the 'best' index is invalid, so is the 'next' index. Otherwise,
128 * the next index is MOD(index+1, 2)
130 static inline int nd_label_next_nsindex(int index
)
135 return (index
+ 1) % 2;
138 struct nvdimm_drvdata
;
139 int nd_label_validate(struct nvdimm_drvdata
*ndd
);
140 void nd_label_copy(struct nvdimm_drvdata
*ndd
, struct nd_namespace_index
*dst
,
141 struct nd_namespace_index
*src
);
142 size_t sizeof_namespace_index(struct nvdimm_drvdata
*ndd
);
143 int nd_label_active_count(struct nvdimm_drvdata
*ndd
);
144 struct nd_namespace_label
*nd_label_active(struct nvdimm_drvdata
*ndd
, int n
);
145 u32
nd_label_alloc_slot(struct nvdimm_drvdata
*ndd
);
146 bool nd_label_free_slot(struct nvdimm_drvdata
*ndd
, u32 slot
);
147 u32
nd_label_nfree(struct nvdimm_drvdata
*ndd
);
148 enum nvdimm_claim_class
to_nvdimm_cclass(guid_t
*guid
);
150 struct nd_namespace_pmem
;
151 struct nd_namespace_blk
;
152 int nd_pmem_namespace_label_update(struct nd_region
*nd_region
,
153 struct nd_namespace_pmem
*nspm
, resource_size_t size
);
154 int nd_blk_namespace_label_update(struct nd_region
*nd_region
,
155 struct nd_namespace_blk
*nsblk
, resource_size_t size
);
156 #endif /* __LABEL_H__ */