dma_sbus.c revision 146392
1234353Sdim/*	$OpenBSD: dma_sbus.c,v 1.12 2005/03/03 01:41:45 miod Exp $	*/
2193323Sed/*	$NetBSD: dma_sbus.c,v 1.5 2000/07/09 20:57:42 pk Exp $ */
3193323Sed
4193323Sed/*-
5193323Sed * Copyright (c) 1998 The NetBSD Foundation, Inc.
6193323Sed * All rights reserved.
7193323Sed *
8193323Sed * This code is derived from software contributed to The NetBSD Foundation
9193323Sed * by Paul Kranenburg.
10193323Sed *
11193323Sed * Redistribution and use in source and binary forms, with or without
12193323Sed * modification, are permitted provided that the following conditions
13193323Sed * are met:
14193323Sed * 1. Redistributions of source code must retain the above copyright
15193323Sed *    notice, this list of conditions and the following disclaimer.
16193323Sed * 2. Redistributions in binary form must reproduce the above copyright
17193323Sed *    notice, this list of conditions and the following disclaimer in the
18239462Sdim *    documentation and/or other materials provided with the distribution.
19234353Sdim * 3. All advertising materials mentioning features or use of this software
20198090Srdivacky *    must display the following acknowledgement:
21193323Sed *        This product includes software developed by the NetBSD
22193323Sed *        Foundation, Inc. and its contributors.
23224145Sdim * 4. Neither the name of The NetBSD Foundation nor the names of its
24224145Sdim *    contributors may be used to endorse or promote products derived
25224145Sdim *    from this software without specific prior written permission.
26193323Sed *
27193323Sed * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28224145Sdim * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29239462Sdim * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30193323Sed * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31234353Sdim * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32239462Sdim * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33193323Sed * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34239462Sdim * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35193323Sed * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36239462Sdim * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37193323Sed * POSSIBILITY OF SUCH DAMAGE.
38193323Sed */
39193323Sed
40193323Sed/*-
41193323Sed * Copyright (c) 1994 Peter Galbavy.  All rights reserved.
42193323Sed * Copyright (c) 2005 Marius Strobl <marius@FreeBSD.org>. All rights reserved.
43239462Sdim *
44193323Sed * Redistribution and use in source and binary forms, with or without
45221345Sdim * modification, are permitted provided that the following conditions
46193323Sed * are met:
47193323Sed * 1. Redistributions of source code must retain the above copyright
48210299Sed *    notice, this list of conditions and the following disclaimer.
49210299Sed * 2. Redistributions in binary form must reproduce the above copyright
50193323Sed *    notice, this list of conditions and the following disclaimer in the
51239462Sdim *    documentation and/or other materials provided with the distribution.
52239462Sdim *
53193323Sed * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
54224145Sdim * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
55224145Sdim * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
56224145Sdim * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
57224145Sdim * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
58224145Sdim * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59193323Sed * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60221345Sdim * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61193323Sed * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
62239462Sdim * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63239462Sdim */
64239462Sdim
65239462Sdim#include <sys/cdefs.h>
66239462Sdim__FBSDID("$FreeBSD: head/sys/sparc64/sbus/dma_sbus.c 146392 2005-05-19 14:51:10Z marius $");
67239462Sdim
68239462Sdim#include <sys/param.h>
69239462Sdim#include <sys/systm.h>
70239462Sdim#include <sys/bus.h>
71239462Sdim#include <sys/kernel.h>
72239462Sdim#include <sys/module.h>
73239462Sdim#include <sys/resource.h>
74239462Sdim#include <sys/rman.h>
75239462Sdim
76239462Sdim#include <dev/ofw/ofw_bus.h>
77239462Sdim#include <dev/ofw/openfirm.h>
78239462Sdim
79239462Sdim#include <machine/bus.h>
80239462Sdim#include <machine/bus_common.h>
81239462Sdim#include <machine/resource.h>
82239462Sdim
83239462Sdim#include <sparc64/sbus/lsi64854reg.h>
84239462Sdim#include <sparc64/sbus/lsi64854var.h>
85239462Sdim#include <sparc64/sbus/ofw_sbus.h>
86239462Sdim#include <sparc64/sbus/sbusreg.h>
87239462Sdim#include <sparc64/sbus/sbusvar.h>
88239462Sdim
89193323Sedstruct dma_devinfo {
90193323Sed	char			*ddi_compat;	/* PROM compatible */
91239462Sdim	char			*ddi_model;	/* PROM model */
92239462Sdim	char			*ddi_name;	/* PROM name */
93239462Sdim	phandle_t		ddi_node;	/* PROM node */
94239462Sdim	char			*ddi_type;	/* PROM device_type */
95239462Sdim
96239462Sdim	struct resource_list	ddi_rl;
97239462Sdim};
98239462Sdim
99239462Sdimstruct dma_softc {
100239462Sdim	struct lsi64854_softc	sc_lsi64854;	/* base device */
101193323Sed	int			sc_ign;
102193323Sed	int			sc_slot;
103239462Sdim};
104239462Sdim
105239462Sdimstatic devclass_t dma_devclass;
106239462Sdim
107239462Sdimstatic device_probe_t dma_probe;
108239462Sdimstatic device_attach_t dma_attach;
109193323Sedstatic bus_print_child_t dma_print_child;
110static bus_probe_nomatch_t dma_probe_nomatch;
111static bus_get_resource_list_t dma_get_resource_list;
112#if 0
113static bus_setup_intr_t dma_setup_intr;
114#endif
115static ofw_bus_get_compat_t dma_get_compat;
116static ofw_bus_get_model_t dma_get_model;
117static ofw_bus_get_name_t dma_get_name;
118static ofw_bus_get_node_t dma_get_node;
119static ofw_bus_get_type_t dma_get_type;
120
121static struct dma_devinfo *dma_setup_dinfo(device_t, phandle_t, char *);
122static void dma_destroy_dinfo(struct dma_devinfo *);
123
124static device_method_t dma_methods[] = {
125        /* Device interface */
126	DEVMETHOD(device_probe,		dma_probe),
127	DEVMETHOD(device_attach,	dma_attach),
128
129	/* Bus interface */
130	DEVMETHOD(bus_print_child,	dma_print_child),
131	DEVMETHOD(bus_probe_nomatch,	dma_probe_nomatch),
132#if 0
133	DEVMETHOD(bus_setup_intr,	dma_setup_intr),
134#else
135	DEVMETHOD(bus_setup_intr,	bus_generic_setup_intr),
136#endif
137	DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
138	DEVMETHOD(bus_alloc_resource,	bus_generic_rl_alloc_resource),
139	DEVMETHOD(bus_release_resource, bus_generic_rl_release_resource),
140	DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
141	DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
142	DEVMETHOD(bus_get_resource_list, dma_get_resource_list),
143	DEVMETHOD(bus_get_resource,	bus_generic_rl_get_resource),
144
145	/* ofw_bus interface */
146	DEVMETHOD(ofw_bus_get_compat,	dma_get_compat),
147	DEVMETHOD(ofw_bus_get_model,	dma_get_model),
148	DEVMETHOD(ofw_bus_get_name,	dma_get_name),
149	DEVMETHOD(ofw_bus_get_node,	dma_get_node),
150	DEVMETHOD(ofw_bus_get_type,	dma_get_type),
151
152	{ 0, 0 }
153};
154
155static driver_t dma_driver = {
156	"dma",
157	dma_methods,
158	sizeof(struct dma_softc),
159};
160
161DRIVER_MODULE(dma, sbus, dma_driver, dma_devclass, 0, 0);
162
163static int
164dma_probe(device_t dev)
165{
166	const char *name;
167
168	name = ofw_bus_get_name(dev);
169	if (strcmp(name, "espdma") == 0 || strcmp(name, "dma") == 0 ||
170	    strcmp(name, "ledma") == 0) {
171                device_set_desc_copy(dev, name);
172                return (0);
173	}
174        return (ENXIO);
175}
176
177static int
178dma_attach(device_t dev)
179{
180	struct dma_softc *dsc;
181	struct lsi64854_softc *lsc;
182	struct dma_devinfo *ddi;
183	device_t cdev;
184	const char *name;
185	char *cabletype, *cname;
186	uint32_t csr;
187	phandle_t child, node;
188	int error, burst, children;
189
190	dsc = device_get_softc(dev);
191	bzero(dsc, sizeof(struct dma_softc));
192	lsc = &dsc->sc_lsi64854;
193
194	name = ofw_bus_get_name(dev);
195	node = ofw_bus_get_node(dev);
196	dsc->sc_ign = sbus_get_ign(dev);
197	dsc->sc_slot = sbus_get_slot(dev);
198
199	lsc->sc_rid = 0;
200	lsc->sc_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &lsc->sc_rid,
201	    RF_ACTIVE);
202	if (lsc->sc_res == NULL) {
203		device_printf(dev, "cannot allocate resources\n");
204		return (ENXIO);
205	}
206	lsc->sc_regt = rman_get_bustag(lsc->sc_res);
207	lsc->sc_regh = rman_get_bushandle(lsc->sc_res);
208
209	if (strcmp(name, "espdma") == 0 || strcmp(name, "dma") == 0)
210		lsc->sc_channel = L64854_CHANNEL_SCSI;
211	else if (strcmp(name, "ledma") == 0) {
212		/*
213		 * Check to see which cable type is currently active and
214		 * set the appropriate bit in the ledma csr so that it
215		 * gets used. If we didn't netboot, the PROM won't have
216		 * the "cable-selection" property; default to TP and then
217		 * the user can change it via a "media" option to ifconfig.
218		 */
219		csr = L64854_GCSR(lsc);
220		if ((OF_getprop_alloc(node, "cable-selection", 1,
221		    (void **)&cabletype)) == -1) {
222			/* assume TP if nothing there */
223			csr |= E_TP_AUI;
224		} else {
225			if (strcmp(cabletype, "aui") == 0)
226				csr &= ~E_TP_AUI;
227			else
228				csr |= E_TP_AUI;
229			free(cabletype, M_OFWPROP);
230		}
231		L64854_SCSR(lsc, csr);
232		DELAY(20000);	/* manual says we need a 20ms delay */
233		lsc->sc_channel = L64854_CHANNEL_ENET;
234	} else {
235		device_printf(dev, "unsupported DMA channel\n");
236		error = ENXIO;
237		goto fail_lres;
238	}
239
240	error = bus_dma_tag_create(
241	    NULL,			/* parent */
242	    PAGE_SIZE, 0,		/* alignment, boundary */
243	    BUS_SPACE_MAXADDR,		/* lowaddr */
244	    BUS_SPACE_MAXADDR,		/* highaddr */
245	    NULL, NULL,			/* filter, filterarg */
246	    BUS_SPACE_MAXSIZE_32BIT,	/* maxsize */
247	    0,				/* nsegments */
248	    BUS_SPACE_MAXSIZE_32BIT,	/* maxsegsize */
249	    0,				/* flags */
250	    NULL, NULL,			/* no locking */
251	    &lsc->sc_parent_dmat);
252	if (error != 0) {
253		device_printf(dev, "cannot allocate parent DMA tag\n");
254		goto fail_lres;
255	}
256
257	burst = sbus_get_burstsz(dev);
258	lsc->sc_burst = (burst & SBUS_BURST_32) ? 32 :
259	    (burst & SBUS_BURST_16) ? 16 : 0;
260	lsc->sc_dev = dev;
261
262	error = lsi64854_attach(lsc);
263	if (error != 0) {
264		device_printf(dev, "lsi64854_attach failed\n");
265		goto fail_lpdma;
266	}
267
268	/* Attach children. */
269	children = 0;
270	for (child = OF_child(node); child != 0; child = OF_peer(child)) {
271		if ((OF_getprop_alloc(child, "name", 1, (void **)&cname)) == -1)
272			continue;
273		if ((ddi = dma_setup_dinfo(dev, child, cname)) == NULL) {
274			device_printf(dev, "<%s>: incomplete\n", cname);
275			free(cname, M_OFWPROP);
276			continue;
277		}
278		if (children != 0) {
279			device_printf(dev, "<%s>: only one child per DMA "
280			    "channel supported\n", cname);
281			dma_destroy_dinfo(ddi);
282			free(cname, M_OFWPROP);
283			continue;
284		}
285		if ((cdev = device_add_child(dev, NULL, -1)) == NULL) {
286			device_printf(dev, "<%s>: device_add_child failed\n",
287			    cname);
288			dma_destroy_dinfo(ddi);
289			free(cname, M_OFWPROP);
290			continue;
291		}
292		device_set_ivars(cdev, ddi);
293		children++;
294	}
295	error = bus_generic_attach(dev);
296	if (error != 0) {
297		device_printf(dev, "bus_generic_attach failed\n");
298		goto fail_lsi;
299	}
300
301	return (0);
302
303 fail_lsi:
304	lsi64854_detach(lsc);
305 fail_lpdma:
306	bus_dma_tag_destroy(lsc->sc_parent_dmat);
307 fail_lres:
308	bus_release_resource(dev, SYS_RES_MEMORY, lsc->sc_rid, lsc->sc_res);
309	return (error);
310}
311
312static struct dma_devinfo *
313dma_setup_dinfo(device_t dev, phandle_t node, char *name)
314{
315	struct dma_softc *dsc;
316	struct dma_devinfo *ddi;
317	struct sbus_regs *reg;
318	uint32_t base, iv, *intr;
319	int i, nreg, nintr, slot, rslot;
320
321	dsc = device_get_softc(dev);
322
323	ddi = malloc(sizeof(*ddi), M_DEVBUF, M_WAITOK | M_ZERO);
324	if (ddi == NULL)
325		return (NULL);
326	resource_list_init(&ddi->ddi_rl);
327	ddi->ddi_name = name;
328	ddi->ddi_node = node;
329	OF_getprop_alloc(node, "compatible", 1, (void **)&ddi->ddi_compat);
330	OF_getprop_alloc(node, "device_type", 1, (void **)&ddi->ddi_type);
331	OF_getprop_alloc(node, "model", 1, (void **)&ddi->ddi_model);
332	slot = -1;
333	nreg = OF_getprop_alloc(node, "reg", sizeof(*reg), (void **)&reg);
334	if (nreg == -1) {
335		dma_destroy_dinfo(ddi);
336		return (NULL);
337	}
338	for (i = 0; i < nreg; i++) {
339		base = reg[i].sbr_offset;
340		if (SBUS_ABS(base)) {
341			rslot = SBUS_ABS_TO_SLOT(base);
342			base = SBUS_ABS_TO_OFFSET(base);
343		} else
344			rslot = reg[i].sbr_slot;
345		if (slot != -1 && slot != rslot) {
346			device_printf(dev, "<%s>: multiple slots\n", name);
347			free(reg, M_OFWPROP);
348			dma_destroy_dinfo(ddi);
349			return (NULL);
350		}
351		slot = rslot;
352
353		resource_list_add(&ddi->ddi_rl, SYS_RES_MEMORY, i, base,
354		    base + reg[i].sbr_size, reg[i].sbr_size);
355	}
356	free(reg, M_OFWPROP);
357	if (slot != dsc->sc_slot) {
358		device_printf(dev, "<%s>: parent and child slot do not match\n",
359		    name);
360		dma_destroy_dinfo(ddi);
361		return (NULL);
362	}
363
364	/*
365	 * The `interrupts' property contains the SBus interrupt level.
366	 */
367	nintr = OF_getprop_alloc(node, "interrupts", sizeof(*intr),
368	    (void **)&intr);
369	if (nintr != -1) {
370		for (i = 0; i < nintr; i++) {
371			iv = intr[i];
372			/*
373			 * SBus card devices need the slot number encoded into
374			 * the vector as this is generally not done.
375			 */
376			if ((iv & INTMAP_OBIO_MASK) == 0)
377				iv |= slot << 3;
378			/* Set the IGN as appropriate. */
379			iv |= dsc->sc_ign << INTMAP_IGN_SHIFT;
380			resource_list_add(&ddi->ddi_rl, SYS_RES_IRQ, i,
381			    iv, iv, 1);
382		}
383		free(intr, M_OFWPROP);
384	}
385	return (ddi);
386}
387
388static void
389dma_destroy_dinfo(struct dma_devinfo *dinfo)
390{
391
392	resource_list_free(&dinfo->ddi_rl);
393	if (dinfo->ddi_compat != NULL)
394		free(dinfo->ddi_compat, M_OFWPROP);
395	if (dinfo->ddi_model != NULL)
396		free(dinfo->ddi_model, M_OFWPROP);
397	if (dinfo->ddi_type != NULL)
398		free(dinfo->ddi_type, M_OFWPROP);
399	free(dinfo, M_DEVBUF);
400}
401
402static int
403dma_print_child(device_t dev, device_t child)
404{
405	struct dma_devinfo *ddi;
406	struct resource_list *rl;
407	int rv;
408
409	ddi = device_get_ivars(child);
410	rl = &ddi->ddi_rl;
411	rv = bus_print_child_header(dev, child);
412	rv += resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#lx");
413	rv += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld");
414	rv += bus_print_child_footer(dev, child);
415	return (rv);
416}
417
418static void
419dma_probe_nomatch(device_t dev, device_t child)
420{
421	struct dma_devinfo *ddi;
422	struct resource_list *rl;
423
424	ddi = device_get_ivars(child);
425	rl = &ddi->ddi_rl;
426	device_printf(dev, "<%s>", ddi->ddi_name);
427	resource_list_print_type(rl, "mem", SYS_RES_MEMORY, "%#lx");
428        resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld");
429        printf(" type %s (no driver attached)\n",
430            ddi->ddi_type != NULL ? ddi->ddi_type : "unknown");
431}
432
433static struct resource_list *
434dma_get_resource_list(device_t dev, device_t child)
435{
436	struct dma_devinfo *ddi;
437
438	ddi = device_get_ivars(child);
439	return (&ddi->ddi_rl);
440}
441
442#if 0
443static int
444dma_setup_intr(device_t dev, device_t child, struct resource *ires, int flags,
445    driver_intr_t *intr, void *arg, void **cookiep)
446{
447	struct lsi64854_softc *sc;
448
449	sc = (struct lsi64854_softc *)device_get_softc(dev);
450	/* XXX - for now only le; do ESP later */
451	if (sc->sc_channel == L64854_CHANNEL_ENET) {
452		sc->sc_intrchain = intr;
453		sc->sc_intrchainarg = arg;
454		intr = (driver_intr_t *)lsi64854_enet_intr;
455		arg = sc;
456	}
457
458	return (BUS_SETUP_INTR(device_get_parent(dev), child, ires, flags,
459	    intr, arg, cookiep));
460}
461#endif
462
463static const char *
464dma_get_compat(device_t bus, device_t dev)
465{
466	struct dma_devinfo *dinfo;
467
468	dinfo = device_get_ivars(dev);
469	return (dinfo->ddi_compat);
470}
471
472static const char *
473dma_get_model(device_t bus, device_t dev)
474{
475	struct dma_devinfo *dinfo;
476
477	dinfo = device_get_ivars(dev);
478	return (dinfo->ddi_model);
479}
480
481static const char *
482dma_get_name(device_t bus, device_t dev)
483{
484	struct dma_devinfo *dinfo;
485
486	dinfo = device_get_ivars(dev);
487	return (dinfo->ddi_name);
488}
489
490static phandle_t
491dma_get_node(device_t bus, device_t dev)
492{
493	struct dma_devinfo *dinfo;
494
495	dinfo = device_get_ivars(dev);
496	return (dinfo->ddi_node);
497}
498
499static const char *
500dma_get_type(device_t bus, device_t dev)
501{
502	struct dma_devinfo *dinfo;
503
504	dinfo = device_get_ivars(dev);
505	return (dinfo->ddi_type);
506}
507