Home | History | Annotate | Line # | Download | only in vr
vrpiu.c revision 1.14
      1  1.14      sato /*	$NetBSD: vrpiu.c,v 1.14 2001/07/19 13:11:27 sato Exp $	*/
      2   1.1  takemura 
      3   1.1  takemura /*
      4  1.14      sato  * Copyright (c) 1999-2001 Shin Takemura All rights reserved.
      5  1.14      sato  * Copyright (c) 2000-2001 SATO Kazumi, All rights reserved.
      6  1.14      sato  * Copyright (c) 1999-2001 PocketBSD Project. All rights reserved.
      7   1.1  takemura  *
      8   1.1  takemura  * Redistribution and use in source and binary forms, with or without
      9   1.1  takemura  * modification, are permitted provided that the following conditions
     10   1.1  takemura  * are met:
     11   1.1  takemura  * 1. Redistributions of source code must retain the above copyright
     12   1.1  takemura  *    notice, this list of conditions and the following disclaimer.
     13   1.1  takemura  * 2. Redistributions in binary form must reproduce the above copyright
     14   1.1  takemura  *    notice, this list of conditions and the following disclaimer in the
     15   1.1  takemura  *    documentation and/or other materials provided with the distribution.
     16   1.1  takemura  *
     17   1.1  takemura  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     18   1.1  takemura  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     19   1.1  takemura  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     20   1.1  takemura  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     21   1.1  takemura  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     22   1.1  takemura  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     23   1.1  takemura  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     24   1.1  takemura  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     25   1.1  takemura  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     26   1.1  takemura  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     27   1.1  takemura  * SUCH DAMAGE.
     28   1.1  takemura  *
     29   1.1  takemura  */
     30   1.1  takemura 
     31   1.6      sato /*
     32   1.6      sato  * A/D polling part written by SATO Kazumi.
     33   1.6      sato  */
     34   1.6      sato 
     35   1.1  takemura #include <sys/param.h>
     36   1.1  takemura #include <sys/systm.h>
     37   1.1  takemura #include <sys/device.h>
     38   1.1  takemura #include <sys/kernel.h>
     39   1.6      sato #include <sys/callout.h>
     40   1.6      sato #include <sys/boot_flag.h>
     41   1.1  takemura 
     42   1.1  takemura #include <dev/wscons/wsconsio.h>
     43   1.1  takemura #include <dev/wscons/wsmousevar.h>
     44   1.1  takemura 
     45   1.1  takemura #include <machine/bus.h>
     46   1.5      matt #include <machine/platid.h>
     47   1.5      matt #include <machine/platid_mask.h>
     48   1.6      sato #include <machine/config_hook.h>
     49   1.1  takemura 
     50  1.11       uch #include <dev/hpc/tpcalibvar.h>
     51  1.11       uch 
     52  1.14      sato #include <dev/hpc/hpcbatteryvar.h>
     53  1.14      sato #include <dev/hpc/hpcbatterytable.h>
     54  1.14      sato 
     55   1.6      sato #include <hpcmips/hpcmips/machdep.h>
     56   1.1  takemura #include <hpcmips/vr/vripvar.h>
     57   1.1  takemura #include <hpcmips/vr/cmureg.h>
     58   1.1  takemura #include <hpcmips/vr/vrpiuvar.h>
     59   1.1  takemura #include <hpcmips/vr/vrpiureg.h>
     60   1.1  takemura 
     61   1.1  takemura /*
     62   1.1  takemura  * contant and macro definitions
     63   1.1  takemura  */
     64   1.1  takemura #define VRPIUDEBUG
     65   1.1  takemura #ifdef VRPIUDEBUG
     66   1.1  takemura int	vrpiu_debug = 0;
     67   1.1  takemura #define	DPRINTF(arg) if (vrpiu_debug) printf arg;
     68   1.6      sato #define	VPRINTF(arg) if (bootverbose || vrpiu_debug) printf arg;
     69   1.1  takemura #else
     70   1.1  takemura #define	DPRINTF(arg)
     71   1.6      sato #define	VPRINTF(arg) if (bootverbose) printf arg;
     72   1.1  takemura #endif
     73   1.1  takemura 
     74  1.14      sato #ifndef VRPIU_NO_ADHOC_BATTERY_EVENT
     75  1.14      sato #define VRPIU_ADHOC_BATTERY_EVENT	/* currently... */
     76  1.14      sato #endif /* VRPIU_NO_ADHOC_BATTERY_EVENT */
     77  1.14      sato 
     78   1.6      sato #ifndef VRPIU_AD_POLL_INTERVAL
     79   1.6      sato #define VRPIU_AD_POLL_INTERVAL	60	/* interval is 60 sec */
     80   1.6      sato #endif /* VRPIU_AD_POLL_INTERTVAL */
     81   1.8  takemura 
     82   1.8  takemura #define	PIUSIVL_SCANINTVAL_MIN	333			/* 10msec	*/
     83   1.8  takemura #define	PIUSIVL_SCANINTVAL_MAX	PIUSIVL_SCANINTVAL_MASK	/* 60msec	*/
     84  1.10  takemura #define VRPIU_TP_SCAN_TIMEOUT	(hz/10)		/* timeout is 100msec	*/
     85   1.8  takemura 
     86   1.8  takemura #define TP_INTR	(PIUINT_ALLINTR & ~PIUINT_PADADPINTR)
     87   1.8  takemura #define AD_INTR	(PIUINT_PADADPINTR)
     88   1.8  takemura 
     89   1.1  takemura /*
     90   1.1  takemura  * data types
     91   1.1  takemura  */
     92   1.1  takemura /* struct vrpiu_softc is defined in vrpiuvar.h */
     93   1.1  takemura 
     94   1.1  takemura /*
     95   1.1  takemura  * function prototypes
     96   1.1  takemura  */
     97   1.1  takemura static int	vrpiumatch __P((struct device *, struct cfdata *, void *));
     98   1.1  takemura static void	vrpiuattach __P((struct device *, struct device *, void *));
     99   1.1  takemura 
    100   1.1  takemura static void	vrpiu_write __P((struct vrpiu_softc *, int, unsigned short));
    101   1.1  takemura static u_short	vrpiu_read __P((struct vrpiu_softc *, int));
    102   1.1  takemura 
    103   1.1  takemura static int	vrpiu_intr __P((void *));
    104   1.6      sato static void	vrpiu_tp_intr __P((struct vrpiu_softc *));
    105   1.6      sato static void	vrpiu_ad_intr __P((struct vrpiu_softc *));
    106   1.1  takemura #ifdef DEBUG
    107   1.1  takemura static void	vrpiu_dump_cntreg __P((unsigned int cmd));
    108   1.1  takemura #endif
    109   1.1  takemura 
    110   1.6      sato static int	vrpiu_tp_enable __P((void *));
    111   1.6      sato static int	vrpiu_tp_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
    112   1.6      sato static void	vrpiu_tp_disable __P((void *));
    113  1.10  takemura static void	vrpiu_tp_up __P((struct vrpiu_softc *));
    114  1.10  takemura static void	vrpiu_tp_timeout __P((void *));
    115   1.6      sato int		vrpiu_ad_enable __P((void *));
    116   1.6      sato void		vrpiu_ad_disable __P((void *));
    117   1.6      sato static void	vrpiu_start_powerstate __P((void *));
    118   1.6      sato static void	vrpiu_calc_powerstate __P((struct vrpiu_softc *));
    119  1.14      sato static void	vrpiu_send_battery_event __P((struct vrpiu_softc *));
    120   1.6      sato static void	vrpiu_power __P((int, void *));
    121   1.8  takemura static u_int	scan_interval __P((u_int data));
    122   1.1  takemura 
    123   1.1  takemura /* mra is defined in mra.c */
    124   1.1  takemura int mra_Y_AX1_BX2_C __P((int *y, int ys, int *x1, int x1s, int *x2, int x2s,
    125   1.1  takemura 			 int n, int scale, int *a, int *b, int *c));
    126   1.1  takemura 
    127   1.1  takemura /*
    128   1.1  takemura  * static or global variables
    129   1.1  takemura  */
    130   1.1  takemura struct cfattach vrpiu_ca = {
    131   1.1  takemura 	sizeof(struct vrpiu_softc), vrpiumatch, vrpiuattach
    132   1.1  takemura };
    133   1.1  takemura 
    134   1.1  takemura const struct wsmouse_accessops vrpiu_accessops = {
    135   1.6      sato 	vrpiu_tp_enable,
    136   1.6      sato 	vrpiu_tp_ioctl,
    137   1.6      sato 	vrpiu_tp_disable,
    138   1.1  takemura };
    139   1.1  takemura 
    140   1.6      sato int vrpiu_ad_poll_interval = VRPIU_AD_POLL_INTERVAL;
    141   1.6      sato 
    142   1.1  takemura /*
    143   1.1  takemura  * function definitions
    144   1.1  takemura  */
    145   1.1  takemura static inline void
    146   1.1  takemura vrpiu_write(sc, port, val)
    147   1.1  takemura 	struct vrpiu_softc *sc;
    148   1.1  takemura 	int port;
    149   1.1  takemura 	unsigned short val;
    150   1.1  takemura {
    151   1.1  takemura 	bus_space_write_2(sc->sc_iot, sc->sc_ioh, port, val);
    152   1.1  takemura }
    153   1.1  takemura 
    154   1.1  takemura static inline u_short
    155   1.1  takemura vrpiu_read(sc, port)
    156   1.1  takemura 	struct vrpiu_softc *sc;
    157   1.1  takemura 	int port;
    158   1.1  takemura {
    159   1.1  takemura 	return bus_space_read_2(sc->sc_iot, sc->sc_ioh, port);
    160   1.1  takemura }
    161   1.1  takemura 
    162   1.1  takemura static int
    163   1.1  takemura vrpiumatch(parent, cf, aux)
    164   1.1  takemura 	struct device *parent;
    165   1.1  takemura 	struct cfdata *cf;
    166   1.1  takemura 	void *aux;
    167   1.1  takemura {
    168   1.1  takemura 	return 1;
    169   1.1  takemura }
    170   1.1  takemura 
    171   1.1  takemura static void
    172   1.1  takemura vrpiuattach(parent, self, aux)
    173   1.1  takemura 	struct device *parent;
    174   1.1  takemura 	struct device *self;
    175   1.1  takemura 	void *aux;
    176   1.1  takemura {
    177   1.1  takemura 	struct vrpiu_softc *sc = (struct vrpiu_softc *)self;
    178   1.1  takemura 	struct vrip_attach_args *va = aux;
    179   1.1  takemura 	struct wsmousedev_attach_args wsmaa;
    180   1.1  takemura 
    181   1.1  takemura 	bus_space_tag_t iot = va->va_iot;
    182   1.1  takemura 	bus_space_handle_t ioh;
    183  1.14      sato 	struct platid_data *p;
    184   1.1  takemura 
    185   1.1  takemura 	if (bus_space_map(iot, va->va_addr, 1, 0, &ioh)) {
    186   1.9  takemura 	    printf(": can't map bus space\n");
    187   1.9  takemura 	    return;
    188   1.1  takemura 	}
    189   1.1  takemura 
    190   1.1  takemura 	sc->sc_iot = iot;
    191   1.1  takemura 	sc->sc_ioh = ioh;
    192   1.1  takemura 	sc->sc_vrip = va->va_vc;
    193   1.1  takemura 
    194   1.8  takemura 	sc->sc_interval = scan_interval(WSMOUSE_RES_DEFAULT);
    195  1.14      sato 	if ((p = platid_search(&platid, hpcbattery_parameters)) == NULL)
    196  1.14      sato 		sc->sc_battery_spec = NULL;
    197  1.14      sato 	else
    198  1.14      sato 		sc->sc_battery_spec  = p->data;
    199   1.8  takemura 
    200   1.1  takemura 	/*
    201   1.1  takemura 	 * disable device until vrpiu_enable called
    202   1.1  takemura 	 */
    203   1.6      sato 	sc->sc_tpstat = VRPIU_TP_STAT_DISABLE;
    204   1.1  takemura 
    205  1.10  takemura 	/* initialize touch panel timeout structure	*/
    206  1.10  takemura 	callout_init(&sc->sc_tptimeout);
    207  1.10  takemura 
    208  1.10  takemura 	/* initialize calibration context	*/
    209   1.3  takemura 	tpcalib_init(&sc->sc_tpcalib);
    210   1.1  takemura #if 1
    211   1.1  takemura 	/*
    212   1.1  takemura 	 * XXX, calibrate parameters
    213   1.1  takemura 	 */
    214   1.1  takemura 	{
    215   1.9  takemura 	    int i;
    216   1.9  takemura 	    static const struct {
    217   1.9  takemura 		platid_mask_t *mask;
    218   1.9  takemura 		struct wsmouse_calibcoords coords;
    219   1.9  takemura 	    } calibrations[] = {
    220  1.12      sato 		{ &platid_mask_MACH_NEC_MCR_700,
    221  1.12      sato 		  { 0, 0, 799, 599,
    222  1.12      sato 		    4,
    223  1.12      sato 		    { { 115,  80,   0,   0 },
    224  1.12      sato 		      { 115, 966,   0, 599 },
    225  1.12      sato 		      { 912,  80, 799,   0 },
    226  1.12      sato 		      { 912, 966, 799, 599 } } } },
    227   1.9  takemura 		{ &platid_mask_MACH_NEC_MCR_700A,
    228  1.12      sato 		  { 0, 0, 799, 599,
    229  1.12      sato 		    4,
    230  1.12      sato 		    { { 115,  80,   0,   0 },
    231  1.12      sato 		      { 115, 966,   0, 599 },
    232  1.12      sato 		      { 912,  80, 799,   0 },
    233  1.12      sato 		      { 912, 966, 799, 599 } } } },
    234  1.12      sato 		{ &platid_mask_MACH_NEC_MCR_730,
    235   1.9  takemura 		  { 0, 0, 799, 599,
    236   1.9  takemura 		    4,
    237   1.9  takemura 		    { { 115,  80,   0,   0 },
    238   1.9  takemura 		      { 115, 966,   0, 599 },
    239   1.9  takemura 		      { 912,  80, 799,   0 },
    240   1.9  takemura 		      { 912, 966, 799, 599 } } } },
    241   1.9  takemura 		{ NULL,		/* samples got on my MC-R500 */
    242   1.9  takemura 		  { 0, 0, 639, 239,
    243   1.9  takemura 		    5,
    244   1.9  takemura 		    { { 502, 486, 320, 120 },
    245   1.9  takemura 		      {  55, 109,   0,   0 },
    246   1.9  takemura 		      {  54, 913,   0, 239 },
    247   1.9  takemura 		      { 973, 924, 639, 239 },
    248   1.9  takemura 		      { 975, 123, 639,   0 } } } },
    249   1.9  takemura 	    };
    250   1.9  takemura 	    for (i = 0; ; i++) {
    251   1.9  takemura 		if (calibrations[i].mask == NULL
    252   1.9  takemura 		    || platid_match(&platid, calibrations[i].mask))
    253   1.9  takemura 		    break;
    254   1.9  takemura 	    }
    255   1.9  takemura 	    tpcalib_ioctl(&sc->sc_tpcalib, WSMOUSEIO_SCALIBCOORDS,
    256   1.9  takemura 			  (caddr_t)&calibrations[i].coords, 0, 0);
    257   1.1  takemura 	}
    258   1.1  takemura #endif
    259   1.1  takemura 
    260   1.1  takemura 	/* install interrupt handler and enable interrupt */
    261   1.1  takemura 	if (!(sc->sc_handler =
    262   1.9  takemura 	    vrip_intr_establish(va->va_vc, va->va_intr, IPL_TTY,
    263   1.9  takemura 				vrpiu_intr, sc))) {
    264   1.9  takemura 	    printf (": can't map interrupt line.\n");
    265   1.9  takemura 	    return;
    266   1.1  takemura 	}
    267   1.1  takemura 
    268   1.1  takemura 	/* mask level2 interrupt, stop scan sequencer and mask clock to piu */
    269   1.6      sato 	vrpiu_tp_disable(sc);
    270   1.1  takemura 
    271   1.1  takemura 	printf("\n");
    272   1.1  takemura 
    273   1.1  takemura 	wsmaa.accessops = &vrpiu_accessops;
    274   1.1  takemura 	wsmaa.accesscookie = sc;
    275   1.1  takemura 
    276   1.1  takemura 	/*
    277   1.1  takemura 	 * attach the wsmouse
    278   1.1  takemura 	 */
    279   1.1  takemura 	sc->sc_wsmousedev = config_found(self, &wsmaa, wsmousedevprint);
    280   1.6      sato 
    281   1.6      sato 	/*
    282   1.6      sato 	 * power management events
    283   1.6      sato 	 */
    284   1.6      sato 	sc->sc_power_hook = powerhook_establish(vrpiu_power, sc);
    285   1.6      sato 
    286   1.6      sato 	/*
    287   1.6      sato 	 * init A/D port polling.
    288   1.6      sato 	 */
    289   1.6      sato 	sc->sc_battery.n_values = 3;
    290   1.6      sato 	sc->sc_battery.value[0] = -1;
    291   1.6      sato 	sc->sc_battery.value[1] = -1;
    292   1.6      sato 	sc->sc_battery.value[2] = -1;
    293   1.6      sato 	sc->sc_battery.nextpoll = hz*vrpiu_ad_poll_interval;
    294   1.6      sato 	callout_init(&sc->sc_adpoll);
    295   1.9  takemura 	callout_reset(&sc->sc_adpoll, hz, vrpiu_start_powerstate, sc);
    296   1.1  takemura }
    297   1.1  takemura 
    298   1.8  takemura /*
    299   1.8  takemura  * calculate interval value
    300   1.8  takemura  *  input: WSMOUSE_RES_MIN - WSMOUSE_RES_MAX
    301   1.8  takemura  * output: value for PIUSIVL_REG
    302   1.8  takemura  */
    303   1.8  takemura static u_int
    304   1.8  takemura scan_interval(u_int data)
    305   1.8  takemura {
    306   1.8  takemura 	int scale;
    307   1.8  takemura 
    308   1.8  takemura 	if (data < WSMOUSE_RES_MIN)
    309   1.9  takemura 	    data = WSMOUSE_RES_MIN;
    310   1.8  takemura 
    311   1.8  takemura 	if (WSMOUSE_RES_MAX < data)
    312   1.9  takemura 	    data = WSMOUSE_RES_MAX;
    313   1.8  takemura 
    314   1.8  takemura 	scale = WSMOUSE_RES_MAX - WSMOUSE_RES_MIN;
    315   1.8  takemura 	data += WSMOUSE_RES_MIN;
    316   1.8  takemura 
    317   1.8  takemura 	return PIUSIVL_SCANINTVAL_MIN +
    318   1.8  takemura 	    (PIUSIVL_SCANINTVAL_MAX - PIUSIVL_SCANINTVAL_MIN) *
    319   1.8  takemura 	    (scale - data) / scale;
    320   1.8  takemura }
    321   1.8  takemura 
    322   1.1  takemura int
    323   1.6      sato vrpiu_ad_enable(v)
    324   1.1  takemura 	void *v;
    325   1.1  takemura {
    326   1.1  takemura 	struct vrpiu_softc *sc = v;
    327   1.1  takemura 	int s;
    328   1.1  takemura 	unsigned int cnt;
    329   1.1  takemura 
    330   1.8  takemura 	DPRINTF(("%s(%d): vrpiu_ad_enable(): interval=0x%03x\n",
    331   1.9  takemura 		 __FILE__, __LINE__, sc->sc_interval));
    332   1.6      sato 	if (sc->sc_adstat != VRPIU_AD_STAT_DISABLE)
    333   1.9  takemura 	    return EBUSY;
    334   1.1  takemura 
    335   1.1  takemura 	/* supply clock to PIU */
    336   1.1  takemura 	__vrcmu_supply(CMUMSKPIU, 1);
    337   1.1  takemura 
    338   1.8  takemura 	/* set scan interval */
    339   1.8  takemura 	vrpiu_write(sc, PIUSIVL_REG_W, sc->sc_interval);
    340   1.1  takemura 
    341   1.1  takemura 	s = spltty();
    342   1.1  takemura 
    343   1.1  takemura 	/* clear interrupt status */
    344   1.8  takemura 	vrpiu_write(sc, PIUINT_REG_W, AD_INTR);
    345   1.1  takemura 
    346   1.1  takemura 	/* Disable -> Standby */
    347   1.1  takemura 	cnt = PIUCNT_PIUPWR |
    348   1.1  takemura 		PIUCNT_PIUMODE_COORDINATE |
    349   1.1  takemura 		PIUCNT_PADATSTART | PIUCNT_PADATSTOP;
    350   1.1  takemura 	vrpiu_write(sc, PIUCNT_REG_W, cnt);
    351   1.1  takemura 
    352   1.6      sato 	/* Level2 interrupt register setting */
    353   1.8  takemura 	vrip_intr_setmask2(sc->sc_vrip, sc->sc_handler, AD_INTR, 1);
    354   1.6      sato 
    355   1.1  takemura 	/* save pen status, touch or release */
    356   1.1  takemura 	cnt = vrpiu_read(sc, PIUCNT_REG_W);
    357   1.1  takemura 
    358   1.6      sato 	/*
    359   1.6      sato 	 * Enable scan sequencer operation
    360   1.6      sato 	 * Standby -> WaitPenTouch
    361   1.6      sato 	 */
    362   1.6      sato 	cnt |= PIUCNT_PIUSEQEN;
    363   1.6      sato 	vrpiu_write(sc, PIUCNT_REG_W, cnt);
    364   1.6      sato 
    365   1.6      sato 	sc->sc_adstat = VRPIU_AD_STAT_ENABLE;
    366   1.6      sato 
    367   1.6      sato 	splx(s);
    368   1.6      sato 
    369   1.6      sato 	return 0;
    370   1.6      sato }
    371   1.6      sato 
    372   1.6      sato void
    373   1.6      sato vrpiu_ad_disable(v)
    374   1.6      sato 	void *v;
    375   1.6      sato {
    376   1.6      sato 	struct vrpiu_softc *sc = v;
    377   1.6      sato 
    378   1.6      sato 	DPRINTF(("%s(%d): vrpiu_ad_disable()\n", __FILE__, __LINE__));
    379   1.6      sato 
    380   1.6      sato 	/* Set level2 interrupt register to mask interrupts */
    381   1.8  takemura 	vrip_intr_setmask2(sc->sc_vrip, sc->sc_handler, AD_INTR, 0);
    382   1.6      sato 
    383   1.6      sato 	sc->sc_adstat = VRPIU_AD_STAT_DISABLE;
    384   1.6      sato 
    385   1.6      sato 	if (sc->sc_tpstat == VRPIU_TP_STAT_DISABLE){
    386   1.9  takemura 	    /* Disable scan sequencer operation and power off */
    387   1.9  takemura 	    vrpiu_write(sc, PIUCNT_REG_W, 0);
    388   1.6      sato 
    389   1.9  takemura 	    /* mask clock to PIU */
    390  1.13      sato 	    __vrcmu_supply(CMUMSKPIU, 0);
    391   1.6      sato 	}
    392   1.6      sato }
    393   1.6      sato 
    394   1.6      sato int
    395   1.6      sato vrpiu_tp_enable(v)
    396   1.6      sato 	void *v;
    397   1.6      sato {
    398   1.6      sato 	struct vrpiu_softc *sc = v;
    399   1.6      sato 	int s;
    400   1.6      sato 	unsigned int cnt;
    401   1.6      sato 
    402   1.8  takemura 	DPRINTF(("%s(%d): vrpiu_tp_enable(): interval=0x%03x\n",
    403   1.9  takemura 		 __FILE__, __LINE__, sc->sc_interval));
    404   1.6      sato 	if (sc->sc_tpstat != VRPIU_TP_STAT_DISABLE)
    405   1.9  takemura 	    return EBUSY;
    406   1.6      sato 
    407   1.6      sato 	/* supply clock to PIU */
    408   1.6      sato 	__vrcmu_supply(CMUMSKPIU, 1);
    409   1.6      sato 
    410   1.8  takemura 	/* set scan interval */
    411   1.8  takemura 	vrpiu_write(sc, PIUSIVL_REG_W, sc->sc_interval);
    412   1.6      sato 
    413   1.6      sato 	s = spltty();
    414   1.6      sato 
    415   1.6      sato 	/* clear interrupt status */
    416   1.8  takemura 	vrpiu_write(sc, PIUINT_REG_W, TP_INTR);
    417   1.6      sato 
    418   1.6      sato 	/* Disable -> Standby */
    419   1.6      sato 	cnt = PIUCNT_PIUPWR |
    420   1.6      sato 		PIUCNT_PIUMODE_COORDINATE |
    421   1.6      sato 		PIUCNT_PADATSTART | PIUCNT_PADATSTOP;
    422   1.6      sato 	vrpiu_write(sc, PIUCNT_REG_W, cnt);
    423   1.6      sato 
    424   1.1  takemura 	/* Level2 interrupt register setting */
    425   1.8  takemura 	vrip_intr_setmask2(sc->sc_vrip, sc->sc_handler, TP_INTR, 1);
    426   1.6      sato 
    427   1.6      sato 	/* save pen status, touch or release */
    428   1.6      sato 	cnt = vrpiu_read(sc, PIUCNT_REG_W);
    429   1.1  takemura 
    430   1.1  takemura 	/*
    431   1.1  takemura 	 * Enable scan sequencer operation
    432   1.1  takemura 	 * Standby -> WaitPenTouch
    433   1.1  takemura 	 */
    434   1.1  takemura 	cnt |= PIUCNT_PIUSEQEN;
    435   1.1  takemura 	vrpiu_write(sc, PIUCNT_REG_W, cnt);
    436   1.1  takemura 
    437   1.1  takemura 	/* transit status DISABLE -> TOUCH or RELEASE */
    438   1.6      sato 	sc->sc_tpstat = (cnt & PIUCNT_PENSTC) ?
    439   1.6      sato 		VRPIU_TP_STAT_TOUCH : VRPIU_TP_STAT_RELEASE;
    440   1.1  takemura 
    441   1.1  takemura 	splx(s);
    442   1.1  takemura 
    443   1.1  takemura 	return 0;
    444   1.1  takemura }
    445   1.1  takemura 
    446   1.1  takemura void
    447   1.6      sato vrpiu_tp_disable(v)
    448   1.1  takemura 	void *v;
    449   1.1  takemura {
    450   1.1  takemura 	struct vrpiu_softc *sc = v;
    451   1.1  takemura 
    452   1.6      sato 	DPRINTF(("%s(%d): vrpiu_tp_disable()\n", __FILE__, __LINE__));
    453   1.1  takemura 
    454   1.1  takemura 	/* Set level2 interrupt register to mask interrupts */
    455   1.8  takemura 	vrip_intr_setmask2(sc->sc_vrip, sc->sc_handler, TP_INTR, 0);
    456   1.1  takemura 
    457   1.6      sato 	sc->sc_tpstat = VRPIU_TP_STAT_DISABLE;
    458   1.1  takemura 
    459   1.6      sato 	if (sc->sc_adstat == VRPIU_AD_STAT_DISABLE){
    460   1.9  takemura 	    /* Disable scan sequencer operation and power off */
    461   1.9  takemura 	    vrpiu_write(sc, PIUCNT_REG_W, 0);
    462   1.1  takemura 
    463   1.9  takemura 	    /* mask clock to PIU */
    464  1.13      sato 	    __vrcmu_supply(CMUMSKPIU, 0);
    465   1.6      sato 	}
    466   1.1  takemura }
    467   1.1  takemura 
    468   1.1  takemura int
    469   1.6      sato vrpiu_tp_ioctl(v, cmd, data, flag, p)
    470   1.1  takemura 	void *v;
    471   1.1  takemura 	u_long cmd;
    472   1.1  takemura 	caddr_t data;
    473   1.1  takemura 	int flag;
    474   1.1  takemura 	struct proc *p;
    475   1.1  takemura {
    476   1.1  takemura 	struct vrpiu_softc *sc = v;
    477   1.1  takemura 
    478   1.6      sato 	DPRINTF(("%s(%d): vrpiu_tp_ioctl(%08lx)\n", __FILE__, __LINE__, cmd));
    479   1.1  takemura 
    480   1.1  takemura 	switch (cmd) {
    481   1.1  takemura 	case WSMOUSEIO_GTYPE:
    482   1.9  takemura 	    *(u_int *)data = WSMOUSE_TYPE_TPANEL;
    483   1.9  takemura 	    break;
    484   1.1  takemura 
    485   1.1  takemura 	case WSMOUSEIO_SRES:
    486   1.8  takemura 	    {
    487   1.8  takemura 		int tp_enable;
    488   1.8  takemura 		int ad_enable;
    489   1.8  takemura 
    490   1.8  takemura 		tp_enable = (sc->sc_tpstat != VRPIU_TP_STAT_DISABLE);
    491   1.8  takemura 		ad_enable = (sc->sc_adstat != VRPIU_AD_STAT_DISABLE);
    492   1.8  takemura 
    493   1.8  takemura 		if (tp_enable)
    494   1.9  takemura 		    vrpiu_tp_disable(sc);
    495   1.8  takemura 		if (ad_enable)
    496   1.9  takemura 		    vrpiu_ad_disable(sc);
    497   1.8  takemura 
    498   1.8  takemura 		sc->sc_interval = scan_interval(*(u_int *)data);
    499   1.8  takemura 		DPRINTF(("%s(%d): WSMOUSEIO_SRES: *data=%d, interval=0x%03x\n",
    500   1.8  takemura 		    __FILE__, __LINE__, *(u_int *)data, sc->sc_interval));
    501   1.8  takemura 
    502   1.8  takemura 		if (sc->sc_interval < PIUSIVL_SCANINTVAL_MIN)
    503   1.9  takemura 		    sc->sc_interval = PIUSIVL_SCANINTVAL_MIN;
    504   1.8  takemura 
    505   1.8  takemura 		if (PIUSIVL_SCANINTVAL_MAX < sc->sc_interval)
    506   1.9  takemura 		    sc->sc_interval = PIUSIVL_SCANINTVAL_MAX;
    507   1.8  takemura 
    508   1.8  takemura 		if (tp_enable)
    509   1.9  takemura 		    vrpiu_tp_enable(sc);
    510   1.8  takemura 		if (ad_enable)
    511   1.9  takemura 		     vrpiu_ad_enable(sc);
    512   1.8  takemura 	    }
    513   1.8  takemura 	    break;
    514   1.3  takemura 
    515   1.3  takemura 	case WSMOUSEIO_SCALIBCOORDS:
    516   1.3  takemura 	case WSMOUSEIO_GCALIBCOORDS:
    517   1.9  takemura             return tpcalib_ioctl(&sc->sc_tpcalib, cmd, data, flag, p);
    518   1.1  takemura 
    519   1.1  takemura 	default:
    520   1.9  takemura 	    return (-1);
    521   1.1  takemura 	}
    522   1.1  takemura 	return (0);
    523   1.1  takemura }
    524   1.1  takemura 
    525   1.1  takemura /*
    526   1.6      sato  * PIU AD interrupt handler.
    527   1.6      sato  */
    528   1.6      sato void
    529   1.6      sato vrpiu_ad_intr(sc)
    530   1.6      sato 	struct vrpiu_softc *sc;
    531   1.6      sato {
    532   1.6      sato 	unsigned int i;
    533   1.6      sato 	unsigned int intrstat;
    534   1.6      sato 
    535   1.6      sato 	intrstat = vrpiu_read(sc, PIUINT_REG_W);
    536   1.6      sato 
    537   1.6      sato 	if (sc->sc_adstat == VRPIU_AD_STAT_DISABLE) {
    538   1.9  takemura 	    /*
    539   1.9  takemura 	     * the device isn't enabled. just clear interrupt.
    540   1.9  takemura 	     */
    541   1.9  takemura 	    vrpiu_write(sc, PIUINT_REG_W, AD_INTR);
    542   1.9  takemura 	    return;
    543   1.6      sato 	}
    544   1.6      sato 
    545   1.6      sato 	if (intrstat & PIUINT_PADADPINTR) {
    546   1.9  takemura 	    sc->sc_battery.value[0] = (unsigned int)vrpiu_read(sc, PIUAB(0));
    547   1.9  takemura 	    sc->sc_battery.value[1] = (unsigned int)vrpiu_read(sc, PIUAB(1));
    548   1.9  takemura 	    sc->sc_battery.value[2] = (unsigned int)vrpiu_read(sc, PIUAB(2));
    549   1.6      sato 	}
    550   1.6      sato 
    551   1.6      sato 	if (intrstat & PIUINT_PADADPINTR) {
    552   1.9  takemura 	    for (i = 0; i < 3; i++) {
    553   1.9  takemura 		if (sc->sc_battery.value[i] & PIUAB_VALID)
    554   1.9  takemura 		    sc->sc_battery.value[i] &= PIUAB_PADDATA_MASK;
    555   1.9  takemura 		else
    556   1.9  takemura 		    sc->sc_battery.value[i] = 0;
    557   1.9  takemura 	    }
    558   1.9  takemura 	    vrpiu_calc_powerstate(sc);
    559   1.6      sato 	}
    560   1.8  takemura 	vrpiu_write(sc, PIUINT_REG_W, AD_INTR);
    561   1.6      sato 
    562   1.6      sato 	return;
    563   1.6      sato }
    564   1.6      sato /*
    565   1.6      sato  * PIU TP interrupt handler.
    566   1.1  takemura  */
    567   1.6      sato void
    568   1.6      sato vrpiu_tp_intr(sc)
    569   1.6      sato 	struct vrpiu_softc *sc;
    570   1.1  takemura {
    571   1.1  takemura 	unsigned int cnt, i;
    572   1.1  takemura 	unsigned int intrstat, page;
    573   1.1  takemura 	int tpx0, tpx1, tpy0, tpy1;
    574   1.1  takemura 	int x, y, xraw, yraw;
    575   1.1  takemura 
    576   1.1  takemura 	intrstat = vrpiu_read(sc, PIUINT_REG_W);
    577   1.1  takemura 
    578   1.6      sato 	if (sc->sc_tpstat == VRPIU_TP_STAT_DISABLE) {
    579   1.9  takemura 	    /*
    580   1.9  takemura 	     * the device isn't enabled. just clear interrupt.
    581   1.9  takemura 	     */
    582   1.9  takemura 	    vrpiu_write(sc, PIUINT_REG_W, intrstat & TP_INTR);
    583   1.9  takemura 	    return;
    584   1.1  takemura 	}
    585   1.1  takemura 
    586   1.1  takemura 	page = (intrstat & PIUINT_OVP) ? 1 : 0;
    587   1.1  takemura 	if (intrstat & (PIUINT_PADPAGE0INTR | PIUINT_PADPAGE1INTR)) {
    588   1.9  takemura 	    tpx0 = vrpiu_read(sc, PIUPB(page, 0));
    589   1.9  takemura 	    tpx1 = vrpiu_read(sc, PIUPB(page, 1));
    590   1.9  takemura 	    tpy0 = vrpiu_read(sc, PIUPB(page, 2));
    591   1.9  takemura 	    tpy1 = vrpiu_read(sc, PIUPB(page, 3));
    592   1.1  takemura 	}
    593   1.1  takemura 
    594   1.1  takemura 	if (intrstat & PIUINT_PADDLOSTINTR) {
    595   1.9  takemura 	    page = page ? 0 : 1;
    596   1.9  takemura 	    for (i = 0; i < 4; i++)
    597   1.9  takemura 		vrpiu_read(sc, PIUPB(page, i));
    598   1.1  takemura 	}
    599   1.1  takemura 
    600   1.1  takemura 	cnt = vrpiu_read(sc, PIUCNT_REG_W);
    601   1.1  takemura #ifdef DEBUG
    602   1.1  takemura 	if (vrpiu_debug)
    603   1.9  takemura 	    vrpiu_dump_cntreg(cnt);
    604   1.1  takemura #endif
    605   1.1  takemura 
    606   1.1  takemura 	/* clear interrupt status */
    607   1.8  takemura 	vrpiu_write(sc, PIUINT_REG_W, intrstat & TP_INTR);
    608   1.1  takemura 
    609   1.1  takemura #if 0
    610   1.1  takemura 	DPRINTF(("vrpiu_intr: OVP=%d", page));
    611   1.1  takemura 	if (intrstat & PIUINT_PADCMDINTR)
    612   1.9  takemura 	    DPRINTF((" CMD"));
    613   1.1  takemura 	if (intrstat & PIUINT_PADADPINTR)
    614   1.9  takemura 	    DPRINTF((" A/D"));
    615   1.1  takemura 	if (intrstat & PIUINT_PADPAGE1INTR)
    616   1.9  takemura 	    DPRINTF((" PAGE1"));
    617   1.1  takemura 	if (intrstat & PIUINT_PADPAGE0INTR)
    618   1.9  takemura 	    DPRINTF((" PAGE0"));
    619   1.1  takemura 	if (intrstat & PIUINT_PADDLOSTINTR)
    620   1.9  takemura 	    DPRINTF((" DLOST"));
    621   1.1  takemura 	if (intrstat & PIUINT_PENCHGINTR)
    622   1.9  takemura 	    DPRINTF((" PENCHG"));
    623   1.1  takemura 	DPRINTF(("\n"));
    624   1.1  takemura #endif
    625   1.1  takemura 	if (intrstat & (PIUINT_PADPAGE0INTR | PIUINT_PADPAGE1INTR)) {
    626  1.10  takemura 	    /*
    627  1.10  takemura 	     * just ignore scan data if status isn't Touch.
    628  1.10  takemura 	     */
    629  1.10  takemura 	    if (sc->sc_tpstat == VRPIU_TP_STAT_TOUCH) {
    630  1.10  takemura 		/* reset tp scan timeout	*/
    631  1.10  takemura 		callout_reset(&sc->sc_tptimeout, VRPIU_TP_SCAN_TIMEOUT,
    632  1.10  takemura 			      vrpiu_tp_timeout, sc);
    633  1.10  takemura 
    634  1.10  takemura 		if (!((tpx0 & PIUPB_VALID) && (tpx1 & PIUPB_VALID) &&
    635  1.10  takemura 		    (tpy0 & PIUPB_VALID) && (tpy1 & PIUPB_VALID))) {
    636  1.10  takemura 		    printf("vrpiu: internal error, data is not valid!\n");
    637  1.10  takemura 		} else {
    638  1.10  takemura 		    tpx0 &= PIUPB_PADDATA_MASK;
    639  1.10  takemura 		    tpx1 &= PIUPB_PADDATA_MASK;
    640  1.10  takemura 		    tpy0 &= PIUPB_PADDATA_MASK;
    641  1.10  takemura 		    tpy1 &= PIUPB_PADDATA_MASK;
    642   1.1  takemura #define ISVALID(n, c, m)	((c) - (m) < (n) && (n) < (c) + (m))
    643  1.10  takemura 		    if (ISVALID(tpx0 + tpx1, 1024, 200) &&
    644  1.10  takemura 			ISVALID(tpy0 + tpy1, 1024, 200)) {
    645   1.1  takemura #if 0
    646  1.10  takemura 			DPRINTF(("%04x %04x %04x %04x\n",
    647  1.10  takemura 				 tpx0, tpx1, tpy0, tpy1));
    648  1.10  takemura 			DPRINTF(("%3d %3d (%4d %4d)->", tpx0, tpy0,
    649  1.10  takemura 				 tpx0 + tpx1, tpy0 + tpy1));
    650   1.1  takemura #endif
    651  1.10  takemura 			xraw = tpy1 * 1024 / (tpy0 + tpy1);
    652  1.10  takemura 			yraw = tpx1 * 1024 / (tpx0 + tpx1);
    653  1.10  takemura 			DPRINTF(("%3d %3d", xraw, yraw));
    654  1.10  takemura 
    655  1.10  takemura 			tpcalib_trans(&sc->sc_tpcalib, xraw, yraw, &x, &y);
    656  1.10  takemura 
    657  1.10  takemura 			DPRINTF(("->%4d %4d", x, y));
    658  1.10  takemura 			wsmouse_input(sc->sc_wsmousedev,
    659  1.10  takemura 				      1, /* button 0 down */
    660  1.10  takemura 				      x, /* x */
    661  1.10  takemura 				      y, /* y */
    662  1.10  takemura 				      0, /* z */
    663  1.10  takemura 				      WSMOUSE_INPUT_ABSOLUTE_X |
    664  1.10  takemura 				      WSMOUSE_INPUT_ABSOLUTE_Y);
    665  1.10  takemura 			DPRINTF(("\n"));
    666  1.10  takemura 		    }
    667   1.4  takemura 		}
    668   1.9  takemura 	    }
    669   1.4  takemura 	}
    670   1.4  takemura 
    671   1.4  takemura 	if (cnt & PIUCNT_PENSTC) {
    672   1.9  takemura 	    if (sc->sc_tpstat == VRPIU_TP_STAT_RELEASE) {
    673   1.9  takemura 		/*
    674   1.9  takemura 		 * pen touch
    675   1.9  takemura 		 */
    676   1.9  takemura 		DPRINTF(("PEN TOUCH\n"));
    677   1.9  takemura 		sc->sc_tpstat = VRPIU_TP_STAT_TOUCH;
    678   1.9  takemura 		/*
    679   1.9  takemura 		 * We should not report button down event while
    680   1.9  takemura 		 * we don't know where it occur.
    681   1.9  takemura 		 */
    682  1.10  takemura 
    683  1.10  takemura 		/* set tp scan timeout	*/
    684  1.10  takemura 		callout_reset(&sc->sc_tptimeout, VRPIU_TP_SCAN_TIMEOUT,
    685  1.10  takemura 			      vrpiu_tp_timeout, sc);
    686   1.9  takemura 	    }
    687   1.4  takemura 	} else {
    688  1.10  takemura 	    vrpiu_tp_up(sc);
    689   1.1  takemura 	}
    690   1.1  takemura 
    691   1.1  takemura 	if (intrstat & PIUINT_PADDLOSTINTR) {
    692   1.9  takemura 	    cnt |= PIUCNT_PIUSEQEN;
    693   1.9  takemura 	    vrpiu_write(sc, PIUCNT_REG_W, cnt);
    694   1.1  takemura 	}
    695   1.1  takemura 
    696   1.6      sato 	return;
    697  1.10  takemura }
    698  1.10  takemura 
    699  1.10  takemura void
    700  1.10  takemura vrpiu_tp_up(sc)
    701  1.10  takemura 	struct vrpiu_softc *sc;
    702  1.10  takemura {
    703  1.10  takemura 	if (sc->sc_tpstat == VRPIU_TP_STAT_TOUCH) {
    704  1.10  takemura 	    /*
    705  1.10  takemura 	     * pen release
    706  1.10  takemura 	     */
    707  1.10  takemura 	    DPRINTF(("RELEASE\n"));
    708  1.10  takemura 	    sc->sc_tpstat = VRPIU_TP_STAT_RELEASE;
    709  1.10  takemura 
    710  1.10  takemura 	    /* clear tp scan timeout	*/
    711  1.10  takemura 	    callout_stop(&sc->sc_tptimeout);
    712  1.10  takemura 
    713  1.10  takemura 	    /* button 0 UP */
    714  1.10  takemura 	    wsmouse_input(sc->sc_wsmousedev, 0, 0, 0, 0, 0);
    715  1.10  takemura 	}
    716  1.10  takemura }
    717  1.10  takemura 
    718  1.10  takemura /* touch panel timeout handler */
    719  1.10  takemura void
    720  1.10  takemura vrpiu_tp_timeout(v)
    721  1.10  takemura 	void *v;
    722  1.10  takemura {
    723  1.10  takemura 	struct vrpiu_softc *sc = (struct vrpiu_softc *)v;
    724  1.10  takemura 
    725  1.10  takemura #ifdef VRPIUDEBUG
    726  1.10  takemura 	{
    727  1.10  takemura 	    unsigned int cnt = vrpiu_read(sc, PIUCNT_REG_W);
    728  1.10  takemura 	    DPRINTF(("TIMEOUT: stat=%s  reg=%s\n",
    729  1.10  takemura 		(sc->sc_tpstat == VRPIU_TP_STAT_TOUCH)?"touch":"release",
    730  1.10  takemura 		(cnt & PIUCNT_PENSTC)?"touch":"release"));
    731  1.10  takemura 	}
    732  1.10  takemura #endif
    733  1.10  takemura 	vrpiu_tp_up(sc);
    734   1.6      sato }
    735   1.6      sato 
    736   1.6      sato /*
    737   1.6      sato  * PIU interrupt handler.
    738   1.6      sato  */
    739   1.6      sato int
    740   1.6      sato vrpiu_intr(arg)
    741   1.6      sato 	void *arg;
    742   1.6      sato {
    743   1.6      sato         struct vrpiu_softc *sc = arg;
    744   1.6      sato 
    745   1.6      sato 	vrpiu_ad_intr(sc);
    746   1.6      sato 	vrpiu_tp_intr(sc);
    747   1.6      sato 
    748   1.1  takemura 	return 0;
    749   1.6      sato }
    750   1.6      sato 
    751   1.6      sato void
    752   1.6      sato vrpiu_start_powerstate(v)
    753   1.6      sato 	void *v;
    754   1.6      sato {
    755   1.6      sato 	int mask;
    756   1.6      sato 	struct vrpiu_softc *sc = (struct vrpiu_softc *)v;
    757   1.6      sato 
    758   1.6      sato 	vrpiu_ad_enable(sc);
    759   1.6      sato 	mask = vrpiu_read(sc, PIUAMSK_REG_W);
    760   1.6      sato 	mask &= 0xff8f; /* XXX */
    761   1.6      sato 	vrpiu_write(sc, PIUAMSK_REG_W, mask);
    762   1.6      sato 	vrpiu_write(sc, PIUASCN_REG_W, PIUACN_ADPSSTART);
    763   1.6      sato 	/*
    764   1.6      sato 	 * restart next A/D polling
    765   1.6      sato 	 */
    766   1.6      sato 	callout_reset(&sc->sc_adpoll, hz*vrpiu_ad_poll_interval,
    767   1.9  takemura 		      vrpiu_start_powerstate, sc);
    768   1.6      sato }
    769   1.6      sato 
    770   1.6      sato void
    771   1.6      sato vrpiu_calc_powerstate(sc)
    772   1.6      sato 	struct vrpiu_softc *sc;
    773   1.6      sato {
    774   1.6      sato 	extern void vrgiu_diff_io __P((void));
    775   1.6      sato 	vrpiu_ad_disable(sc);
    776   1.6      sato 	VPRINTF(("vrpiu:AD: %d, %d, %d\n",
    777   1.6      sato 		sc->sc_battery.value[0],
    778   1.6      sato 		sc->sc_battery.value[1],
    779   1.6      sato 		sc->sc_battery.value[2]));
    780   1.6      sato 	sc->sc_battery.nextpoll = hz*vrpiu_ad_poll_interval;
    781  1.14      sato 	vrpiu_send_battery_event(sc);
    782   1.6      sato 	/*
    783   1.6      sato 	 * restart next A/D polling if change polling timming.
    784   1.6      sato 	 */
    785   1.6      sato 	if (sc->sc_battery.nextpoll != hz*vrpiu_ad_poll_interval)
    786   1.9  takemura 	    callout_reset(&sc->sc_adpoll, sc->sc_battery.nextpoll,
    787   1.9  takemura 			  vrpiu_start_powerstate, sc);
    788   1.6      sato 	if (bootverbose)
    789   1.9  takemura 	    vrgiu_diff_io();
    790   1.6      sato 
    791   1.6      sato }
    792   1.6      sato 
    793   1.6      sato static void
    794   1.6      sato vrpiu_power(why, arg)
    795   1.6      sato 	int why;
    796   1.6      sato 	void *arg;
    797   1.6      sato {
    798   1.6      sato 	struct vrpiu_softc *sc = arg;
    799   1.6      sato 
    800   1.6      sato 	switch (why) {
    801   1.6      sato 	case PWR_STANDBY:
    802   1.6      sato 	case PWR_SUSPEND:
    803   1.9  takemura 	    break;
    804   1.6      sato 	case PWR_RESUME:
    805   1.9  takemura 	    callout_reset(&sc->sc_adpoll, hz,
    806   1.9  takemura 			  vrpiu_start_powerstate, sc);
    807   1.9  takemura 	    break;
    808   1.6      sato 	}
    809  1.14      sato }
    810  1.14      sato 
    811  1.14      sato static void
    812  1.14      sato vrpiu_send_battery_event(sc)
    813  1.14      sato 	struct vrpiu_softc *sc;
    814  1.14      sato {
    815  1.14      sato #ifdef VRPIU_ADHOC_BATTERY_EVENT
    816  1.14      sato 	static int batteryhigh = 0;
    817  1.14      sato 	static int batterylow = 0;
    818  1.14      sato 	static int critical = 0;
    819  1.14      sato 
    820  1.14      sato 	if (sc->sc_battery_spec == NULL
    821  1.14      sato 		|| sc->sc_battery_spec->main_port == -1)
    822  1.14      sato 		return;
    823  1.14      sato 
    824  1.14      sato 	if (sc->sc_battery.value[sc->sc_battery_spec->main_port]
    825  1.14      sato 		<= sc->sc_battery_spec->dc_critical) {
    826  1.14      sato 			batteryhigh = 0;
    827  1.14      sato 			config_hook_call(CONFIG_HOOK_PMEVENT,
    828  1.14      sato 				CONFIG_HOOK_PMEVENT_BATTERY,
    829  1.14      sato 				(void *)CONFIG_HOOK_BATT_CRITICAL);
    830  1.14      sato 			batterylow = 3;
    831  1.14      sato 			if (critical) {
    832  1.14      sato 				config_hook_call(CONFIG_HOOK_PMEVENT,
    833  1.14      sato 					CONFIG_HOOK_PMEVENT_SUSPENDREQ,
    834  1.14      sato 					(void *)0);
    835  1.14      sato 				critical = 0;
    836  1.14      sato 				batterylow = 0;
    837  1.14      sato 			}
    838  1.14      sato 			critical++;
    839  1.14      sato 	} else if (sc->sc_battery.value[sc->sc_battery_spec->main_port]
    840  1.14      sato 		<= sc->sc_battery_spec->dc_20p) {
    841  1.14      sato 			batteryhigh = 0;
    842  1.14      sato 			if (batterylow == 1)
    843  1.14      sato 				config_hook_call(CONFIG_HOOK_PMEVENT,
    844  1.14      sato 					CONFIG_HOOK_PMEVENT_BATTERY,
    845  1.14      sato 					(void *)CONFIG_HOOK_BATT_20P);
    846  1.14      sato 			config_hook_call(CONFIG_HOOK_PMEVENT,
    847  1.14      sato 				CONFIG_HOOK_PMEVENT_BATTERY,
    848  1.14      sato 				(void *)CONFIG_HOOK_BATT_LOW);
    849  1.14      sato 			batterylow = 2;
    850  1.14      sato 	} else if (sc->sc_battery.value[sc->sc_battery_spec->main_port]
    851  1.14      sato 		<= sc->sc_battery_spec->dc_50p) {
    852  1.14      sato 			batteryhigh = 0;
    853  1.14      sato 			if (batterylow == 0) {
    854  1.14      sato 				batterylow = 1;
    855  1.14      sato 				config_hook_call(CONFIG_HOOK_PMEVENT,
    856  1.14      sato 					CONFIG_HOOK_PMEVENT_BATTERY,
    857  1.14      sato 					(void *)CONFIG_HOOK_BATT_50P);
    858  1.14      sato 			}
    859  1.14      sato 	} else if (sc->sc_battery.value[sc->sc_battery_spec->main_port]
    860  1.14      sato 		>= sc->sc_battery_spec->ac_80p) {
    861  1.14      sato 			batterylow = 0;
    862  1.14      sato 			if (batteryhigh == 0) {
    863  1.14      sato 				batteryhigh = 1;
    864  1.14      sato 				config_hook_call(CONFIG_HOOK_PMEVENT,
    865  1.14      sato 					CONFIG_HOOK_PMEVENT_BATTERY,
    866  1.14      sato 					(void *)CONFIG_HOOK_BATT_80P);
    867  1.14      sato 				config_hook_call(CONFIG_HOOK_PMEVENT,
    868  1.14      sato 					CONFIG_HOOK_PMEVENT_BATTERY,
    869  1.14      sato 					(void *)CONFIG_HOOK_BATT_HIGH);
    870  1.14      sato 			}
    871  1.14      sato 	}
    872  1.14      sato #else /* VRPIU_ADHOC_BATTERY_EVENT */
    873  1.14      sato 	config_hook_call(CONFIG_HOOK_SET,
    874  1.14      sato 			 CONFIG_HOOK_BATTERYVAL,
    875  1.14      sato 			 (void *)&sc->sc_battery);
    876  1.14      sato #endif /* VRPIU_ADHOC_BATTERY_EVENT */
    877   1.1  takemura }
    878   1.1  takemura 
    879   1.1  takemura #ifdef DEBUG
    880   1.1  takemura void
    881   1.1  takemura vrpiu_dump_cntreg(cnt)
    882   1.1  takemura 	unsigned int cnt;
    883   1.1  takemura {
    884   1.1  takemura 	printf("%s", (cnt & PIUCNT_PENSTC) ? "Touch" : "Release");
    885   1.1  takemura 	printf(" state=");
    886   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_CmdScan)
    887   1.9  takemura 	    printf("CmdScan");
    888   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_IntervalNextScan)
    889   1.9  takemura 	    printf("IntervalNextScan");
    890   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_PenDataScan)
    891   1.9  takemura 	    printf("PenDataScan");
    892   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_WaitPenTouch)
    893   1.9  takemura 	    printf("WaitPenTouch");
    894   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_RFU)
    895   1.9  takemura 	    printf("???");
    896   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_ADPortScan)
    897   1.9  takemura 	    printf("ADPortScan");
    898   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_Standby)
    899   1.9  takemura 	    printf("Standby");
    900   1.1  takemura 	if ((cnt & PIUCNT_PADSTATE_MASK) == PIUCNT_PADSTATE_Disable)
    901   1.9  takemura 	    printf("Disable");
    902   1.1  takemura 	if (cnt & PIUCNT_PADATSTOP)
    903   1.9  takemura 	    printf(" AutoStop");
    904   1.1  takemura 	if (cnt & PIUCNT_PADATSTART)
    905   1.9  takemura 	    printf(" AutoStart");
    906   1.1  takemura 	if (cnt & PIUCNT_PADSCANSTOP)
    907   1.9  takemura 	    printf(" Stop");
    908   1.1  takemura 	if (cnt & PIUCNT_PADSCANSTART)
    909   1.9  takemura 	    printf(" Start");
    910   1.1  takemura 	if (cnt & PIUCNT_PADSCANTYPE)
    911   1.9  takemura 	    printf(" ScanPressure");
    912   1.1  takemura 	if ((cnt & PIUCNT_PIUMODE_MASK) == PIUCNT_PIUMODE_ADCONVERTER)
    913   1.9  takemura 	    printf(" A/D");
    914   1.1  takemura 	if ((cnt & PIUCNT_PIUMODE_MASK) == PIUCNT_PIUMODE_COORDINATE)
    915   1.9  takemura 	    printf(" Coordinate");
    916   1.1  takemura 	if (cnt & PIUCNT_PIUSEQEN)
    917   1.9  takemura 	    printf(" SeqEn");
    918   1.1  takemura 	if ((cnt & PIUCNT_PIUPWR) == 0)
    919   1.9  takemura 	    printf(" PowerOff");
    920   1.1  takemura 	if ((cnt & PIUCNT_PADRST) == 0)
    921   1.9  takemura 	    printf(" Reset");
    922   1.1  takemura 	printf("\n");
    923   1.1  takemura }
    924   1.1  takemura #endif
    925