himfuncs.h revision 302408
1/*-
2 * Copyright (c) 2005-2011 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 * $FreeBSD: stable/11/sys/dev/hpt27xx/himfuncs.h 284730 2015-06-23 17:26:16Z delphij $
27 */
28
29#include <dev/hpt27xx/hpt27xx_config.h>
30/*
31 * define _HIM_INTERFACE before include this file, and
32 * undef it after include this file.
33 */
34
35
36#ifndef _HIM_INTERFACE
37#error "you must define _HIM_INTERFACE before this file"
38#endif
39
40_HIM_INTERFACE(HPT_BOOL, get_supported_device_id, (int index, PCI_ID *id))
41
42_HIM_INTERFACE(HPT_U8, get_controller_count, (PCI_ID *id, HPT_U8 *reached, PCI_ADDRESS *addr))
43
44
45_HIM_INTERFACE(HPT_UINT, get_adapter_size, (const PCI_ID *id))
46
47
48_HIM_INTERFACE(HPT_BOOL, create_adapter, (const PCI_ID *id, PCI_ADDRESS pciAddress, void *adapter, void *osext))
49
50_HIM_INTERFACE(void, get_adapter_config, (void *adapter, HIM_ADAPTER_CONFIG *config))
51
52_HIM_INTERFACE(HPT_BOOL, get_meminfo, (void *adapter))
53
54
55_HIM_INTERFACE(HPT_BOOL, adapter_on_same_vbus, (void *adapter1, void *adapter2))
56_HIM_INTERFACE(void, route_irq, (void *adapter, HPT_BOOL enable))
57
58
59_HIM_INTERFACE(HPT_BOOL, initialize, (void *adapter))
60
61
62_HIM_INTERFACE(HPT_UINT, get_device_size, (void *adapter))
63
64
65_HIM_INTERFACE(HPT_BOOL, probe_device, (void *adapter, int index, void *devhandle, PROBE_CALLBACK done, void *arg))
66_HIM_INTERFACE(void *, get_device, (void *adapter, int index))
67_HIM_INTERFACE(void, get_device_config, (void *dev, HIM_DEVICE_CONFIG *config))
68_HIM_INTERFACE(void, remove_device, (void *dev))
69
70_HIM_INTERFACE(void, reset_device, (void * dev, void (*done)(void *arg), void *arg))
71
72
73_HIM_INTERFACE(HPT_U32, get_cmdext_size, (void))
74
75_HIM_INTERFACE(void, queue_cmd, (void *dev, struct _COMMAND *cmd))
76
77
78_HIM_INTERFACE(int, read_write, (void *dev,HPT_LBA lba, HPT_U16 nsector, HPT_U8 *buffer, HPT_BOOL read))
79
80_HIM_INTERFACE(HPT_BOOL, intr_handler, (void *adapter))
81_HIM_INTERFACE(HPT_BOOL, intr_control, (void * adapter, HPT_BOOL enable))
82
83
84_HIM_INTERFACE(int, get_channel_config, (void * adapter, int index, PHIM_CHANNEL_CONFIG pInfo))
85_HIM_INTERFACE(int, set_device_info, (void * dev, PHIM_ALTERABLE_DEV_INFO pInfo))
86_HIM_INTERFACE(void, unplug_device, (void * dev))
87
88
89_HIM_INTERFACE(void, shutdown, (void *adapter))
90_HIM_INTERFACE(void, suspend, (void *adapter))
91_HIM_INTERFACE(void, resume, (void *adapter))
92_HIM_INTERFACE(void, release_adapter, (void *adapter))
93
94/*called after ldm_register_adapter*/
95_HIM_INTERFACE(HPT_BOOL, verify_adapter, (void *adapter))
96
97/* (optional) */
98_HIM_INTERFACE(void, ioctl, (void * adapter, struct _IOCTL_ARG *arg))
99_HIM_INTERFACE(int, compare_slot_seq, (void *adapter1, void *adapter2))
100_HIM_INTERFACE(int, get_enclosure_count, (void *adapter))
101_HIM_INTERFACE(int, get_enclosure_info, (void *adapter, int id, void *pinfo))
102_HIM_INTERFACE(int, get_enclosure_info_v2, (void *adapter, int id, void *pinfo))
103_HIM_INTERFACE(int, get_enclosure_info_v3, (void *adapter, int id, void *pinfo))
104_HIM_INTERFACE(int, get_enclosure_info_v4, (void *adapter, int enc_id, int ele_id, void *pinfo, void *pstatus))
105
106_HIM_INTERFACE(HPT_BOOL, flash_access, (void *adapter, HPT_U32 offset, void *value, int size, HPT_BOOL reading))
107
108#undef _HIM_INTERFACE
109