xref: /netbsd-src/sys/arch/sparc64/dev/auxio.c (revision 6a493d6bc668897c91594964a732d38505b70cbb)
1 /*	$NetBSD: auxio.c,v 1.22 2011/06/02 00:24:23 christos Exp $	*/
2 
3 /*
4  * Copyright (c) 2000, 2001 Matthew R. Green
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 ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24  * 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 /*
30  * AUXIO registers support on the sbus & ebus2, used for the floppy driver
31  * and to control the system LED, for the BLINK option.
32  */
33 
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: auxio.c,v 1.22 2011/06/02 00:24:23 christos Exp $");
36 
37 #include "opt_auxio.h"
38 
39 #include <sys/param.h>
40 #include <sys/systm.h>
41 #include <sys/kernel.h>
42 #include <sys/callout.h>
43 #include <sys/errno.h>
44 #include <sys/device.h>
45 #include <sys/malloc.h>
46 
47 #include <machine/autoconf.h>
48 #include <machine/cpu.h>
49 
50 #include <dev/ebus/ebusreg.h>
51 #include <dev/ebus/ebusvar.h>
52 #include <dev/sbus/sbusvar.h>
53 #include <sparc64/dev/auxioreg.h>
54 #include <sparc64/dev/auxiovar.h>
55 
56 /*
57  * on sun4u, auxio exists with one register (LED) on the sbus, and 5
58  * registers on the ebus2 (pci) (LED, PCIMODE, FREQUENCY, SCSI
59  * OSCILLATOR, and TEMP SENSE.
60  */
61 
62 struct auxio_softc {
63 	device_t		sc_dev;
64 
65 	/* parent's tag */
66 	bus_space_tag_t		sc_tag;
67 
68 	/* handles to the various auxio regsiter sets */
69 	bus_space_handle_t	sc_led;
70 	bus_space_handle_t	sc_pci;
71 	bus_space_handle_t	sc_freq;
72 	bus_space_handle_t	sc_scsi;
73 	bus_space_handle_t	sc_temp;
74 
75 	int			sc_flags;
76 #define	AUXIO_LEDONLY		0x1
77 #define	AUXIO_EBUS		0x2
78 #define	AUXIO_SBUS		0x4
79 };
80 
81 #define	AUXIO_ROM_NAME		"auxio"
82 
83 void	auxio_attach_common(struct auxio_softc *);
84 int	auxio_ebus_match(device_t, cfdata_t, void *);
85 void	auxio_ebus_attach(device_t, device_t, void *);
86 int	auxio_sbus_match(device_t, cfdata_t, void *);
87 void	auxio_sbus_attach(device_t, device_t, void *);
88 
89 CFATTACH_DECL_NEW(auxio_ebus, sizeof(struct auxio_softc),
90     auxio_ebus_match, auxio_ebus_attach, NULL, NULL);
91 
92 CFATTACH_DECL_NEW(auxio_sbus, sizeof(struct auxio_softc),
93     auxio_sbus_match, auxio_sbus_attach, NULL, NULL);
94 
95 extern struct cfdriver auxio_cd;
96 
97 #ifdef BLINK
98 static callout_t blink_ch;
99 static void auxio_blink(void *);
100 
101 /* let someone disable it if it's already turned on; XXX sysctl? */
102 int do_blink = 1;
103 
104 static void
105 auxio_blink(void *x)
106 {
107 	struct auxio_softc *sc = x;
108 	int s;
109 	uint32_t led;
110 
111 	if (do_blink == 0)
112 		return;
113 
114 	s = splhigh();
115 	if (sc->sc_flags & AUXIO_EBUS)
116 		led = le32toh(bus_space_read_4(sc->sc_tag, sc->sc_led, 0));
117 	else
118 		led = bus_space_read_1(sc->sc_tag, sc->sc_led, 0);
119 
120 	led = led ^ AUXIO_LED_LED;
121 	if (sc->sc_flags & AUXIO_EBUS)
122 		bus_space_write_4(sc->sc_tag, sc->sc_led, 0, htole32(led));
123 	else
124 		bus_space_write_1(sc->sc_tag, sc->sc_led, 0, led);
125 	splx(s);
126 
127 	/*
128 	 * Blink rate is:
129 	 *	full cycle every second if completely idle (loadav = 0)
130 	 *	full cycle every 2 seconds if loadav = 1
131 	 *	full cycle every 3 seconds if loadav = 2
132 	 * etc.
133 	 */
134 	s = (((averunnable.ldavg[0] + FSCALE) * hz) >> (FSHIFT + 1));
135 	callout_reset(&blink_ch, s, auxio_blink, sc);
136 }
137 #endif
138 
139 void
140 auxio_attach_common(struct auxio_softc *sc)
141 {
142 #ifdef BLINK
143 	static int do_once = 1;
144 
145 	/* only start one blinker */
146 	if (do_once) {
147 		callout_init(&blink_ch, 0);
148 		auxio_blink(sc);
149 		do_once = 0;
150 	}
151 #endif
152 	printf("\n");
153 }
154 
155 int
156 auxio_ebus_match(device_t parent, cfdata_t cf, void *aux)
157 {
158 	struct ebus_attach_args *ea = aux;
159 
160 	return (strcmp(AUXIO_ROM_NAME, ea->ea_name) == 0);
161 }
162 
163 void
164 auxio_ebus_attach(device_t parent, device_t self, void *aux)
165 {
166 	struct auxio_softc *sc = device_private(self);
167 	struct ebus_attach_args *ea = aux;
168 
169 	sc->sc_dev = self;
170 	sc->sc_tag = ea->ea_bustag;
171 
172 	if (ea->ea_nreg < 1) {
173 		printf(": no registers??\n");
174 		return;
175 	}
176 
177 	if (ea->ea_nreg != 5) {
178 		printf(": not 5 (%d) registers, only setting led",
179 		    ea->ea_nreg);
180 		sc->sc_flags = AUXIO_LEDONLY|AUXIO_EBUS;
181 	} else if (ea->ea_nvaddr == 5) {
182 		sc->sc_flags = AUXIO_EBUS;
183 
184 		sparc_promaddr_to_handle(sc->sc_tag,
185 			ea->ea_vaddr[1], &sc->sc_pci);
186 		sparc_promaddr_to_handle(sc->sc_tag,
187 			ea->ea_vaddr[2], &sc->sc_freq);
188 		sparc_promaddr_to_handle(sc->sc_tag,
189 			ea->ea_vaddr[3], &sc->sc_scsi);
190 		sparc_promaddr_to_handle(sc->sc_tag,
191 			ea->ea_vaddr[4], &sc->sc_temp);
192 	} else {
193 		sc->sc_flags = AUXIO_EBUS;
194 		bus_space_map(sc->sc_tag, EBUS_ADDR_FROM_REG(&ea->ea_reg[1]),
195 			ea->ea_reg[1].size, 0, &sc->sc_pci);
196 		bus_space_map(sc->sc_tag, EBUS_ADDR_FROM_REG(&ea->ea_reg[2]),
197 			ea->ea_reg[2].size, 0, &sc->sc_freq);
198 		bus_space_map(sc->sc_tag, EBUS_ADDR_FROM_REG(&ea->ea_reg[3]),
199 			ea->ea_reg[3].size, 0, &sc->sc_scsi);
200 		bus_space_map(sc->sc_tag, EBUS_ADDR_FROM_REG(&ea->ea_reg[4]),
201 			ea->ea_reg[4].size, 0, &sc->sc_temp);
202 	}
203 
204 	if (ea->ea_nvaddr > 0) {
205 		sparc_promaddr_to_handle(sc->sc_tag,
206 			ea->ea_vaddr[0], &sc->sc_led);
207 	} else {
208 		bus_space_map(sc->sc_tag, EBUS_ADDR_FROM_REG(&ea->ea_reg[0]),
209 			ea->ea_reg[0].size, 0, &sc->sc_led);
210 	}
211 
212 	auxio_attach_common(sc);
213 }
214 
215 int
216 auxio_sbus_match(device_t parent, cfdata_t cf, void *aux)
217 {
218 	struct sbus_attach_args *sa = aux;
219 
220 	return strcmp(AUXIO_ROM_NAME, sa->sa_name) == 0;
221 }
222 
223 void
224 auxio_sbus_attach(device_t parent, device_t self, void *aux)
225 {
226 	struct auxio_softc *sc = device_private(self);
227 	struct sbus_attach_args *sa = aux;
228 
229 	sc->sc_dev = self;
230 	sc->sc_tag = sa->sa_bustag;
231 
232 	if (sa->sa_nreg < 1) {
233 		printf(": no registers??\n");
234 		return;
235 	}
236 
237 	if (sa->sa_nreg != 1) {
238 		printf(": not 1 (%d/%d) registers??", sa->sa_nreg,
239 		    sa->sa_npromvaddrs);
240 		return;
241 	}
242 
243 	/* sbus auxio only has one set of registers */
244 	sc->sc_flags = AUXIO_LEDONLY|AUXIO_SBUS;
245 	if (sa->sa_npromvaddrs > 0) {
246 		sbus_promaddr_to_handle(sc->sc_tag,
247 			sa->sa_promvaddr, &sc->sc_led);
248 	} else {
249 		sbus_bus_map(sc->sc_tag, sa->sa_slot, sa->sa_offset,
250 			sa->sa_size, 0, &sc->sc_led);
251 	}
252 
253 	auxio_attach_common(sc);
254 }
255 
256 int
257 auxio_fd_control(u_int32_t bits)
258 {
259 	struct auxio_softc *sc;
260 	u_int32_t led;
261 
262 	if (auxio_cd.cd_ndevs == 0) {
263 		return ENXIO;
264 	}
265 
266 	/*
267 	 * XXX This does not handle > 1 auxio correctly.
268 	 * We'll assume the floppy drive is tied to first auxio found.
269 	 */
270 	sc = device_lookup_private(&auxio_cd, 0);
271 	if (sc->sc_flags & AUXIO_EBUS)
272 		led = le32toh(bus_space_read_4(sc->sc_tag, sc->sc_led, 0));
273 	else
274 		led = bus_space_read_1(sc->sc_tag, sc->sc_led, 0);
275 
276 	led = (led & ~AUXIO_LED_FLOPPY_MASK) | bits;
277 
278 	if (sc->sc_flags & AUXIO_EBUS)
279 		bus_space_write_4(sc->sc_tag, sc->sc_led, 0, htole32(led));
280 	else
281 		bus_space_write_1(sc->sc_tag, sc->sc_led, 0, led);
282 
283 	return 0;
284 }
285