1 /* $NetBSD: pcipnp.h,v 1.1 2006/05/30 23:56:38 garbled Exp $ */
3 * Copyright (c) 2006 The NetBSD Foundation, Inc.
6 * This code is derived from software contributed to The NetBSD Foundation
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
32 * IBM Power Personal Systems Architecture: Residual Data
33 * Document Number: PPS-AR-FW0001 Rev 0.5 April 3, 1996
39 #define MAX_PCI_INTRS 4
41 typedef enum _IntrTypes
{
48 /* PCI to system conversion map */
49 typedef struct _IntrMap
{
50 uint8_t slotnum
; /* First = 1, integrated = 0 */
52 uint8_t intrctrltype
; /* interrupt type */
53 uint8_t intrctrlnum
; /* 8259 = 0
56 uint16_t intr
[MAX_PCI_INTRS
]; /* Index 0-3 == A-D
57 * 0xFFFF == not usable
58 * 0x8nnn == edge sensitive
62 typedef struct _PCIInfoPack
{
63 uint8_t tag
; /* large tag = 0x84 */
66 /* count = number of PCI slots * sizeof(IntrMap) + 21 */
67 uint8_t type
; /* == 3 PCI Bridge */
68 uint8_t configbaseaddr
[8]; /* Base addr of PCI configuration
69 * system real address */
70 uint8_t configbasedata
[8]; /* base addr of PCI config data
71 * system real address */
72 uint8_t busnum
; /* PCI Bus Number */
73 uint8_t reserved
[3]; /* reserved, padded with 0 */
74 IntrMap map
[1]; /* Interrupt map array for each PCI
75 * slots that are pluggable.
76 * number = (count-21)/sizeof(IntrMap)*/
79 #endif /* _PCIPNP_H_ */