1139743Simp/*-
2123474Swpaul * Copyright (c) 2003
3123474Swpaul *	Bill Paul <wpaul@windriver.com>.  All rights reserved.
4123474Swpaul *
5123474Swpaul * Redistribution and use in source and binary forms, with or without
6123474Swpaul * modification, are permitted provided that the following conditions
7123474Swpaul * are met:
8123474Swpaul * 1. Redistributions of source code must retain the above copyright
9123474Swpaul *    notice, this list of conditions and the following disclaimer.
10123474Swpaul * 2. Redistributions in binary form must reproduce the above copyright
11123474Swpaul *    notice, this list of conditions and the following disclaimer in the
12123474Swpaul *    documentation and/or other materials provided with the distribution.
13123474Swpaul * 3. All advertising materials mentioning features or use of this software
14123474Swpaul *    must display the following acknowledgement:
15123474Swpaul *	This product includes software developed by Bill Paul.
16123474Swpaul * 4. Neither the name of the author nor the names of any co-contributors
17123474Swpaul *    may be used to endorse or promote products derived from this software
18123474Swpaul *    without specific prior written permission.
19123474Swpaul *
20123474Swpaul * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
21123474Swpaul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22123474Swpaul * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23123474Swpaul * ARE DISCLAIMED.  IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
24123474Swpaul * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25123474Swpaul * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26123474Swpaul * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27123474Swpaul * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28123474Swpaul * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29123474Swpaul * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30123474Swpaul * THE POSSIBILITY OF SUCH DAMAGE.
31123474Swpaul *
32123474Swpaul * $FreeBSD$
33123474Swpaul */
34123474Swpaul
35123474Swpaul#ifndef _HAL_VAR_H_
36123474Swpaul#define _HAL_VAR_H_
37123474Swpaul
38216592Stijl#define NDIS_BUS_SPACE_IO	X86_BUS_SPACE_IO
39216592Stijl#define NDIS_BUS_SPACE_MEM	X86_BUS_SPACE_MEM
40124576Swpaul
41123474Swpaulextern image_patch_table hal_functbl[];
42123474Swpaul
43128229Swpaul__BEGIN_DECLS
44141963Swpaulextern int hal_libinit(void);
45141963Swpaulextern int hal_libfini(void);
46144888Swpaulextern uint8_t KfAcquireSpinLock(kspin_lock *);
47144888Swpaulextern void KfReleaseSpinLock(kspin_lock *, uint8_t);
48144888Swpaulextern uint8_t KfRaiseIrql(uint8_t);
49144888Swpaulextern void KfLowerIrql(uint8_t);
50144888Swpaulextern uint8_t KeGetCurrentIrql(void);
51128229Swpaul__END_DECLS
52128229Swpaul
53123474Swpaul#endif /* _HAL_VAR_H_ */
54