1115013Smarcel/*-
2115013Smarcel * Copyright (c) 2008 Marius Strobl <marius@FreeBSD.org>
3115013Smarcel * All rights reserved.
4115013Smarcel *
5115013Smarcel * Redistribution and use in source and binary forms, with or without
6115013Smarcel * modification, are permitted provided that the following conditions
7115013Smarcel * are met:
8115013Smarcel * 1. Redistributions of source code must retain the above copyright
9115013Smarcel *    notice, this list of conditions and the following disclaimer.
10115013Smarcel * 2. Redistributions in binary form must reproduce the above copyright
11121642Smarcel *    notice, this list of conditions and the following disclaimer in the
12121642Smarcel *    documentation and/or other materials provided with the distribution.
13115013Smarcel *
14115013Smarcel * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15115013Smarcel * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16115013Smarcel * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17115013Smarcel * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18115013Smarcel * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19115013Smarcel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20115013Smarcel * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21115013Smarcel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22115013Smarcel * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23115013Smarcel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24115013Smarcel * SUCH DAMAGE.
25115013Smarcel */
26115013Smarcel
27115013Smarcel#include <sys/cdefs.h>
28115013Smarcel__FBSDID("$FreeBSD$");
29121642Smarcel
30115013Smarcel#include <sys/param.h>
31115013Smarcel#include <sys/systm.h>
32115013Smarcel#include <sys/bus.h>
33115013Smarcel#include <sys/kernel.h>
34121642Smarcel#include <sys/module.h>
35115013Smarcel#include <sys/resource.h>
36115013Smarcel#include <sys/rman.h>
37121642Smarcel
38115013Smarcel#include <dev/ofw/ofw_bus.h>
39121642Smarcel
40115013Smarcel#include <machine/bus.h>
41115013Smarcel#include <machine/resource.h>
42121642Smarcel
43115013Smarcel#if 1
44115013Smarcel#include <sparc64/pci/ofw_pci.h>
45121642Smarcel#endif
46115013Smarcel
47121642Smarcel#define	JBUSPPM_NREG	2
48115013Smarcel
49115013Smarcel#define	JBUSPPM_DEVID	0
50121642Smarcel#define	JBUSPPM_ESTAR	1
51115013Smarcel
52115013Smarcel#define	JBUSPPM_DEVID_JID		0x00
53121642Smarcel#define	JBUSPPM_DEVID_JID_MASTER	0x00040000
54115013Smarcel
55121642Smarcel#define	JBUSPPM_ESTAR_CTRL		0x00
56115013Smarcel#define	JBUSPPM_ESTAR_CTRL_1		0x00000001
57115013Smarcel#define	JBUSPPM_ESTAR_CTRL_2		0x00000002
58121642Smarcel#define	JBUSPPM_ESTAR_CTRL_32		0x00000020
59115013Smarcel#define	JBUSPPM_ESTAR_CTRL_MASK						\
60115013Smarcel	(JBUSPPM_ESTAR_CTRL_1 | JBUSPPM_ESTAR_CTRL_2 | JBUSPPM_ESTAR_CTRL_32)
61115013Smarcel#define	JBUSPPM_ESTAR_JCHNG		0x08
62121642Smarcel#define	JBUSPPM_ESTAR_JCHNG_DELAY_MASK	0x00000007
63121642Smarcel#define	JBUSPPM_ESTAR_JCHNG_START	0x00000010
64121642Smarcel#define	JBUSPPM_ESTAR_JCHNG_OCCURED	0x00000018
65121642Smarcel
66121642Smarcelstruct jbusppm_softc {
67115013Smarcel	struct resource		*sc_res[JBUSPPM_NREG];
68121642Smarcel	bus_space_tag_t		sc_bt[JBUSPPM_NREG];
69121642Smarcel	bus_space_handle_t	sc_bh[JBUSPPM_NREG];
70115013Smarcel};
71115013Smarcel
72115013Smarcel#define	JBUSPPM_READ(sc, reg, off)					\
73121642Smarcel	bus_space_read_8((sc)->sc_bt[(reg)], (sc)->sc_bh[(reg)], (off))
74121642Smarcel#define	JBUSPPM_WRITE(sc, reg, off, val)				\
75115013Smarcel	bus_space_write_8((sc)->sc_bt[(reg)], (sc)->sc_bh[(reg)], (off), (val))
76121642Smarcel
77121642Smarcelstatic device_probe_t jbusppm_probe;
78121642Smarcelstatic device_attach_t jbusppm_attach;
79121642Smarcel
80121642Smarcelstatic device_method_t jbusppm_methods[] = {
81121642Smarcel	/* Device interface */
82115013Smarcel	DEVMETHOD(device_probe,		jbusppm_probe),
83115013Smarcel	DEVMETHOD(device_attach,	jbusppm_attach),
84121642Smarcel
85121642Smarcel	DEVMETHOD_END
86121642Smarcel};
87121642Smarcel
88121642Smarcelstatic devclass_t jbusppm_devclass;
89121642Smarcel
90121642SmarcelDEFINE_CLASS_0(jbusppm, jbusppm_driver, jbusppm_methods,
91121642Smarcel    sizeof(struct jbusppm_softc));
92121642SmarcelDRIVER_MODULE(jbusppm, nexus, jbusppm_driver, jbusppm_devclass, 0, 0);
93121642Smarcel
94121642Smarcelstatic int
95121642Smarceljbusppm_probe(device_t dev)
96121642Smarcel{
97121642Smarcel	const char* compat;
98115013Smarcel
99115013Smarcel	compat = ofw_bus_get_compat(dev);
100115013Smarcel	if (compat != NULL && strcmp(ofw_bus_get_name(dev), "ppm") == 0 &&
101115013Smarcel	    strcmp(compat, "jbus-ppm") == 0) {
102121642Smarcel		device_set_desc(dev, "JBus power management");
103115013Smarcel		return (BUS_PROBE_DEFAULT);
104115013Smarcel	}
105115013Smarcel	return (ENXIO);
106115013Smarcel}
107
108static int
109jbusppm_attach(device_t dev)
110{
111	struct jbusppm_softc *sc;
112	int i, rid;
113#if 1
114	device_t *children, tomatillo;
115	u_long tcount, tstart, jcount, jstart;
116	int j, nchildren;
117#endif
118
119	sc = device_get_softc(dev);
120	for (i = JBUSPPM_DEVID; i <= JBUSPPM_ESTAR; i++) {
121		rid = i;
122		/*
123		 * The JBUSPPM_ESTAR resources is shared with that of the
124		 * Tomatillo bus A controller configuration register bank.
125		 */
126#if 0
127		sc->sc_res[i] = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
128		    &rid, (i == JBUSPPM_ESTAR ? RF_SHAREABLE : 0) | RF_ACTIVE);
129		if (sc->sc_res[i] == NULL) {
130			device_printf(dev,
131			    "could not allocate resource %d\n", i);
132			goto fail;
133		}
134		sc->sc_bt[i] = rman_get_bustag(sc->sc_res[i]);
135		sc->sc_bh[i] = rman_get_bushandle(sc->sc_res[i]);
136#else
137		/*
138		 * Workaround for the fact that rman(9) only allows to
139		 * share resources of the same size.
140		 */
141		if (i == JBUSPPM_ESTAR) {
142			if (bus_get_resource(dev, SYS_RES_MEMORY, i, &jstart,
143			    &jcount) != 0) {
144				device_printf(dev,
145				    "could not determine Estar resource\n");
146				goto fail;
147			}
148			if (device_get_children(device_get_parent(dev),
149			    &children, &nchildren) != 0) {
150				device_printf(dev, "could not get children\n");
151				goto fail;
152			}
153			tomatillo = NULL;
154			for (j = 0; j < nchildren; j++) {
155				if (ofw_bus_get_type(children[j]) != NULL &&
156				    strcmp(ofw_bus_get_type(children[j]),
157				    OFW_TYPE_PCI) == 0 &&
158				    ofw_bus_get_compat(children[j]) != NULL &&
159				    strcmp(ofw_bus_get_compat(children[j]),
160				    "pci108e,a801") == 0 &&
161				    ((bus_get_resource_start(children[j],
162				    SYS_RES_MEMORY, 0) >> 20) & 1) == 0) {
163					tomatillo = children[j];
164					break;
165				}
166			}
167			free(children, M_TEMP);
168			if (tomatillo == NULL) {
169				device_printf(dev,
170				    "could not find Tomatillo\n");
171				goto fail;
172			}
173			if (bus_get_resource(tomatillo, SYS_RES_MEMORY, 1,
174			    &tstart, &tcount) != 0) {
175				device_printf(dev,
176				    "could not determine Tomatillo "
177				    "resource\n");
178				goto fail;
179			}
180			sc->sc_res[i] = bus_alloc_resource(dev, SYS_RES_MEMORY,
181			    &rid, tstart, tstart + tcount - 1, tcount,
182			    RF_SHAREABLE | RF_ACTIVE);
183		} else
184			sc->sc_res[i] = bus_alloc_resource_any(dev,
185			    SYS_RES_MEMORY, &rid, RF_ACTIVE);
186		if (sc->sc_res[i] == NULL) {
187			device_printf(dev,
188			    "could not allocate resource %d\n", i);
189			goto fail;
190		}
191		sc->sc_bt[i] = rman_get_bustag(sc->sc_res[i]);
192		sc->sc_bh[i] = rman_get_bushandle(sc->sc_res[i]);
193		if (i == JBUSPPM_ESTAR)
194			bus_space_subregion(sc->sc_bt[i], sc->sc_bh[i],
195			    jstart - tstart, jcount, &sc->sc_bh[i]);
196#endif
197	}
198
199	if (bootverbose) {
200		if ((JBUSPPM_READ(sc, JBUSPPM_DEVID, JBUSPPM_DEVID_JID) &
201		    JBUSPPM_DEVID_JID_MASTER) != 0)
202			device_printf(dev, "master I/O bridge\n");
203		device_printf(dev, "running at ");
204		switch (JBUSPPM_READ(sc, JBUSPPM_ESTAR, JBUSPPM_ESTAR_CTRL) &
205		    JBUSPPM_ESTAR_CTRL_MASK) {
206		case JBUSPPM_ESTAR_CTRL_1:
207			printf("full");
208			break;
209		case JBUSPPM_ESTAR_CTRL_2:
210			printf("half");
211			break;
212		case JBUSPPM_ESTAR_CTRL_32:
213			printf("1/32");
214			break;
215		default:
216			printf("unknown");
217			break;
218		}
219		printf(" speed\n");
220	}
221
222	return (0);
223
224 fail:
225	for (i = JBUSPPM_DEVID; i <= JBUSPPM_ESTAR && sc->sc_res[i] != NULL;
226	    i++)
227		bus_release_resource(dev, SYS_RES_MEMORY,
228		    rman_get_rid(sc->sc_res[i]), sc->sc_res[i]);
229	return (ENXIO);
230}
231