xref: /netbsd-src/sys/arch/alpha/pci/irongate.c (revision 7663c1deeb1a1eb7d0b8d5910c6bd0391fee5692)
1 /* $NetBSD: irongate.c,v 1.22 2023/12/04 00:32:10 thorpej Exp $ */
2 
3 /*-
4  * Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Jason R. Thorpe of Wasabi Systems, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include <sys/cdefs.h>
33 
34 __KERNEL_RCSID(0, "$NetBSD: irongate.c,v 1.22 2023/12/04 00:32:10 thorpej Exp $");
35 
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/device.h>
39 
40 #include <machine/autoconf.h>
41 #include <machine/rpb.h>
42 #include <machine/sysarch.h>
43 
44 #include <dev/isa/isareg.h>
45 #include <dev/isa/isavar.h>
46 #include <dev/pci/pcireg.h>
47 #include <dev/pci/pcivar.h>
48 #include <dev/pci/agpvar.h>
49 
50 #include <alpha/pci/irongatereg.h>
51 #include <alpha/pci/irongatevar.h>
52 
53 static int	irongate_match(device_t, cfdata_t, void *);
54 static void	irongate_attach(device_t, device_t, void *);
55 
56 CFATTACH_DECL_NEW(irongate, sizeof(struct irongate_softc),
57     irongate_match, irongate_attach, NULL, NULL);
58 
59 extern struct cfdriver irongate_cd;
60 
61 /* There can be only one. */
62 struct irongate_config irongate_configuration;
63 static int irongate_found;
64 
65 static int	irongate_bus_get_window(int, int,
66 		    struct alpha_bus_space_translation *);
67 
68 /*
69  * Set up the chipset's function pointers.
70  */
71 void
irongate_init(struct irongate_config * icp)72 irongate_init(struct irongate_config *icp)
73 {
74 	pcitag_t tag;
75 	pcireg_t reg;
76 
77 	/*
78 	 * Set up PCI configuration space; we can only read the
79 	 * revision info through configuration space.
80 	 */
81 	irongate_pci_init(&icp->ic_pc, icp);
82 	alpha_pci_chipset = &icp->ic_pc;
83 
84 	tag = pci_make_tag(&icp->ic_pc, 0, IRONGATE_PCIHOST_DEV, 0);
85 
86 	/* Read the revision. */
87 	reg = irongate_conf_read0(icp, tag, PCI_CLASS_REG);
88 	icp->ic_rev = PCI_REVISION(reg);
89 
90 	if (icp->ic_initted == 0) {
91 		/* Don't do these twice, since they set up extents. */
92 		irongate_bus_io_init(&icp->ic_iot, icp);
93 		irongate_bus_mem_init(&icp->ic_memt, icp);
94 
95 		/* Only one each PCI I/O and MEM window. */
96 		alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_IO] = 1;
97 		alpha_bus_window_count[ALPHA_BUS_TYPE_PCI_MEM] = 1;
98 
99 		alpha_bus_get_window = irongate_bus_get_window;
100 	}
101 
102 	icp->ic_initted = 1;
103 }
104 
105 static int
irongate_match(device_t parent,cfdata_t match,void * aux)106 irongate_match(device_t parent, cfdata_t match, void *aux)
107 {
108 	struct mainbus_attach_args *ma = aux;
109 
110 	/* Make sure we're looking for an Irongate. */
111 	if (strcmp(ma->ma_name, irongate_cd.cd_name) != 0)
112 		return (0);
113 
114 	if (irongate_found)
115 		return (0);
116 
117 	return (1);
118 }
119 
120 static void
irongate_attach(device_t parent,device_t self,void * aux)121 irongate_attach(device_t parent, device_t self, void *aux)
122 {
123 	struct irongate_softc *sc = device_private(self);
124 	struct irongate_config *icp;
125 	struct pcibus_attach_args pba;
126 	struct agpbus_attach_args apa;
127 	pcitag_t tag;
128 
129 	/* Note that we've attached the chipset; can't have 2 Irongates. */
130 	irongate_found = 1;
131 	sc->sc_dev = self;
132 
133 	/*
134 	 * Set up the chipset's info; done once at console init time
135 	 * (maybe), but we must do it here as well to take care of things
136 	 * that need to use memory allocation.
137 	 */
138 	icp = sc->sc_icp = &irongate_configuration;
139 	irongate_init(icp);
140 
141 	printf(": AMD 751 Core Logic + AGP Chipset, rev. %d\n", icp->ic_rev);
142 
143 	irongate_dma_init(icp);
144 
145 	/*
146 	 * Do PCI memory initialization that needs to be deferred until
147 	 * malloc is safe.
148 	 */
149 	irongate_bus_mem_init2(&icp->ic_memt, icp);
150 
151 	alpha_pci_intr_init(icp, &icp->ic_iot, &icp->ic_memt, &icp->ic_pc);
152 
153 	tag = pci_make_tag(&icp->ic_pc, 0, IRONGATE_PCIHOST_DEV, 0);
154 
155 	pba.pba_iot = &icp->ic_iot;
156 	pba.pba_memt = &icp->ic_memt;
157 	pba.pba_dmat =
158 	    alphabus_dma_get_tag(&icp->ic_dmat_pci, ALPHA_BUS_PCI);
159 	pba.pba_dmat64 = NULL;
160 	pba.pba_pc = &icp->ic_pc;
161 	pba.pba_bus = 0;
162 	pba.pba_bridgetag = NULL;
163 	pba.pba_flags = PCI_FLAGS_IO_OKAY | PCI_FLAGS_MEM_OKAY |
164 	    PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY | PCI_FLAGS_MWI_OKAY;
165 
166 	if (pci_get_capability(&icp->ic_pc, tag, PCI_CAP_AGP,
167 	    NULL, NULL) != 0) {
168 		apa.apa_pci_args.pa_iot = pba.pba_iot;
169 		apa.apa_pci_args.pa_memt = pba.pba_memt;
170 		apa.apa_pci_args.pa_dmat = pba.pba_dmat;
171 		apa.apa_pci_args.pa_pc = pba.pba_pc;
172 		apa.apa_pci_args.pa_bus = pba.pba_bus;
173 		apa.apa_pci_args.pa_device = IRONGATE_PCIHOST_DEV;
174 		apa.apa_pci_args.pa_function = 0;
175 		apa.apa_pci_args.pa_tag = tag;
176 		apa.apa_pci_args.pa_id =
177 		    irongate_conf_read0(icp, tag, PCI_ID_REG);
178 		apa.apa_pci_args.pa_class =
179 		    irongate_conf_read0(icp, tag, PCI_CLASS_REG);
180 		apa.apa_pci_args.pa_flags = pba.pba_flags;
181 
182 		config_found(self, &apa, agpbusprint,
183 		    CFARGS(.iattr = "agpbus"));
184 	}
185 
186 	config_found(self, &pba, pcibusprint,
187 	    CFARGS(.iattr = "pcibus"));
188 }
189 
190 static int
irongate_bus_get_window(int type,int window,struct alpha_bus_space_translation * abst)191 irongate_bus_get_window(int type, int window,
192     struct alpha_bus_space_translation *abst)
193 {
194 	struct irongate_config *icp = &irongate_configuration;
195 	bus_space_tag_t st;
196 	int error;
197 
198 	switch (type) {
199 	case ALPHA_BUS_TYPE_PCI_IO:
200 		st = &icp->ic_iot;
201 		break;
202 
203 	case ALPHA_BUS_TYPE_PCI_MEM:
204 		st = &icp->ic_memt;
205 		break;
206 
207 	default:
208 		panic("irongate_bus_get_window");
209 	}
210 
211 	error = alpha_bus_space_get_window(st, window, abst);
212 	if (error)
213 		return (error);
214 
215 	abst->abst_sys_start = IRONGATE_PHYSADDR(abst->abst_sys_start);
216 	abst->abst_sys_end = IRONGATE_PHYSADDR(abst->abst_sys_end);
217 
218 	return (0);
219 }
220