Deleted Added
full compact
isavar.h (57368) isavar.h (57973)
1/*-
2 * Copyright (c) 1998 Doug Rabson
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 unchanged lines hidden (view full) ---

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 *
1/*-
2 * Copyright (c) 1998 Doug Rabson
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 unchanged lines hidden (view full) ---

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: head/sys/isa/isavar.h 57368 2000-02-21 02:10:10Z gj $
26 * $FreeBSD: head/sys/isa/isavar.h 57973 2000-03-13 10:19:32Z phk $
27 */
28
29#ifndef _ISA_ISAVAR_H_
30#define _ISA_ISAVAR_H_
31
32struct isa_config;
33struct isa_pnp_id;
34typedef void isa_config_cb(void *arg, struct isa_config *config, int enable);

--- 14 unchanged lines hidden (view full) ---

49#define ISA_ORDER_SPECULATIVE 1 /* legacy non-sensitive hardware */
50#define ISA_ORDER_PNP 2 /* plug-and-play hardware */
51
52#define ISA_NPORT 50
53#define ISA_NMEM 8
54#define ISA_NIRQ 2
55#define ISA_NDRQ 2
56
27 */
28
29#ifndef _ISA_ISAVAR_H_
30#define _ISA_ISAVAR_H_
31
32struct isa_config;
33struct isa_pnp_id;
34typedef void isa_config_cb(void *arg, struct isa_config *config, int enable);

--- 14 unchanged lines hidden (view full) ---

49#define ISA_ORDER_SPECULATIVE 1 /* legacy non-sensitive hardware */
50#define ISA_ORDER_PNP 2 /* plug-and-play hardware */
51
52#define ISA_NPORT 50
53#define ISA_NMEM 8
54#define ISA_NIRQ 2
55#define ISA_NDRQ 2
56
57#define ISADMA_READ 0x00100000
58#define ISADMA_WRITE 0
59#define ISADMA_RAW 0x00080000
57/*
58 * Plug and play cards can support a range of resource
59 * configurations. This structure is used by the isapnp parser to
60 * inform the isa bus about the resource possibilities of the
61 * device. Each different alternative should be supplied by calling
62 * ISA_ADD_CONFIG().
63 */
64struct isa_range {

--- 98 unchanged lines hidden ---
60/*
61 * Plug and play cards can support a range of resource
62 * configurations. This structure is used by the isapnp parser to
63 * inform the isa bus about the resource possibilities of the
64 * device. Each different alternative should be supplied by calling
65 * ISA_ADD_CONFIG().
66 */
67struct isa_range {

--- 98 unchanged lines hidden ---