1718cf2ccSPedro F. Giffuni /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3718cf2ccSPedro F. Giffuni * 4b063a422SScott Long * Copyright (c) HighPoint Technologies, Inc. 5b063a422SScott Long * All rights reserved. 6b063a422SScott Long * 7b063a422SScott Long * Redistribution and use in source and binary forms, with or without 8b063a422SScott Long * modification, are permitted provided that the following conditions 9b063a422SScott Long * are met: 10b063a422SScott Long * 1. Redistributions of source code must retain the above copyright 11b063a422SScott Long * notice, this list of conditions and the following disclaimer. 12b063a422SScott Long * 2. Redistributions in binary form must reproduce the above copyright 13b063a422SScott Long * notice, this list of conditions and the following disclaimer in the 14b063a422SScott Long * documentation and/or other materials provided with the distribution. 15b063a422SScott Long * 16b063a422SScott Long * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17b063a422SScott Long * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18b063a422SScott Long * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19b063a422SScott Long * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20b063a422SScott Long * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21b063a422SScott Long * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22b063a422SScott Long * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23b063a422SScott Long * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24b063a422SScott Long * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25b063a422SScott Long * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26b063a422SScott Long * SUCH DAMAGE. 27b063a422SScott Long */ 28b063a422SScott Long #include <dev/hptrr/hptrr_config.h> 29b063a422SScott Long /* 304fdb276aSScott Long * $Id: array.h,v 1.44 2007/11/01 03:05:27 gmm Exp $ 31b063a422SScott Long * Copyright (C) 2004-2005 HighPoint Technologies, Inc. All rights reserved. 32b063a422SScott Long */ 33b063a422SScott Long #ifndef _HPT_ARRAY_H_ 34b063a422SScott Long #define _HPT_ARRAY_H_ 35b063a422SScott Long 364fdb276aSScott Long #define VERMAGIC_ARRAY 43 37b063a422SScott Long 38b063a422SScott Long #if defined(__cplusplus) 39b063a422SScott Long extern "C" { 40b063a422SScott Long #endif 41b063a422SScott Long 42b063a422SScott Long #define MAX_ARRAY_NAME 16 43b063a422SScott Long 44b063a422SScott Long #ifndef MAX_MEMBERS 45b063a422SScott Long #define MAX_MEMBERS 16 46b063a422SScott Long #endif 47b063a422SScott Long 48b063a422SScott Long #if MAX_MEMBERS<=16 49b063a422SScott Long typedef HPT_U16 HPT_MMASK; 50b063a422SScott Long #elif MAX_MEMBERS<=32 51b063a422SScott Long typedef HPT_U32 HPT_MMASK; 52b063a422SScott Long #elif MAX_MEMBERS<=64 53b063a422SScott Long typedef HPT_U64 HPT_MMASK; 54b063a422SScott Long #else 55b063a422SScott Long #error "MAX_MEMBERS too large" 56b063a422SScott Long #endif 57b063a422SScott Long 58b063a422SScott Long #define HPT_MMASK_VALUE(x) (HPT_MMASK)((HPT_MMASK)1<<(x)) 59b063a422SScott Long 60b063a422SScott Long #if MAX_MEMBERS<32 61b063a422SScott Long #define HPT_MMASK_VALUE_SAFE(x) HPT_MMASK_VALUE(x) 62b063a422SScott Long #else 63b063a422SScott Long #define HPT_MMASK_VALUE_SAFE(x) ((x)>=MAX_MEMBERS? (HPT_MMASK)0 : HPT_MMASK_VALUE(x)) 64b063a422SScott Long #endif 65b063a422SScott Long 66b063a422SScott Long #define MAX_REBUILD_SECTORS 128 67b063a422SScott Long 68b063a422SScott Long typedef struct _RAID_FLAGS { 69b063a422SScott Long HPT_UINT rf_need_initialize : 1; 70b063a422SScott Long HPT_UINT rf_need_rebuild: 1; 71b063a422SScott Long HPT_UINT rf_need_sync: 1; 72b063a422SScott Long /* ioctl flags */ 73b063a422SScott Long HPT_UINT rf_auto_rebuild: 1; 74b063a422SScott Long HPT_UINT rf_rebuilding: 1; 75b063a422SScott Long HPT_UINT rf_verifying: 1; 76b063a422SScott Long HPT_UINT rf_initializing: 1; 77b063a422SScott Long HPT_UINT rf_abort_verifying: 1; 78b063a422SScott Long HPT_UINT rf_raid15: 1; 79b063a422SScott Long HPT_UINT rf_v3_format : 1; 80b063a422SScott Long HPT_UINT rf_need_transform : 1; 81b063a422SScott Long HPT_UINT rf_transforming : 1; 82b063a422SScott Long HPT_UINT rf_abort_transform : 1; 83b063a422SScott Long HPT_UINT rf_log_write: 1; 84b063a422SScott Long } RAID_FLAGS; 85b063a422SScott Long 86b063a422SScott Long typedef struct transform_cmd_ext 87b063a422SScott Long { 88b063a422SScott Long HPT_LBA lba; 89b063a422SScott Long HPT_U16 total_sectors; 90b063a422SScott Long HPT_U16 finished_sectors; 91b063a422SScott Long } TRANSFORM_CMD_EXT , *PTRANSFORM_CMD_EXT; 92b063a422SScott Long 93b063a422SScott Long 94b063a422SScott Long #define TO_MOVE_DATA 0 95b063a422SScott Long #define TO_INITIALIZE 1 96b063a422SScott Long #define TO_INITIALIZE_ONLY 2 97b063a422SScott Long #define TO_MOVE_DATA_ONLY 3 98b063a422SScott Long typedef struct hpt_transform 99b063a422SScott Long { 100b063a422SScott Long HPT_U32 stamp; 101b063a422SScott Long PVDEV source; 102b063a422SScott Long PVDEV target; 103b063a422SScott Long struct list_head link; 104b063a422SScott Long HPT_U8 transform_from_tail; 105b063a422SScott Long struct tq_item task; 106b063a422SScott Long 107b063a422SScott Long struct lock_request lock; 108b063a422SScott Long TRANSFORM_CMD_EXT cmdext; 109b063a422SScott Long 110b063a422SScott Long HPT_U64 transform_point; 111b063a422SScott Long HPT_U16 transform_sectors_per_step; 112b063a422SScott Long HPT_U8 operation; 113b063a422SScott Long HPT_U8 disabled; 114b063a422SScott Long } HPT_TRANSFORM, *PHPT_TRANSFORM; 115b063a422SScott Long 116b063a422SScott Long typedef struct hpt_array 117b063a422SScott Long { 118b063a422SScott Long HPT_U32 array_stamp; 119b063a422SScott Long HPT_U32 data_stamp; 120b063a422SScott Long 121b063a422SScott Long HPT_U8 ndisk; 122b063a422SScott Long HPT_U8 block_size_shift; 123b063a422SScott Long HPT_U16 strip_width; 1244fdb276aSScott Long HPT_U8 sector_size_shift; /*sector size = 512B<<sector_size_shift*/ 1254fdb276aSScott Long HPT_U8 jid; 1264fdb276aSScott Long HPT_U8 reserved[2]; 127b063a422SScott Long 128b063a422SScott Long 129b063a422SScott Long HPT_MMASK outdated_members; 130b063a422SScott Long HPT_MMASK offline_members; 131b063a422SScott Long 132b063a422SScott Long PVDEV member[MAX_MEMBERS]; 133b063a422SScott Long 134b063a422SScott Long RAID_FLAGS flags; 135b063a422SScott Long 136b063a422SScott Long HPT_U64 rebuilt_sectors; 137b063a422SScott Long 138b063a422SScott Long 139b063a422SScott Long HPT_U8 name[MAX_ARRAY_NAME]; 140b063a422SScott Long PHPT_TRANSFORM transform; 141b063a422SScott Long 142b063a422SScott Long TIME_RECORD create_time; 143b063a422SScott Long HPT_U8 description[64]; 144b063a422SScott Long HPT_U8 create_manager[16]; 145b063a422SScott Long 146b063a422SScott Long #ifdef OS_SUPPORT_TASK 147b063a422SScott Long int floating_priority; 148b063a422SScott Long OSM_TASK ioctl_task; 149b063a422SScott Long IOCTL_ARG ioctl_arg; 150b063a422SScott Long 151b063a422SScott Long char ioctl_inbuf[sizeof(PVDEV)+sizeof(HPT_U64)+sizeof(HPT_U16)]; 152b063a422SScott Long char ioctl_outbuf[sizeof(HPT_UINT)]; 153b063a422SScott Long #endif 154b063a422SScott Long 155b063a422SScott Long } HPT_ARRAY, *PHPT_ARRAY; 156b063a422SScott Long 157b063a422SScott Long #ifdef OS_SUPPORT_TASK 158b063a422SScott Long void ldm_start_rebuild(struct _VDEV *pArray); 159b063a422SScott Long #else 160b063a422SScott Long #define ldm_start_rebuild(pArray) 161b063a422SScott Long #endif 162b063a422SScott Long 163b063a422SScott Long typedef struct _raw_partition{ 164b063a422SScott Long struct _raw_partition * next; 1654fdb276aSScott Long __HPT_RAW_LBA start; 1664fdb276aSScott Long __HPT_RAW_LBA capacity; 167b063a422SScott Long PVDEV vd_part; 168b063a422SScott Long } RAW_PARTITION, *PRAW_PARTITION; 169b063a422SScott Long 170b063a422SScott Long typedef struct hpt_partiton 171b063a422SScott Long { 172b063a422SScott Long PVDEV raw_disk; 1734fdb276aSScott Long __HPT_RAW_LBA des_location; 174b063a422SScott Long PRAW_PARTITION raw_part; 175b063a422SScott Long HPT_U8 del_mbr; 176b063a422SScott Long HPT_U8 reserved[3]; 177b063a422SScott Long } HPT_PARTITION, *PHPT_PARTITION; 178b063a422SScott Long 179b063a422SScott Long HPT_U16 get_strip_size(PVDEV vd); 180b063a422SScott Long 181b063a422SScott Long void ldm_check_array_online(PVDEV pArray); 182b063a422SScott Long void ldm_generic_member_failed(PVDEV member); 183b063a422SScott Long void ldm_sync_array_info(PVDEV pArray); 184b063a422SScott Long void ldm_sync_array_stamp(PVDEV pArray); 185b063a422SScott Long void ldm_add_spare_to_array(PVDEV pArray, PVDEV spare_partition); 186b063a422SScott Long 187b063a422SScott Long #if defined(__cplusplus) 188b063a422SScott Long } 189b063a422SScott Long #endif 190b063a422SScott Long #endif 191