1b0a2fdeeSScott Long /*-
2*718cf2ccSPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause
3*718cf2ccSPedro F. Giffuni *
4b0a2fdeeSScott Long * Definitions for the integrated RAID features LSI MPT Fusion adapters.
5b0a2fdeeSScott Long *
6b0a2fdeeSScott Long * Copyright (c) 2005, WHEEL Sp. z o.o.
7b0a2fdeeSScott Long * Copyright (c) 2004, 2005 Justin T. Gibbs
8b0a2fdeeSScott Long * All rights reserved.
9b0a2fdeeSScott Long *
10b0a2fdeeSScott Long * Redistribution and use in source and binary forms, with or without
11b0a2fdeeSScott Long * modification, are permitted provided that the following conditions are
12b0a2fdeeSScott Long * met:
13b0a2fdeeSScott Long * 1. Redistributions of source code must retain the above copyright
14b0a2fdeeSScott Long * notice, this list of conditions and the following disclaimer.
15b0a2fdeeSScott Long * 2. Redistributions in binary form must reproduce at minimum a disclaimer
16b0a2fdeeSScott Long * substantially similar to the "NO WARRANTY" disclaimer below
17b0a2fdeeSScott Long * ("Disclaimer") and any redistribution must be conditioned upon including
18b0a2fdeeSScott Long * a substantially similar Disclaimer requirement for further binary
19b0a2fdeeSScott Long * redistribution.
20286e947fSJustin T. Gibbs * 3. Neither the names of the above listed copyright holders nor the names
21286e947fSJustin T. Gibbs * of any contributors may be used to endorse or promote products derived
22286e947fSJustin T. Gibbs * from this software without specific prior written permission.
23b0a2fdeeSScott Long *
24b0a2fdeeSScott Long * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25b0a2fdeeSScott Long * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26b0a2fdeeSScott Long * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27b0a2fdeeSScott Long * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28b0a2fdeeSScott Long * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29b0a2fdeeSScott Long * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30b0a2fdeeSScott Long * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31b0a2fdeeSScott Long * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32b0a2fdeeSScott Long * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33b0a2fdeeSScott Long * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF THE COPYRIGHT
34b0a2fdeeSScott Long * OWNER OR CONTRIBUTOR IS ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35b0a2fdeeSScott Long */
36ec5fe39dSMatt Jacob /*-
37ec5fe39dSMatt Jacob * Some Breakage and Bug Fixing added later.
38ec5fe39dSMatt Jacob * Copyright (c) 2006, by Matthew Jacob
39ec5fe39dSMatt Jacob * All Rights Reserved
40ec5fe39dSMatt Jacob *
41ec5fe39dSMatt Jacob * Support from LSI-Logic has also gone a great deal toward making this a
42ec5fe39dSMatt Jacob * workable subsystem and is gratefully acknowledged.
43ec5fe39dSMatt Jacob */
44b0a2fdeeSScott Long #ifndef _MPT_RAID_H_
45b0a2fdeeSScott Long #define _MPT_RAID_H_
46b0a2fdeeSScott Long
47b0a2fdeeSScott Long #include <cam/cam.h>
48b0a2fdeeSScott Long union ccb;
49b0a2fdeeSScott Long
50b0a2fdeeSScott Long typedef enum {
51b0a2fdeeSScott Long MPT_RAID_MWCE_ON,
52b0a2fdeeSScott Long MPT_RAID_MWCE_OFF,
53b0a2fdeeSScott Long MPT_RAID_MWCE_REBUILD_ONLY,
54b0a2fdeeSScott Long MPT_RAID_MWCE_NC
55b0a2fdeeSScott Long } mpt_raid_mwce_t;
56b0a2fdeeSScott Long
5787e255acSMarius Strobl cam_status mpt_map_physdisk(struct mpt_softc *, union ccb *, target_id_t *);
58ec3e6e77SMarius Strobl int mpt_is_raid_member(struct mpt_softc *, target_id_t);
5987e255acSMarius Strobl int mpt_is_raid_volume(struct mpt_softc *, target_id_t);
60784880dbSMatt Jacob #if 0
61b0a2fdeeSScott Long cam_status
628bf91348SMatt Jacob mpt_raid_quiesce_disk(struct mpt_softc *, struct mpt_raid_disk *, request_t *);
63784880dbSMatt Jacob #endif
648bf91348SMatt Jacob
651d79ca0eSMatt Jacob void mpt_raid_free_mem(struct mpt_softc *);
66b0a2fdeeSScott Long
67b0a2fdeeSScott Long static __inline void
mpt_raid_wakeup(struct mpt_softc * mpt)68b0a2fdeeSScott Long mpt_raid_wakeup(struct mpt_softc *mpt)
69b0a2fdeeSScott Long {
70b0a2fdeeSScott Long mpt->raid_wakeup++;
71b0a2fdeeSScott Long wakeup(&mpt->raid_volumes);
72b0a2fdeeSScott Long }
73b0a2fdeeSScott Long
74b0a2fdeeSScott Long #define MPT_RAID_SYNC_REPORT_INTERVAL (15 * 60 * hz)
75b0a2fdeeSScott Long #define MPT_RAID_RESYNC_RATE_MAX (255)
76b0a2fdeeSScott Long #define MPT_RAID_RESYNC_RATE_MIN (1)
77b0a2fdeeSScott Long #define MPT_RAID_RESYNC_RATE_NC (0)
78b0a2fdeeSScott Long #define MPT_RAID_RESYNC_RATE_DEFAULT MPT_RAID_RESYNC_RATE_NC
79b0a2fdeeSScott Long
80b0a2fdeeSScott Long #define MPT_RAID_QUEUE_DEPTH_DEFAULT (128)
81b0a2fdeeSScott Long
82b0a2fdeeSScott Long #define MPT_RAID_MWCE_DEFAULT MPT_RAID_MWCE_NC
83b0a2fdeeSScott Long
84b0a2fdeeSScott Long #define RAID_VOL_FOREACH(mpt, mpt_vol) \
85b0a2fdeeSScott Long for (mpt_vol = (mpt)->raid_volumes; \
86b0a2fdeeSScott Long mpt_vol != (mpt)->raid_volumes + (mpt)->raid_max_volumes; \
87b0a2fdeeSScott Long mpt_vol++)
88b0a2fdeeSScott Long
89b0a2fdeeSScott Long #endif /*_MPT_RAID_H_ */
90