1331722Seadler/*
2174604Sscottl * Copyright (c) HighPoint Technologies, Inc.
3174604Sscottl * All rights reserved.
4174604Sscottl *
5174604Sscottl * Redistribution and use in source and binary forms, with or without
6174604Sscottl * modification, are permitted provided that the following conditions
7174604Sscottl * are met:
8174604Sscottl * 1. Redistributions of source code must retain the above copyright
9174604Sscottl *    notice, this list of conditions and the following disclaimer.
10174604Sscottl * 2. Redistributions in binary form must reproduce the above copyright
11174604Sscottl *    notice, this list of conditions and the following disclaimer in the
12174604Sscottl *    documentation and/or other materials provided with the distribution.
13174604Sscottl *
14174604Sscottl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15174604Sscottl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16174604Sscottl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17174604Sscottl * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18174604Sscottl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19174604Sscottl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20174604Sscottl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21174604Sscottl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22174604Sscottl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23174604Sscottl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24174604Sscottl * SUCH DAMAGE.
25174604Sscottl *
26174604Sscottl * $FreeBSD$
27174604Sscottl */
28174604Sscottl#include <dev/hptrr/hptrr_config.h>
29174604Sscottl/* $Id: himfuncs.h,v 1.14 2005/12/22 00:13:11 gmm Exp $
30174604Sscottl * Copyright (C) 2004-2005 HighPoint Technologies, Inc. All rights reserved.
31174604Sscottl *
32174604Sscottl * define _HIM_INTERFACE before include this file, and
33174604Sscottl * undef it after include this file.
34174604Sscottl */
35174604Sscottl
36174604Sscottl
37174604Sscottl#ifndef _HIM_INTERFACE
38174604Sscottl#error "you must define _HIM_INTERFACE before this file"
39174604Sscottl#endif
40174604Sscottl
41174604Sscottl_HIM_INTERFACE(HPT_BOOL, get_supported_device_id, (int index, PCI_ID *id))
42174604Sscottl
43174604Sscottl_HIM_INTERFACE(HPT_U8, get_controller_count, (PCI_ID *id, HPT_U8 *reached))
44174604Sscottl
45174604Sscottl
46174604Sscottl_HIM_INTERFACE(HPT_UINT, get_adapter_size, (const PCI_ID *id))
47174604Sscottl
48174604Sscottl
49174604Sscottl_HIM_INTERFACE(HPT_BOOL, create_adapter, (const PCI_ID *id, PCI_ADDRESS pciAddress, void *adapter, void *osext))
50174604Sscottl
51174604Sscottl_HIM_INTERFACE(void, get_adapter_config, (void *adapter, HIM_ADAPTER_CONFIG *config))
52174604Sscottl
53174604Sscottl_HIM_INTERFACE(HPT_BOOL, get_meminfo, (void *adapter))
54174604Sscottl
55174604Sscottl
56174604Sscottl_HIM_INTERFACE(HPT_BOOL, adapter_on_same_vbus, (void *adapter1, void *adapter2))
57174604Sscottl_HIM_INTERFACE(void, route_irq, (void *adapter, HPT_BOOL enable))
58174604Sscottl
59174604Sscottl
60174604Sscottl_HIM_INTERFACE(HPT_BOOL, initialize, (void *adapter))
61174604Sscottl
62174604Sscottl
63174604Sscottl_HIM_INTERFACE(HPT_UINT, get_device_size, (void *adapter))
64174604Sscottl
65174604Sscottl
66174604Sscottl_HIM_INTERFACE(HPT_BOOL, probe_device, (void *adapter, int index, void *devhandle, PROBE_CALLBACK done, void *arg))
67174604Sscottl_HIM_INTERFACE(void *, get_device, (void *adapter, int index))
68174604Sscottl_HIM_INTERFACE(void, get_device_config, (void *dev, HIM_DEVICE_CONFIG *config))
69174604Sscottl_HIM_INTERFACE(void, remove_device, (void *dev))
70174604Sscottl
71174604Sscottl_HIM_INTERFACE(void, reset_device, (void * dev, void (*done)(void *arg), void *arg))
72174604Sscottl
73174604Sscottl
74174604Sscottl_HIM_INTERFACE(HPT_U32, get_cmdext_size, (void))
75174604Sscottl
76174604Sscottl_HIM_INTERFACE(void, queue_cmd, (void *dev, struct _COMMAND *cmd))
77174604Sscottl
78174604Sscottl
79174604Sscottl_HIM_INTERFACE(int, read_write, (void *dev,HPT_LBA lba, HPT_U16 nsector, HPT_U8 *buffer, HPT_BOOL read))
80174604Sscottl
81174604Sscottl_HIM_INTERFACE(HPT_BOOL, intr_handler, (void *adapter))
82174604Sscottl_HIM_INTERFACE(HPT_BOOL, intr_control, (void * adapter, HPT_BOOL enable))
83174604Sscottl
84174604Sscottl
85174604Sscottl_HIM_INTERFACE(int, get_channel_config, (void * adapter, int index, PHIM_CHANNEL_CONFIG pInfo))
86174604Sscottl_HIM_INTERFACE(int, set_device_info, (void * dev, PHIM_ALTERABLE_DEV_INFO pInfo))
87174604Sscottl_HIM_INTERFACE(void, unplug_device, (void * dev))
88174604Sscottl
89174604Sscottl
90174604Sscottl_HIM_INTERFACE(void, shutdown, (void *adapter))
91174604Sscottl_HIM_INTERFACE(void, suspend, (void *adapter))
92174604Sscottl_HIM_INTERFACE(void, resume, (void *adapter))
93174604Sscottl_HIM_INTERFACE(void, release_adapter, (void *adapter))
94174604Sscottl
95174604Sscottl/*called after ldm_register_adapter*/
96174604Sscottl_HIM_INTERFACE(HPT_BOOL, verify_adapter, (void *adapter))
97174604Sscottl
98174604Sscottl/* (optional) */
99174604Sscottl_HIM_INTERFACE(void, ioctl, (void * adapter, struct _IOCTL_ARG *arg))
100174604Sscottl_HIM_INTERFACE(int, compare_slot_seq, (void *adapter1, void *adapter2))
101174604Sscottl
102174604Sscottl
103174604Sscottl_HIM_INTERFACE(HPT_BOOL, flash_access, (void *adapter, HPT_U32 offset, void *value, int size, HPT_BOOL reading))
104174604Sscottl
105174604Sscottl#undef _HIM_INTERFACE
106