1 /* 2 * Copyright (c) 2003-2004 HighPoint Technologies, Inc. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 #ifdef _RAID5N_ 27 28 /* OS provided function, call only at initialization time */ 29 extern void * HPTLIBAPI os_alloc_page(_VBUS_ARG0); /* may be cached memory */ 30 extern void * HPTLIBAPI os_alloc_dma_page(_VBUS_ARG0); /* must be non-cached memory */ 31 /* implement if the driver can be unloaded */ 32 void HPTLIBAPI os_free_page(_VBUS_ARG void *p); 33 void HPTLIBAPI os_free_dma_page(_VBUS_ARG void *p); 34 35 typedef void (* HPTLIBAPI xfer_done_fn)(_VBUS_ARG void *tag, int result); 36 37 38 #define DATAXFER_STACK_VAR 39 #define DATAXFER_INIT_ARG 0 40 41 #define dataxfer_init(arg) 0 42 #define dataxfer_add_item(handle, host, cache, bytes, tocache) \ 43 if (tocache) memcpy((PUCHAR)(cache), (PUCHAR)(host), bytes); \ 44 else memcpy((PUCHAR)(host), (PUCHAR)(cache), bytes) 45 #define dataxfer_exec(handle, done, tag) done(_VBUS_P tag, 0) 46 #define dataxfer_poll() 47 48 49 typedef void (* HPTLIBAPI xor_done_fn)(_VBUS_ARG void *tag, int result); 50 51 52 #define XOR_STACK_VAR 53 #define XOR_INIT_ARG 0 54 55 /* DoXor1, DoXor2 provided by platform dependent code */ 56 void HPTLIBAPI DoXor1(ULONG *p0, ULONG *p1, ULONG *p2, UINT nBytes); 57 void HPTLIBAPI DoXor2(ULONG *p0, ULONG *p2, UINT nBytes); 58 #define max_xor_way 2 59 #define xor_init(arg) 0 60 #define xor_add_item(handle, dest, src, nsrc, bytes) \ 61 do {\ 62 if (((void**)src)[0]==dest)\ 63 DoXor2((PULONG)(dest), ((PULONG *)src)[1], bytes);\ 64 else\ 65 DoXor1((PULONG)(dest), ((PULONG *)src)[0], ((PULONG *)src)[1], bytes);\ 66 } while(0) 67 #define xor_exec(handle, done, tag) done(_VBUS_P tag, 0) 68 #define xor_poll() 69 70 71 /* set before calling init_raid5_memory */ 72 extern UINT num_raid5_pages; 73 74 /* called by init.c */ 75 extern void HPTLIBAPI init_raid5_memory(_VBUS_ARG0); 76 extern void HPTLIBAPI free_raid5_memory(_VBUS_ARG0); 77 78 /* asynchronous flush, may be called periodly */ 79 extern void HPTLIBAPI flush_stripe_cache(_VBUS_ARG0); 80 extern void HPTLIBAPI flush_raid5_async(PVDevice pArray, DPC_PROC done, void *arg); 81 82 /* synchronous function called at shutdown */ 83 extern int HPTLIBAPI flush_raid5(PVDevice pArray); 84 85 extern void HPTLIBAPI raid5_free(_VBUS_ARG PVDevice pArray); 86 87 struct free_heap_block { 88 struct free_heap_block *next; 89 }; 90 91 #ifndef LIST_H_INCLUDED 92 struct list_head { 93 struct list_head *next, *prev; 94 }; 95 #endif 96 97 struct free_page { 98 struct free_page *link; 99 }; 100 101 struct r5_global_data { 102 int enable_write_back; 103 struct list_head inactive_list; 104 struct list_head dirty_list; 105 struct list_head active_list; 106 #ifdef R5_CONTIG_CACHE 107 BUS_ADDR page_base_phys; 108 PUCHAR page_base_virt; 109 PUCHAR page_current; 110 #endif 111 struct free_heap_block *free_heap_slots[8]; 112 struct free_page *free_pages; 113 UINT num_free_pages; 114 UINT active_stripes; 115 UINT num_flushing; 116 PCommand cache_wait_list; 117 }; 118 119 120 #endif 121