Home | History | Annotate | Line # | Download | only in vr
vrc4172pwm.c revision 1.11
      1  1.11  sato /*	$Id: vrc4172pwm.c,v 1.11 2001/03/24 15:53:37 sato Exp $	*/
      2   1.1  sato 
      3   1.1  sato /*
      4   1.8  sato  * Copyright (c) 2000,2001 SATO Kazumi. All rights reserved.
      5   1.1  sato  *
      6   1.1  sato  * Redistribution and use in source and binary forms, with or without
      7   1.1  sato  * modification, are permitted provided that the following conditions
      8   1.1  sato  * are met:
      9   1.1  sato  * 1. Redistributions of source code must retain the above copyright
     10   1.1  sato  *    notice, this list of conditions and the following disclaimer.
     11   1.1  sato  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1  sato  *    notice, this list of conditions and the following disclaimer in the
     13   1.1  sato  *    documentation and/or other materials provided with the distribution.
     14   1.1  sato  *
     15   1.1  sato  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     16   1.1  sato  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     17   1.1  sato  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     18   1.1  sato  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     19   1.1  sato  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     20   1.1  sato  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     21   1.1  sato  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22   1.1  sato  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     23   1.1  sato  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     24   1.1  sato  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     25   1.1  sato  * SUCH DAMAGE.
     26   1.1  sato  */
     27   1.1  sato 
     28   1.1  sato #include <sys/param.h>
     29   1.1  sato #include <sys/systm.h>
     30   1.1  sato #include <sys/device.h>
     31   1.1  sato #include <sys/reboot.h>
     32   1.1  sato 
     33   1.1  sato #include <machine/bus.h>
     34   1.1  sato #include <machine/config_hook.h>
     35   1.1  sato #include <machine/platid.h>
     36   1.3  sato #include <machine/platid_mask.h>
     37   1.1  sato 
     38   1.3  sato #include <hpcmips/vr/vr.h>
     39   1.3  sato #include <hpcmips/vr/vripvar.h>
     40   1.1  sato #include <hpcmips/vr/vrc4172pwmvar.h>
     41   1.1  sato #include <hpcmips/vr/vrc4172pwmreg.h>
     42   1.1  sato 
     43   1.3  sato #include "locators.h"
     44   1.1  sato 
     45   1.1  sato #ifdef VRC2PWMDEBUG
     46   1.1  sato #ifndef VRC2PWMDEBUG_CONF
     47   1.1  sato #define VRC2PWMDEBUG_CONF 0
     48   1.1  sato #endif /* VRC2PWMDEBUG_CONF */
     49   1.1  sato int vrc4172pwmdebug = VRC2PWMDEBUG_CONF;
     50   1.1  sato #define DPRINTF(arg) if (vrc4172pwmdebug) printf arg;
     51   1.1  sato #define VPRINTF(arg) if (bootverbose||vrc4172pwmdebug) printf arg;
     52   1.3  sato #define VDUMPREG(arg) if (bootverbose||vrc4172pwmdebug) vrc4172pwm_dumpreg(arg);
     53   1.1  sato #else /* VRC2PWMDEBUG */
     54   1.1  sato #define DPRINTF(arg)
     55   1.1  sato #define VPRINTF(arg) if (bootverbose) printf arg;
     56   1.3  sato #define VDUMPREG(arg) if (bootverbose) vrc4172pwm_dumpreg(arg);
     57   1.1  sato #endif /* VRC2PWMDEBUG */
     58   1.1  sato 
     59   1.3  sato static int vrc4172pwmprobe __P((struct device *, struct cfdata *, void *));
     60   1.1  sato static void vrc4172pwmattach __P((struct device *, struct device *, void *));
     61   1.1  sato 
     62   1.1  sato static void vrc4172pwm_write __P((struct vrc4172pwm_softc *, int, unsigned short));
     63   1.1  sato static unsigned short vrc4172pwm_read __P((struct vrc4172pwm_softc *, int));
     64   1.1  sato 
     65   1.1  sato static int vrc4172pwm_event __P((void *, int, long, void *));
     66   1.1  sato static int vrc4172pwm_pmevent __P((void *, int, long, void *));
     67   1.1  sato 
     68   1.1  sato static void vrc4172pwm_dumpreg __P((struct vrc4172pwm_softc *));
     69   1.3  sato static void vrc4172pwm_init_brightness __P((struct vrc4172pwm_softc *));
     70   1.3  sato void vrc4172pwm_light __P((struct vrc4172pwm_softc *, int));
     71   1.3  sato int vrc4172pwm_get_light __P((struct vrc4172pwm_softc *));
     72   1.3  sato int vrc4172pwm_get_brightness __P((struct vrc4172pwm_softc *));
     73   1.3  sato void vrc4172pwm_set_brightness __P((struct vrc4172pwm_softc *, int));
     74   1.3  sato int vrc4172pwm_rawduty2brightness __P((struct vrc4172pwm_softc *));
     75   1.3  sato int vrc4172pwm_brightness2rawduty __P((struct vrc4172pwm_softc *));
     76   1.3  sato struct vrc4172pwm_param * vrc4172pwm_getparam __P((void));
     77   1.3  sato void vrc4172pwm_dumpreg __P((struct vrc4172pwm_softc *));
     78   1.1  sato 
     79   1.3  sato struct cfattach vrc4172pwm_ca = {
     80   1.3  sato 	sizeof(struct vrc4172pwm_softc), vrc4172pwmprobe, vrc4172pwmattach
     81   1.3  sato };
     82   1.3  sato 
     83   1.3  sato /*
     84   1.3  sato  * platform related parameters
     85   1.3  sato  */
     86  1.11  sato struct vrc4172pwm_param vrc4172pwm_mcr520_param = {
     87  1.11  sato 	1, /* probe broken */
     88  1.11  sato 	8, /* levels */
     89  1.11  sato 	{ 0x16, 0x1f, 0x24, 0x2a, 0x2f, 0x34, 0x3a, 0x3f }
     90  1.11  sato };
     91  1.11  sato 
     92   1.3  sato struct vrc4172pwm_param vrc4172pwm_mcr530_param = {
     93   1.8  sato 	0,
     94  1.11  sato 	8, /* levels */
     95   1.3  sato 	{ 0x16, 0x1b, 0x20, 0x25, 0x2a, 0x30, 0x37, 0x3f }
     96   1.3  sato };
     97   1.1  sato 
     98   1.8  sato struct vrc4172pwm_param vrc4172pwm_mcr700_param = {
     99   1.8  sato 	1, /* probe broken */
    100  1.11  sato 	8, /* levels */
    101   1.8  sato 	{ 0x12, 0x15, 0x18, 0x1d, 0x24, 0x2d, 0x38, 0x3f }
    102   1.8  sato };
    103   1.8  sato 
    104   1.9  sato struct vrc4172pwm_param vrc4172pwm_sigmarion_param = {
    105   1.9  sato 	0,
    106  1.11  sato 	8, /* levels */
    107   1.9  sato 	{ 0xe, 0x13, 0x18, 0x1c, 0x23, 0x29, 0x32, 0x3f }
    108   1.9  sato };
    109   1.9  sato 
    110   1.9  sato 
    111   1.4  sato struct platid_data vrc4172pwm_platid_param_table[] = {
    112   1.5  sato 	{ &platid_mask_MACH_NEC_MCR_430,
    113   1.5  sato 		&vrc4172pwm_mcr530_param},
    114  1.11  sato 	{ &platid_mask_MACH_NEC_MCR_510,
    115  1.11  sato 		&vrc4172pwm_mcr520_param},
    116  1.11  sato 	{ &platid_mask_MACH_NEC_MCR_520,
    117  1.11  sato 		&vrc4172pwm_mcr520_param},
    118  1.11  sato 	{ &platid_mask_MACH_NEC_MCR_520A,
    119  1.11  sato 		&vrc4172pwm_mcr520_param},
    120   1.5  sato 	{ &platid_mask_MACH_NEC_MCR_530,
    121   1.5  sato 		&vrc4172pwm_mcr530_param},
    122   1.3  sato 	{ &platid_mask_MACH_NEC_MCR_530A,
    123   1.3  sato 		&vrc4172pwm_mcr530_param},
    124   1.3  sato 	{ &platid_mask_MACH_NEC_MCR_SIGMARION,
    125   1.9  sato 		&vrc4172pwm_sigmarion_param},
    126   1.8  sato 	{ &platid_mask_MACH_NEC_MCR_700,
    127   1.8  sato 		&vrc4172pwm_mcr700_param},
    128   1.8  sato 	{ &platid_mask_MACH_NEC_MCR_700A,
    129   1.8  sato 		&vrc4172pwm_mcr700_param},
    130   1.3  sato 	{ NULL, NULL}
    131   1.1  sato };
    132   1.1  sato 
    133   1.1  sato struct vrc4172pwm_softc *this_pwm;
    134   1.1  sato 
    135   1.1  sato static inline void
    136   1.1  sato vrc4172pwm_write(sc, port, val)
    137   1.1  sato 	struct vrc4172pwm_softc *sc;
    138   1.1  sato 	int port;
    139   1.1  sato 	unsigned short val;
    140   1.1  sato {
    141   1.1  sato 	bus_space_write_2(sc->sc_iot, sc->sc_ioh, port, val);
    142   1.1  sato }
    143   1.1  sato 
    144   1.1  sato static inline unsigned short
    145   1.1  sato vrc4172pwm_read(sc, port)
    146   1.1  sato 	struct vrc4172pwm_softc *sc;
    147   1.1  sato 	int port;
    148   1.1  sato {
    149   1.1  sato 	return bus_space_read_2(sc->sc_iot, sc->sc_ioh, port);
    150   1.1  sato }
    151   1.1  sato 
    152   1.1  sato static int
    153   1.3  sato vrc4172pwmprobe(parent, cf, aux)
    154   1.1  sato 	struct device *parent;
    155   1.1  sato 	struct cfdata *cf;
    156   1.1  sato 	void *aux;
    157   1.1  sato {
    158   1.3  sato 	platid_mask_t mask;
    159   1.3  sato 	struct vrip_attach_args *va = aux;
    160   1.3  sato 	bus_space_handle_t ioh;
    161   1.8  sato #ifdef VRC4172PWM_BROKEN_PROBE
    162   1.8  sato 	int probe = 0;
    163   1.8  sato #else /* VRC4172PWM_BROKEN_PROBE */
    164   1.8  sato 	int probe = 1;
    165   1.8  sato #endif /* VRC4172PWM_BROKEN_PROBE */
    166   1.3  sato 	int data;
    167   1.8  sato 	int data2;
    168   1.8  sato 	struct vrc4172pwm_param *param;
    169   1.3  sato 	int ret = 0;
    170   1.3  sato 
    171   1.3  sato 	if (va->va_addr == VRIPCF_ADDR_DEFAULT)
    172   1.3  sato 		return 0;
    173   1.3  sato 
    174   1.5  sato 	if (cf->cf_loc[VRIPCF_PLATFORM] == 0)
    175   1.3  sato 		return 0;
    176   1.5  sato 	if (cf->cf_loc[VRIPCF_PLATFORM] != -1) { /* if specify */
    177   1.5  sato 		mask = PLATID_DEREF(cf->cf_loc[VRIPCF_PLATFORM]);
    178   1.8  sato 		VPRINTF(("vrc4172pwmprobe: check platid\n"));
    179   1.3  sato 		if (platid_match(&platid, &mask) == 0)
    180   1.3  sato 			return 0;
    181   1.8  sato 		param = vrc4172pwm_getparam();
    182   1.8  sato 		if (param != NULL && param->brokenprobe)
    183   1.8  sato 			probe = 0;
    184   1.3  sato 	}
    185   1.8  sato 	if (probe) {
    186   1.8  sato 		if (bus_space_map(va->va_iot, va->va_addr, va->va_size, 0, &ioh)) {
    187   1.8  sato 			return 0;
    188   1.8  sato 		}
    189   1.8  sato 		data =  bus_space_read_2(va->va_iot, ioh, VRC2_PWM_LCDDUTYEN);
    190   1.8  sato 		bus_space_write_2(va->va_iot, ioh, VRC2_PWM_LCDDUTYEN, 0xff);
    191   1.8  sato 		if ((data2 = bus_space_read_2(va->va_iot, ioh, VRC2_PWM_LCDDUTYEN))
    192   1.8  sato 			== VRC2_PWM_LCDEN_MASK) {
    193   1.8  sato 			VPRINTF(("vrc4172pwmprobe: VRC2_PWM_LCDDUTYEN found\n"));
    194   1.8  sato 			ret = 1;
    195   1.8  sato 		} else {
    196   1.8  sato 			VPRINTF(("vrc4172pwmprobe: VRC2_PWM_LCDDUTYEN not found org=%x, data=%x!=%x\n", data, data2, VRC2_PWM_LCDEN_MASK));
    197   1.8  sato 		}
    198   1.8  sato 		bus_space_write_2(va->va_iot, ioh, VRC2_PWM_LCDDUTYEN, data);
    199   1.8  sato 		bus_space_unmap(va->va_iot, ioh, va->va_size);
    200   1.8  sato 	} else
    201   1.3  sato 		ret = 1;
    202   1.8  sato 	VPRINTF(("vrc4172pwmprobe: return %d\n", ret));
    203   1.3  sato 	return ret;
    204   1.1  sato }
    205   1.1  sato 
    206   1.1  sato static void
    207   1.1  sato vrc4172pwmattach(parent, self, aux)
    208   1.1  sato 	struct device *parent;
    209   1.1  sato 	struct device *self;
    210   1.1  sato 	void *aux;
    211   1.1  sato {
    212   1.1  sato 	struct vrc4172pwm_softc *sc = (struct vrc4172pwm_softc *)self;
    213   1.1  sato 	struct vrip_attach_args *va = aux;
    214   1.1  sato 
    215   1.1  sato 	bus_space_tag_t iot = va->va_iot;
    216   1.1  sato 	bus_space_handle_t ioh;
    217   1.1  sato 
    218   1.1  sato 	if (bus_space_map(iot, va->va_addr, 1, 0, &ioh)) {
    219   1.1  sato 		printf(": can't map bus space\n");
    220   1.1  sato 		return;
    221   1.1  sato 	}
    222   1.1  sato 
    223   1.1  sato 	sc->sc_iot = iot;
    224   1.1  sato 	sc->sc_ioh = ioh;
    225   1.1  sato 
    226   1.1  sato 	printf("\n");
    227   1.1  sato 
    228   1.1  sato 	VDUMPREG(sc);
    229   1.1  sato 	/* basic setup */
    230   1.1  sato 	sc->sc_pmhook = config_hook(CONFIG_HOOK_PMEVENT,
    231   1.3  sato 					CONFIG_HOOK_PMEVENT_HARDPOWER,
    232   1.1  sato 					CONFIG_HOOK_SHARE,
    233   1.1  sato 					vrc4172pwm_pmevent, sc);
    234   1.3  sato 	sc->sc_lcdhook = config_hook(CONFIG_HOOK_POWERCONTROL,
    235   1.3  sato 					CONFIG_HOOK_POWERCONTROL_LCDLIGHT,
    236   1.3  sato 					CONFIG_HOOK_SHARE,
    237   1.3  sato 					vrc4172pwm_event, sc);
    238   1.3  sato 	sc->sc_getlcdhook = config_hook(CONFIG_HOOK_GET,
    239   1.3  sato 					CONFIG_HOOK_POWER_LCDLIGHT,
    240   1.1  sato 					CONFIG_HOOK_SHARE,
    241   1.1  sato 					vrc4172pwm_event, sc);
    242   1.1  sato 	sc->sc_sethook = config_hook(CONFIG_HOOK_SET,
    243   1.3  sato 					CONFIG_HOOK_BRIGHTNESS,
    244   1.1  sato 					CONFIG_HOOK_SHARE,
    245   1.1  sato 					vrc4172pwm_event, sc);
    246   1.1  sato 	sc->sc_gethook = config_hook(CONFIG_HOOK_GET,
    247   1.3  sato 					CONFIG_HOOK_BRIGHTNESS,
    248   1.3  sato 					CONFIG_HOOK_SHARE,
    249   1.3  sato 					vrc4172pwm_event, sc);
    250   1.3  sato 	sc->sc_getmaxhook = config_hook(CONFIG_HOOK_GET,
    251   1.3  sato 					CONFIG_HOOK_BRIGHTNESS_MAX,
    252   1.1  sato 					CONFIG_HOOK_SHARE,
    253   1.1  sato 					vrc4172pwm_event, sc);
    254   1.1  sato 
    255   1.3  sato 	vrc4172pwm_init_brightness(sc);
    256  1.11  sato 	if (sc->sc_param == NULL)
    257  1.11  sato 		printf("vrc4172pwm: NO parameter found. DISABLE pwm control\n");;
    258   1.1  sato 	this_pwm = sc;
    259   1.1  sato }
    260   1.1  sato 
    261   1.3  sato /*
    262   1.3  sato  * get platform related brightness paramerters
    263   1.3  sato  */
    264   1.3  sato struct vrc4172pwm_param *
    265   1.3  sato vrc4172pwm_getparam()
    266   1.3  sato {
    267   1.4  sato 	struct platid_data *p;
    268   1.3  sato 
    269   1.4  sato 	if ((p = platid_search(&platid, vrc4172pwm_platid_param_table)))
    270   1.4  sato 		return p->data;
    271   1.3  sato 	return NULL;
    272   1.3  sato }
    273   1.3  sato 
    274   1.2  sato /*
    275   1.2  sato  *
    276   1.2  sato  * Initialize PWM brightness parameters
    277   1.2  sato  *
    278   1.2  sato  */
    279   1.2  sato void
    280   1.2  sato vrc4172pwm_init_brightness(sc)
    281   1.3  sato struct vrc4172pwm_softc *sc;
    282   1.2  sato {
    283   1.3  sato 	sc->sc_param = vrc4172pwm_getparam();
    284   1.2  sato 	sc->sc_raw_freq = vrc4172pwm_read(sc, VRC2_PWM_LCDFREQ);
    285   1.2  sato 	sc->sc_raw_duty = vrc4172pwm_read(sc, VRC2_PWM_LCDDUTY);
    286   1.3  sato 	sc->sc_brightness = vrc4172pwm_rawduty2brightness(sc);
    287  1.10  sato 	sc->sc_light = vrc4172pwm_get_light(sc);
    288  1.10  sato 	DPRINTF(("vrc4172pwm_init_brightness: param=0x%x, freq=0x%x, duty=0x%x, blightness=%d light=%d\n", (int)sc->sc_param, sc->sc_raw_freq, sc->sc_raw_duty, sc->sc_brightness, sc->sc_light));
    289   1.3  sato }
    290   1.3  sato /*
    291   1.3  sato  * backlight on/off
    292   1.3  sato  */
    293   1.3  sato void
    294   1.3  sato vrc4172pwm_light(sc, on)
    295   1.3  sato 	struct vrc4172pwm_softc *sc;
    296   1.3  sato 	int on;
    297   1.3  sato {
    298   1.6  sato 	int brightness;
    299   1.6  sato 
    300   1.5  sato 	DPRINTF(("vrc4172pwm_light: %s\n", on?"ON":"OFF"));
    301   1.6  sato 	if (on) {
    302   1.6  sato 		vrc4172pwm_set_brightness(sc, sc->sc_brightness);
    303   1.3  sato 		vrc4172pwm_write(sc, VRC2_PWM_LCDDUTYEN, VRC2_PWM_LCD_EN);
    304   1.6  sato 	} else {
    305   1.6  sato 		brightness = sc->sc_brightness; /* save */
    306   1.6  sato 		vrc4172pwm_set_brightness(sc, 0);
    307   1.6  sato 			/* need this, break sc->sc_brightness */
    308   1.6  sato 		sc->sc_brightness = brightness; /* resume */
    309   1.3  sato 		vrc4172pwm_write(sc, VRC2_PWM_LCDDUTYEN, VRC2_PWM_LCD_DIS);
    310   1.6  sato 	}
    311  1.10  sato 	sc->sc_light = on;
    312   1.3  sato }
    313   1.3  sato 
    314   1.3  sato /*
    315   1.3  sato  * get backlight on/off
    316   1.3  sato  */
    317  1.10  sato int
    318   1.3  sato vrc4172pwm_get_light(sc)
    319   1.3  sato 	struct vrc4172pwm_softc *sc;
    320   1.3  sato {
    321  1.10  sato 	return VRC2_PWM_LCDEN_MASK&vrc4172pwm_read(sc, VRC2_PWM_LCDDUTYEN);
    322   1.3  sato }
    323   1.3  sato 
    324   1.3  sato /*
    325   1.3  sato  * set brightness
    326   1.3  sato  */
    327   1.3  sato void
    328   1.3  sato vrc4172pwm_set_brightness(sc, val)
    329   1.3  sato 	struct vrc4172pwm_softc *sc;
    330   1.3  sato 	int val;
    331   1.3  sato {
    332   1.3  sato 	int raw;
    333   1.3  sato 
    334   1.3  sato 	if (sc->sc_param == NULL)
    335   1.3  sato 		return;
    336   1.5  sato 	if (val < 0)
    337   1.5  sato 		val = 0;
    338   1.3  sato 	if (val > VRC2_PWM_MAX_BRIGHTNESS)
    339   1.3  sato 		val = VRC2_PWM_MAX_BRIGHTNESS;
    340   1.3  sato 	if (val > sc->sc_param->n_brightness)
    341   1.3  sato 		val = sc->sc_param->n_brightness;
    342   1.3  sato 	sc->sc_brightness = val;
    343   1.3  sato 	raw = vrc4172pwm_brightness2rawduty(sc);
    344   1.3  sato 	vrc4172pwm_write(sc, VRC2_PWM_LCDDUTY, raw);
    345   1.5  sato 	DPRINTF(("vrc4172pwm_set_brightness: val=%d raw=0x%x\n", val, raw));
    346   1.3  sato }
    347   1.3  sato 
    348   1.3  sato /*
    349   1.3  sato  * get brightness
    350   1.3  sato  */
    351   1.3  sato int
    352   1.3  sato vrc4172pwm_get_brightness(sc)
    353   1.3  sato 	struct vrc4172pwm_softc *sc;
    354   1.3  sato {
    355   1.3  sato 	if (sc->sc_param == NULL)
    356   1.3  sato 		return VRC2_PWM_MAX_BRIGHTNESS;
    357   1.3  sato 	return sc->sc_brightness;
    358   1.3  sato }
    359   1.3  sato 
    360   1.3  sato /*
    361   1.3  sato  * PWM duty to brightness
    362   1.3  sato  */
    363   1.3  sato int
    364   1.3  sato vrc4172pwm_rawduty2brightness(sc)
    365   1.3  sato struct vrc4172pwm_softc *sc;
    366   1.3  sato {
    367   1.3  sato 	int i;
    368   1.3  sato 
    369   1.3  sato 	if (sc->sc_param == NULL)
    370   1.5  sato 		return VRC2_PWM_MAX_BRIGHTNESS;
    371   1.3  sato 	for (i = 0; i < sc->sc_param->n_brightness; i++) {
    372   1.8  sato 		if (sc->sc_raw_duty <= sc->sc_param->bvalues[i])
    373   1.3  sato 			break;
    374   1.3  sato 	}
    375   1.3  sato 	if (i >= sc->sc_param->n_brightness-1)
    376   1.3  sato 		return sc->sc_param->n_brightness-1;
    377   1.3  sato 	else
    378   1.3  sato 		return i;
    379   1.3  sato 
    380   1.3  sato }
    381   1.3  sato 
    382   1.3  sato /*
    383   1.3  sato  * brightness to raw duty
    384   1.3  sato  */
    385   1.3  sato int
    386   1.3  sato vrc4172pwm_brightness2rawduty(sc)
    387   1.3  sato struct vrc4172pwm_softc *sc;
    388   1.3  sato {
    389   1.3  sato 	if (sc->sc_param == NULL)
    390   1.5  sato 		return VRC2_PWM_LCDDUTY_MASK;
    391   1.8  sato 	return sc->sc_param->bvalues[sc->sc_brightness];
    392   1.2  sato }
    393   1.1  sato 
    394   1.3  sato 
    395   1.1  sato /*
    396   1.1  sato  * PWM config hook events
    397   1.1  sato  *
    398   1.1  sato  */
    399   1.1  sato int
    400   1.1  sato vrc4172pwm_event(ctx, type, id, msg)
    401   1.1  sato 	void *ctx;
    402   1.1  sato         int type;
    403   1.1  sato         long id;
    404   1.1  sato         void *msg;
    405   1.1  sato {
    406   1.1  sato 	struct vrc4172pwm_softc *sc = (struct vrc4172pwm_softc *)ctx;
    407   1.1  sato         int why =(int)msg;
    408   1.1  sato 
    409   1.1  sato 	if (type == CONFIG_HOOK_POWERCONTROL
    410   1.1  sato 		&& id == CONFIG_HOOK_POWERCONTROL_LCDLIGHT) {
    411   1.7  sato 		DPRINTF(("vrc4172pwm:POWERCONTROL_LCDLIGHT: %d\n", why));
    412   1.2  sato 		vrc4172pwm_light(sc, why);
    413   1.1  sato 	} else if (type == CONFIG_HOOK_GET
    414   1.3  sato 		&& id == CONFIG_HOOK_POWER_LCDLIGHT) {
    415   1.3  sato 		*(int *)msg = vrc4172pwm_get_light(sc);
    416   1.7  sato 		DPRINTF(("vrc4172pwm:GET LCDLIGHT: %d\n", *(int *)msg));
    417   1.3  sato 	} else if (type == CONFIG_HOOK_GET
    418   1.3  sato 		&& id == CONFIG_HOOK_BRIGHTNESS) {
    419   1.3  sato 		*(int *)msg = vrc4172pwm_get_brightness(sc);
    420   1.7  sato 		DPRINTF(("vrc4172pwm:GET BRIGHTNESS: %d\n", *(int *)msg));
    421   1.3  sato 	} else if (type == CONFIG_HOOK_GET
    422   1.3  sato 		&& id == CONFIG_HOOK_BRIGHTNESS_MAX) {
    423   1.3  sato 		if (sc->sc_param == NULL)
    424   1.3  sato 			*(int *)msg = VRC2_PWM_MAX_BRIGHTNESS;
    425   1.3  sato 		else
    426   1.3  sato 			*(int *)msg = sc->sc_param->n_brightness-1;
    427   1.7  sato 		DPRINTF(("vrc4172pwm:GET MAX BRIGHTNESS: %d\n", *(int *)msg));
    428   1.1  sato 	} else if (type == CONFIG_HOOK_SET
    429   1.3  sato 		&& id == CONFIG_HOOK_BRIGHTNESS) {
    430   1.7  sato 		DPRINTF(("vrc4172pwm:SET BRIGHTNESS: %d\n", *(int *)msg));
    431   1.3  sato 		vrc4172pwm_set_brightness(sc, *(int *)msg);
    432   1.6  sato 	} else {
    433   1.7  sato 		DPRINTF(("vrc4172pwm:unknown event: type %d id %ld\n", type, id));
    434   1.1  sato 		return 1;
    435   1.6  sato 	}
    436   1.1  sato 
    437   1.1  sato         return (0);
    438   1.1  sato }
    439   1.1  sato 
    440   1.1  sato 
    441   1.1  sato /*
    442   1.1  sato  * PWM config hook events
    443   1.1  sato  *
    444   1.1  sato  */
    445   1.1  sato int
    446   1.1  sato vrc4172pwm_pmevent(ctx, type, id, msg)
    447   1.1  sato 	void *ctx;
    448   1.1  sato         int type;
    449   1.1  sato         long id;
    450   1.1  sato         void *msg;
    451   1.1  sato {
    452   1.1  sato 	struct vrc4172pwm_softc *sc = (struct vrc4172pwm_softc *)ctx;
    453   1.1  sato         int why =(int)msg;
    454   1.1  sato 
    455   1.1  sato 	if (type != CONFIG_HOOK_PMEVENT)
    456   1.1  sato 		return 1;
    457   1.1  sato 
    458   1.1  sato         switch (why) {
    459   1.3  sato 	case PWR_STANDBY:
    460   1.2  sato 	case PWR_SUSPEND:
    461  1.10  sato 		sc->sc_light_save = sc->sc_light;
    462   1.2  sato 		vrc4172pwm_light(sc, 0);
    463   1.2  sato 		break;
    464   1.2  sato 	case PWR_RESUME:
    465  1.10  sato 		vrc4172pwm_light(sc, sc->sc_light_save);
    466   1.2  sato 		break;
    467   1.2  sato 	default:
    468   1.2  sato 		return 1;
    469   1.1  sato         }
    470   1.2  sato 
    471   1.1  sato         return (0);
    472   1.2  sato }
    473   1.2  sato 
    474   1.2  sato /*
    475   1.1  sato  * dump pwm registers
    476   1.1  sato  */
    477   1.1  sato void
    478   1.1  sato vrc4172pwm_dumpreg(sc)
    479   1.1  sato 	struct vrc4172pwm_softc *sc;
    480   1.1  sato {
    481   1.1  sato 	int en, freq, duty;
    482   1.1  sato 
    483   1.1  sato 	en = vrc4172pwm_read(sc, VRC2_PWM_LCDDUTYEN);
    484   1.1  sato 	freq = vrc4172pwm_read(sc, VRC2_PWM_LCDFREQ);
    485   1.1  sato 	duty = vrc4172pwm_read(sc, VRC2_PWM_LCDDUTY);
    486   1.1  sato 
    487   1.5  sato 	printf("vrc4172pwm: dumpreg: lightenable = %d, freq = 0x%x, duty = 0x%x\n",
    488   1.1  sato 		en, freq, duty);
    489   1.1  sato }
    490   1.2  sato 
    491   1.1  sato /* end */
    492