]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/mps/mps_mapping.c
Ensure a minimum packet length before creating a mbuf in if_ure.
[FreeBSD/FreeBSD.git] / sys / dev / mps / mps_mapping.c
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2011-2015 LSI Corp.
5  * Copyright (c) 2013-2015 Avago Technologies
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * Avago Technologies (LSI) MPT-Fusion Host Adapter FreeBSD
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 /* TODO Move headers to mpsvar */
36 #include <sys/types.h>
37 #include <sys/param.h>
38 #include <sys/lock.h>
39 #include <sys/mutex.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/malloc.h>
43 #include <sys/kthread.h>
44 #include <sys/taskqueue.h>
45 #include <sys/bus.h>
46 #include <sys/endian.h>
47 #include <sys/sysctl.h>
48 #include <sys/sbuf.h>
49 #include <sys/eventhandler.h>
50 #include <sys/uio.h>
51 #include <machine/bus.h>
52 #include <machine/resource.h>
53 #include <dev/mps/mpi/mpi2_type.h>
54 #include <dev/mps/mpi/mpi2.h>
55 #include <dev/mps/mpi/mpi2_ioc.h>
56 #include <dev/mps/mpi/mpi2_sas.h>
57 #include <dev/mps/mpi/mpi2_cnfg.h>
58 #include <dev/mps/mpi/mpi2_init.h>
59 #include <dev/mps/mpi/mpi2_tool.h>
60 #include <dev/mps/mps_ioctl.h>
61 #include <dev/mps/mpsvar.h>
62 #include <dev/mps/mps_mapping.h>
63
64 /**
65  * _mapping_clear_map_entry - Clear a particular mapping entry.
66  * @map_entry: map table entry
67  *
68  * Returns nothing.
69  */
70 static inline void
71 _mapping_clear_map_entry(struct dev_mapping_table *map_entry)
72 {
73         map_entry->physical_id = 0;
74         map_entry->device_info = 0;
75         map_entry->phy_bits = 0;
76         map_entry->dpm_entry_num = MPS_DPM_BAD_IDX;
77         map_entry->dev_handle = 0;
78         map_entry->id = -1;
79         map_entry->missing_count = 0;
80         map_entry->init_complete = 0;
81         map_entry->TLR_bits = (u8)MPI2_SCSIIO_CONTROL_NO_TLR;
82 }
83
84 /**
85  * _mapping_clear_enc_entry - Clear a particular enclosure table entry.
86  * @enc_entry: enclosure table entry
87  *
88  * Returns nothing.
89  */
90 static inline void
91 _mapping_clear_enc_entry(struct enc_mapping_table *enc_entry)
92 {
93         enc_entry->enclosure_id = 0;
94         enc_entry->start_index = MPS_MAPTABLE_BAD_IDX;
95         enc_entry->phy_bits = 0;
96         enc_entry->dpm_entry_num = MPS_DPM_BAD_IDX;
97         enc_entry->enc_handle = 0;
98         enc_entry->num_slots = 0;
99         enc_entry->start_slot = 0;
100         enc_entry->missing_count = 0;
101         enc_entry->removal_flag = 0;
102         enc_entry->skip_search = 0;
103         enc_entry->init_complete = 0;
104 }
105
106 /**
107  * _mapping_commit_enc_entry - write a particular enc entry in DPM page0.
108  * @sc: per adapter object
109  * @enc_entry: enclosure table entry
110  *
111  * Returns 0 for success, non-zero for failure.
112  */
113 static int
114 _mapping_commit_enc_entry(struct mps_softc *sc,
115     struct enc_mapping_table *et_entry)
116 {
117         Mpi2DriverMap0Entry_t *dpm_entry;
118         struct dev_mapping_table *mt_entry;
119         Mpi2ConfigReply_t mpi_reply;
120         Mpi2DriverMappingPage0_t config_page;
121
122         if (!sc->is_dpm_enable)
123                 return 0;
124
125         memset(&config_page, 0, sizeof(Mpi2DriverMappingPage0_t));
126         memcpy(&config_page.Header, (u8 *) sc->dpm_pg0,
127             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
128         dpm_entry = (Mpi2DriverMap0Entry_t *)((u8 *)sc->dpm_pg0 +
129             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
130         dpm_entry += et_entry->dpm_entry_num;
131         dpm_entry->PhysicalIdentifier.Low =
132             ( 0xFFFFFFFF & et_entry->enclosure_id);
133         dpm_entry->PhysicalIdentifier.High =
134             ( et_entry->enclosure_id >> 32);
135         mt_entry = &sc->mapping_table[et_entry->start_index];
136         dpm_entry->DeviceIndex = htole16(mt_entry->id);
137         dpm_entry->MappingInformation = et_entry->num_slots;
138         dpm_entry->MappingInformation <<= MPI2_DRVMAP0_MAPINFO_SLOT_SHIFT;
139         dpm_entry->MappingInformation |= et_entry->missing_count;
140         dpm_entry->MappingInformation = htole16(dpm_entry->MappingInformation);
141         dpm_entry->PhysicalBitsMapping = htole32(et_entry->phy_bits);
142         dpm_entry->Reserved1 = 0;
143
144         mps_dprint(sc, MPS_MAPPING, "%s: Writing DPM entry %d for enclosure.\n",
145             __func__, et_entry->dpm_entry_num);
146         memcpy(&config_page.Entry, (u8 *)dpm_entry,
147             sizeof(Mpi2DriverMap0Entry_t));
148         if (mps_config_set_dpm_pg0(sc, &mpi_reply, &config_page,
149             et_entry->dpm_entry_num)) {
150                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: Write of DPM "
151                     "entry %d for enclosure failed.\n", __func__,
152                     et_entry->dpm_entry_num);
153                 dpm_entry->MappingInformation = le16toh(dpm_entry->
154                     MappingInformation);
155                 dpm_entry->DeviceIndex = le16toh(dpm_entry->DeviceIndex);
156                 dpm_entry->PhysicalBitsMapping =
157                     le32toh(dpm_entry->PhysicalBitsMapping);
158                 return -1;
159         }
160         dpm_entry->MappingInformation = le16toh(dpm_entry->
161             MappingInformation);
162         dpm_entry->DeviceIndex = le16toh(dpm_entry->DeviceIndex);
163         dpm_entry->PhysicalBitsMapping =
164             le32toh(dpm_entry->PhysicalBitsMapping);
165         return 0;
166 }
167
168 /**
169  * _mapping_commit_map_entry - write a particular map table entry in DPM page0.
170  * @sc: per adapter object
171  * @mt_entry: mapping table entry
172  *
173  * Returns 0 for success, non-zero for failure.
174  */
175
176 static int
177 _mapping_commit_map_entry(struct mps_softc *sc,
178     struct dev_mapping_table *mt_entry)
179 {
180         Mpi2DriverMap0Entry_t *dpm_entry;
181         Mpi2ConfigReply_t mpi_reply;
182         Mpi2DriverMappingPage0_t config_page;
183
184         if (!sc->is_dpm_enable)
185                 return 0;
186
187         /*
188          * It's possible that this Map Entry points to a BAD DPM index. This
189          * can happen if the Map Entry is a for a missing device and the DPM
190          * entry that was being used by this device is now being used by some
191          * new device. So, check for a BAD DPM index and just return if so.
192          */
193         if (mt_entry->dpm_entry_num == MPS_DPM_BAD_IDX) {
194                 mps_dprint(sc, MPS_MAPPING, "%s: DPM entry location for target "
195                     "%d is invalid. DPM will not be written.\n", __func__,
196                     mt_entry->id);
197                 return 0;
198         }
199
200         memset(&config_page, 0, sizeof(Mpi2DriverMappingPage0_t));
201         memcpy(&config_page.Header, (u8 *)sc->dpm_pg0,
202             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
203         dpm_entry = (Mpi2DriverMap0Entry_t *)((u8 *) sc->dpm_pg0 +
204             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
205         dpm_entry = dpm_entry + mt_entry->dpm_entry_num;
206         dpm_entry->PhysicalIdentifier.Low = (0xFFFFFFFF &
207             mt_entry->physical_id);
208         dpm_entry->PhysicalIdentifier.High = (mt_entry->physical_id >> 32);
209         dpm_entry->DeviceIndex = htole16(mt_entry->id);
210         dpm_entry->MappingInformation = htole16(mt_entry->missing_count);
211         dpm_entry->PhysicalBitsMapping = 0;
212         dpm_entry->Reserved1 = 0;
213         memcpy(&config_page.Entry, (u8 *)dpm_entry,
214             sizeof(Mpi2DriverMap0Entry_t));
215
216         mps_dprint(sc, MPS_MAPPING, "%s: Writing DPM entry %d for target %d.\n",
217             __func__, mt_entry->dpm_entry_num, mt_entry->id);
218         if (mps_config_set_dpm_pg0(sc, &mpi_reply, &config_page,
219             mt_entry->dpm_entry_num)) {
220                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: Write of DPM "
221                     "entry %d for target %d failed.\n", __func__,
222                     mt_entry->dpm_entry_num, mt_entry->id);
223                 dpm_entry->MappingInformation = le16toh(dpm_entry->
224                     MappingInformation);
225                 dpm_entry->DeviceIndex = le16toh(dpm_entry->DeviceIndex);
226                 return -1;
227         }
228
229         dpm_entry->MappingInformation = le16toh(dpm_entry->MappingInformation);
230         dpm_entry->DeviceIndex = le16toh(dpm_entry->DeviceIndex);
231         return 0;
232 }
233
234 /**
235  * _mapping_get_ir_maprange - get start and end index for IR map range.
236  * @sc: per adapter object
237  * @start_idx: place holder for start index
238  * @end_idx: place holder for end index
239  *
240  * The IR volumes can be mapped either at start or end of the mapping table
241  * this function gets the detail of where IR volume mapping starts and ends
242  * in the device mapping table
243  *
244  * Returns nothing.
245  */
246 static void
247 _mapping_get_ir_maprange(struct mps_softc *sc, u32 *start_idx, u32 *end_idx)
248 {
249         u16 volume_mapping_flags;
250         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
251
252         volume_mapping_flags = le16toh(sc->ioc_pg8.IRVolumeMappingFlags) &
253             MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
254         if (volume_mapping_flags == MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING) {
255                 *start_idx = 0;
256                 if (ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_RESERVED_TARGETID_0)
257                         *start_idx = 1;
258         } else
259                 *start_idx = sc->max_devices - sc->max_volumes;
260         *end_idx = *start_idx + sc->max_volumes - 1;
261 }
262
263 /**
264  * _mapping_get_enc_idx_from_id - get enclosure index from enclosure ID
265  * @sc: per adapter object
266  * @enc_id: enclosure logical identifier
267  *
268  * Returns the index of enclosure entry on success or bad index.
269  */
270 static u8
271 _mapping_get_enc_idx_from_id(struct mps_softc *sc, u64 enc_id,
272     u64 phy_bits)
273 {
274         struct enc_mapping_table *et_entry;
275         u8 enc_idx = 0;
276
277         for (enc_idx = 0; enc_idx < sc->num_enc_table_entries; enc_idx++) {
278                 et_entry = &sc->enclosure_table[enc_idx];
279                 if ((et_entry->enclosure_id == le64toh(enc_id)) &&
280                     (!et_entry->phy_bits || (et_entry->phy_bits &
281                     le32toh(phy_bits))))
282                         return enc_idx;
283         }
284         return MPS_ENCTABLE_BAD_IDX;
285 }
286
287 /**
288  * _mapping_get_enc_idx_from_handle - get enclosure index from handle
289  * @sc: per adapter object
290  * @enc_id: enclosure handle
291  *
292  * Returns the index of enclosure entry on success or bad index.
293  */
294 static u8
295 _mapping_get_enc_idx_from_handle(struct mps_softc *sc, u16 handle)
296 {
297         struct enc_mapping_table *et_entry;
298         u8 enc_idx = 0;
299
300         for (enc_idx = 0; enc_idx < sc->num_enc_table_entries; enc_idx++) {
301                 et_entry = &sc->enclosure_table[enc_idx];
302                 if (et_entry->missing_count)
303                         continue;
304                 if (et_entry->enc_handle == handle)
305                         return enc_idx;
306         }
307         return MPS_ENCTABLE_BAD_IDX;
308 }
309
310 /**
311  * _mapping_get_high_missing_et_idx - get missing enclosure index
312  * @sc: per adapter object
313  *
314  * Search through the enclosure table and identifies the enclosure entry
315  * with high missing count and returns it's index
316  *
317  * Returns the index of enclosure entry on success or bad index.
318  */
319 static u8
320 _mapping_get_high_missing_et_idx(struct mps_softc *sc)
321 {
322         struct enc_mapping_table *et_entry;
323         u8 high_missing_count = 0;
324         u8 enc_idx, high_idx = MPS_ENCTABLE_BAD_IDX;
325
326         for (enc_idx = 0; enc_idx < sc->num_enc_table_entries; enc_idx++) {
327                 et_entry = &sc->enclosure_table[enc_idx];
328                 if ((et_entry->missing_count > high_missing_count) &&
329                     !et_entry->skip_search) {
330                         high_missing_count = et_entry->missing_count;
331                         high_idx = enc_idx;
332                 }
333         }
334         return high_idx;
335 }
336
337 /**
338  * _mapping_get_high_missing_mt_idx - get missing map table index
339  * @sc: per adapter object
340  *
341  * Search through the map table and identifies the device entry
342  * with high missing count and returns it's index
343  *
344  * Returns the index of map table entry on success or bad index.
345  */
346 static u32
347 _mapping_get_high_missing_mt_idx(struct mps_softc *sc)
348 {
349         u32 map_idx, high_idx = MPS_MAPTABLE_BAD_IDX;
350         u8 high_missing_count = 0;
351         u32 start_idx, end_idx, start_idx_ir, end_idx_ir;
352         struct dev_mapping_table *mt_entry;
353         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
354
355         start_idx = 0;
356         start_idx_ir = 0;
357         end_idx_ir = 0;
358         end_idx = sc->max_devices;
359         if (ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_RESERVED_TARGETID_0)
360                 start_idx = 1;
361         if (sc->ir_firmware) {
362                 _mapping_get_ir_maprange(sc, &start_idx_ir, &end_idx_ir);
363                 if (start_idx == start_idx_ir)
364                         start_idx = end_idx_ir + 1;
365                 else
366                         end_idx = start_idx_ir;
367         }
368         mt_entry = &sc->mapping_table[start_idx];
369         for (map_idx = start_idx; map_idx < end_idx; map_idx++, mt_entry++) {
370                 if (mt_entry->missing_count > high_missing_count) {
371                         high_missing_count =  mt_entry->missing_count;
372                         high_idx = map_idx;
373                 }
374         }
375         return high_idx;
376 }
377
378 /**
379  * _mapping_get_ir_mt_idx_from_wwid - get map table index from volume WWID
380  * @sc: per adapter object
381  * @wwid: world wide unique ID of the volume
382  *
383  * Returns the index of map table entry on success or bad index.
384  */
385 static u32
386 _mapping_get_ir_mt_idx_from_wwid(struct mps_softc *sc, u64 wwid)
387 {
388         u32 start_idx, end_idx, map_idx;
389         struct dev_mapping_table *mt_entry;
390
391         _mapping_get_ir_maprange(sc, &start_idx, &end_idx);
392         mt_entry = &sc->mapping_table[start_idx];
393         for (map_idx = start_idx; map_idx <= end_idx; map_idx++, mt_entry++)
394                 if (mt_entry->physical_id == wwid)
395                         return map_idx;
396
397         return MPS_MAPTABLE_BAD_IDX;
398 }
399
400 /**
401  * _mapping_get_mt_idx_from_id - get map table index from a device ID
402  * @sc: per adapter object
403  * @dev_id: device identifer (SAS Address)
404  *
405  * Returns the index of map table entry on success or bad index.
406  */
407 static u32
408 _mapping_get_mt_idx_from_id(struct mps_softc *sc, u64 dev_id)
409 {
410         u32 map_idx;
411         struct dev_mapping_table *mt_entry;
412
413         for (map_idx = 0; map_idx < sc->max_devices; map_idx++) {
414                 mt_entry = &sc->mapping_table[map_idx];
415                 if (mt_entry->physical_id == dev_id)
416                         return map_idx;
417         }
418         return MPS_MAPTABLE_BAD_IDX;
419 }
420
421 /**
422  * _mapping_get_ir_mt_idx_from_handle - get map table index from volume handle
423  * @sc: per adapter object
424  * @wwid: volume device handle
425  *
426  * Returns the index of map table entry on success or bad index.
427  */
428 static u32
429 _mapping_get_ir_mt_idx_from_handle(struct mps_softc *sc, u16 volHandle)
430 {
431         u32 start_idx, end_idx, map_idx;
432         struct dev_mapping_table *mt_entry;
433
434         _mapping_get_ir_maprange(sc, &start_idx, &end_idx);
435         mt_entry = &sc->mapping_table[start_idx];
436         for (map_idx = start_idx; map_idx <= end_idx; map_idx++, mt_entry++)
437                 if (mt_entry->dev_handle == volHandle)
438                         return map_idx;
439
440         return MPS_MAPTABLE_BAD_IDX;
441 }
442
443 /**
444  * _mapping_get_mt_idx_from_handle - get map table index from handle
445  * @sc: per adapter object
446  * @dev_id: device handle
447  *
448  * Returns the index of map table entry on success or bad index.
449  */
450 static u32
451 _mapping_get_mt_idx_from_handle(struct mps_softc *sc, u16 handle)
452 {
453         u32 map_idx;
454         struct dev_mapping_table *mt_entry;
455
456         for (map_idx = 0; map_idx < sc->max_devices; map_idx++) {
457                 mt_entry = &sc->mapping_table[map_idx];
458                 if (mt_entry->dev_handle == handle)
459                         return map_idx;
460         }
461         return MPS_MAPTABLE_BAD_IDX;
462 }
463
464 /**
465  * _mapping_get_free_ir_mt_idx - get first free index for a volume
466  * @sc: per adapter object
467  *
468  * Search through mapping table for free index for a volume and if no free
469  * index then looks for a volume with high mapping index
470  *
471  * Returns the index of map table entry on success or bad index.
472  */
473 static u32
474 _mapping_get_free_ir_mt_idx(struct mps_softc *sc)
475 {
476         u8 high_missing_count = 0;
477         u32 start_idx, end_idx, map_idx;
478         u32 high_idx = MPS_MAPTABLE_BAD_IDX;
479         struct dev_mapping_table *mt_entry;
480
481         /*
482          * The IN_USE flag should be clear if the entry is available to use.
483          * This flag is cleared on initialization and and when a volume is
484          * deleted. All other times this flag should be set. If, for some
485          * reason, a free entry cannot be found, look for the entry with the
486          * highest missing count just in case there is one.
487          */
488         _mapping_get_ir_maprange(sc, &start_idx, &end_idx);
489
490         mt_entry = &sc->mapping_table[start_idx];
491         for (map_idx = start_idx; map_idx <= end_idx; map_idx++, mt_entry++) {
492                 if (!(mt_entry->device_info & MPS_MAP_IN_USE))
493                         return map_idx;
494
495                 if (mt_entry->missing_count > high_missing_count) {
496                         high_missing_count = mt_entry->missing_count;
497                         high_idx = map_idx;
498                 }
499         }
500
501         if (high_idx == MPS_MAPTABLE_BAD_IDX) {
502                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: Could not find a "
503                     "free entry in the mapping table for a Volume. The mapping "
504                     "table is probably corrupt.\n", __func__);
505         }
506
507         return high_idx;
508 }
509
510 /**
511  * _mapping_get_free_mt_idx - get first free index for a device
512  * @sc: per adapter object
513  * @start_idx: offset in the table to start search
514  *
515  * Returns the index of map table entry on success or bad index.
516  */
517 static u32
518 _mapping_get_free_mt_idx(struct mps_softc *sc, u32 start_idx)
519 {
520         u32 map_idx, max_idx = sc->max_devices;
521         struct dev_mapping_table *mt_entry = &sc->mapping_table[start_idx];
522         u16 volume_mapping_flags;
523
524         volume_mapping_flags = le16toh(sc->ioc_pg8.IRVolumeMappingFlags) &
525             MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
526         if (sc->ir_firmware && (volume_mapping_flags ==
527             MPI2_IOCPAGE8_IRFLAGS_HIGH_VOLUME_MAPPING))
528                 max_idx -= sc->max_volumes;
529
530         for (map_idx  = start_idx; map_idx < max_idx; map_idx++, mt_entry++)
531                 if (!(mt_entry->device_info & (MPS_MAP_IN_USE |
532                     MPS_DEV_RESERVED)))
533                         return map_idx;
534
535         return MPS_MAPTABLE_BAD_IDX;
536 }
537
538 /**
539  * _mapping_get_dpm_idx_from_id - get DPM index from ID
540  * @sc: per adapter object
541  * @id: volume WWID or enclosure ID or device ID
542  *
543  * Returns the index of DPM entry on success or bad index.
544  */
545 static u16
546 _mapping_get_dpm_idx_from_id(struct mps_softc *sc, u64 id, u32 phy_bits)
547 {
548         u16 entry_num;
549         uint64_t PhysicalIdentifier;
550         Mpi2DriverMap0Entry_t *dpm_entry;
551
552         dpm_entry = (Mpi2DriverMap0Entry_t *)((u8 *)sc->dpm_pg0 +
553             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
554         PhysicalIdentifier = dpm_entry->PhysicalIdentifier.High;
555         PhysicalIdentifier = (PhysicalIdentifier << 32) | 
556             dpm_entry->PhysicalIdentifier.Low;
557         for (entry_num = 0; entry_num < sc->max_dpm_entries; entry_num++,
558             dpm_entry++)
559                 if ((id == PhysicalIdentifier) &&
560                     (!phy_bits || !dpm_entry->PhysicalBitsMapping ||
561                     (phy_bits & dpm_entry->PhysicalBitsMapping)))
562                         return entry_num;
563
564         return MPS_DPM_BAD_IDX;
565 }
566
567 /**
568  * _mapping_get_free_dpm_idx - get first available DPM index
569  * @sc: per adapter object
570  *
571  * Returns the index of DPM entry on success or bad index.
572  */
573 static u32
574 _mapping_get_free_dpm_idx(struct mps_softc *sc)
575 {
576         u16 entry_num;
577         Mpi2DriverMap0Entry_t *dpm_entry;
578         u16 current_entry = MPS_DPM_BAD_IDX, missing_cnt, high_missing_cnt = 0;
579         u64 physical_id;
580         struct dev_mapping_table *mt_entry;
581         u32 map_idx;
582
583         for (entry_num = 0; entry_num < sc->max_dpm_entries; entry_num++) {
584                 dpm_entry = (Mpi2DriverMap0Entry_t *) ((u8 *)sc->dpm_pg0 +
585                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
586                 dpm_entry += entry_num;
587                 missing_cnt = dpm_entry->MappingInformation &
588                     MPI2_DRVMAP0_MAPINFO_MISSING_MASK;
589
590                 /*
591                  * If entry is used and not missing, then this entry can't be
592                  * used. Look at next one.
593                  */
594                 if (sc->dpm_entry_used[entry_num] && !missing_cnt)
595                         continue;
596
597                 /*
598                  * If this entry is not used at all, then the missing count
599                  * doesn't matter. Just use this one. Otherwise, keep looking
600                  * and make sure the entry with the highest missing count is
601                  * used.
602                  */
603                 if (!sc->dpm_entry_used[entry_num]) {
604                         current_entry = entry_num;
605                         break;
606                 }
607                 if ((current_entry == MPS_DPM_BAD_IDX) ||
608                     (missing_cnt > high_missing_cnt)) {
609                         current_entry = entry_num;
610                         high_missing_cnt = missing_cnt;
611                 }
612         }
613
614         /*
615          * If an entry has been found to use and it's already marked as used
616          * it means that some device was already using this entry but it's
617          * missing, and that means that the connection between the missing
618          * device's DPM entry and the mapping table needs to be cleared. To do
619          * this, use the Physical ID of the old device still in the DPM entry
620          * to find its mapping table entry, then mark its DPM entry as BAD.
621          */
622         if ((current_entry != MPS_DPM_BAD_IDX) &&
623             sc->dpm_entry_used[current_entry]) {
624                 dpm_entry = (Mpi2DriverMap0Entry_t *) ((u8 *)sc->dpm_pg0 +
625                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
626                 dpm_entry += current_entry;
627                 physical_id = dpm_entry->PhysicalIdentifier.High;
628                 physical_id = (physical_id << 32) |
629                     dpm_entry->PhysicalIdentifier.Low;
630                 map_idx = _mapping_get_mt_idx_from_id(sc, physical_id);
631                 if (map_idx != MPS_MAPTABLE_BAD_IDX) {
632                         mt_entry = &sc->mapping_table[map_idx];
633                         mt_entry->dpm_entry_num = MPS_DPM_BAD_IDX;
634                 }
635         }
636         return current_entry;
637 }
638
639 /**
640  * _mapping_update_ir_missing_cnt - Updates missing count for a volume
641  * @sc: per adapter object
642  * @map_idx: map table index of the volume
643  * @element: IR configuration change element
644  * @wwid: IR volume ID.
645  *
646  * Updates the missing count in the map table and in the DPM entry for a volume
647  *
648  * Returns nothing.
649  */
650 static void
651 _mapping_update_ir_missing_cnt(struct mps_softc *sc, u32 map_idx,
652     Mpi2EventIrConfigElement_t *element, u64 wwid)
653 {
654         struct dev_mapping_table *mt_entry;
655         u8 missing_cnt, reason = element->ReasonCode, update_dpm = 1;
656         u16 dpm_idx;
657         Mpi2DriverMap0Entry_t *dpm_entry;
658
659         /*
660          * Depending on the reason code, update the missing count. Always set
661          * the init_complete flag when here, so just do it first. That flag is
662          * used for volumes to make sure that the DPM entry has been updated.
663          * When a volume is deleted, clear the map entry's IN_USE flag so that
664          * the entry can be used again if another volume is created. Also clear
665          * its dev_handle entry so that other functions can't find this volume
666          * by the handle, since it's not defined any longer.
667          */
668         mt_entry = &sc->mapping_table[map_idx];
669         mt_entry->init_complete = 1;
670         if ((reason == MPI2_EVENT_IR_CHANGE_RC_ADDED) ||
671             (reason == MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED)) {
672                 mt_entry->missing_count = 0;
673         } else if (reason == MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED) {
674                 if (mt_entry->missing_count < MPS_MAX_MISSING_COUNT)
675                         mt_entry->missing_count++;
676
677                 mt_entry->device_info &= ~MPS_MAP_IN_USE;
678                 mt_entry->dev_handle = 0;
679         }
680
681         /*
682          * If persistent mapping is enabled, update the DPM with the new missing
683          * count for the volume. If the DPM index is bad, get a free one. If
684          * it's bad for a volume that's being deleted do nothing because that
685          * volume doesn't have a DPM entry. 
686          */
687         if (!sc->is_dpm_enable)
688                 return;
689         dpm_idx = mt_entry->dpm_entry_num;
690         if (dpm_idx == MPS_DPM_BAD_IDX) {
691                 if (reason == MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED)
692                 {
693                         mps_dprint(sc, MPS_MAPPING, "%s: Volume being deleted "
694                             "is not in DPM so DPM missing count will not be "
695                             "updated.\n", __func__);
696                         return;
697                 }
698         }
699         if (dpm_idx == MPS_DPM_BAD_IDX)
700                 dpm_idx = _mapping_get_free_dpm_idx(sc);
701
702         /*
703          * Got the DPM entry for the volume or found a free DPM entry if this is
704          * a new volume. Check if the current information is outdated.
705          */
706         if (dpm_idx != MPS_DPM_BAD_IDX) {
707                 dpm_entry = (Mpi2DriverMap0Entry_t *)((u8 *)sc->dpm_pg0 +
708                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
709                 dpm_entry += dpm_idx;
710                 missing_cnt = dpm_entry->MappingInformation &
711                     MPI2_DRVMAP0_MAPINFO_MISSING_MASK;
712                 if ((mt_entry->physical_id ==
713                     le64toh(((u64)dpm_entry->PhysicalIdentifier.High << 32) |
714                     (u64)dpm_entry->PhysicalIdentifier.Low)) && (missing_cnt ==
715                     mt_entry->missing_count)) {
716                         mps_dprint(sc, MPS_MAPPING, "%s: DPM entry for volume "
717                            "with target ID %d does not require an update.\n",
718                             __func__, mt_entry->id);
719                         update_dpm = 0;
720                 }
721         }
722
723         /*
724          * Update the volume's persistent info if it's new or the ID or missing
725          * count has changed. If a good DPM index has not been found by now,
726          * there is no space left in the DPM table.
727          */
728         if ((dpm_idx != MPS_DPM_BAD_IDX) && update_dpm) {
729                 mps_dprint(sc, MPS_MAPPING, "%s: Update DPM entry for volume "
730                     "with target ID %d.\n", __func__, mt_entry->id);
731
732                 mt_entry->dpm_entry_num = dpm_idx;
733                 dpm_entry = (Mpi2DriverMap0Entry_t *)((u8 *)sc->dpm_pg0 +
734                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
735                 dpm_entry += dpm_idx;
736                 dpm_entry->PhysicalIdentifier.Low =
737                     (0xFFFFFFFF & mt_entry->physical_id);
738                 dpm_entry->PhysicalIdentifier.High =
739                     (mt_entry->physical_id >> 32);
740                 dpm_entry->DeviceIndex = map_idx;
741                 dpm_entry->MappingInformation = mt_entry->missing_count;
742                 dpm_entry->PhysicalBitsMapping = 0;
743                 dpm_entry->Reserved1 = 0;
744                 sc->dpm_flush_entry[dpm_idx] = 1;
745                 sc->dpm_entry_used[dpm_idx] = 1;
746         } else if (dpm_idx == MPS_DPM_BAD_IDX) {
747                 mps_dprint(sc, MPS_INFO | MPS_MAPPING, "%s: No space to add an "
748                     "entry in the DPM table for volume with target ID %d.\n",
749                     __func__, mt_entry->id);
750         }
751 }
752
753 /**
754  * _mapping_add_to_removal_table - add DPM index to the removal table
755  * @sc: per adapter object
756  * @dpm_idx: Index of DPM entry to remove
757  *
758  * Adds a DPM entry number to the removal table.
759  *
760  * Returns nothing.
761  */
762 static void
763 _mapping_add_to_removal_table(struct mps_softc *sc, u16 dpm_idx)
764 {
765         struct map_removal_table *remove_entry;
766         u32 i;
767
768         /*
769          * This is only used to remove entries from the DPM in the controller.
770          * If DPM is not enabled, just return.
771          */
772         if (!sc->is_dpm_enable)
773                 return;
774
775         /*
776          * Find the first available removal_table entry and add the new entry
777          * there.
778          */
779         remove_entry = sc->removal_table;
780
781         for (i = 0; i < sc->max_devices; i++, remove_entry++) {
782                 if (remove_entry->dpm_entry_num != MPS_DPM_BAD_IDX)
783                         continue;
784
785                 mps_dprint(sc, MPS_MAPPING, "%s: Adding DPM entry %d to table "
786                     "for removal.\n", __func__, dpm_idx);
787                 remove_entry->dpm_entry_num = dpm_idx;
788                 break;
789         }
790
791 }
792
793 /**
794  * _mapping_update_missing_count - Update missing count for a device
795  * @sc: per adapter object
796  * @topo_change: Topology change event entry
797  *
798  * Increment the missing count in the mapping table for a device that is not
799  * responding. If Persitent Mapping is used, increment the DPM entry as well.
800  * Currently, this function only increments the missing count if the device 
801  * goes missing, so after initialization has completed. This means that the
802  * missing count can only go from 0 to 1 here. The missing count is incremented
803  * during initialization as well, so that's where a target's missing count can
804  * go past 1.
805  *
806  * Returns nothing.
807  */
808 static void
809 _mapping_update_missing_count(struct mps_softc *sc,
810     struct _map_topology_change *topo_change)
811 {
812         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
813         u8 entry;
814         struct _map_phy_change *phy_change;
815         u32 map_idx;
816         struct dev_mapping_table *mt_entry;
817         Mpi2DriverMap0Entry_t *dpm_entry;
818
819         for (entry = 0; entry < topo_change->num_entries; entry++) {
820                 phy_change = &topo_change->phy_details[entry];
821                 if (!phy_change->dev_handle || (phy_change->reason !=
822                     MPI2_EVENT_SAS_TOPO_RC_TARG_NOT_RESPONDING))
823                         continue;
824                 map_idx = _mapping_get_mt_idx_from_handle(sc, phy_change->
825                     dev_handle);
826                 phy_change->is_processed = 1;
827                 if (map_idx == MPS_MAPTABLE_BAD_IDX) {
828                         mps_dprint(sc, MPS_INFO | MPS_MAPPING, "%s: device is "
829                             "already removed from mapping table\n", __func__);
830                         continue;
831                 }
832                 mt_entry = &sc->mapping_table[map_idx];
833                 if (mt_entry->missing_count < MPS_MAX_MISSING_COUNT)
834                         mt_entry->missing_count++;
835
836                 /*
837                  * When using Enc/Slot mapping, when a device is removed, it's
838                  * mapping table information should be cleared. Otherwise, the
839                  * target ID will be incorrect if this same device is re-added
840                  * to a different slot.
841                  */
842                 if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
843                     MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
844                         _mapping_clear_map_entry(mt_entry);
845                 }
846
847                 /*
848                  * When using device mapping, update the missing count in the
849                  * DPM entry, but only if the missing count has changed.
850                  */
851                 if (((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
852                     MPI2_IOCPAGE8_FLAGS_DEVICE_PERSISTENCE_MAPPING) &&
853                     sc->is_dpm_enable &&
854                     mt_entry->dpm_entry_num != MPS_DPM_BAD_IDX) {
855                         dpm_entry =
856                             (Mpi2DriverMap0Entry_t *) ((u8 *)sc->dpm_pg0 +
857                             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
858                         dpm_entry += mt_entry->dpm_entry_num;
859                         if (dpm_entry->MappingInformation !=
860                             mt_entry->missing_count) {
861                                 dpm_entry->MappingInformation =
862                                     mt_entry->missing_count;
863                                 sc->dpm_flush_entry[mt_entry->dpm_entry_num] =
864                                     1;
865                         }
866                 }
867         }
868 }
869
870 /**
871  * _mapping_find_enc_map_space -find map table entries for enclosure
872  * @sc: per adapter object
873  * @et_entry: enclosure entry
874  *
875  * Search through the mapping table defragment it and provide contiguous
876  * space in map table for a particular enclosure entry
877  *
878  * Returns start index in map table or bad index.
879  */
880 static u32
881 _mapping_find_enc_map_space(struct mps_softc *sc,
882     struct enc_mapping_table *et_entry)
883 {
884         u16 vol_mapping_flags;
885         u32 skip_count, end_of_table, map_idx, enc_idx;
886         u16 num_found;
887         u32 start_idx = MPS_MAPTABLE_BAD_IDX;
888         struct dev_mapping_table *mt_entry;
889         struct enc_mapping_table *enc_entry;
890         unsigned char done_flag = 0, found_space;
891         u16 max_num_phy_ids = le16toh(sc->ioc_pg8.MaxNumPhysicalMappedIDs);
892
893         skip_count = sc->num_rsvd_entries;
894         num_found = 0;
895
896         vol_mapping_flags = le16toh(sc->ioc_pg8.IRVolumeMappingFlags) &
897             MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
898
899         /*
900          * The end of the mapping table depends on where volumes are kept, if
901          * IR is enabled.
902          */
903         if (!sc->ir_firmware)
904                 end_of_table = sc->max_devices;
905         else if (vol_mapping_flags == MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING)
906                 end_of_table = sc->max_devices;
907         else
908                 end_of_table = sc->max_devices - sc->max_volumes;
909
910         /*
911          * The skip_count is the number of entries that are reserved at the
912          * beginning of the mapping table. But, it does not include the number
913          * of Physical IDs that are reserved for direct attached devices. Look
914          * through the mapping table after these reserved entries to see if 
915          * the devices for this enclosure are already mapped. The PHY bit check
916          * is used to make sure that at least one PHY bit is common between the
917          * enclosure and the device that is already mapped.
918          */
919         mps_dprint(sc, MPS_MAPPING, "%s: Looking for space in the mapping "
920             "table for added enclosure.\n", __func__);
921         for (map_idx = (max_num_phy_ids + skip_count);
922             map_idx < end_of_table; map_idx++) {
923                 mt_entry = &sc->mapping_table[map_idx];
924                 if ((et_entry->enclosure_id == mt_entry->physical_id) &&
925                     (!mt_entry->phy_bits || (mt_entry->phy_bits &
926                     et_entry->phy_bits))) {
927                         num_found += 1;
928                         if (num_found == et_entry->num_slots) {
929                                 start_idx = (map_idx - num_found) + 1;
930                                 mps_dprint(sc, MPS_MAPPING, "%s: Found space "
931                                     "in the mapping for enclosure at map index "
932                                     "%d.\n", __func__, start_idx);
933                                 return start_idx;
934                         }
935                 } else
936                         num_found = 0;
937         }
938
939         /*
940          * If the enclosure's devices are not mapped already, look for
941          * contiguous entries in the mapping table that are not reserved. If
942          * enough entries are found, return the starting index for that space.
943          */
944         num_found = 0;
945         for (map_idx = (max_num_phy_ids + skip_count);
946             map_idx < end_of_table; map_idx++) {
947                 mt_entry = &sc->mapping_table[map_idx];
948                 if (!(mt_entry->device_info & MPS_DEV_RESERVED)) {
949                         num_found += 1;
950                         if (num_found == et_entry->num_slots) {
951                                 start_idx = (map_idx - num_found) + 1;
952                                 mps_dprint(sc, MPS_MAPPING, "%s: Found space "
953                                     "in the mapping for enclosure at map index "
954                                     "%d.\n", __func__, start_idx);
955                                 return start_idx;
956                         }
957                 } else
958                         num_found = 0;
959         }
960
961         /*
962          * If here, it means that not enough space in the mapping table was
963          * found to support this enclosure, so go through the enclosure table to
964          * see if any enclosure entries have a missing count. If so, get the
965          * enclosure with the highest missing count and check it to see if there
966          * is enough space for the new enclosure.
967          */
968         while (!done_flag) {
969                 enc_idx = _mapping_get_high_missing_et_idx(sc);
970                 if (enc_idx == MPS_ENCTABLE_BAD_IDX) {
971                         mps_dprint(sc, MPS_MAPPING, "%s: Not enough space was "
972                             "found in the mapping for the added enclosure.\n",
973                             __func__);
974                         return MPS_MAPTABLE_BAD_IDX;
975                 }
976
977                 /*
978                  * Found a missing enclosure. Set the skip_search flag so this
979                  * enclosure is not checked again for a high missing count if
980                  * the loop continues. This way, all missing enclosures can
981                  * have their space added together to find enough space in the
982                  * mapping table for the added enclosure. The space must be
983                  * contiguous.
984                  */
985                 mps_dprint(sc, MPS_MAPPING, "%s: Space from a missing "
986                     "enclosure was found.\n", __func__);
987                 enc_entry = &sc->enclosure_table[enc_idx];
988                 enc_entry->skip_search = 1;
989
990                 /*
991                  * Unmark all of the missing enclosure's device's reserved
992                  * space. These will be remarked as reserved if this missing
993                  * enclosure's space is not used.
994                  */
995                 mps_dprint(sc, MPS_MAPPING, "%s: Clear the reserved flag for "
996                     "all of the map entries for the enclosure.\n", __func__);
997                 mt_entry = &sc->mapping_table[enc_entry->start_index];
998                 for (map_idx = enc_entry->start_index; map_idx <
999                     (enc_entry->start_index + enc_entry->num_slots); map_idx++,
1000                     mt_entry++)
1001                         mt_entry->device_info &= ~MPS_DEV_RESERVED;
1002
1003                 /*
1004                  * Now that space has been unreserved, check again to see if
1005                  * enough space is available for the new enclosure.
1006                  */
1007                 mps_dprint(sc, MPS_MAPPING, "%s: Check if new mapping space is "
1008                     "enough for the new enclosure.\n", __func__);
1009                 found_space = 0;
1010                 num_found = 0;
1011                 for (map_idx = (max_num_phy_ids + skip_count);
1012                     map_idx < end_of_table; map_idx++) {
1013                         mt_entry = &sc->mapping_table[map_idx];
1014                         if (!(mt_entry->device_info & MPS_DEV_RESERVED)) {
1015                                 num_found += 1;
1016                                 if (num_found == et_entry->num_slots) {
1017                                         start_idx = (map_idx - num_found) + 1;
1018                                         found_space = 1;
1019                                         break;
1020                                 }
1021                         } else
1022                                 num_found = 0;
1023                 }
1024                 if (!found_space)
1025                         continue;
1026
1027                 /*
1028                  * If enough space was found, all of the missing enclosures that
1029                  * will be used for the new enclosure must be added to the
1030                  * removal table. Then all mappings for the enclosure's devices
1031                  * and for the enclosure itself need to be cleared. There may be
1032                  * more than one enclosure to add to the removal table and
1033                  * clear.
1034                  */
1035                 mps_dprint(sc, MPS_MAPPING, "%s: Found space in the mapping "
1036                     "for enclosure at map index %d.\n", __func__, start_idx);
1037                 for (map_idx = start_idx; map_idx < (start_idx + num_found);
1038                     map_idx++) {
1039                         enc_entry = sc->enclosure_table;
1040                         for (enc_idx = 0; enc_idx < sc->num_enc_table_entries;
1041                             enc_idx++, enc_entry++) {
1042                                 if (map_idx < enc_entry->start_index ||
1043                                     map_idx > (enc_entry->start_index +
1044                                     enc_entry->num_slots))
1045                                         continue;
1046                                 if (!enc_entry->removal_flag) {
1047                                         mps_dprint(sc, MPS_MAPPING, "%s: "
1048                                             "Enclosure %d will be removed from "
1049                                             "the mapping table.\n", __func__,
1050                                             enc_idx);
1051                                         enc_entry->removal_flag = 1;
1052                                         _mapping_add_to_removal_table(sc,
1053                                             enc_entry->dpm_entry_num);
1054                                 }
1055                                 mt_entry = &sc->mapping_table[map_idx];
1056                                 _mapping_clear_map_entry(mt_entry);
1057                                 if (map_idx == (enc_entry->start_index +
1058                                     enc_entry->num_slots - 1))
1059                                         _mapping_clear_enc_entry(et_entry);
1060                         }
1061                 }
1062
1063                 /*
1064                  * During the search for space for this enclosure, some entries
1065                  * in the mapping table may have been unreserved. Go back and
1066                  * change all of these to reserved again. Only the enclosures
1067                  * with the removal_flag set should be left as unreserved. The
1068                  * skip_search flag needs to be cleared as well so that the
1069                  * enclosure's space will be looked at the next time space is
1070                  * needed.
1071                  */ 
1072                 enc_entry = sc->enclosure_table;
1073                 for (enc_idx = 0; enc_idx < sc->num_enc_table_entries;
1074                     enc_idx++, enc_entry++) {
1075                         if (!enc_entry->removal_flag) {
1076                                 mps_dprint(sc, MPS_MAPPING, "%s: Reset the "
1077                                     "reserved flag for all of the map entries "
1078                                     "for enclosure %d.\n", __func__, enc_idx);
1079                                 mt_entry = &sc->mapping_table[enc_entry->
1080                                     start_index];
1081                                 for (map_idx = enc_entry->start_index; map_idx <
1082                                     (enc_entry->start_index +
1083                                     enc_entry->num_slots); map_idx++,
1084                                     mt_entry++)
1085                                         mt_entry->device_info |=
1086                                             MPS_DEV_RESERVED;
1087                                 et_entry->skip_search = 0;
1088                         }
1089                 }
1090                 done_flag = 1;
1091         }
1092         return start_idx;
1093 }
1094
1095 /**
1096  * _mapping_get_dev_info -get information about newly added devices
1097  * @sc: per adapter object
1098  * @topo_change: Topology change event entry
1099  *
1100  * Search through the topology change event list and issues sas device pg0
1101  * requests for the newly added device and reserved entries in tables
1102  *
1103  * Returns nothing
1104  */
1105 static void
1106 _mapping_get_dev_info(struct mps_softc *sc,
1107     struct _map_topology_change *topo_change)
1108 {
1109         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
1110         Mpi2ConfigReply_t mpi_reply;
1111         Mpi2SasDevicePage0_t sas_device_pg0;
1112         u8 entry, enc_idx, phy_idx;
1113         u32 map_idx, index, device_info;
1114         struct _map_phy_change *phy_change, *tmp_phy_change;
1115         uint64_t sas_address;
1116         struct enc_mapping_table *et_entry;
1117         struct dev_mapping_table *mt_entry;
1118         u8 add_code = MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED;
1119         int rc = 1;
1120
1121         for (entry = 0; entry < topo_change->num_entries; entry++) {
1122                 phy_change = &topo_change->phy_details[entry];
1123                 if (phy_change->is_processed || !phy_change->dev_handle ||
1124                     phy_change->reason != MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED)
1125                         continue;
1126
1127                 if (mps_config_get_sas_device_pg0(sc, &mpi_reply,
1128                     &sas_device_pg0, MPI2_SAS_DEVICE_PGAD_FORM_HANDLE,
1129                     phy_change->dev_handle)) {
1130                         phy_change->is_processed = 1;
1131                         continue;
1132                 }
1133
1134                 /*
1135                  * Always get SATA Identify information because this is used
1136                  * to determine if Start/Stop Unit should be sent to the drive
1137                  * when the system is shutdown.
1138                  */
1139                 device_info = le32toh(sas_device_pg0.DeviceInfo);
1140                 sas_address = le32toh(sas_device_pg0.SASAddress.High);
1141                 sas_address = (sas_address << 32) |
1142                     le32toh(sas_device_pg0.SASAddress.Low);
1143                 if ((device_info & MPI2_SAS_DEVICE_INFO_END_DEVICE) &&
1144                     (device_info & MPI2_SAS_DEVICE_INFO_SATA_DEVICE)) {
1145                         rc = mpssas_get_sas_address_for_sata_disk(sc,
1146                             &sas_address, phy_change->dev_handle, device_info,
1147                             &phy_change->is_SATA_SSD);
1148                         if (rc) {
1149                                 mps_dprint(sc, MPS_ERROR, "%s: failed to get "
1150                                     "disk type (SSD or HDD) and SAS Address "
1151                                     "for SATA device with handle 0x%04x\n",
1152                                     __func__, phy_change->dev_handle);
1153                         }
1154                 }
1155
1156                 phy_change->physical_id = sas_address;
1157                 phy_change->slot = le16toh(sas_device_pg0.Slot);
1158                 phy_change->device_info = device_info;
1159
1160                 /*
1161                  * When using Enc/Slot mapping, if this device is an enclosure
1162                  * make sure that all of its slots can fit into the mapping
1163                  * table.
1164                  */
1165                 if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1166                     MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
1167                         /*
1168                          * The enclosure should already be in the enclosure
1169                          * table due to the Enclosure Add event. If not, just
1170                          * continue, nothing can be done.
1171                          */
1172                         enc_idx = _mapping_get_enc_idx_from_handle(sc,
1173                             topo_change->enc_handle);
1174                         if (enc_idx == MPS_ENCTABLE_BAD_IDX) {
1175                                 phy_change->is_processed = 1;
1176                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
1177                                     "failed to add the device with handle "
1178                                     "0x%04x because the enclosure is not in "
1179                                     "the mapping table\n", __func__,
1180                                     phy_change->dev_handle);
1181                                 continue;
1182                         }
1183                         if (!((phy_change->device_info &
1184                             MPI2_SAS_DEVICE_INFO_END_DEVICE) &&
1185                             (phy_change->device_info &
1186                             (MPI2_SAS_DEVICE_INFO_SSP_TARGET |
1187                             MPI2_SAS_DEVICE_INFO_STP_TARGET |
1188                             MPI2_SAS_DEVICE_INFO_SATA_DEVICE)))) {
1189                                 phy_change->is_processed = 1;
1190                                 continue;
1191                         }
1192                         et_entry = &sc->enclosure_table[enc_idx];
1193
1194                         /*
1195                          * If the enclosure already has a start_index, it's been
1196                          * mapped, so go to the next Topo change.
1197                          */
1198                         if (et_entry->start_index != MPS_MAPTABLE_BAD_IDX)
1199                                 continue;
1200
1201                         /*
1202                          * If the Expander Handle is 0, the devices are direct
1203                          * attached. In that case, the start_index must be just 
1204                          * after the reserved entries. Otherwise, find space in
1205                          * the mapping table for the enclosure's devices.
1206                          */ 
1207                         if (!topo_change->exp_handle) {
1208                                 map_idx = sc->num_rsvd_entries;
1209                                 et_entry->start_index = map_idx;
1210                         } else {
1211                                 map_idx = _mapping_find_enc_map_space(sc,
1212                                     et_entry);
1213                                 et_entry->start_index = map_idx;
1214
1215                                 /*
1216                                  * If space cannot be found to hold all of the
1217                                  * enclosure's devices in the mapping table,
1218                                  * there's no need to continue checking the
1219                                  * other devices in this event. Set all of the
1220                                  * phy_details for this event (if the change is
1221                                  * for an add) as already processed because none
1222                                  * of these devices can be added to the mapping
1223                                  * table.
1224                                  */
1225                                 if (et_entry->start_index ==
1226                                     MPS_MAPTABLE_BAD_IDX) {
1227                                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING,
1228                                             "%s: failed to add the enclosure "
1229                                             "with ID 0x%016jx because there is "
1230                                             "no free space available in the "
1231                                             "mapping table for all of the "
1232                                             "enclosure's devices.\n", __func__,
1233                                             (uintmax_t)et_entry->enclosure_id);
1234                                         phy_change->is_processed = 1;
1235                                         for (phy_idx = 0; phy_idx <
1236                                             topo_change->num_entries;
1237                                             phy_idx++) {
1238                                                 tmp_phy_change =
1239                                                     &topo_change->phy_details
1240                                                     [phy_idx];
1241                                                 if (tmp_phy_change->reason ==
1242                                                     add_code)
1243                                                         tmp_phy_change->
1244                                                             is_processed = 1;
1245                                         }
1246                                         break;
1247                                 }
1248                         }
1249
1250                         /*
1251                          * Found space in the mapping table for this enclosure.
1252                          * Initialize each mapping table entry for the
1253                          * enclosure.
1254                          */
1255                         mps_dprint(sc, MPS_MAPPING, "%s: Initialize %d map "
1256                             "entries for the enclosure, starting at map index "
1257                             " %d.\n", __func__, et_entry->num_slots, map_idx);
1258                         mt_entry = &sc->mapping_table[map_idx];
1259                         for (index = map_idx; index < (et_entry->num_slots
1260                             + map_idx); index++, mt_entry++) {
1261                                 mt_entry->device_info = MPS_DEV_RESERVED;
1262                                 mt_entry->physical_id = et_entry->enclosure_id;
1263                                 mt_entry->phy_bits = et_entry->phy_bits;
1264                                 mt_entry->missing_count = 0;
1265                         }
1266                 }
1267         }
1268 }
1269
1270 /**
1271  * _mapping_set_mid_to_eid -set map table data from enclosure table
1272  * @sc: per adapter object
1273  * @et_entry: enclosure entry
1274  *
1275  * Returns nothing
1276  */
1277 static inline void
1278 _mapping_set_mid_to_eid(struct mps_softc *sc,
1279     struct enc_mapping_table *et_entry)
1280 {
1281         struct dev_mapping_table *mt_entry;
1282         u16 slots = et_entry->num_slots, map_idx;
1283         u32 start_idx = et_entry->start_index;
1284
1285         if (start_idx != MPS_MAPTABLE_BAD_IDX) {
1286                 mt_entry = &sc->mapping_table[start_idx];
1287                 for (map_idx = 0; map_idx < slots; map_idx++, mt_entry++)
1288                         mt_entry->physical_id = et_entry->enclosure_id;
1289         }
1290 }
1291
1292 /**
1293  * _mapping_clear_removed_entries - mark the entries to be cleared
1294  * @sc: per adapter object
1295  *
1296  * Search through the removal table and mark the entries which needs to be
1297  * flushed to DPM and also updates the map table and enclosure table by
1298  * clearing the corresponding entries.
1299  *
1300  * Returns nothing
1301  */
1302 static void
1303 _mapping_clear_removed_entries(struct mps_softc *sc)
1304 {
1305         u32 remove_idx;
1306         struct map_removal_table *remove_entry;
1307         Mpi2DriverMap0Entry_t *dpm_entry;
1308         u8 done_flag = 0, num_entries, m, i;
1309         struct enc_mapping_table *et_entry, *from, *to;
1310         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
1311
1312         if (sc->is_dpm_enable) {
1313                 remove_entry = sc->removal_table;
1314                 for (remove_idx = 0; remove_idx < sc->max_devices;
1315                     remove_idx++, remove_entry++) {
1316                         if (remove_entry->dpm_entry_num != MPS_DPM_BAD_IDX) {
1317                                 dpm_entry = (Mpi2DriverMap0Entry_t *)
1318                                     ((u8 *) sc->dpm_pg0 +
1319                                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
1320                                 dpm_entry += remove_entry->dpm_entry_num;
1321                                 dpm_entry->PhysicalIdentifier.Low = 0;
1322                                 dpm_entry->PhysicalIdentifier.High = 0;
1323                                 dpm_entry->DeviceIndex = 0;
1324                                 dpm_entry->MappingInformation = 0;
1325                                 dpm_entry->PhysicalBitsMapping = 0;
1326                                 sc->dpm_flush_entry[remove_entry->
1327                                     dpm_entry_num] = 1;
1328                                 sc->dpm_entry_used[remove_entry->dpm_entry_num]
1329                                     = 0;
1330                                 remove_entry->dpm_entry_num = MPS_DPM_BAD_IDX;
1331                         }
1332                 }
1333         }
1334
1335         /*
1336          * When using Enc/Slot mapping, if a new enclosure was added and old
1337          * enclosure space was needed, the enclosure table may now have gaps
1338          * that need to be closed. All enclosure mappings need to be contiguous
1339          * so that space can be reused correctly if available.
1340          */
1341         if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1342             MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
1343                 num_entries = sc->num_enc_table_entries;
1344                 while (!done_flag) {
1345                         done_flag = 1;
1346                         et_entry = sc->enclosure_table;
1347                         for (i = 0; i < num_entries; i++, et_entry++) {
1348                                 if (!et_entry->enc_handle && et_entry->
1349                                     init_complete) {
1350                                         done_flag = 0;
1351                                         if (i != (num_entries - 1)) {
1352                                                 from = &sc->enclosure_table
1353                                                     [i+1];
1354                                                 to = &sc->enclosure_table[i];
1355                                                 for (m = i; m < (num_entries -
1356                                                     1); m++, from++, to++) {
1357                                                         _mapping_set_mid_to_eid
1358                                                             (sc, to);
1359                                                         *to = *from;
1360                                                 }
1361                                                 _mapping_clear_enc_entry(to);
1362                                                 sc->num_enc_table_entries--;
1363                                                 num_entries =
1364                                                     sc->num_enc_table_entries;
1365                                         } else {
1366                                                 _mapping_clear_enc_entry
1367                                                     (et_entry);
1368                                                 sc->num_enc_table_entries--;
1369                                                 num_entries =
1370                                                     sc->num_enc_table_entries;
1371                                         }
1372                                 }
1373                         }
1374                 }
1375         }
1376 }
1377
1378 /**
1379  * _mapping_add_new_device -Add the new device into mapping table
1380  * @sc: per adapter object
1381  * @topo_change: Topology change event entry
1382  *
1383  * Search through the topology change event list and update map table,
1384  * enclosure table and DPM pages for the newly added devices.
1385  *
1386  * Returns nothing
1387  */
1388 static void
1389 _mapping_add_new_device(struct mps_softc *sc,
1390     struct _map_topology_change *topo_change)
1391 {
1392         u8 enc_idx, missing_cnt, is_removed = 0;
1393         u16 dpm_idx;
1394         u32 search_idx, map_idx;
1395         u32 entry;
1396         struct dev_mapping_table *mt_entry;
1397         struct enc_mapping_table *et_entry;
1398         struct _map_phy_change *phy_change;
1399         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
1400         Mpi2DriverMap0Entry_t *dpm_entry;
1401         uint64_t temp64_var;
1402         u8 map_shift = MPI2_DRVMAP0_MAPINFO_SLOT_SHIFT;
1403         u8 hdr_sz = sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER);
1404         u16 max_num_phy_ids = le16toh(sc->ioc_pg8.MaxNumPhysicalMappedIDs);
1405
1406         for (entry = 0; entry < topo_change->num_entries; entry++) {
1407                 phy_change = &topo_change->phy_details[entry];
1408                 if (phy_change->is_processed)
1409                         continue;
1410                 if (phy_change->reason != MPI2_EVENT_SAS_TOPO_RC_TARG_ADDED ||
1411                     !phy_change->dev_handle) {
1412                         phy_change->is_processed = 1;
1413                         continue;
1414                 }
1415                 if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1416                     MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
1417                         enc_idx = _mapping_get_enc_idx_from_handle
1418                             (sc, topo_change->enc_handle);
1419                         if (enc_idx == MPS_ENCTABLE_BAD_IDX) {
1420                                 phy_change->is_processed = 1;
1421                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
1422                                     "failed to add the device with handle "
1423                                     "0x%04x because the enclosure is not in "
1424                                     "the mapping table\n", __func__,
1425                                     phy_change->dev_handle);
1426                                 continue;
1427                         }
1428
1429                         /*
1430                          * If the enclosure's start_index is BAD here, it means
1431                          * that there is no room in the mapping table to cover
1432                          * all of the devices that could be in the enclosure.
1433                          * There's no reason to process any of the devices for
1434                          * this enclosure since they can't be mapped.
1435                          */
1436                         et_entry = &sc->enclosure_table[enc_idx];
1437                         if (et_entry->start_index == MPS_MAPTABLE_BAD_IDX) {
1438                                 phy_change->is_processed = 1;
1439                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
1440                                     "failed to add the device with handle "
1441                                     "0x%04x because there is no free space "
1442                                     "available in the mapping table\n",
1443                                     __func__, phy_change->dev_handle);
1444                                 continue;
1445                         }
1446
1447                         /*
1448                          * Add this device to the mapping table at the correct
1449                          * offset where space was found to map the enclosure.
1450                          * Then setup the DPM entry information if being used.
1451                          */
1452                         map_idx = et_entry->start_index + phy_change->slot -
1453                             et_entry->start_slot;
1454                         mt_entry = &sc->mapping_table[map_idx];
1455                         mt_entry->physical_id = phy_change->physical_id;
1456                         mt_entry->id = map_idx;
1457                         mt_entry->dev_handle = phy_change->dev_handle;
1458                         mt_entry->missing_count = 0;
1459                         mt_entry->dpm_entry_num = et_entry->dpm_entry_num;
1460                         mt_entry->device_info = phy_change->device_info |
1461                             (MPS_DEV_RESERVED | MPS_MAP_IN_USE);
1462                         if (sc->is_dpm_enable) {
1463                                 dpm_idx = et_entry->dpm_entry_num;
1464                                 if (dpm_idx == MPS_DPM_BAD_IDX)
1465                                         dpm_idx = _mapping_get_dpm_idx_from_id
1466                                             (sc, et_entry->enclosure_id,
1467                                              et_entry->phy_bits);
1468                                 if (dpm_idx == MPS_DPM_BAD_IDX) {
1469                                         dpm_idx = _mapping_get_free_dpm_idx(sc);
1470                                         if (dpm_idx != MPS_DPM_BAD_IDX) {
1471                                                 dpm_entry =
1472                                                     (Mpi2DriverMap0Entry_t *)
1473                                                     ((u8 *) sc->dpm_pg0 +
1474                                                      hdr_sz);
1475                                                 dpm_entry += dpm_idx;
1476                                                 dpm_entry->
1477                                                     PhysicalIdentifier.Low =
1478                                                     (0xFFFFFFFF &
1479                                                     et_entry->enclosure_id);
1480                                                 dpm_entry->
1481                                                     PhysicalIdentifier.High =
1482                                                     (et_entry->enclosure_id
1483                                                      >> 32);
1484                                                 dpm_entry->DeviceIndex =
1485                                                     (U16)et_entry->start_index;
1486                                                 dpm_entry->MappingInformation =
1487                                                     et_entry->num_slots;
1488                                                 dpm_entry->MappingInformation
1489                                                     <<= map_shift;
1490                                                 dpm_entry->PhysicalBitsMapping
1491                                                     = et_entry->phy_bits;
1492                                                 et_entry->dpm_entry_num =
1493                                                     dpm_idx;
1494                                                 sc->dpm_entry_used[dpm_idx] = 1;
1495                                                 sc->dpm_flush_entry[dpm_idx] =
1496                                                     1;
1497                                                 phy_change->is_processed = 1;
1498                                         } else {
1499                                                 phy_change->is_processed = 1;
1500                                                 mps_dprint(sc, MPS_ERROR |
1501                                                     MPS_MAPPING, "%s: failed "
1502                                                     "to add the device with "
1503                                                     "handle 0x%04x to "
1504                                                     "persistent table because "
1505                                                     "there is no free space "
1506                                                     "available\n", __func__,
1507                                                     phy_change->dev_handle);
1508                                         }
1509                                 } else {
1510                                         et_entry->dpm_entry_num = dpm_idx;
1511                                         mt_entry->dpm_entry_num = dpm_idx;
1512                                 }
1513                         }
1514                         et_entry->init_complete = 1;
1515                 } else if ((ioc_pg8_flags &
1516                     MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1517                     MPI2_IOCPAGE8_FLAGS_DEVICE_PERSISTENCE_MAPPING) {
1518                         /*
1519                          * Get the mapping table index for this device. If it's
1520                          * not in the mapping table yet, find a free entry if
1521                          * one is available. If there are no free entries, look
1522                          * for the entry that has the highest missing count. If
1523                          * none of that works to find an entry in the mapping
1524                          * table, there is a problem. Log a message and just
1525                          * continue on.
1526                          */
1527                         map_idx = _mapping_get_mt_idx_from_id
1528                             (sc, phy_change->physical_id);
1529                         if (map_idx == MPS_MAPTABLE_BAD_IDX) {
1530                                 search_idx = sc->num_rsvd_entries;
1531                                 if (topo_change->exp_handle)
1532                                         search_idx += max_num_phy_ids;
1533                                 map_idx = _mapping_get_free_mt_idx(sc,
1534                                     search_idx);
1535                         }
1536
1537                         /*
1538                          * If an entry will be used that has a missing device,
1539                          * clear its entry from  the DPM in the controller.
1540                          */
1541                         if (map_idx == MPS_MAPTABLE_BAD_IDX) {
1542                                 map_idx = _mapping_get_high_missing_mt_idx(sc);
1543                                 if (map_idx != MPS_MAPTABLE_BAD_IDX) {
1544                                         mt_entry = &sc->mapping_table[map_idx];
1545                                         _mapping_add_to_removal_table(sc,
1546                                             mt_entry->dpm_entry_num);
1547                                         is_removed = 1;
1548                                         mt_entry->init_complete = 0;
1549                                 }
1550                         }
1551                         if (map_idx != MPS_MAPTABLE_BAD_IDX) {
1552                                 mt_entry = &sc->mapping_table[map_idx];
1553                                 mt_entry->physical_id = phy_change->physical_id;
1554                                 mt_entry->id = map_idx;
1555                                 mt_entry->dev_handle = phy_change->dev_handle;
1556                                 mt_entry->missing_count = 0;
1557                                 mt_entry->device_info = phy_change->device_info
1558                                     | (MPS_DEV_RESERVED | MPS_MAP_IN_USE);
1559                         } else {
1560                                 phy_change->is_processed = 1;
1561                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
1562                                     "failed to add the device with handle "
1563                                     "0x%04x because there is no free space "
1564                                     "available in the mapping table\n",
1565                                     __func__, phy_change->dev_handle);
1566                                 continue;
1567                         }
1568                         if (sc->is_dpm_enable) {
1569                                 if (mt_entry->dpm_entry_num !=
1570                                     MPS_DPM_BAD_IDX) {
1571                                         dpm_idx = mt_entry->dpm_entry_num;
1572                                         dpm_entry = (Mpi2DriverMap0Entry_t *)
1573                                             ((u8 *)sc->dpm_pg0 + hdr_sz);
1574                                         dpm_entry += dpm_idx;
1575                                         missing_cnt = dpm_entry->
1576                                             MappingInformation &
1577                                             MPI2_DRVMAP0_MAPINFO_MISSING_MASK;
1578                                         temp64_var = dpm_entry->
1579                                             PhysicalIdentifier.High;
1580                                         temp64_var = (temp64_var << 32) |
1581                                            dpm_entry->PhysicalIdentifier.Low;
1582
1583                                         /*
1584                                          * If the Mapping Table's info is not
1585                                          * the same as the DPM entry, clear the
1586                                          * init_complete flag so that it's
1587                                          * updated.
1588                                          */
1589                                         if ((mt_entry->physical_id ==
1590                                             temp64_var) && !missing_cnt)
1591                                                 mt_entry->init_complete = 1;
1592                                         else
1593                                                 mt_entry->init_complete = 0;
1594                                 } else {
1595                                         dpm_idx = _mapping_get_free_dpm_idx(sc);
1596                                         mt_entry->init_complete = 0;
1597                                 }
1598                                 if (dpm_idx != MPS_DPM_BAD_IDX &&
1599                                     !mt_entry->init_complete) {
1600                                         mt_entry->dpm_entry_num = dpm_idx;
1601                                         dpm_entry = (Mpi2DriverMap0Entry_t *)
1602                                             ((u8 *)sc->dpm_pg0 + hdr_sz);
1603                                         dpm_entry += dpm_idx;
1604                                         dpm_entry->PhysicalIdentifier.Low =
1605                                             (0xFFFFFFFF &
1606                                             mt_entry->physical_id);
1607                                         dpm_entry->PhysicalIdentifier.High =
1608                                             (mt_entry->physical_id >> 32);
1609                                         dpm_entry->DeviceIndex = (U16) map_idx;
1610                                         dpm_entry->MappingInformation = 0;
1611                                         dpm_entry->PhysicalBitsMapping = 0;
1612                                         sc->dpm_entry_used[dpm_idx] = 1;
1613                                         sc->dpm_flush_entry[dpm_idx] = 1;
1614                                         phy_change->is_processed = 1;
1615                                 } else if (dpm_idx == MPS_DPM_BAD_IDX) {
1616                                         phy_change->is_processed = 1;
1617                                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING,
1618                                             "%s: failed to add the device with "
1619                                             "handle 0x%04x to persistent table "
1620                                             "because there is no free space "
1621                                             "available\n", __func__,
1622                                             phy_change->dev_handle);
1623                                 }
1624                         }
1625                         mt_entry->init_complete = 1;
1626                 }
1627
1628                 phy_change->is_processed = 1;
1629         }
1630         if (is_removed)
1631                 _mapping_clear_removed_entries(sc);
1632 }
1633
1634 /**
1635  * _mapping_flush_dpm_pages -Flush the DPM pages to NVRAM
1636  * @sc: per adapter object
1637  *
1638  * Returns nothing
1639  */
1640 static void
1641 _mapping_flush_dpm_pages(struct mps_softc *sc)
1642 {
1643         Mpi2DriverMap0Entry_t *dpm_entry;
1644         Mpi2ConfigReply_t mpi_reply;
1645         Mpi2DriverMappingPage0_t config_page;
1646         u16 entry_num;
1647
1648         for (entry_num = 0; entry_num < sc->max_dpm_entries; entry_num++) {
1649                 if (!sc->dpm_flush_entry[entry_num])
1650                         continue;
1651                 memset(&config_page, 0, sizeof(Mpi2DriverMappingPage0_t));
1652                 memcpy(&config_page.Header, (u8 *)sc->dpm_pg0,
1653                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
1654                 dpm_entry = (Mpi2DriverMap0Entry_t *) ((u8 *)sc->dpm_pg0 +
1655                     sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
1656                 dpm_entry += entry_num;
1657                 dpm_entry->MappingInformation = htole16(dpm_entry->
1658                     MappingInformation);
1659                 dpm_entry->DeviceIndex = htole16(dpm_entry->DeviceIndex);
1660                 dpm_entry->PhysicalBitsMapping = htole32(dpm_entry->
1661                     PhysicalBitsMapping);
1662                 memcpy(&config_page.Entry, (u8 *)dpm_entry,
1663                     sizeof(Mpi2DriverMap0Entry_t));
1664                 /* TODO-How to handle failed writes? */
1665                 mps_dprint(sc, MPS_MAPPING, "%s: Flushing DPM entry %d.\n",
1666                     __func__, entry_num);
1667                 if (mps_config_set_dpm_pg0(sc, &mpi_reply, &config_page,
1668                     entry_num)) {
1669                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: Flush of "
1670                             "DPM entry %d for device failed\n", __func__,
1671                             entry_num);
1672                 } else
1673                         sc->dpm_flush_entry[entry_num] = 0;
1674                 dpm_entry->MappingInformation = le16toh(dpm_entry->
1675                     MappingInformation);
1676                 dpm_entry->DeviceIndex = le16toh(dpm_entry->DeviceIndex);
1677                 dpm_entry->PhysicalBitsMapping = le32toh(dpm_entry->
1678                     PhysicalBitsMapping);
1679         }
1680 }
1681
1682 /**
1683  * _mapping_allocate_memory- allocates the memory required for mapping tables
1684  * @sc: per adapter object
1685  *
1686  * Allocates the memory for all the tables required for host mapping
1687  *
1688  * Return 0 on success or non-zero on failure.
1689  */
1690 int
1691 mps_mapping_allocate_memory(struct mps_softc *sc)
1692 {
1693         uint32_t dpm_pg0_sz;
1694
1695         sc->mapping_table = malloc((sizeof(struct dev_mapping_table) *
1696             sc->max_devices), M_MPT2, M_ZERO|M_NOWAIT);
1697         if (!sc->mapping_table)
1698                 goto free_resources;
1699
1700         sc->removal_table = malloc((sizeof(struct map_removal_table) *
1701             sc->max_devices), M_MPT2, M_ZERO|M_NOWAIT);
1702         if (!sc->removal_table)
1703                 goto free_resources;
1704
1705         sc->enclosure_table = malloc((sizeof(struct enc_mapping_table) *
1706             sc->max_enclosures), M_MPT2, M_ZERO|M_NOWAIT);
1707         if (!sc->enclosure_table)
1708                 goto free_resources;
1709
1710         sc->dpm_entry_used = malloc((sizeof(u8) * sc->max_dpm_entries),
1711             M_MPT2, M_ZERO|M_NOWAIT);
1712         if (!sc->dpm_entry_used)
1713                 goto free_resources;
1714
1715         sc->dpm_flush_entry = malloc((sizeof(u8) * sc->max_dpm_entries),
1716             M_MPT2, M_ZERO|M_NOWAIT);
1717         if (!sc->dpm_flush_entry)
1718                 goto free_resources;
1719
1720         dpm_pg0_sz = sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER) +
1721             (sc->max_dpm_entries * sizeof(MPI2_CONFIG_PAGE_DRIVER_MAP0_ENTRY));
1722
1723         sc->dpm_pg0 = malloc(dpm_pg0_sz, M_MPT2, M_ZERO|M_NOWAIT);
1724         if (!sc->dpm_pg0) {
1725                 printf("%s: memory alloc failed for dpm page; disabling dpm\n",
1726                     __func__);
1727                 sc->is_dpm_enable = 0;
1728         }
1729
1730         return 0;
1731
1732 free_resources:
1733         free(sc->mapping_table, M_MPT2);
1734         free(sc->removal_table, M_MPT2);
1735         free(sc->enclosure_table, M_MPT2);
1736         free(sc->dpm_entry_used, M_MPT2);
1737         free(sc->dpm_flush_entry, M_MPT2);
1738         free(sc->dpm_pg0, M_MPT2);
1739         printf("%s: device initialization failed due to failure in mapping "
1740             "table memory allocation\n", __func__);
1741         return -1;
1742 }
1743
1744 /**
1745  * mps_mapping_free_memory- frees the memory allocated for mapping tables
1746  * @sc: per adapter object
1747  *
1748  * Returns nothing.
1749  */
1750 void
1751 mps_mapping_free_memory(struct mps_softc *sc)
1752 {
1753         free(sc->mapping_table, M_MPT2);
1754         free(sc->removal_table, M_MPT2);
1755         free(sc->enclosure_table, M_MPT2);
1756         free(sc->dpm_entry_used, M_MPT2);
1757         free(sc->dpm_flush_entry, M_MPT2);
1758         free(sc->dpm_pg0, M_MPT2);
1759 }
1760
1761 static void
1762 _mapping_process_dpm_pg0(struct mps_softc *sc)
1763 {
1764         u8 missing_cnt, enc_idx;
1765         u16 slot_id, entry_num, num_slots;
1766         u32 map_idx, dev_idx, start_idx, end_idx;
1767         struct dev_mapping_table *mt_entry;
1768         Mpi2DriverMap0Entry_t *dpm_entry;
1769         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
1770         u16 max_num_phy_ids = le16toh(sc->ioc_pg8.MaxNumPhysicalMappedIDs);
1771         struct enc_mapping_table *et_entry;
1772         u64 physical_id;
1773         u32 phy_bits = 0;
1774
1775         /*
1776          * start_idx and end_idx are only used for IR.
1777          */
1778         if (sc->ir_firmware)
1779                 _mapping_get_ir_maprange(sc, &start_idx, &end_idx);
1780
1781         /*
1782          * Look through all of the DPM entries that were read from the
1783          * controller and copy them over to the driver's internal table if they
1784          * have a non-zero ID. At this point, any ID with a value of 0 would be
1785          * invalid, so don't copy it.
1786          */
1787         mps_dprint(sc, MPS_MAPPING, "%s: Start copy of %d DPM entries into the "
1788             "mapping table.\n", __func__, sc->max_dpm_entries);
1789         dpm_entry = (Mpi2DriverMap0Entry_t *) ((uint8_t *) sc->dpm_pg0 +
1790             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
1791         for (entry_num = 0; entry_num < sc->max_dpm_entries; entry_num++, 
1792             dpm_entry++) {
1793                 physical_id = dpm_entry->PhysicalIdentifier.High;
1794                 physical_id = (physical_id << 32) | 
1795                     dpm_entry->PhysicalIdentifier.Low;
1796                 if (!physical_id) {
1797                         sc->dpm_entry_used[entry_num] = 0;
1798                         continue;
1799                 }
1800                 sc->dpm_entry_used[entry_num] = 1;
1801                 dpm_entry->MappingInformation = le16toh(dpm_entry->
1802                     MappingInformation);
1803                 missing_cnt = dpm_entry->MappingInformation &
1804                     MPI2_DRVMAP0_MAPINFO_MISSING_MASK;
1805                 dev_idx = le16toh(dpm_entry->DeviceIndex);
1806                 phy_bits = le32toh(dpm_entry->PhysicalBitsMapping);
1807
1808                 /*
1809                  * Volumes are at special locations in the mapping table so
1810                  * account for that. Volume mapping table entries do not depend
1811                  * on the type of mapping, so continue the loop after adding
1812                  * volumes to the mapping table.
1813                  */
1814                 if (sc->ir_firmware && (dev_idx >= start_idx) &&
1815                     (dev_idx <= end_idx)) {
1816                         mt_entry = &sc->mapping_table[dev_idx];
1817                         mt_entry->physical_id =
1818                             dpm_entry->PhysicalIdentifier.High;
1819                         mt_entry->physical_id = (mt_entry->physical_id << 32) |
1820                             dpm_entry->PhysicalIdentifier.Low;
1821                         mt_entry->id = dev_idx;
1822                         mt_entry->missing_count = missing_cnt;
1823                         mt_entry->dpm_entry_num = entry_num;
1824                         mt_entry->device_info = MPS_DEV_RESERVED;
1825                         continue;
1826                 }
1827                 if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1828                     MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
1829                         /*
1830                          * The dev_idx for an enclosure is the start index. If
1831                          * the start index is within the controller's default
1832                          * enclosure area, set the number of slots for this
1833                          * enclosure to the max allowed. Otherwise, it should be
1834                          * a normal enclosure and the number of slots is in the
1835                          * DPM entry's Mapping Information.
1836                          */
1837                         if (dev_idx < (sc->num_rsvd_entries +
1838                             max_num_phy_ids)) {
1839                                 slot_id = 0;
1840                                 if (ioc_pg8_flags &
1841                                     MPI2_IOCPAGE8_FLAGS_DA_START_SLOT_1)
1842                                         slot_id = 1;
1843                                 num_slots = max_num_phy_ids;
1844                         } else {
1845                                 slot_id = 0;
1846                                 num_slots = dpm_entry->MappingInformation &
1847                                     MPI2_DRVMAP0_MAPINFO_SLOT_MASK;
1848                                 num_slots >>= MPI2_DRVMAP0_MAPINFO_SLOT_SHIFT;
1849                         }
1850                         enc_idx = sc->num_enc_table_entries;
1851                         if (enc_idx >= sc->max_enclosures) {
1852                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
1853                                     "Number of enclosure entries in DPM exceed "
1854                                     "the max allowed of %d.\n", __func__,
1855                                     sc->max_enclosures);
1856                                 break;
1857                         }
1858                         sc->num_enc_table_entries++;
1859                         et_entry = &sc->enclosure_table[enc_idx];
1860                         physical_id = dpm_entry->PhysicalIdentifier.High;
1861                         et_entry->enclosure_id = (physical_id << 32) |
1862                             dpm_entry->PhysicalIdentifier.Low;
1863                         et_entry->start_index = dev_idx;
1864                         et_entry->dpm_entry_num = entry_num;
1865                         et_entry->num_slots = num_slots;
1866                         et_entry->start_slot = slot_id;
1867                         et_entry->missing_count = missing_cnt;
1868                         et_entry->phy_bits = phy_bits;
1869
1870                         /*
1871                          * Initialize all entries for this enclosure in the
1872                          * mapping table and mark them as reserved. The actual
1873                          * devices have not been processed yet but when they are
1874                          * they will use these entries. If an entry is found
1875                          * that already has a valid DPM index, the mapping table
1876                          * is corrupt. This can happen if the mapping type is
1877                          * changed without clearing all of the DPM entries in
1878                          * the controller.
1879                          */
1880                         mt_entry = &sc->mapping_table[dev_idx];
1881                         for (map_idx = dev_idx; map_idx < (dev_idx + num_slots);
1882                             map_idx++, mt_entry++) {
1883                                 if (mt_entry->dpm_entry_num !=
1884                                     MPS_DPM_BAD_IDX) {
1885                                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING,
1886                                             "%s: Conflict in mapping table for "
1887                                             " enclosure %d\n", __func__,
1888                                             enc_idx);
1889                                         break;
1890                                 }
1891                                 physical_id =
1892                                     dpm_entry->PhysicalIdentifier.High;
1893                                 mt_entry->physical_id = (physical_id << 32) |
1894                                     dpm_entry->PhysicalIdentifier.Low;
1895                                 mt_entry->phy_bits = phy_bits;
1896                                 mt_entry->id = dev_idx;
1897                                 mt_entry->dpm_entry_num = entry_num;
1898                                 mt_entry->missing_count = missing_cnt;
1899                                 mt_entry->device_info = MPS_DEV_RESERVED;
1900                         }
1901                 } else if ((ioc_pg8_flags &
1902                     MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1903                     MPI2_IOCPAGE8_FLAGS_DEVICE_PERSISTENCE_MAPPING) {
1904                         /*
1905                          * Device mapping, so simply copy the DPM entries to the
1906                          * mapping table, but check for a corrupt mapping table
1907                          * (as described above in Enc/Slot mapping).
1908                          */
1909                         map_idx = dev_idx;
1910                         mt_entry = &sc->mapping_table[map_idx];
1911                         if (mt_entry->dpm_entry_num != MPS_DPM_BAD_IDX) {
1912                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
1913                                     "Conflict in mapping table for device %d\n",
1914                                     __func__, map_idx);
1915                                 break;
1916                         }
1917                         physical_id = dpm_entry->PhysicalIdentifier.High;
1918                         mt_entry->physical_id = (physical_id << 32) |
1919                             dpm_entry->PhysicalIdentifier.Low;
1920                         mt_entry->phy_bits = phy_bits;
1921                         mt_entry->id = dev_idx;
1922                         mt_entry->missing_count = missing_cnt;
1923                         mt_entry->dpm_entry_num = entry_num;
1924                         mt_entry->device_info = MPS_DEV_RESERVED;
1925                 }
1926         } /*close the loop for DPM table */
1927 }
1928
1929 /*
1930  * mps_mapping_check_devices - start of the day check for device availabilty
1931  * @sc: per adapter object
1932  *
1933  * Returns nothing.
1934  */
1935 void
1936 mps_mapping_check_devices(void *data)
1937 {
1938         u32 i;
1939         struct dev_mapping_table *mt_entry;
1940         struct mps_softc *sc = (struct mps_softc *)data;
1941         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
1942         struct enc_mapping_table *et_entry;
1943         u32 start_idx = 0, end_idx = 0;
1944         u8 stop_device_checks = 0;
1945
1946         MPS_FUNCTRACE(sc);
1947
1948         /*
1949          * Clear this flag so that this function is never called again except
1950          * within this function if the check needs to be done again. The
1951          * purpose is to check for missing devices that are currently in the
1952          * mapping table so do this only at driver init after discovery.
1953          */
1954         sc->track_mapping_events = 0;
1955
1956         /*
1957          * callout synchronization
1958          * This is used to prevent race conditions for the callout. 
1959          */
1960         mps_dprint(sc, MPS_MAPPING, "%s: Start check for missing devices.\n",
1961             __func__);
1962         mtx_assert(&sc->mps_mtx, MA_OWNED);
1963         if ((callout_pending(&sc->device_check_callout)) ||
1964             (!callout_active(&sc->device_check_callout))) {
1965                 mps_dprint(sc, MPS_MAPPING, "%s: Device Check Callout is "
1966                     "already pending or not active.\n", __func__);
1967                 return;
1968         }
1969         callout_deactivate(&sc->device_check_callout);
1970
1971         /*
1972          * Use callout to check if any devices in the mapping table have been
1973          * processed yet. If ALL devices are marked as not init_complete, no
1974          * devices have been processed and mapped. Until devices are mapped
1975          * there's no reason to mark them as missing. Continue resetting this
1976          * callout until devices have been mapped.
1977          */
1978         if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1979             MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
1980                 et_entry = sc->enclosure_table;
1981                 for (i = 0; i < sc->num_enc_table_entries; i++, et_entry++) {
1982                         if (et_entry->init_complete) {
1983                                 stop_device_checks = 1;
1984                                 break;
1985                         }
1986                 }
1987         } else if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
1988             MPI2_IOCPAGE8_FLAGS_DEVICE_PERSISTENCE_MAPPING) {
1989                 mt_entry = sc->mapping_table;
1990                 for (i = 0; i < sc->max_devices; i++, mt_entry++) {
1991                         if (mt_entry->init_complete) {
1992                                 stop_device_checks = 1;
1993                                 break;
1994                         }
1995                 }
1996         }
1997
1998         /*
1999          * Setup another callout check after a delay. Keep doing this until
2000          * devices are mapped.
2001          */
2002         if (!stop_device_checks) {
2003                 mps_dprint(sc, MPS_MAPPING, "%s: No devices have been mapped. "
2004                     "Reset callout to check again after a %d second delay.\n",
2005                     __func__, MPS_MISSING_CHECK_DELAY);
2006                 callout_reset(&sc->device_check_callout,
2007                     MPS_MISSING_CHECK_DELAY * hz, mps_mapping_check_devices,
2008                     sc);
2009                 return;
2010         }
2011         mps_dprint(sc, MPS_MAPPING, "%s: Device check complete.\n", __func__);
2012
2013         /*
2014          * Depending on the mapping type, check if devices have been processed
2015          * and update their missing counts if not processed.
2016          */
2017         if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
2018             MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING) {
2019                 et_entry = sc->enclosure_table;
2020                 for (i = 0; i < sc->num_enc_table_entries; i++, et_entry++) {
2021                         if (!et_entry->init_complete) {
2022                                 if (et_entry->missing_count <
2023                                     MPS_MAX_MISSING_COUNT) {
2024                                         mps_dprint(sc, MPS_MAPPING, "%s: "
2025                                             "Enclosure %d is missing from the "
2026                                             "topology. Update its missing "
2027                                             "count.\n", __func__, i);
2028                                         et_entry->missing_count++;
2029                                         if (et_entry->dpm_entry_num !=
2030                                             MPS_DPM_BAD_IDX) {
2031                                                 _mapping_commit_enc_entry(sc,
2032                                                     et_entry);
2033                                         }
2034                                 }
2035                                 et_entry->init_complete = 1;
2036                         }
2037                 }
2038                 if (!sc->ir_firmware)
2039                         return;
2040                 _mapping_get_ir_maprange(sc, &start_idx, &end_idx);
2041                 mt_entry = &sc->mapping_table[start_idx];
2042         } else if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) ==
2043             MPI2_IOCPAGE8_FLAGS_DEVICE_PERSISTENCE_MAPPING) {
2044                 start_idx = 0;
2045                 end_idx = sc->max_devices - 1;
2046                 mt_entry = sc->mapping_table;
2047         }
2048
2049         /*
2050          * The start and end indices have been set above according to the
2051          * mapping type. Go through these mappings and update any entries that
2052          * do not have the init_complete flag set, which means they are missing.
2053          */
2054         if (end_idx == 0)
2055                 return;
2056         for (i = start_idx; i < (end_idx + 1); i++, mt_entry++) {
2057                 if (mt_entry->device_info & MPS_DEV_RESERVED
2058                     && !mt_entry->physical_id)
2059                         mt_entry->init_complete = 1;
2060                 else if (mt_entry->device_info & MPS_DEV_RESERVED) {
2061                         if (!mt_entry->init_complete) {
2062                                 mps_dprint(sc, MPS_MAPPING, "%s: Device in "
2063                                     "mapping table at index %d is missing from "
2064                                     "topology. Update its missing count.\n",
2065                                     __func__, i);
2066                                 if (mt_entry->missing_count <
2067                                     MPS_MAX_MISSING_COUNT) {
2068                                         mt_entry->missing_count++;
2069                                         if (mt_entry->dpm_entry_num !=
2070                                             MPS_DPM_BAD_IDX) {
2071                                                 _mapping_commit_map_entry(sc,
2072                                                     mt_entry);
2073                                         }
2074                                 }
2075                                 mt_entry->init_complete = 1;
2076                         }
2077                 }
2078         }
2079 }
2080
2081 /**
2082  * mps_mapping_initialize - initialize mapping tables
2083  * @sc: per adapter object
2084  *
2085  * Read controller persitant mapping tables into internal data area.
2086  *
2087  * Return 0 for success or non-zero for failure.
2088  */
2089 int
2090 mps_mapping_initialize(struct mps_softc *sc)
2091 {
2092         uint16_t volume_mapping_flags, dpm_pg0_sz;
2093         uint32_t i;
2094         Mpi2ConfigReply_t mpi_reply;
2095         int error;
2096         uint8_t retry_count;
2097         uint16_t ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
2098
2099         /* The additional 1 accounts for the virtual enclosure
2100          * created for the controller
2101          */
2102         sc->max_enclosures = sc->facts->MaxEnclosures + 1;
2103         sc->max_expanders = sc->facts->MaxSasExpanders;
2104         sc->max_volumes = sc->facts->MaxVolumes;
2105         sc->max_devices = sc->facts->MaxTargets + sc->max_volumes;
2106         sc->pending_map_events = 0;
2107         sc->num_enc_table_entries = 0;
2108         sc->num_rsvd_entries = 0;
2109         sc->max_dpm_entries = sc->ioc_pg8.MaxPersistentEntries;
2110         sc->is_dpm_enable = (sc->max_dpm_entries) ? 1 : 0;
2111         sc->track_mapping_events = 0;
2112
2113         mps_dprint(sc, MPS_MAPPING, "%s: Mapping table has a max of %d entries "
2114             "and DPM has a max of %d entries.\n", __func__, sc->max_devices,
2115             sc->max_dpm_entries);
2116         if (ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_DISABLE_PERSISTENT_MAPPING)
2117                 sc->is_dpm_enable = 0;
2118
2119         if (ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_RESERVED_TARGETID_0)
2120                 sc->num_rsvd_entries = 1;
2121
2122         volume_mapping_flags = sc->ioc_pg8.IRVolumeMappingFlags &
2123             MPI2_IOCPAGE8_IRFLAGS_MASK_VOLUME_MAPPING_MODE;
2124         if (sc->ir_firmware && (volume_mapping_flags ==
2125             MPI2_IOCPAGE8_IRFLAGS_LOW_VOLUME_MAPPING))
2126                 sc->num_rsvd_entries += sc->max_volumes;
2127
2128         error = mps_mapping_allocate_memory(sc);
2129         if (error)
2130                 return (error);
2131
2132         for (i = 0; i < sc->max_devices; i++)
2133                 _mapping_clear_map_entry(sc->mapping_table + i);
2134
2135         for (i = 0; i < sc->max_enclosures; i++)
2136                 _mapping_clear_enc_entry(sc->enclosure_table + i);
2137
2138         for (i = 0; i < sc->max_devices; i++) {
2139                 sc->removal_table[i].dev_handle = 0;
2140                 sc->removal_table[i].dpm_entry_num = MPS_DPM_BAD_IDX;
2141         }
2142
2143         memset(sc->dpm_entry_used, 0, sc->max_dpm_entries);
2144         memset(sc->dpm_flush_entry, 0, sc->max_dpm_entries);
2145
2146         if (sc->is_dpm_enable) {
2147                 dpm_pg0_sz = sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER) +
2148                     (sc->max_dpm_entries *
2149                      sizeof(MPI2_CONFIG_PAGE_DRIVER_MAP0_ENTRY));
2150                 retry_count = 0;
2151
2152 retry_read_dpm:
2153                 if (mps_config_get_dpm_pg0(sc, &mpi_reply, sc->dpm_pg0,
2154                     dpm_pg0_sz)) {
2155                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: DPM page "
2156                             "read failed.\n", __func__);
2157                         if (retry_count < 3) {
2158                                 retry_count++;
2159                                 goto retry_read_dpm;
2160                         }
2161                         sc->is_dpm_enable = 0;
2162                 }
2163         }
2164
2165         if (sc->is_dpm_enable)
2166                 _mapping_process_dpm_pg0(sc);
2167         else {
2168                 mps_dprint(sc, MPS_MAPPING, "%s: DPM processing is disabled. "
2169                     "Device mappings will not persist across reboots or "
2170                     "resets.\n", __func__);
2171         }
2172
2173         sc->track_mapping_events = 1;
2174         return 0;
2175 }
2176
2177 /**
2178  * mps_mapping_exit - clear mapping table and associated memory
2179  * @sc: per adapter object
2180  *
2181  * Returns nothing.
2182  */
2183 void
2184 mps_mapping_exit(struct mps_softc *sc)
2185 {
2186         _mapping_flush_dpm_pages(sc);
2187         mps_mapping_free_memory(sc);
2188 }
2189
2190 /**
2191  * mps_mapping_get_tid - return the target id for sas device and handle
2192  * @sc: per adapter object
2193  * @sas_address: sas address of the device
2194  * @handle: device handle
2195  *
2196  * Returns valid target ID on success or BAD_ID.
2197  */
2198 unsigned int
2199 mps_mapping_get_tid(struct mps_softc *sc, uint64_t sas_address, u16 handle)
2200 {
2201         u32 map_idx;
2202         struct dev_mapping_table *mt_entry;
2203
2204         for (map_idx = 0; map_idx < sc->max_devices; map_idx++) {
2205                 mt_entry = &sc->mapping_table[map_idx];
2206                 if (mt_entry->dev_handle == handle && mt_entry->physical_id ==
2207                     sas_address)
2208                         return mt_entry->id;
2209         }
2210
2211         return MPS_MAP_BAD_ID;
2212 }
2213
2214 /**
2215  * mps_mapping_get_tid_from_handle - find a target id in mapping table using
2216  * only the dev handle.  This is just a wrapper function for the local function
2217  * _mapping_get_mt_idx_from_handle.
2218  * @sc: per adapter object
2219  * @handle: device handle
2220  *
2221  * Returns valid target ID on success or BAD_ID.
2222  */
2223 unsigned int
2224 mps_mapping_get_tid_from_handle(struct mps_softc *sc, u16 handle)
2225 {
2226         return (_mapping_get_mt_idx_from_handle(sc, handle));
2227 }
2228
2229 /**
2230  * mps_mapping_get_raid_tid - return the target id for raid device
2231  * @sc: per adapter object
2232  * @wwid: world wide identifier for raid volume
2233  * @volHandle: volume device handle
2234  *
2235  * Returns valid target ID on success or BAD_ID.
2236  */
2237 unsigned int
2238 mps_mapping_get_raid_tid(struct mps_softc *sc, u64 wwid, u16 volHandle)
2239 {
2240         u32 start_idx, end_idx, map_idx;
2241         struct dev_mapping_table *mt_entry;
2242
2243         _mapping_get_ir_maprange(sc, &start_idx, &end_idx);
2244         mt_entry = &sc->mapping_table[start_idx];
2245         for (map_idx  = start_idx; map_idx <= end_idx; map_idx++, mt_entry++) {
2246                 if (mt_entry->dev_handle == volHandle &&
2247                     mt_entry->physical_id == wwid)
2248                         return mt_entry->id;
2249         }
2250
2251         return MPS_MAP_BAD_ID;
2252 }
2253
2254 /**
2255  * mps_mapping_get_raid_tid_from_handle - find raid device in mapping table
2256  * using only the volume dev handle.  This is just a wrapper function for the
2257  * local function _mapping_get_ir_mt_idx_from_handle.
2258  * @sc: per adapter object
2259  * @volHandle: volume device handle
2260  *
2261  * Returns valid target ID on success or BAD_ID.
2262  */
2263 unsigned int
2264 mps_mapping_get_raid_tid_from_handle(struct mps_softc *sc, u16 volHandle)
2265 {
2266         return (_mapping_get_ir_mt_idx_from_handle(sc, volHandle));
2267 }
2268
2269 /**
2270  * mps_mapping_enclosure_dev_status_change_event - handle enclosure events
2271  * @sc: per adapter object
2272  * @event_data: event data payload
2273  *
2274  * Return nothing.
2275  */
2276 void
2277 mps_mapping_enclosure_dev_status_change_event(struct mps_softc *sc,
2278     Mpi2EventDataSasEnclDevStatusChange_t *event_data)
2279 {
2280         u8 enc_idx, missing_count;
2281         struct enc_mapping_table *et_entry;
2282         Mpi2DriverMap0Entry_t *dpm_entry;
2283         u16 ioc_pg8_flags = le16toh(sc->ioc_pg8.Flags);
2284         u8 map_shift = MPI2_DRVMAP0_MAPINFO_SLOT_SHIFT;
2285         u8 update_phy_bits = 0;
2286         u32 saved_phy_bits;
2287         uint64_t temp64_var;
2288
2289         if ((ioc_pg8_flags & MPI2_IOCPAGE8_FLAGS_MASK_MAPPING_MODE) !=
2290             MPI2_IOCPAGE8_FLAGS_ENCLOSURE_SLOT_MAPPING)
2291                 goto out;
2292
2293         dpm_entry = (Mpi2DriverMap0Entry_t *)((u8 *)sc->dpm_pg0 +
2294             sizeof(MPI2_CONFIG_EXTENDED_PAGE_HEADER));
2295
2296         if (event_data->ReasonCode == MPI2_EVENT_SAS_ENCL_RC_ADDED) {
2297                 if (!event_data->NumSlots) {
2298                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: Enclosure "
2299                             "with handle = 0x%x reported 0 slots.\n", __func__,
2300                             le16toh(event_data->EnclosureHandle));
2301                         goto out;
2302                 }
2303                 temp64_var = event_data->EnclosureLogicalID.High;
2304                 temp64_var = (temp64_var << 32) |
2305                     event_data->EnclosureLogicalID.Low;
2306                 enc_idx = _mapping_get_enc_idx_from_id(sc, temp64_var,
2307                     event_data->PhyBits);
2308
2309                 /*
2310                  * If the Added enclosure is already in the Enclosure Table,
2311                  * make sure that all the the enclosure info is up to date. If
2312                  * the enclosure was missing and has just been added back, or if
2313                  * the enclosure's Phy Bits have changed, clear the missing
2314                  * count and update the Phy Bits in the mapping table and in the
2315                  * DPM, if it's being used.
2316                  */
2317                 if (enc_idx != MPS_ENCTABLE_BAD_IDX) {
2318                         et_entry = &sc->enclosure_table[enc_idx];
2319                         if (et_entry->init_complete &&
2320                             !et_entry->missing_count) {
2321                                 mps_dprint(sc, MPS_MAPPING, "%s: Enclosure %d "
2322                                     "is already present with handle = 0x%x\n",
2323                                     __func__, enc_idx, et_entry->enc_handle);
2324                                 goto out;
2325                         }
2326                         et_entry->enc_handle = le16toh(event_data->
2327                             EnclosureHandle);
2328                         et_entry->start_slot = le16toh(event_data->StartSlot);
2329                         saved_phy_bits = et_entry->phy_bits;
2330                         et_entry->phy_bits |= le32toh(event_data->PhyBits);
2331                         if (saved_phy_bits != et_entry->phy_bits)
2332                                 update_phy_bits = 1;
2333                         if (et_entry->missing_count || update_phy_bits) {
2334                                 et_entry->missing_count = 0;
2335                                 if (sc->is_dpm_enable &&
2336                                     et_entry->dpm_entry_num !=
2337                                     MPS_DPM_BAD_IDX) {
2338                                         dpm_entry += et_entry->dpm_entry_num;
2339                                         missing_count =
2340                                             (u8)(dpm_entry->MappingInformation &
2341                                             MPI2_DRVMAP0_MAPINFO_MISSING_MASK);
2342                                         if (missing_count || update_phy_bits) {
2343                                                 dpm_entry->MappingInformation
2344                                                     = et_entry->num_slots;
2345                                                 dpm_entry->MappingInformation
2346                                                     <<= map_shift;
2347                                                 dpm_entry->PhysicalBitsMapping
2348                                                     = et_entry->phy_bits;
2349                                                 sc->dpm_flush_entry[et_entry->
2350                                                     dpm_entry_num] = 1;
2351                                         }
2352                                 }
2353                         }
2354                 } else {
2355                         /*
2356                          * This is a new enclosure that is being added.
2357                          * Initialize the Enclosure Table entry. It will be
2358                          * finalized when a device is added for the enclosure
2359                          * and the enclosure has enough space in the Mapping
2360                          * Table to map its devices.
2361                          */
2362                         enc_idx = sc->num_enc_table_entries;
2363                         if (enc_idx >= sc->max_enclosures) {
2364                                 mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: "
2365                                     "Enclosure cannot be added to mapping "
2366                                     "table because it's full.\n", __func__);
2367                                 goto out;
2368                         }
2369                         sc->num_enc_table_entries++;
2370                         et_entry = &sc->enclosure_table[enc_idx];
2371                         et_entry->enc_handle = le16toh(event_data->
2372                             EnclosureHandle);
2373                         et_entry->enclosure_id = le64toh(event_data->
2374                             EnclosureLogicalID.High);
2375                         et_entry->enclosure_id =
2376                             ((et_entry->enclosure_id << 32) |
2377                             le64toh(event_data->EnclosureLogicalID.Low));
2378                         et_entry->start_index = MPS_MAPTABLE_BAD_IDX;
2379                         et_entry->dpm_entry_num = MPS_DPM_BAD_IDX;
2380                         et_entry->num_slots = le16toh(event_data->NumSlots);
2381                         et_entry->start_slot = le16toh(event_data->StartSlot);
2382                         et_entry->phy_bits = le32toh(event_data->PhyBits);
2383                 }
2384                 et_entry->init_complete = 1;
2385         } else if (event_data->ReasonCode ==
2386             MPI2_EVENT_SAS_ENCL_RC_NOT_RESPONDING) {
2387                 /*
2388                  * An enclosure was removed. Update its missing count and then
2389                  * update the DPM entry with the new missing count for the
2390                  * enclosure.
2391                  */
2392                 enc_idx = _mapping_get_enc_idx_from_handle(sc,
2393                     le16toh(event_data->EnclosureHandle));
2394                 if (enc_idx == MPS_ENCTABLE_BAD_IDX) {
2395                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING, "%s: Cannot "
2396                             "unmap enclosure %d because it has already been "
2397                             "deleted.\n", __func__, enc_idx);
2398                         goto out;
2399                 }
2400                 et_entry = &sc->enclosure_table[enc_idx];
2401                 if (et_entry->missing_count < MPS_MAX_MISSING_COUNT)
2402                         et_entry->missing_count++;
2403                 if (sc->is_dpm_enable &&
2404                     et_entry->dpm_entry_num != MPS_DPM_BAD_IDX) {
2405                         dpm_entry += et_entry->dpm_entry_num;
2406                         dpm_entry->MappingInformation = et_entry->num_slots;
2407                         dpm_entry->MappingInformation <<= map_shift;
2408                         dpm_entry->MappingInformation |=
2409                             et_entry->missing_count;
2410                         sc->dpm_flush_entry[et_entry->dpm_entry_num] = 1;
2411                 }
2412                 et_entry->init_complete = 1;
2413         }
2414
2415 out:
2416         _mapping_flush_dpm_pages(sc);
2417         if (sc->pending_map_events)
2418                 sc->pending_map_events--;
2419 }
2420
2421 /**
2422  * mps_mapping_topology_change_event - handle topology change events
2423  * @sc: per adapter object
2424  * @event_data: event data payload
2425  *
2426  * Returns nothing.
2427  */
2428 void
2429 mps_mapping_topology_change_event(struct mps_softc *sc,
2430     Mpi2EventDataSasTopologyChangeList_t *event_data)
2431 {
2432         struct _map_topology_change topo_change;
2433         struct _map_phy_change *phy_change;
2434         Mpi2EventSasTopoPhyEntry_t *event_phy_change;
2435         u8 i, num_entries;
2436
2437         topo_change.enc_handle = le16toh(event_data->EnclosureHandle);
2438         topo_change.exp_handle = le16toh(event_data->ExpanderDevHandle);
2439         num_entries = event_data->NumEntries;
2440         topo_change.num_entries = num_entries;
2441         topo_change.start_phy_num = event_data->StartPhyNum;
2442         topo_change.num_phys = event_data->NumPhys;
2443         topo_change.exp_status = event_data->ExpStatus;
2444         event_phy_change = event_data->PHY;
2445         topo_change.phy_details = NULL;
2446
2447         if (!num_entries)
2448                 goto out;
2449         phy_change = malloc(sizeof(struct _map_phy_change) * num_entries,
2450             M_MPT2, M_NOWAIT|M_ZERO);
2451         topo_change.phy_details = phy_change;
2452         if (!phy_change)
2453                 goto out;
2454         for (i = 0; i < num_entries; i++, event_phy_change++, phy_change++) {
2455                 phy_change->dev_handle = le16toh(event_phy_change->
2456                     AttachedDevHandle);
2457                 phy_change->reason = event_phy_change->PhyStatus &
2458                     MPI2_EVENT_SAS_TOPO_RC_MASK;
2459         }
2460         _mapping_update_missing_count(sc, &topo_change);
2461         _mapping_get_dev_info(sc, &topo_change);
2462         _mapping_clear_removed_entries(sc);
2463         _mapping_add_new_device(sc, &topo_change);
2464
2465 out:
2466         free(topo_change.phy_details, M_MPT2);
2467         _mapping_flush_dpm_pages(sc);
2468         if (sc->pending_map_events)
2469                 sc->pending_map_events--;
2470 }
2471
2472 /**
2473  * mps_mapping_ir_config_change_event - handle IR config change list events
2474  * @sc: per adapter object
2475  * @event_data: event data payload
2476  *
2477  * Returns nothing.
2478  */
2479 void
2480 mps_mapping_ir_config_change_event(struct mps_softc *sc,
2481     Mpi2EventDataIrConfigChangeList_t *event_data)
2482 {
2483         Mpi2EventIrConfigElement_t *element;
2484         int i;
2485         u64 *wwid_table;
2486         u32 map_idx, flags;
2487         struct dev_mapping_table *mt_entry;
2488         u16 element_flags;
2489
2490         wwid_table = malloc(sizeof(u64) * event_data->NumElements, M_MPT2,
2491             M_NOWAIT | M_ZERO);
2492         if (!wwid_table)
2493                 goto out;
2494         element = (Mpi2EventIrConfigElement_t *)&event_data->ConfigElement[0];
2495         flags = le32toh(event_data->Flags);
2496
2497         /*
2498          * For volume changes, get the WWID for the volume and put it in a
2499          * table to be used in the processing of the IR change event.
2500          */
2501         for (i = 0; i < event_data->NumElements; i++, element++) {
2502                 element_flags = le16toh(element->ElementFlags);
2503                 if ((element->ReasonCode != MPI2_EVENT_IR_CHANGE_RC_ADDED) &&
2504                     (element->ReasonCode != MPI2_EVENT_IR_CHANGE_RC_REMOVED) &&
2505                     (element->ReasonCode != MPI2_EVENT_IR_CHANGE_RC_NO_CHANGE)
2506                     && (element->ReasonCode !=
2507                         MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED))
2508                         continue;
2509                 if ((element_flags &
2510                     MPI2_EVENT_IR_CHANGE_EFLAGS_ELEMENT_TYPE_MASK) ==
2511                     MPI2_EVENT_IR_CHANGE_EFLAGS_VOLUME_ELEMENT) {
2512                         mps_config_get_volume_wwid(sc,
2513                             le16toh(element->VolDevHandle), &wwid_table[i]);
2514                 }
2515         }
2516
2517         /*
2518          * Check the ReasonCode for each element in the IR event and Add/Remove
2519          * Volumes or Physical Disks of Volumes to/from the mapping table. Use
2520          * the WWIDs gotten above in wwid_table.
2521          */
2522         if (flags == MPI2_EVENT_IR_CHANGE_FLAGS_FOREIGN_CONFIG)
2523                 goto out;
2524         else {
2525                 element = (Mpi2EventIrConfigElement_t *)&event_data->
2526                     ConfigElement[0];
2527                 for (i = 0; i < event_data->NumElements; i++, element++) {
2528                         if (element->ReasonCode ==
2529                             MPI2_EVENT_IR_CHANGE_RC_ADDED ||
2530                             element->ReasonCode ==
2531                             MPI2_EVENT_IR_CHANGE_RC_VOLUME_CREATED) {
2532                                 map_idx = _mapping_get_ir_mt_idx_from_wwid
2533                                     (sc, wwid_table[i]);
2534                                 if (map_idx != MPS_MAPTABLE_BAD_IDX) {
2535                                         /*
2536                                          * The volume is already in the mapping
2537                                          * table. Just update it's info.
2538                                          */
2539                                         mt_entry = &sc->mapping_table[map_idx];
2540                                         mt_entry->id = map_idx;
2541                                         mt_entry->dev_handle = le16toh
2542                                             (element->VolDevHandle);
2543                                         mt_entry->device_info =
2544                                             MPS_DEV_RESERVED | MPS_MAP_IN_USE;
2545                                         _mapping_update_ir_missing_cnt(sc,
2546                                             map_idx, element, wwid_table[i]);
2547                                         continue;
2548                                 }
2549
2550                                 /*
2551                                  * Volume is not in mapping table yet. Find a
2552                                  * free entry in the mapping table at the
2553                                  * volume mapping locations. If no entries are
2554                                  * available, this is an error because it means
2555                                  * there are more volumes than can be mapped
2556                                  * and that should never happen for volumes.
2557                                  */
2558                                 map_idx = _mapping_get_free_ir_mt_idx(sc);
2559                                 if (map_idx == MPS_MAPTABLE_BAD_IDX)
2560                                 {
2561                                         mps_dprint(sc, MPS_ERROR | MPS_MAPPING,
2562                                             "%s: failed to add the volume with "
2563                                             "handle 0x%04x because there is no "
2564                                             "free space available in the "
2565                                             "mapping table\n", __func__,
2566                                             le16toh(element->VolDevHandle));
2567                                         continue;
2568                                 }
2569                                 mt_entry = &sc->mapping_table[map_idx];
2570                                 mt_entry->physical_id = wwid_table[i];
2571                                 mt_entry->id = map_idx;
2572                                 mt_entry->dev_handle = le16toh(element->
2573                                     VolDevHandle);
2574                                 mt_entry->device_info = MPS_DEV_RESERVED |
2575                                     MPS_MAP_IN_USE;
2576                                 _mapping_update_ir_missing_cnt(sc, map_idx,
2577                                     element, wwid_table[i]);
2578                         } else if (element->ReasonCode ==
2579                             MPI2_EVENT_IR_CHANGE_RC_REMOVED) {
2580                                 map_idx = _mapping_get_ir_mt_idx_from_wwid(sc,
2581                                     wwid_table[i]);
2582                                 if (map_idx == MPS_MAPTABLE_BAD_IDX) {
2583                                         mps_dprint(sc, MPS_MAPPING,"%s: Failed "
2584                                             "to remove a volume because it has "
2585                                             "already been removed.\n",
2586                                             __func__);
2587                                         continue;
2588                                 }
2589                                 _mapping_update_ir_missing_cnt(sc, map_idx,
2590                                     element, wwid_table[i]);
2591                         } else if (element->ReasonCode ==
2592                             MPI2_EVENT_IR_CHANGE_RC_VOLUME_DELETED) {
2593                                 map_idx = _mapping_get_mt_idx_from_handle(sc,
2594                                     le16toh(element->VolDevHandle));
2595                                 if (map_idx == MPS_MAPTABLE_BAD_IDX) {
2596                                         mps_dprint(sc, MPS_MAPPING,"%s: Failed "
2597                                             "to remove volume with handle "
2598                                             "0x%04x because it has already "
2599                                             "been removed.\n", __func__,
2600                                             le16toh(element->VolDevHandle));
2601                                         continue;
2602                                 }
2603                                 mt_entry = &sc->mapping_table[map_idx];
2604                                 _mapping_update_ir_missing_cnt(sc, map_idx,
2605                                     element, mt_entry->physical_id);
2606                         }
2607                 }
2608         }
2609
2610 out:
2611         _mapping_flush_dpm_pages(sc);
2612         free(wwid_table, M_MPT2);
2613         if (sc->pending_map_events)
2614                 sc->pending_map_events--;
2615 }
2616
2617 int
2618 mps_mapping_dump(SYSCTL_HANDLER_ARGS)
2619 {
2620         struct mps_softc *sc;
2621         struct dev_mapping_table *mt_entry;
2622         struct sbuf sbuf;
2623         int i, error;
2624
2625         sc = (struct mps_softc *)arg1;
2626
2627         error = sysctl_wire_old_buffer(req, 0);
2628         if (error != 0)
2629                 return (error);
2630         sbuf_new_for_sysctl(&sbuf, NULL, 128, req);
2631
2632         sbuf_printf(&sbuf, "\nindex physical_id       handle id\n");
2633         for (i = 0; i < sc->max_devices; i++) {
2634                 mt_entry = &sc->mapping_table[i];
2635                 if (mt_entry->physical_id == 0)
2636                         continue;
2637                 sbuf_printf(&sbuf, "%4d  %jx  %04x   %hd\n",
2638                     i, mt_entry->physical_id, mt_entry->dev_handle,
2639                     mt_entry->id);
2640         }
2641         error = sbuf_finish(&sbuf);
2642         sbuf_delete(&sbuf);
2643         return (error);
2644 }
2645
2646 int
2647 mps_mapping_encl_dump(SYSCTL_HANDLER_ARGS)
2648 {
2649         struct mps_softc *sc;
2650         struct enc_mapping_table *enc_entry;
2651         struct sbuf sbuf;
2652         int i, error;
2653
2654         sc = (struct mps_softc *)arg1;
2655
2656         error = sysctl_wire_old_buffer(req, 0);
2657         if (error != 0)
2658                 return (error);
2659         sbuf_new_for_sysctl(&sbuf, NULL, 128, req);
2660
2661         sbuf_printf(&sbuf, "\nindex enclosure_id      handle map_index\n");
2662         for (i = 0; i < sc->max_enclosures; i++) {
2663                 enc_entry = &sc->enclosure_table[i];
2664                 if (enc_entry->enclosure_id == 0)
2665                         continue;
2666                 sbuf_printf(&sbuf, "%4d  %jx  %04x   %d\n",
2667                     i, enc_entry->enclosure_id, enc_entry->enc_handle,
2668                     enc_entry->start_index);
2669         }
2670         error = sbuf_finish(&sbuf);
2671         sbuf_delete(&sbuf);
2672         return (error);
2673 }