scoop.c revision 1.10 1 /* $NetBSD: scoop.c,v 1.10 2012/01/27 14:48:22 tsutsui Exp $ */
2 /* $OpenBSD: zaurus_scoop.c,v 1.12 2005/11/17 05:26:31 uwe Exp $ */
3
4 /*
5 * Copyright (c) 2005 Uwe Stuehler <uwe (at) bsdx.de>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20 #include <sys/cdefs.h>
21 __KERNEL_RCSID(0, "$NetBSD: scoop.c,v 1.10 2012/01/27 14:48:22 tsutsui Exp $");
22
23 #include <sys/param.h>
24 #include <sys/systm.h>
25 #include <sys/device.h>
26 #include <sys/conf.h>
27 #include <sys/gpio.h>
28 #include <sys/bus.h>
29
30 #include <arm/xscale/pxa2x0var.h>
31
32 #include <zaurus/zaurus/zaurus_reg.h>
33 #include <zaurus/zaurus/zaurus_var.h>
34
35 #include <zaurus/dev/scoopreg.h>
36 #include <zaurus/dev/scoopvar.h>
37
38 #include "ioconf.h"
39
40 struct scoop_softc {
41 device_t sc_dev;
42
43 bus_space_tag_t sc_iot;
44 bus_space_handle_t sc_ioh;
45
46 uint16_t sc_gpwr; /* GPIO state before suspend */
47 };
48
49 static int scoopmatch(device_t, cfdata_t, void *);
50 static void scoopattach(device_t, device_t, void *);
51
52 CFATTACH_DECL_NEW(scoop, sizeof(struct scoop_softc),
53 scoopmatch, scoopattach, NULL, NULL);
54
55 #if 0
56 static int scoop_gpio_pin_read(struct scoop_softc *, int);
57 #endif
58 static void scoop_gpio_pin_write(struct scoop_softc *, int, int);
59 static void scoop_gpio_pin_ctl(struct scoop_softc *, int, int);
60
61 static struct scoop_softc *backlight_sc;
62 static uint8_t backlight_on_init = 1;
63 static uint8_t backlight_cont_init = 0;
64
65 enum scoop_card {
66 SD_CARD,
67 CF_CARD /* socket 0 (external) */
68 };
69
70 static void scoop0_set_card_power(enum scoop_card card, int new_cpr);
71
72 static int
73 scoopmatch(device_t parent, cfdata_t cf, void *aux)
74 {
75
76 /*
77 * Only C3000-like models are known to have two SCOOPs.
78 */
79 if (ZAURUS_ISC3000)
80 return (cf->cf_unit < 2);
81 return (cf->cf_unit == 0);
82 }
83
84 static void
85 scoopattach(device_t parent, device_t self, void *aux)
86 {
87 struct scoop_softc *sc = device_private(self);
88 struct pxaip_attach_args *pxa = (struct pxaip_attach_args *)aux;
89 bus_addr_t addr;
90 bus_size_t size;
91
92 sc->sc_dev = self;
93 sc->sc_iot = pxa->pxa_iot;
94
95 aprint_normal(": PCMCIA/GPIO controller\n");
96 aprint_naive("\n");
97
98 if (pxa->pxa_addr != -1)
99 addr = pxa->pxa_addr;
100 else if (sc->sc_dev->dv_unit == 0)
101 addr = C3000_SCOOP0_BASE;
102 else
103 addr = C3000_SCOOP1_BASE;
104
105 size = pxa->pxa_size < SCOOP_SIZE ? SCOOP_SIZE : pxa->pxa_size;
106
107 if (bus_space_map(sc->sc_iot, addr, size, 0, &sc->sc_ioh) != 0) {
108 aprint_error_dev(sc->sc_dev, "couldn't map registers\n");
109 return;
110 }
111
112 if (ZAURUS_ISC3000 && sc->sc_dev->dv_unit == 1) {
113 scoop_gpio_pin_ctl(sc, SCOOP1_AKIN_PULLUP, GPIO_PIN_OUTPUT);
114 scoop_gpio_pin_write(sc, SCOOP1_AKIN_PULLUP, GPIO_PIN_LOW);
115 backlight_sc = sc;
116 scoop_set_backlight(backlight_on_init, backlight_cont_init);
117 } else if (ZAURUS_ISC860) {
118 scoop_gpio_pin_ctl(sc, SCOOP0_AKIN_PULLUP, GPIO_PIN_OUTPUT);
119 scoop_gpio_pin_write(sc, SCOOP0_AKIN_PULLUP, GPIO_PIN_LOW);
120 backlight_sc = sc;
121 scoop_set_backlight(backlight_on_init, backlight_cont_init);
122 }
123 }
124
125 #if 0
126 static int
127 scoop_gpio_pin_read(struct scoop_softc *sc, int pin)
128 {
129 uint16_t bit = (1 << pin);
130 uint16_t rv;
131
132 rv = bus_space_read_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR);
133 return (rv & bit) ? 1 : 0;
134 }
135 #endif
136
137 static void
138 scoop_gpio_pin_write(struct scoop_softc *sc, int pin, int level)
139 {
140 uint16_t bit = (1 << pin);
141 uint16_t rv;
142
143 rv = bus_space_read_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR);
144 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR,
145 (level == GPIO_PIN_LOW) ? (rv & ~bit) : (rv | bit));
146 }
147
148 static void
149 scoop_gpio_pin_ctl(struct scoop_softc *sc, int pin, int flags)
150 {
151 uint16_t bit = (1 << pin);
152 uint16_t rv;
153
154 rv = bus_space_read_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPCR);
155 switch (flags & (GPIO_PIN_INPUT|GPIO_PIN_OUTPUT)) {
156 case GPIO_PIN_INPUT:
157 rv &= ~bit;
158 break;
159 case GPIO_PIN_OUTPUT:
160 rv |= bit;
161 break;
162 }
163 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPCR, rv);
164 }
165
166 /*
167 * Turn the LCD background light and contrast signal on or off.
168 */
169 void
170 scoop_set_backlight(int on, int cont)
171 {
172 struct scoop_softc *sc = backlight_sc;
173
174 if (sc == NULL) {
175 backlight_cont_init = cont;
176 backlight_on_init = on;
177 } else {
178 if (ZAURUS_ISC3000) {
179 scoop_gpio_pin_write(sc, SCOOP1_BACKLIGHT_CONT, !cont);
180 scoop_gpio_pin_write(sc, SCOOP1_BACKLIGHT_ON, on);
181 } else if (ZAURUS_ISC860) {
182 scoop_gpio_pin_write(sc, SCOOP0_BACKLIGHT_CONT, cont);
183 }
184 }
185 }
186
187 /*
188 * Turn the infrared LED on or off (must be on while transmitting).
189 */
190 void
191 scoop_set_irled(int on)
192 {
193 struct scoop_softc *sc;
194
195 sc = device_lookup_private(&scoop_cd, 1);
196 if (sc != NULL) {
197 /* IR_ON is inverted */
198 scoop_gpio_pin_write(sc, SCOOP1_IR_ON, !on);
199 }
200 }
201
202 /*
203 * Turn the green and orange LEDs on or off. If the orange LED is on,
204 * then it is wired to indicate if A/C is connected. The green LED has
205 * no such predefined function.
206 */
207 void
208 scoop_led_set(int led, int on)
209 {
210 struct scoop_softc *sc;
211
212 sc = device_lookup_private(&scoop_cd, 0);
213 if (sc != NULL) {
214 if ((led & SCOOP_LED_GREEN) != 0) {
215 scoop_gpio_pin_write(sc, SCOOP0_LED_GREEN, on);
216 }
217 if (scoop_cd.cd_ndevs > 1 && (led & SCOOP_LED_ORANGE) != 0) {
218 scoop_gpio_pin_write(sc, SCOOP0_LED_ORANGE_C3000, on);
219 }
220 }
221 }
222
223 /*
224 * Enable or disable the headphone output connection.
225 */
226 void
227 scoop_set_headphone(int on)
228 {
229 struct scoop_softc *sc;
230
231 sc = device_lookup_private(&scoop_cd, 0);
232 if (sc == NULL)
233 return;
234
235 scoop_gpio_pin_ctl(sc, SCOOP0_MUTE_L, GPIO_PIN_OUTPUT);
236 scoop_gpio_pin_ctl(sc, SCOOP0_MUTE_R, GPIO_PIN_OUTPUT);
237
238 if (on) {
239 scoop_gpio_pin_write(sc, SCOOP0_MUTE_L, GPIO_PIN_HIGH);
240 scoop_gpio_pin_write(sc, SCOOP0_MUTE_R, GPIO_PIN_HIGH);
241 } else {
242 scoop_gpio_pin_write(sc, SCOOP0_MUTE_L, GPIO_PIN_LOW);
243 scoop_gpio_pin_write(sc, SCOOP0_MUTE_R, GPIO_PIN_LOW);
244 }
245 }
246
247 /*
248 * Enable or disable the mic bias
249 */
250 void
251 scoop_set_mic_bias(int onoff)
252 {
253 struct scoop_softc *sc1;
254
255 sc1 = device_lookup_private(&scoop_cd, 1);
256 if (sc1 != NULL)
257 scoop_gpio_pin_write(sc1, SCOOP1_MIC_BIAS, onoff);
258 }
259
260 /*
261 * Turn on pullup resistor while not reading the remote control.
262 */
263 void
264 scoop_akin_pullup(int enable)
265 {
266 struct scoop_softc *sc0;
267 struct scoop_softc *sc1;
268
269 sc0 = device_lookup_private(&scoop_cd, 0);
270 sc1 = device_lookup_private(&scoop_cd, 1);
271
272 if (sc1 != NULL) {
273 scoop_gpio_pin_write(sc1, SCOOP1_AKIN_PULLUP, enable);
274 } else if (sc0 != NULL) {
275 scoop_gpio_pin_write(sc0, SCOOP0_AKIN_PULLUP, enable);
276 }
277 }
278
279 void
280 scoop_battery_temp_adc(int enable)
281 {
282 struct scoop_softc *sc;
283
284 sc = device_lookup_private(&scoop_cd, 0);
285
286 if (sc != NULL) {
287 scoop_gpio_pin_write(sc, SCOOP0_ADC_TEMP_ON_C3000, enable);
288 }
289 }
290
291 void
292 scoop_charge_battery(int enable, int voltage_high)
293 {
294 struct scoop_softc *sc;
295
296 sc = device_lookup_private(&scoop_cd, 0);
297
298 if (sc != NULL) {
299 scoop_gpio_pin_write(sc, SCOOP0_JK_B_C3000, voltage_high);
300 scoop_gpio_pin_write(sc, SCOOP0_CHARGE_OFF_C3000, !enable);
301 }
302 }
303
304 void
305 scoop_discharge_battery(int enable)
306 {
307 struct scoop_softc *sc;
308
309 sc = device_lookup_private(&scoop_cd, 0);
310
311 if (sc != NULL) {
312 scoop_gpio_pin_write(sc, SCOOP0_JK_A_C3000, enable);
313 }
314 }
315
316 /*
317 * Enable or disable 3.3V power to the SD/MMC card slot.
318 */
319 void
320 scoop_set_sdmmc_power(int on)
321 {
322
323 scoop0_set_card_power(SD_CARD, on ? SCP_CPR_SD_3V : SCP_CPR_OFF);
324 }
325
326 /*
327 * The Card Power Register of the first SCOOP unit controls the power
328 * for the first CompactFlash slot and the SD/MMC card slot as well.
329 */
330 void
331 scoop0_set_card_power(enum scoop_card card, int new_cpr)
332 {
333 struct scoop_softc *sc;
334 bus_space_tag_t iot;
335 bus_space_handle_t ioh;
336 uint16_t cpr;
337
338 sc = device_lookup_private(&scoop_cd, 0);
339 if (sc == NULL)
340 return;
341
342 iot = sc->sc_iot;
343 ioh = sc->sc_ioh;
344
345 cpr = bus_space_read_2(iot, ioh, SCOOP_CPR);
346 if (new_cpr & SCP_CPR_VOLTAGE_MSK) {
347 if (card == CF_CARD)
348 cpr |= SCP_CPR_5V;
349 else if (card == SD_CARD)
350 cpr |= SCP_CPR_SD_3V;
351
352 scoop_gpio_pin_write(sc, SCOOP0_CF_POWER_C3000, 1);
353 if (!ISSET(cpr, SCP_CPR_5V) && !ISSET(cpr, SCP_CPR_SD_3V))
354 delay(5000);
355 bus_space_write_2(iot, ioh, SCOOP_CPR, cpr | new_cpr);
356 } else {
357 if (card == CF_CARD)
358 cpr &= ~SCP_CPR_5V;
359 else if (card == SD_CARD)
360 cpr &= ~SCP_CPR_SD_3V;
361
362 if (!ISSET(cpr, SCP_CPR_5V) && !ISSET(cpr, SCP_CPR_SD_3V)) {
363 bus_space_write_2(iot, ioh, SCOOP_CPR, SCP_CPR_OFF);
364 delay(1000);
365 scoop_gpio_pin_write(sc, SCOOP0_CF_POWER_C3000, 0);
366 } else
367 bus_space_write_2(iot, ioh, SCOOP_CPR, cpr | new_cpr);
368 }
369 }
370
371 void
372 scoop_check_mcr(void)
373 {
374 struct scoop_softc *sc0, *sc1, *sc;
375 uint16_t v;
376
377 sc0 = device_lookup_private(&scoop_cd, 0);
378 sc1 = device_lookup_private(&scoop_cd, 1);
379
380 /* C3000 */
381 if (sc1 != NULL) {
382 sc = sc0;
383 v = bus_space_read_2(sc->sc_iot, sc->sc_ioh, SCOOP_MCR);
384 if ((v & 0x100) == 0) {
385 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_MCR,
386 0x0101);
387 }
388
389 sc = sc1;
390 v = bus_space_read_2(sc->sc_iot, sc->sc_ioh, SCOOP_MCR);
391 if ((v & 0x100) == 0) {
392 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_MCR,
393 0x0101);
394 }
395 }
396 }
397
398 void
399 scoop_suspend(void)
400 {
401 struct scoop_softc *sc, *sc0, *sc1;
402 uint32_t rv;
403
404 sc0 = device_lookup_private(&scoop_cd, 0);
405 sc1 = device_lookup_private(&scoop_cd, 1);
406
407 if (sc0 != NULL) {
408 sc = sc0;
409 sc->sc_gpwr = bus_space_read_2(sc->sc_iot, sc->sc_ioh,
410 SCOOP_GPWR);
411 /* C3000 */
412 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR,
413 sc->sc_gpwr & ~((1<<SCOOP0_MUTE_L) | (1<<SCOOP0_MUTE_R) |
414 (1<<SCOOP0_JK_A_C3000) | (1<<SCOOP0_ADC_TEMP_ON_C3000) |
415 (1<<SCOOP0_LED_GREEN)));
416 }
417
418 /* C3000 */
419 if (sc1 != NULL) {
420 sc = sc1;
421 sc->sc_gpwr = bus_space_read_2(sc->sc_iot, sc->sc_ioh,
422 SCOOP_GPWR);
423 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR,
424 sc->sc_gpwr & ~((1<<SCOOP1_RESERVED_4) |
425 (1<<SCOOP1_RESERVED_5) | (1<<SCOOP1_RESERVED_6) |
426 (1<<SCOOP1_BACKLIGHT_CONT) | (1<<SCOOP1_BACKLIGHT_ON) |
427 (1<<SCOOP1_MIC_BIAS)));
428 rv = bus_space_read_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR);
429 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR,
430 rv | ((1<<SCOOP1_IR_ON) | (1<<SCOOP1_RESERVED_3)));
431 }
432 }
433
434 void
435 scoop_resume(void)
436 {
437 struct scoop_softc *sc, *sc0, *sc1;
438
439 sc0 = device_lookup_private(&scoop_cd, 0);
440 sc1 = device_lookup_private(&scoop_cd, 1);
441
442 if (sc0 != NULL) {
443 sc = sc0;
444 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR,
445 sc->sc_gpwr);
446 }
447
448 if (sc1 != NULL) {
449 sc = sc1;
450 bus_space_write_2(sc->sc_iot, sc->sc_ioh, SCOOP_GPWR,
451 sc->sc_gpwr);
452 }
453 }
454