From 4b4e03aec0d7f0c6cb2aea32d60176814567d049 Mon Sep 17 00:00:00 2001 From: delphij Date: Wed, 28 Dec 2011 23:26:58 +0000 Subject: Import the first release of HighPoint RocketRAID 27xx SAS 6Gb/s HBA card driver. This driver works for FreeBSD/i386 and FreeBSD/amd64 platforms. Many thanks to HighPoint for providing this driver. MFC after: 2 weeks --- sys/dev/hpt27xx/wj.h | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 sys/dev/hpt27xx/wj.h (limited to 'sys/dev/hpt27xx/wj.h') diff --git a/sys/dev/hpt27xx/wj.h b/sys/dev/hpt27xx/wj.h new file mode 100644 index 0000000..7f2a9c9c --- /dev/null +++ b/sys/dev/hpt27xx/wj.h @@ -0,0 +1,56 @@ +/*- + * Copyright (c) 2011 HighPoint Technologies, Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + * + * $FreeBSD$ + */ + +#include +/* + * NVRAM write journaling interface. + */ + +#ifndef _WJ_H_ +#define _WJ_H_ + +#if defined(SUPPORT_BBU) || defined(SUPPORT_NVRAM) + +void wj_init(PVBUS vbus, void *nvram_addr, HPT_U32 nvram_size); +void *wj_add_entry(PVBUS vbus, PVDEV vd, HPT_LBA lba, HPT_U16 sectors); +void *wj_get_entry(PVBUS vbus, PVDEV *vd_p, HPT_LBA *lba_p, HPT_U16 *sectors_p); +void wj_del_entry(PVBUS vbus, void *handle); +void wj_del_vd(PVBUS vbus, PVDEV vd); +void wj_sync_stamp(PVBUS vbus, PVDEV vd); + +#else + +#define wj_add_entry(vbus, vd, lba, sectors) 0 +#define wj_get_entry(vbus, vd_p, lba_p, sectors_p) 0 +#define wj_del_entry(vbus, handle) 0 +#define wj_del_vd(vbus, vd) 0 +#define wj_sync_stamp(vbus, vd) 0 + +#endif + +#endif -- cgit v1.1