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>
23 NSINDEX_SEQ_MASK
= 0x3,
24 NSLABEL_UUID_LEN
= 16,
25 NSLABEL_NAME_LEN
= 64,
26 NSLABEL_FLAG_ROLABEL
= 0x1, /* read-only label */
27 NSLABEL_FLAG_LOCAL
= 0x2, /* DIMM-local namespace */
28 NSLABEL_FLAG_BTT
= 0x4, /* namespace contains a BTT */
29 NSLABEL_FLAG_UPDATING
= 0x8, /* label being updated */
30 BTT_ALIGN
= 4096, /* all btt structures */
32 BTTINFO_UUID_LEN
= 16,
33 BTTINFO_FLAG_ERROR
= 0x1, /* error state (read-only) */
34 BTTINFO_MAJOR_VERSION
= 1,
35 ND_LABEL_MIN_SIZE
= 512 * 129, /* see sizeof_namespace_index() */
36 ND_LABEL_ID_SIZE
= 50,
37 ND_NSINDEX_INIT
= 0x1,
40 static const char NSINDEX_SIGNATURE
[] = "NAMESPACE_INDEX\0";
43 * struct nd_namespace_index - label set superblock
44 * @sig: NAMESPACE_INDEX\0
46 * @seq: sequence number for this index
47 * @myoff: offset of this index in label area
48 * @mysize: size of this index struct
49 * @otheroff: offset of other index
50 * @labeloff: offset of first label slot
51 * @nslot: total number of label slots
52 * @major: label area major version
53 * @minor: label area minor version
54 * @checksum: fletcher64 of all fields
55 * @free[0]: bitmap, nlabel bits
57 * The size of free[] is rounded up so the total struct size is a
58 * multiple of NSINDEX_ALIGN bytes. Any bits this allocates beyond
59 * nlabel bits must be zero.
61 struct nd_namespace_index
{
62 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
];
105 * struct nd_label_id - identifier string for dpa allocation
106 * @id: "{blk|pmem}-<namespace uuid>"
109 char id
[ND_LABEL_ID_SIZE
];
113 * If the 'best' index is invalid, so is the 'next' index. Otherwise,
114 * the next index is MOD(index+1, 2)
116 static inline int nd_label_next_nsindex(int index
)
121 return (index
+ 1) % 2;
124 struct nvdimm_drvdata
;
125 int nd_label_validate(struct nvdimm_drvdata
*ndd
);
126 void nd_label_copy(struct nvdimm_drvdata
*ndd
, struct nd_namespace_index
*dst
,
127 struct nd_namespace_index
*src
);
128 size_t sizeof_namespace_index(struct nvdimm_drvdata
*ndd
);
129 int nd_label_active_count(struct nvdimm_drvdata
*ndd
);
130 struct nd_namespace_label
*nd_label_active(struct nvdimm_drvdata
*ndd
, int n
);
131 u32
nd_label_alloc_slot(struct nvdimm_drvdata
*ndd
);
132 bool nd_label_free_slot(struct nvdimm_drvdata
*ndd
, u32 slot
);
133 u32
nd_label_nfree(struct nvdimm_drvdata
*ndd
);
135 struct nd_namespace_pmem
;
136 struct nd_namespace_blk
;
137 int nd_pmem_namespace_label_update(struct nd_region
*nd_region
,
138 struct nd_namespace_pmem
*nspm
, resource_size_t size
);
139 int nd_blk_namespace_label_update(struct nd_region
*nd_region
,
140 struct nd_namespace_blk
*nsblk
, resource_size_t size
);
141 #endif /* __LABEL_H__ */