xref: /freebsd/sys/powerpc/pseries/plpar_pcibus.c (revision 734e82fe33aa764367791a7d603b383996c6b40b)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2011 Nathan Whitehorn
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 #include <sys/param.h>
31 #include <sys/bus.h>
32 #include <sys/kernel.h>
33 #include <sys/libkern.h>
34 #include <sys/module.h>
35 #include <sys/pciio.h>
36 
37 #include <dev/ofw/openfirm.h>
38 
39 #include <dev/pci/pcivar.h>
40 #include <dev/pci/pcireg.h>
41 #include <dev/pci/pci_private.h>
42 
43 #include <machine/bus.h>
44 #include <machine/rtas.h>
45 
46 #include <powerpc/ofw/ofw_pcibus.h>
47 #include <powerpc/pseries/plpar_iommu.h>
48 
49 #include "pci_if.h"
50 #include "iommu_if.h"
51 
52 static int		plpar_pcibus_probe(device_t);
53 static bus_dma_tag_t	plpar_pcibus_get_dma_tag(device_t dev, device_t child);
54 
55 /*
56  * Driver methods.
57  */
58 static device_method_t	plpar_pcibus_methods[] = {
59 	/* Device interface */
60 	DEVMETHOD(device_probe,		plpar_pcibus_probe),
61 
62 	/* IOMMU functions */
63 	DEVMETHOD(bus_get_dma_tag,	plpar_pcibus_get_dma_tag),
64 	DEVMETHOD(iommu_map,		phyp_iommu_map),
65 	DEVMETHOD(iommu_unmap,		phyp_iommu_unmap),
66 
67 	DEVMETHOD_END
68 };
69 
70 DEFINE_CLASS_1(pci, plpar_pcibus_driver, plpar_pcibus_methods,
71     sizeof(struct pci_softc), ofw_pcibus_driver);
72 DRIVER_MODULE(plpar_pcibus, pcib, plpar_pcibus_driver, 0, 0);
73 
74 static int
75 plpar_pcibus_probe(device_t dev)
76 {
77 	phandle_t rtas;
78 
79 	if (ofw_bus_get_node(dev) == -1 || !rtas_exists())
80 		return (ENXIO);
81 
82 	rtas = OF_finddevice("/rtas");
83 	if (!OF_hasprop(rtas, "ibm,hypertas-functions"))
84 		return (ENXIO);
85 
86 	device_set_desc(dev, "POWER Hypervisor PCI bus");
87 
88 	return (BUS_PROBE_SPECIFIC);
89 }
90 
91 static bus_dma_tag_t
92 plpar_pcibus_get_dma_tag(device_t dev, device_t child)
93 {
94 	struct ofw_pcibus_devinfo *dinfo;
95 
96 	while (device_get_parent(child) != dev)
97 		child = device_get_parent(child);
98 
99 	dinfo = device_get_ivars(child);
100 
101 	if (dinfo->opd_dma_tag != NULL)
102 		return (dinfo->opd_dma_tag);
103 
104 	bus_dma_tag_create(bus_get_dma_tag(dev),
105 	    1, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR,
106 	    NULL, NULL, BUS_SPACE_MAXSIZE, BUS_SPACE_UNRESTRICTED,
107 	    BUS_SPACE_MAXSIZE, 0, NULL, NULL, &dinfo->opd_dma_tag);
108 	phyp_iommu_set_dma_tag(dev, child, dinfo->opd_dma_tag);
109 
110 	return (dinfo->opd_dma_tag);
111 }
112