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