summaryrefslogtreecommitdiff
path: root/sys/arch/alpha/pci/sio.c
blob: a8b6b8a0a245d5f2a2b6860ed99122f20b398810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*	$NetBSD: sio.c,v 1.3 1995/11/23 02:38:16 cgd Exp $	*/

/*
 * Copyright (c) 1995 Carnegie-Mellon University.
 * All rights reserved.
 *
 * Author: Chris G. Demetriou
 * 
 * Permission to use, copy, modify and distribute this software and
 * its documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation.
 * 
 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 
 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 
 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 * 
 * Carnegie Mellon requests users of this software to return to
 *
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
 *  School of Computer Science
 *  Carnegie Mellon University
 *  Pittsburgh PA 15213-3890
 *
 * any improvements or extensions that they make and grant Carnegie the
 * rights to redistribute these changes.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>

#include <dev/isa/isavar.h>
#include <dev/eisa/eisavar.h>

#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>

#include <alpha/pci/siovar.h>

int	siomatch __P((struct device *, void *, void *));
void	sioattach __P((struct device *, struct device *, void *));

struct cfdriver siocd = {
	NULL, "sio", siomatch, sioattach, DV_DULL, sizeof(struct device)
};

int	pcebmatch __P((struct device *, void *, void *));

struct cfdriver pcebcd = {
	NULL, "pceb", pcebmatch, sioattach, DV_DULL, sizeof(struct device)
};

static int	sioprint __P((void *, char *pnp));

int
siomatch(parent, match, aux)
	struct device *parent;
	void *match, *aux;
{
	struct cfdata *cf = match;
	struct pcidev_attach_args *pda = aux;

	if (PCI_VENDOR(pda->pda_id) != PCI_VENDOR_INTEL ||
	    PCI_PRODUCT(pda->pda_id) != PCI_PRODUCT_INTEL_SIO)
		return (0);

	return (1);
}

int
pcebmatch(parent, match, aux)
	struct device *parent;
	void *match, *aux;
{
	struct cfdata *cf = match;
	struct pcidev_attach_args *pda = aux;

	if (PCI_VENDOR(pda->pda_id) != PCI_VENDOR_INTEL ||
	    PCI_PRODUCT(pda->pda_id) != PCI_PRODUCT_INTEL_PCEB)
		return (0);

	return (1);
}

void
sioattach(parent, self, aux)
	struct device *parent, *self;
	void *aux;
{
	struct pcidev_attach_args *pda = aux;
	struct isa_attach_args ia;
	struct eisa_attach_args ea;
	int sio, haseisa;
	char devinfo[256];

	sio = (PCI_PRODUCT(pda->pda_id) == PCI_PRODUCT_INTEL_SIO);
	haseisa = (PCI_PRODUCT(pda->pda_id) == PCI_PRODUCT_INTEL_PCEB);

	pci_devinfo(pda->pda_id, pda->pda_class, 0, devinfo);
	printf(": %s (rev. 0x%02x)\n", devinfo,
	    PCI_REVISION(pda->pda_class));

	if (sio) {
		pci_revision_t rev;

		rev = PCI_REVISION(pda->pda_class);
		
		if (rev < 3)
			printf("%s: WARNING: SIO I SUPPORT UNTESTED\n",
			    self->dv_xname);
	}

#ifdef EVCNT_COUNTERS
	evcnt_attach(self, "intr", &sio_intr_evcnt);
#endif

	ia.ia_bus = BUS_ISA;
	ia.ia_dmafns = pda->pda_dmafns;
	ia.ia_dmaarg = pda->pda_dmaarg;
	ia.ia_intrfns = &sio_isa_intr_fns;
	ia.ia_intrarg = NULL;			/* XXX needs nothing */
	ia.ia_memfns = pda->pda_memfns;
	ia.ia_memarg = pda->pda_memarg;
	ia.ia_piofns = pda->pda_piofns;
	ia.ia_pioarg = pda->pda_pioarg;
	config_found(self, &ia, sioprint);

	if (haseisa) {
		ea.ea_bus = BUS_EISA;
		ea.ea_dmafns = pda->pda_dmafns;
		ea.ea_dmaarg = pda->pda_dmaarg;
		ea.ea_intrfns = &sio_isa_intr_fns;
		ea.ea_intrarg = NULL;		/* XXX needs nothing */
		ea.ea_memfns = pda->pda_memfns;
		ea.ea_memarg = pda->pda_memarg;
		ea.ea_piofns = pda->pda_piofns;
		ea.ea_pioarg = pda->pda_pioarg;
		config_found(self, &ea, sioprint);
	}
}

static int
sioprint(aux, pnp)
	void *aux;
	char *pnp;
{
        register struct isa_attach_args *ia = aux;

	/*
	 * XXX Assumes that the first fields of 'struct isa_attach_args'
	 * XXX and 'struct eisa_attach_args' are the same.
	 */

        if (pnp)
                printf("%s at %s", isa_bustype_name(ia->ia_bus), pnp);
        return (UNCONF);
}