gb225.c revision 1.8.2.1 1 /* $NetBSD: gb225.c,v 1.8.2.1 2010/07/03 01:19:16 rmind Exp $ */
2
3 /*
4 * Copyright (c) 2002, 2003 Genetec corp. All rights reserved.
5 * Written by Hiroyuki Bessho for Genetec corp.
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 * 3. The name of Genetec corp. may not be used to endorse
16 * or promote products derived from this software without specific prior
17 * written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY GENETEC CORP. ``AS IS'' AND
20 * 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 GENETEC CORP.
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
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/device.h>
36 #include <sys/kernel.h>
37 #include <sys/reboot.h>
38
39 #include <machine/cpu.h>
40 #include <machine/bus.h>
41 #include <machine/intr.h>
42 #include <arm/cpufunc.h>
43
44 #include <arm/mainbus/mainbus.h>
45 #include <arm/xscale/pxa2x0reg.h>
46 #include <arm/xscale/pxa2x0var.h>
47 #include <arm/xscale/pxa2x0_gpio.h>
48 #include <arm/sa11x0/sa11x0_var.h>
49 #include <evbarm/g42xxeb/g42xxeb_reg.h>
50 #include <evbarm/g42xxeb/g42xxeb_var.h>
51 #include <evbarm/g42xxeb/gb225reg.h>
52 #include <evbarm/g42xxeb/gb225var.h>
53
54 #include "locators.h"
55
56 #define OPIO_INTR G42XXEB_INT_EXT3
57
58
59 #define DEBOUNCE_COUNT 2
60 #define DEBOUNCE_TICKS (hz/20) /* 50ms */
61
62 /* prototypes */
63 static int opio_match(device_t, cfdata_t, void *);
64 static void opio_attach(device_t, device_t, void *);
65 static int opio_search(device_t, cfdata_t, const int *, void *);
66 static int opio_print(void *, const char *);
67 #ifdef OPIO_INTR
68 static int opio_intr( void *arg );
69 static void opio_debounce(void *arg);
70 #endif
71
72
73 /* attach structures */
74 CFATTACH_DECL_NEW(opio, sizeof(struct opio_softc), opio_match, opio_attach,
75 NULL, NULL);
76
77 /*
78 * int opio_print(void *aux, const char *name)
79 * print configuration info for children
80 */
81
82 static int
83 opio_print(void *aux, const char *name)
84 {
85 struct obio_attach_args *oba = (struct obio_attach_args*)aux;
86
87 if (oba->oba_addr != OPIOCF_ADDR_DEFAULT)
88 aprint_normal(" addr 0x%lx", oba->oba_addr);
89 return (UNCONF);
90 }
91
92 int
93 opio_match(device_t parent, cfdata_t match, void *aux)
94 {
95 struct obio_softc *psc = device_private(parent);
96 uint16_t optid;
97
98 optid = bus_space_read_2(psc->sc_iot, psc->sc_obioreg_ioh,
99 G42XXEB_OPTBRDID);
100
101 return optid == 0x01;
102 }
103
104 void
105 opio_attach(device_t parent, device_t self, void *aux)
106 {
107 struct opio_softc *sc = device_private(self);
108 struct obio_softc *bsc = device_private(parent);
109 struct obio_attach_args *oba = aux;
110 uint32_t reg;
111 int i;
112 bus_space_tag_t iot;
113 bus_space_handle_t memctl_ioh = bsc->sc_memctl_ioh;
114
115 iot = oba->oba_iot;
116 sc->sc_dev = self;
117 sc->sc_iot = iot;
118 sc->sc_memctl_ioh = memctl_ioh;
119
120 /* use 16bit access for CS4, 32bit for CS5 */
121 reg = bus_space_read_4(iot, memctl_ioh, MEMCTL_MSC2);
122 reg |= MSC_RBW;
123 reg &= ~(MSC_RBW<<16);
124 /* XXX: set access timing */
125 bus_space_write_4(iot, memctl_ioh, MEMCTL_MSC2, reg);
126
127 /* Set alternative function for GPIO pings 48..57 on PXA2X0 */
128 #if 0
129 reg = bus_space_read_4(iot, csc->saip.sc_gpioh, GPIO_GPDR1);
130 bus_space_write_4(iot, csc->saip.sc_gpioh, GPIO_GPDR1,
131 (reg & ~0x03ff0000) | 0x00ff0000);
132 reg = bus_space_read_4(iot, csc->saip.sc_gpioh, GPIO_GAFR1_U);
133 bus_space_write_4(iot, csc->saip.sc_gpioh, GPIO_GAFR1_U,
134 (reg & ~0x000fffff) | 0x0005aaaa );
135 #else
136 for (i=47; i <= 55; ++i)
137 pxa2x0_gpio_set_function(i, GPIO_ALT_FN_2_OUT);
138 pxa2x0_gpio_set_function(56, GPIO_ALT_FN_1_IN);
139 pxa2x0_gpio_set_function(57, GPIO_ALT_FN_1_IN);
140 #endif
141
142 /* Enable bus switch for option board */
143 reg = bus_space_read_2(iot, bsc->sc_obioreg_ioh, G42XXEB_EXTCTRL);
144 bus_space_write_2(iot, bsc->sc_obioreg_ioh, G42XXEB_EXTCTRL, reg | 3);
145
146 /* Map on-board FPGA registers */
147 if( bus_space_map( iot, GB225_PLDREG_BASE, GB225_PLDREG_SIZE,
148 0, &(sc->sc_ioh) ) ){
149 aprint_error_dev(self, "can't map FPGA registers\n");
150 }
151
152 aprint_normal("\n");
153
154 callout_init(&sc->sc_callout, 0);
155
156 for (i=0; i < N_OPIO_INTR; ++i) {
157 sc->sc_intr[i].func = NULL;
158 sc->sc_intr[i].reported_state = 0xff;
159 sc->sc_intr[i].last_state = 0xff;
160 }
161
162 #ifdef OPIO_INTR
163 sc->sc_ih = obio_intr_establish(bsc, OPIO_INTR, IPL_BIO,
164 IST_EDGE_FALLING, opio_intr, sc);
165 #endif
166
167 #ifdef DEBUG
168 aprint_debug_dev(self, "CF_DET=%x PCMCIA_DET=%x\n",
169 bus_space_read_1(sc->sc_iot, sc->sc_ioh, GB225_CFDET),
170 bus_space_read_1(sc->sc_iot, sc->sc_ioh, GB225_PCMCIADET));
171 #endif
172
173 /*
174 * Attach each devices
175 */
176 config_search_ia(opio_search, self, "opio", NULL);
177 }
178
179 int
180 opio_search(device_t parent, cfdata_t cf,
181 const int *ldesc, void *aux)
182 {
183 struct opio_softc *sc = device_private(parent);
184 struct obio_attach_args oba;
185
186 oba.oba_sc = sc;
187 oba.oba_iot = sc->sc_iot;
188 oba.oba_addr = cf->cf_loc[OPIOCF_ADDR];
189 oba.oba_intr = cf->cf_loc[OPIOCF_INTR];
190
191 if (config_match(parent, cf, &oba) > 0)
192 config_attach(parent, cf, &oba, opio_print);
193
194 return 0;
195 }
196
197 void *
198 opio_intr_establish(struct opio_softc *sc, int intr, int ipl,
199 int (*func)(void *, int), void *arg)
200 {
201 sc->sc_intr[intr].arg = arg;
202 sc->sc_intr[intr].func = func;
203
204 return &sc->sc_intr[intr];
205 }
206
207
208 #ifdef OPIO_INTR
209 /*
210 * interrupt handler for option board. interrupt sources are:
211 * CF card insertion/removal.
212 * PCMCIA card insertion/removal.
213 * USB power failure.
214 * CF/PCMCIA power failure.
215 * We need to debounce for CF/PCMCIA card insertion/removal signal.
216 */
217 static int
218 opio_intr( void *arg )
219 {
220 struct opio_softc *sc = (struct opio_softc *)arg;
221 struct obio_softc *bsc =
222 device_private(device_parent(sc->sc_dev));
223
224 /* avoid further interrupts while debouncing */
225 obio_intr_mask(bsc, sc->sc_ih);
226
227 printf("OPIO ");
228
229 if (sc->sc_debounce == ST_STABLE) {
230 /* start debounce timer */
231 callout_reset(&sc->sc_callout, DEBOUNCE_TICKS,
232 opio_debounce, sc);
233 sc->sc_debounce = ST_BOUNCING;
234 }
235
236 return 1;
237 }
238
239
240 static int
241 do_debounce(struct opio_softc *sc, int intr, int val, int count)
242 {
243 int s;
244
245
246 struct opio_intr_handler *p = &sc->sc_intr[intr];
247
248 if (p->last_state != val) {
249 p->debounce_count = 0;
250 p->last_state = val;
251 return 1;
252 }
253 else if (p->debounce_count++ < count)
254 return 1;
255 else {
256 /* debounce done. if status has changed, report it */
257 if (p->reported_state != val) {
258 p->reported_state = val;
259 if (p->func) {
260 s = _splraise(p->level);
261 p->func(p->arg, val);
262 splx(s);
263 }
264 }
265 return 0;
266 }
267 /*NOTREACHED*/
268 }
269
270 static void
271 opio_debounce(void *arg)
272 {
273 struct opio_softc *sc = arg;
274 struct obio_softc *osc =
275 device_private(device_parent(sc->sc_dev));
276 bus_space_tag_t iot = sc->sc_iot;
277 bus_space_handle_t ioh = sc->sc_ioh;
278 int flag = 0;
279 uint8_t reg;
280
281 reg = bus_space_read_1(iot, ioh, GB225_CFDET) & CARDDET_DET;
282 flag |= do_debounce(sc, OPIO_INTR_CF_INSERT, reg, DEBOUNCE_COUNT);
283
284 reg = bus_space_read_1(iot, ioh, GB225_PCMCIADET) & CARDDET_DET;
285 flag |= do_debounce(sc, OPIO_INTR_PCMCIA_INSERT, reg, DEBOUNCE_COUNT);
286
287 reg = bus_space_read_1(iot, ioh, GB225_DEVERROR);
288
289 flag |= do_debounce(sc, OPIO_INTR_USB_POWER, reg & DEVERROR_USB, 1);
290
291 flag |= do_debounce(sc, OPIO_INTR_CARD_POWER, reg & DEVERROR_CARD, 1);
292
293
294 if (flag) {
295 /* start debounce timer */
296 callout_reset(&sc->sc_callout, DEBOUNCE_TICKS,
297 opio_debounce, sc);
298 }
299 else {
300 sc->sc_debounce = ST_STABLE;
301 obio_intr_unmask(osc, sc->sc_ih);
302 }
303 }
304 #endif
305