]> git.ipfire.org Git - thirdparty/mdadm.git/blob - platform-intel.h
tests: add test that DDF marks missing devices as failed on assembly.
[thirdparty/mdadm.git] / platform-intel.h
1 /*
2 * Intel(R) Matrix Storage Manager hardware and firmware support routines
3 *
4 * Copyright (C) 2008 Intel Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 #include <asm/types.h>
20 #include <strings.h>
21
22 /* The IMSM Capability (IMSM AHCI and ISCU OROM/EFI variable) Version Table definition */
23 struct imsm_orom {
24 __u8 signature[4];
25 __u8 table_ver_major; /* Currently 2 (can change with future revs) */
26 __u8 table_ver_minor; /* Currently 2 (can change with future revs) */
27 __u16 major_ver; /* Example: 8 as in 8.6.0.1020 */
28 __u16 minor_ver; /* Example: 6 as in 8.6.0.1020 */
29 __u16 hotfix_ver; /* Example: 0 as in 8.6.0.1020 */
30 __u16 build; /* Example: 1020 as in 8.6.0.1020 */
31 __u8 len; /* number of bytes in this entire table */
32 __u8 checksum; /* checksum of all the bytes in this table */
33 __u16 rlc; /* RAID Level Capability */
34 /* we assume the cpu is x86 as the orom should not be found
35 * anywhere else
36 */
37 #define IMSM_OROM_RLC_RAID0 (1 << 0)
38 #define IMSM_OROM_RLC_RAID1 (1 << 1)
39 #define IMSM_OROM_RLC_RAID10 (1 << 2)
40 #define IMSM_OROM_RLC_RAID1E (1 << 3)
41 #define IMSM_OROM_RLC_RAID5 (1 << 4)
42 #define IMSM_OROM_RLC_RAID_CNG (1 << 5)
43 __u16 sss; /* Strip Size Supported */
44 #define IMSM_OROM_SSS_2kB (1 << 0)
45 #define IMSM_OROM_SSS_4kB (1 << 1)
46 #define IMSM_OROM_SSS_8kB (1 << 2)
47 #define IMSM_OROM_SSS_16kB (1 << 3)
48 #define IMSM_OROM_SSS_32kB (1 << 4)
49 #define IMSM_OROM_SSS_64kB (1 << 5)
50 #define IMSM_OROM_SSS_128kB (1 << 6)
51 #define IMSM_OROM_SSS_256kB (1 << 7)
52 #define IMSM_OROM_SSS_512kB (1 << 8)
53 #define IMSM_OROM_SSS_1MB (1 << 9)
54 #define IMSM_OROM_SSS_2MB (1 << 10)
55 #define IMSM_OROM_SSS_4MB (1 << 11)
56 #define IMSM_OROM_SSS_8MB (1 << 12)
57 #define IMSM_OROM_SSS_16MB (1 << 13)
58 #define IMSM_OROM_SSS_32MB (1 << 14)
59 #define IMSM_OROM_SSS_64MB (1 << 15)
60 __u16 dpa; /* Disks Per Array supported */
61 #define IMSM_OROM_DISKS_PER_ARRAY 6
62 __u16 tds; /* Total Disks Supported */
63 #define IMSM_OROM_TOTAL_DISKS 6
64 __u8 vpa; /* # Volumes Per Array supported */
65 #define IMSM_OROM_VOLUMES_PER_ARRAY 2
66 __u8 vphba; /* # Volumes Per Host Bus Adapter supported */
67 #define IMSM_OROM_VOLUMES_PER_HBA 4
68 /* Attributes supported. This should map to the
69 * attributes in the MPB. Also, lower 16 bits
70 * should match/duplicate RLC bits above.
71 */
72 __u32 attr;
73 #define IMSM_OROM_ATTR_RAID0 IMSM_OROM_RLC_RAID0
74 #define IMSM_OROM_ATTR_RAID1 IMSM_OROM_RLC_RAID1
75 #define IMSM_OROM_ATTR_RAID10 IMSM_OROM_RLC_RAID10
76 #define IMSM_OROM_ATTR_RAID1E IMSM_OROM_RLC_RAID1E
77 #define IMSM_OROM_ATTR_RAID5 IMSM_OROM_RLC_RAID5
78 #define IMSM_OROM_ATTR_RAID_CNG IMSM_OROM_RLC_RAID_CNG
79 #define IMSM_OROM_ATTR_2TB_DISK (1 << 26)
80 #define IMSM_OROM_ATTR_2TB (1 << 29)
81 #define IMSM_OROM_ATTR_PM (1 << 30)
82 #define IMSM_OROM_ATTR_ChecksumVerify (1 << 31)
83 __u32 capabilities;
84 #define IMSM_OROM_CAPABILITIES_Ext_SATA (1 << 0)
85 #define IMSM_OROM_CAPABILITIES_TurboMemory (1 << 1)
86 #define IMSM_OROM_CAPABILITIES_HddPassword (1 << 2)
87 #define IMSM_OROM_CAPABILITIES_DiskCoercion (1 << 3)
88 __u32 driver_features;
89 #define IMSM_OROM_CAPABILITIES_HDDUnlock (1 << 0)
90 #define IMSM_OROM_CAPABILITIES_LEDLoc (1 << 1)
91 #define IMSM_OROM_CAPABILITIES_EnterpriseSystem (1 << 2)
92 #define IMSM_OROM_CAPABILITIES_Zpodd (1 << 3)
93 #define IMSM_OROM_CAPABILITIES_LargeDramCache (1 << 4)
94 #define IMSM_OROM_CAPABILITIES_Rohi (1 << 5)
95 #define IMSM_OROM_CAPABILITIES_ReadPatrol (1 << 6)
96 #define IMSM_OROM_CAPABILITIES_XorHw (1 << 7)
97 } __attribute__((packed));
98
99 static inline int imsm_orom_has_raid0(const struct imsm_orom *orom)
100 {
101 return !!(orom->rlc & IMSM_OROM_RLC_RAID0);
102 }
103 static inline int imsm_orom_has_raid1(const struct imsm_orom *orom)
104 {
105 return !!(orom->rlc & IMSM_OROM_RLC_RAID1);
106 }
107 static inline int imsm_orom_has_raid1e(const struct imsm_orom *orom)
108 {
109 return !!(orom->rlc & IMSM_OROM_RLC_RAID1E);
110 }
111 static inline int imsm_orom_has_raid10(const struct imsm_orom *orom)
112 {
113 return !!(orom->rlc & IMSM_OROM_RLC_RAID10);
114 }
115 static inline int imsm_orom_has_raid5(const struct imsm_orom *orom)
116 {
117 return !!(orom->rlc & IMSM_OROM_RLC_RAID5);
118 }
119
120 /**
121 * imsm_orom_has_chunk - check if the orom supports the given chunk size
122 * @orom: orom pointer from find_imsm_orom
123 * @chunk: chunk size in kibibytes
124 */
125 static inline int imsm_orom_has_chunk(const struct imsm_orom *orom, int chunk)
126 {
127 int fs = ffs(chunk);
128 if (!fs)
129 return 0;
130 fs--; /* bit num to bit index */
131 if (chunk & (chunk-1))
132 return 0; /* not a power of 2 */
133 return !!(orom->sss & (1 << (fs - 1)));
134 }
135
136 /**
137 * fls - find last (most-significant) bit set
138 * @x: the word to search
139 * The funciton is borrowed from Linux kernel code
140 * include/asm-generic/bitops/fls.h
141 */
142 static inline int fls(int x)
143 {
144 int r = 32;
145
146 if (!x)
147 return 0;
148 if (!(x & 0xffff0000u)) {
149 x <<= 16;
150 r -= 16;
151 }
152 if (!(x & 0xff000000u)) {
153 x <<= 8;
154 r -= 8;
155 }
156 if (!(x & 0xf0000000u)) {
157 x <<= 4;
158 r -= 4;
159 }
160 if (!(x & 0xc0000000u)) {
161 x <<= 2;
162 r -= 2;
163 }
164 if (!(x & 0x80000000u)) {
165 x <<= 1;
166 r -= 1;
167 }
168 return r;
169 }
170
171 enum sys_dev_type {
172 SYS_DEV_UNKNOWN = 0,
173 SYS_DEV_SAS,
174 SYS_DEV_SATA,
175 SYS_DEV_MAX
176 };
177
178 struct sys_dev {
179 enum sys_dev_type type;
180 char *path;
181 char *pci_id;
182 __u16 dev_id;
183 struct sys_dev *next;
184 };
185
186 struct efi_guid {
187 __u8 b[16];
188 };
189
190 static inline char *guid_str(char *buf, struct efi_guid guid)
191 {
192 sprintf(buf, "%02x%02x%02x%02x-%02x%02x-%02x%02x-"
193 "%02x%02x-%02x%02x%02x%02x%02x%02x",
194 guid.b[3], guid.b[2], guid.b[1], guid.b[0],
195 guid.b[5], guid.b[4], guid.b[7], guid.b[6],
196 guid.b[8], guid.b[9], guid.b[10], guid.b[11],
197 guid.b[12], guid.b[13], guid.b[14], guid.b[15]);
198 return buf;
199 }
200
201 char *diskfd_to_devpath(int fd);
202 struct sys_dev *find_driver_devices(const char *bus, const char *driver);
203 struct sys_dev *find_intel_devices(void);
204 const struct imsm_orom *find_imsm_capability(enum sys_dev_type hba_id);
205 const struct imsm_orom *find_imsm_orom(void);
206 int disk_attached_to_hba(int fd, const char *hba_path);
207 char *devt_to_devpath(dev_t dev);
208 int path_attached_to_hba(const char *disk_path, const char *hba_path);
209 const char *get_sys_dev_type(enum sys_dev_type);