2011-04-30 05:44:36 +04:00
|
|
|
/* $NetBSD: rf_driver.h,v 1.19 2011/04/30 01:44:36 mrg Exp $ */
|
1998-11-13 07:20:26 +03:00
|
|
|
/*
|
|
|
|
* rf_driver.h
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1996 Carnegie-Mellon University.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Author: Jim Zelenka
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _RF__RF_DRIVER_H_
|
|
|
|
#define _RF__RF_DRIVER_H_
|
|
|
|
|
2001-10-04 19:58:51 +04:00
|
|
|
#include <dev/raidframe/raidframevar.h>
|
|
|
|
|
1998-11-13 07:20:26 +03:00
|
|
|
#include "rf_threadstuff.h"
|
2000-02-13 07:53:57 +03:00
|
|
|
#include "rf_netbsd.h"
|
1998-11-13 07:20:26 +03:00
|
|
|
|
2004-11-16 19:45:51 +03:00
|
|
|
#ifndef RF_RETRY_THRESHOLD
|
|
|
|
#define RF_RETRY_THRESHOLD 5
|
|
|
|
#endif
|
|
|
|
|
2011-04-30 05:44:36 +04:00
|
|
|
extern rf_declare_mutex2(rf_printf_mutex);
|
2004-03-13 05:04:02 +03:00
|
|
|
int rf_BootRaidframe(void);
|
|
|
|
int rf_UnbootRaidframe(void);
|
|
|
|
int rf_Shutdown(RF_Raid_t *);
|
|
|
|
int rf_Configure(RF_Raid_t *, RF_Config_t *, RF_AutoConfig_t *);
|
|
|
|
RF_RaidAccessDesc_t *rf_AllocRaidAccDesc(RF_Raid_t *, RF_IoType_t,
|
2005-02-27 03:26:58 +03:00
|
|
|
RF_RaidAddr_t, RF_SectorCount_t,
|
2007-03-04 08:59:00 +03:00
|
|
|
void *, void *,
|
2005-02-27 03:26:58 +03:00
|
|
|
RF_RaidAccessFlags_t,
|
2004-06-03 02:58:28 +04:00
|
|
|
const RF_AccessState_t *);
|
2004-03-13 05:04:02 +03:00
|
|
|
void rf_FreeRaidAccDesc(RF_RaidAccessDesc_t *);
|
2005-02-27 03:26:58 +03:00
|
|
|
int rf_DoAccess(RF_Raid_t *, RF_IoType_t, int, RF_RaidAddr_t,
|
2007-03-04 08:59:00 +03:00
|
|
|
RF_SectorCount_t, void *, struct buf *,
|
2005-02-13 23:27:48 +03:00
|
|
|
RF_RaidAccessFlags_t);
|
2002-01-07 04:58:03 +03:00
|
|
|
#if 0
|
2004-03-13 05:04:02 +03:00
|
|
|
int rf_SetReconfiguredMode(RF_Raid_t *, RF_RowCol_t, RF_RowCol_t);
|
2002-01-07 04:58:03 +03:00
|
|
|
#endif
|
2004-03-13 05:04:02 +03:00
|
|
|
int rf_FailDisk(RF_Raid_t *, RF_RowCol_t, int);
|
|
|
|
void rf_SignalQuiescenceLock(RF_Raid_t *);
|
|
|
|
int rf_SuspendNewRequestsAndWait(RF_Raid_t *);
|
|
|
|
void rf_ResumeNewRequests(RF_Raid_t *);
|
2001-10-04 19:58:51 +04:00
|
|
|
|
1999-02-05 03:06:06 +03:00
|
|
|
#endif /* !_RF__RF_DRIVER_H_ */
|