Home | History | Annotate | Line # | Download | only in dev
ipaq_lcd.c revision 1.4
      1  1.4   thorpej /*	$NetBSD: ipaq_lcd.c,v 1.4 2001/11/22 18:34:35 thorpej Exp $	*/
      2  1.1    ichiro #define IPAQ_LCD_DEBUG
      3  1.1    ichiro 
      4  1.1    ichiro /*
      5  1.1    ichiro  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      6  1.1    ichiro  * All rights reserved.
      7  1.1    ichiro  *
      8  1.1    ichiro  * This code is derived from software contributed to The NetBSD Foundation
      9  1.1    ichiro  * by Ichiro FUKUHARA (ichiro (at) ichiro.org).
     10  1.1    ichiro  *
     11  1.1    ichiro  * Redistribution and use in source and binary forms, with or without
     12  1.1    ichiro  * modification, are permitted provided that the following conditions
     13  1.1    ichiro  * are met:
     14  1.1    ichiro  * 1. Redistributions of source code must retain the above copyright
     15  1.1    ichiro  *    notice, this list of conditions and the following disclaimer.
     16  1.1    ichiro  * 2. Redistributions in binary form must reproduce the above copyright
     17  1.1    ichiro  *    notice, this list of conditions and the following disclaimer in the
     18  1.1    ichiro  *    documentation and/or other materials provided with the distribution.
     19  1.1    ichiro  * 3. All advertising materials mentioning features or use of this software
     20  1.1    ichiro  *    must display the following acknowledgement:
     21  1.1    ichiro  *	This product includes software developed by the NetBSD
     22  1.1    ichiro  *	Foundation, Inc. and its contributors.
     23  1.1    ichiro  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24  1.1    ichiro  *    contributors may be used to endorse or promote products derived
     25  1.1    ichiro  *    from this software without specific prior written permission.
     26  1.1    ichiro  *
     27  1.1    ichiro  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28  1.1    ichiro  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29  1.1    ichiro  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30  1.1    ichiro  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31  1.1    ichiro  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32  1.1    ichiro  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33  1.1    ichiro  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34  1.1    ichiro  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35  1.1    ichiro  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36  1.1    ichiro  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37  1.1    ichiro  * POSSIBILITY OF SUCH DAMAGE.
     38  1.1    ichiro  */
     39  1.1    ichiro 
     40  1.1    ichiro #include <sys/types.h>
     41  1.1    ichiro #include <sys/param.h>
     42  1.1    ichiro #include <sys/systm.h>
     43  1.1    ichiro #include <sys/kernel.h>
     44  1.1    ichiro #include <sys/time.h>
     45  1.1    ichiro #include <sys/device.h>
     46  1.1    ichiro 
     47  1.1    ichiro #include <uvm/uvm_extern.h>
     48  1.1    ichiro 
     49  1.1    ichiro #include <dev/wscons/wsconsio.h>
     50  1.1    ichiro 
     51  1.1    ichiro #include <machine/bootinfo.h>
     52  1.1    ichiro #include <machine/bus.h>
     53  1.1    ichiro #include <machine/irqhandler.h>
     54  1.1    ichiro #include <machine/cpufunc.h>
     55  1.4   thorpej #include <arm/arm32/katelib.h>
     56  1.1    ichiro 
     57  1.1    ichiro #include <hpcarm/sa11x0/sa11x0_reg.h>
     58  1.1    ichiro #include <hpcarm/sa11x0/sa11x0_gpioreg.h>
     59  1.1    ichiro 
     60  1.1    ichiro #include <hpcarm/dev/ipaq_gpioreg.h>
     61  1.1    ichiro #include <hpcarm/dev/ipaq_saipvar.h>
     62  1.1    ichiro #include <hpcarm/dev/ipaq_lcdreg.h>
     63  1.1    ichiro #include <hpcarm/dev/ipaq_lcdvar.h>
     64  1.1    ichiro 
     65  1.1    ichiro #ifdef IPAQ_LCD_DEBUG
     66  1.1    ichiro #define DPRINTFN(n, x)  if (ipaqlcddebug > (n)) printf x
     67  1.1    ichiro int     ipaqlcddebug = 0xff;
     68  1.1    ichiro #else
     69  1.1    ichiro #define DPRINTFN(n, x)
     70  1.1    ichiro #endif
     71  1.1    ichiro #define DPRINTF(x) DPRINTFN(0, x)
     72  1.1    ichiro 
     73  1.1    ichiro static int	ipaqlcd_match(struct device *, struct cfdata *, void *);
     74  1.1    ichiro static void	ipaqlcd_attach(struct device *, struct device *, void *);
     75  1.1    ichiro static void	ipaqlcd_init(struct ipaqlcd_softc *);
     76  1.1    ichiro static int	ipaqlcd_fbinit(struct ipaqlcd_softc *);
     77  1.1    ichiro static int	ipaqlcd_ioctl(void *, u_long, caddr_t, int, struct proc *);
     78  1.1    ichiro static paddr_t	ipaqlcd_mmap(void *, off_t offset, int);
     79  1.1    ichiro 
     80  1.1    ichiro #if defined __mips__ || defined __sh__ || defined __arm__
     81  1.1    ichiro #define __BTOP(x)		((paddr_t)(x) >> PGSHIFT)
     82  1.1    ichiro #define __PTOB(x)		((paddr_t)(x) << PGSHIFT)
     83  1.1    ichiro #else
     84  1.1    ichiro #error "define btop, ptob."
     85  1.1    ichiro #endif
     86  1.1    ichiro 
     87  1.1    ichiro struct cfattach ipaqlcd_ca = {
     88  1.1    ichiro 	sizeof(struct ipaqlcd_softc), ipaqlcd_match, ipaqlcd_attach
     89  1.1    ichiro };
     90  1.1    ichiro 
     91  1.1    ichiro struct hpcfb_accessops ipaqlcd_ha = {
     92  1.1    ichiro 	ipaqlcd_ioctl, ipaqlcd_mmap
     93  1.1    ichiro };
     94  1.1    ichiro static int console_flag = 0;
     95  1.1    ichiro 
     96  1.1    ichiro static int
     97  1.1    ichiro ipaqlcd_match(parent, match, aux)
     98  1.1    ichiro 	struct device *parent;
     99  1.1    ichiro 	struct cfdata *match;
    100  1.1    ichiro 	void *aux;
    101  1.1    ichiro {
    102  1.1    ichiro 	return (1);
    103  1.1    ichiro }
    104  1.1    ichiro 
    105  1.1    ichiro void
    106  1.1    ichiro ipaqlcd_attach(parent, self, aux)
    107  1.1    ichiro 	struct device *parent;
    108  1.1    ichiro 	struct device *self;
    109  1.1    ichiro 	void *aux;
    110  1.1    ichiro {
    111  1.1    ichiro 	struct ipaqlcd_softc *sc = (struct ipaqlcd_softc*)self;
    112  1.1    ichiro 	struct hpcfb_attach_args ha;
    113  1.1    ichiro 	struct ipaq_softc *psc = (struct ipaq_softc *)parent;
    114  1.1    ichiro 
    115  1.1    ichiro 	sc->sc_iot = psc->sc_iot;
    116  1.1    ichiro 	sc->sc_parent = (struct ipaq_softc *)parent;
    117  1.1    ichiro 
    118  1.1    ichiro 	ipaqlcd_init(sc);
    119  1.1    ichiro 	ipaqlcd_fbinit(sc);
    120  1.1    ichiro 
    121  1.1    ichiro 	printf("\n");
    122  1.1    ichiro 	printf("%s: iPAQ internal LCD controller\n",  sc->sc_dev.dv_xname);
    123  1.1    ichiro 
    124  1.1    ichiro 	DPRINTF(("framebuffer_baseaddr=%lx\n", (u_long)bootinfo->fb_addr));
    125  1.1    ichiro 
    126  1.1    ichiro         ha.ha_console = console_flag;
    127  1.1    ichiro         ha.ha_accessops = &ipaqlcd_ha;
    128  1.1    ichiro         ha.ha_accessctx = sc;
    129  1.1    ichiro         ha.ha_curfbconf = 0;
    130  1.1    ichiro         ha.ha_nfbconf = 1;
    131  1.1    ichiro         ha.ha_fbconflist = &sc->sc_fbconf;
    132  1.1    ichiro         ha.ha_curdspconf = 0;
    133  1.1    ichiro         ha.ha_ndspconf = 1;
    134  1.1    ichiro         ha.ha_dspconflist = &sc->sc_dspconf;
    135  1.1    ichiro 
    136  1.1    ichiro         config_found(&sc->sc_dev, &ha, hpcfbprint);
    137  1.1    ichiro }
    138  1.1    ichiro 
    139  1.1    ichiro void
    140  1.1    ichiro ipaqlcd_init(sc)
    141  1.1    ichiro 	struct ipaqlcd_softc *sc;
    142  1.1    ichiro {
    143  1.1    ichiro 	/* Initialization of Extended GPIO */
    144  1.2    ichiro 	sc->sc_parent->ipaq_egpio |= EGPIO_LCD_INIT;
    145  1.2    ichiro 	bus_space_write_2(sc->sc_iot, sc->sc_parent->sc_egpioh,
    146  1.2    ichiro 			  0, sc->sc_parent->ipaq_egpio);
    147  1.1    ichiro 
    148  1.1    ichiro 	if (bus_space_map(sc->sc_iot, SALCD_BASE, SALCD_NPORTS,
    149  1.1    ichiro 			  0, &sc->sc_ioh))
    150  1.1    ichiro                 panic("ipaqlcd_init:Cannot map registers\n");
    151  1.1    ichiro 
    152  1.1    ichiro 	(u_long)bootinfo->fb_addr =
    153  1.1    ichiro 		bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_BA1);
    154  1.1    ichiro 
    155  1.1    ichiro 	/*
    156  1.1    ichiro 	 * Initialize LCD Control Register 0 - 3
    157  1.1    ichiro 	 *  must initialize DMA Channel Base Address Register
    158  1.1    ichiro 	 *  before enabling LCD(LEN = 1)
    159  1.1    ichiro 	 */
    160  1.1    ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    161  1.1    ichiro 					SALCD_CR1, IPAQ_LCCR1);
    162  1.1    ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    163  1.1    ichiro 					SALCD_CR2, IPAQ_LCCR2);
    164  1.1    ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    165  1.1    ichiro 					SALCD_CR3, IPAQ_LCCR3);
    166  1.1    ichiro 	bus_space_write_4(sc->sc_iot, sc->sc_ioh,
    167  1.1    ichiro 					SALCD_CR0, IPAQ_LCCR0);
    168  1.1    ichiro 
    169  1.2    ichiro 	DPRINTF(("\n"
    170  1.2    ichiro 		 "DMA_BASE= %08x : DMA_CUR = %08x \n"
    171  1.1    ichiro 		 "LCCR0   = %08x : LCCR1   = %08x \n"
    172  1.1    ichiro 		 "LCCR2   = %08x : LCCR3   = %08x",
    173  1.1    ichiro 		bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_BA1),
    174  1.1    ichiro 		bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_CA1),
    175  1.1    ichiro 		bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_CR0),
    176  1.1    ichiro 	        bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_CR1),
    177  1.1    ichiro 		bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_CR2),
    178  1.1    ichiro 		bus_space_read_4(sc->sc_iot, sc->sc_ioh, SALCD_CR3)));
    179  1.1    ichiro 
    180  1.1    ichiro }
    181  1.1    ichiro 
    182  1.1    ichiro int
    183  1.1    ichiro ipaqlcd_fbinit(sc)
    184  1.1    ichiro 	struct ipaqlcd_softc *sc;
    185  1.1    ichiro {
    186  1.1    ichiro 	struct hpcfb_fbconf *fb;
    187  1.1    ichiro 
    188  1.1    ichiro 	fb = &sc->sc_fbconf;
    189  1.1    ichiro 
    190  1.1    ichiro 	/* Initialize fb */
    191  1.1    ichiro 	memset(fb, 0, sizeof(*fb));
    192  1.1    ichiro 
    193  1.1    ichiro 	fb->hf_conf_index	= 0;    /* configuration index */
    194  1.1    ichiro 	fb->hf_nconfs		= 1;
    195  1.1    ichiro 	strcpy(fb->hf_name, "built-in video");
    196  1.1    ichiro 	strcpy(fb->hf_conf_name, "LCD");
    197  1.1    ichiro                                         /* configuration name */
    198  1.1    ichiro 	fb->hf_height		= bootinfo->fb_height;
    199  1.1    ichiro 	fb->hf_width		= bootinfo->fb_width;
    200  1.1    ichiro 
    201  1.1    ichiro 	if (bus_space_map(sc->sc_iot, (bus_addr_t)bootinfo->fb_addr,
    202  1.1    ichiro 			   bootinfo->fb_height * bootinfo->fb_line_bytes,
    203  1.1    ichiro 			   0, &fb->hf_baseaddr)) {
    204  1.1    ichiro 		printf("unable to map framebuffer\n");
    205  1.1    ichiro 		return (-1);
    206  1.1    ichiro 	}
    207  1.1    ichiro 
    208  1.1    ichiro 	fb->hf_offset		= (u_long)bootinfo->fb_addr -
    209  1.1    ichiro 					__PTOB(__BTOP(bootinfo->fb_addr));
    210  1.1    ichiro 					/* frame buffer start offset    */
    211  1.1    ichiro 	fb->hf_bytes_per_line   = bootinfo->fb_line_bytes;
    212  1.1    ichiro 	fb->hf_nplanes          = 1;
    213  1.1    ichiro 	fb->hf_bytes_per_plane  = bootinfo->fb_height *
    214  1.1    ichiro                                         bootinfo->fb_line_bytes;
    215  1.1    ichiro 
    216  1.1    ichiro 	fb->hf_access_flags |= HPCFB_ACCESS_BYTE;
    217  1.1    ichiro 	fb->hf_access_flags |= HPCFB_ACCESS_WORD;
    218  1.1    ichiro 	fb->hf_access_flags |= HPCFB_ACCESS_DWORD;
    219  1.1    ichiro 
    220  1.1    ichiro 	switch (bootinfo->fb_type) {
    221  1.1    ichiro 		/*
    222  1.1    ichiro  		 * gray scale
    223  1.1    ichiro 		 */
    224  1.1    ichiro 		case BIFB_D2_M2L_3:
    225  1.1    ichiro 		case BIFB_D2_M2L_3x2:
    226  1.1    ichiro 			fb->hf_access_flags |= HPCFB_ACCESS_REVERSE;
    227  1.1    ichiro 		case BIFB_D2_M2L_0:
    228  1.1    ichiro 		case BIFB_D2_M2L_0x2:
    229  1.1    ichiro 			fb->hf_class = HPCFB_CLASS_GRAYSCALE;
    230  1.1    ichiro 			break;
    231  1.1    ichiro 		case BIFB_D4_M2L_F:
    232  1.1    ichiro 		case BIFB_D4_M2L_Fx2:
    233  1.1    ichiro 			fb->hf_access_flags |= HPCFB_ACCESS_REVERSE;
    234  1.1    ichiro 		case BIFB_D4_M2L_0:
    235  1.1    ichiro 		case BIFB_D4_M2L_0x2:
    236  1.1    ichiro 			fb->hf_class = HPCFB_CLASS_GRAYSCALE;
    237  1.1    ichiro 			break;
    238  1.1    ichiro 		/*
    239  1.1    ichiro 		 * indexed color
    240  1.1    ichiro 		 */
    241  1.1    ichiro 		case BIFB_D8_FF:
    242  1.1    ichiro 		case BIFB_D8_00:
    243  1.1    ichiro 			fb->hf_offset	= 0x200;
    244  1.1    ichiro 			break;
    245  1.1    ichiro 		/*
    246  1.1    ichiro 		 * RGB color
    247  1.1    ichiro 		 */
    248  1.1    ichiro 		case BIFB_D16_FFFF:
    249  1.1    ichiro 		case BIFB_D16_0000:
    250  1.1    ichiro 			fb->hf_class = HPCFB_CLASS_RGBCOLOR;
    251  1.1    ichiro 			fb->hf_access_flags |= HPCFB_ACCESS_STATIC;
    252  1.3  takemura 			fb->hf_order_flags = HPCFB_REVORDER_BYTE;
    253  1.1    ichiro 			fb->hf_pack_width = 16;
    254  1.1    ichiro 			fb->hf_pixels_per_pack = 1;
    255  1.1    ichiro 			fb->hf_pixel_width = 16;
    256  1.1    ichiro 
    257  1.1    ichiro 			fb->hf_class_data_length = sizeof(struct hf_rgb_tag);
    258  1.1    ichiro 			fb->hf_u.hf_rgb.hf_flags = 0;
    259  1.1    ichiro 				/* reserved for future use */
    260  1.1    ichiro 			fb->hf_u.hf_rgb.hf_red_width = 5;
    261  1.1    ichiro 			fb->hf_u.hf_rgb.hf_red_shift = 11;
    262  1.1    ichiro 			fb->hf_u.hf_rgb.hf_green_width = 6;
    263  1.1    ichiro 			fb->hf_u.hf_rgb.hf_green_shift = 5;
    264  1.1    ichiro 			fb->hf_u.hf_rgb.hf_blue_width = 5;
    265  1.1    ichiro 			fb->hf_u.hf_rgb.hf_blue_shift = 0;
    266  1.1    ichiro 			fb->hf_u.hf_rgb.hf_alpha_width = 0;
    267  1.1    ichiro 			fb->hf_u.hf_rgb.hf_alpha_shift = 0;
    268  1.1    ichiro 			break;
    269  1.1    ichiro 		default :
    270  1.1    ichiro 			printf("unknown type (=%d).\n", bootinfo->fb_type);
    271  1.1    ichiro 			return (-1);
    272  1.1    ichiro 			break;
    273  1.1    ichiro 	}
    274  1.1    ichiro 
    275  1.1    ichiro 	return(0);
    276  1.1    ichiro }
    277  1.1    ichiro 
    278  1.1    ichiro int
    279  1.1    ichiro ipaqlcd_ioctl(v, cmd, data, flag, p)
    280  1.1    ichiro 	void *v;
    281  1.1    ichiro 	u_long cmd;
    282  1.1    ichiro 	caddr_t data;
    283  1.1    ichiro 	int flag;
    284  1.1    ichiro 	struct proc *p;
    285  1.1    ichiro {
    286  1.1    ichiro 	struct ipaqlcd_softc *sc = (struct ipaqlcd_softc *)v;
    287  1.1    ichiro 	struct hpcfb_fbconf *fbconf;
    288  1.1    ichiro 	struct hpcfb_dspconf *dspconf;
    289  1.1    ichiro 	struct wsdisplay_cmap *cmap;
    290  1.1    ichiro 	struct wsdisplay_param *dispparam;
    291  1.1    ichiro 
    292  1.1    ichiro 	switch (cmd) {
    293  1.1    ichiro         case WSDISPLAYIO_GETCMAP:
    294  1.1    ichiro                 cmap = (struct wsdisplay_cmap*)data;
    295  1.1    ichiro 
    296  1.1    ichiro                 if (sc->sc_fbconf.hf_class != HPCFB_CLASS_INDEXCOLOR ||
    297  1.1    ichiro                     sc->sc_fbconf.hf_pack_width != 8 ||
    298  1.1    ichiro                     256 <= cmap->index ||
    299  1.1    ichiro                     256 < (cmap->index + cmap->count))
    300  1.1    ichiro                         return (EINVAL);
    301  1.1    ichiro 		return (0);
    302  1.1    ichiro 	case WSDISPLAYIO_PUTCMAP:
    303  1.1    ichiro 		return (EINVAL);
    304  1.1    ichiro 	case WSDISPLAYIO_GETPARAM:
    305  1.1    ichiro                 dispparam = (struct wsdisplay_param*)data;
    306  1.1    ichiro                 switch (dispparam->param) {
    307  1.1    ichiro                 case WSDISPLAYIO_PARAM_BACKLIGHT:
    308  1.1    ichiro                         DPRINTF(("ipaqlcd_ioctl: GETPARAM:BACKLIGHT\n"));
    309  1.1    ichiro                         return (EINVAL);
    310  1.1    ichiro                 case WSDISPLAYIO_PARAM_CONTRAST:
    311  1.1    ichiro                         DPRINTF(("ipaqlcd_ioctl: GETPARAM:CONTRAST\n"));
    312  1.1    ichiro                         return (EINVAL);
    313  1.1    ichiro                 case WSDISPLAYIO_PARAM_BRIGHTNESS:
    314  1.1    ichiro                         DPRINTF(("ipaqlcd_ioctl: GETPARAM:BRIGHTNESS\n"));
    315  1.1    ichiro                         return (EINVAL);
    316  1.1    ichiro                 default:
    317  1.1    ichiro                         return (EINVAL);
    318  1.1    ichiro                 }
    319  1.1    ichiro 		return (0);
    320  1.1    ichiro 	case WSDISPLAYIO_SETPARAM:
    321  1.1    ichiro                 dispparam = (struct wsdisplay_param*)data;
    322  1.1    ichiro                 switch (dispparam->param) {
    323  1.1    ichiro                 case WSDISPLAYIO_PARAM_BACKLIGHT:
    324  1.1    ichiro                         DPRINTF(("ipaqlcd_ioctl: GETPARAM:BACKLIGHT\n"));
    325  1.1    ichiro                         return (EINVAL);
    326  1.1    ichiro                 case WSDISPLAYIO_PARAM_CONTRAST:
    327  1.1    ichiro                         DPRINTF(("ipaqlcd_ioctl: GETPARAM:CONTRAST\n"));
    328  1.1    ichiro                         return (EINVAL);
    329  1.1    ichiro                 case WSDISPLAYIO_PARAM_BRIGHTNESS:
    330  1.1    ichiro                         DPRINTF(("ipaqlcd_ioctl: GETPARAM:BRIGHTNESS\n"));
    331  1.1    ichiro                         return (EINVAL);
    332  1.1    ichiro                 default:
    333  1.1    ichiro                         return (EINVAL);
    334  1.1    ichiro                 }
    335  1.1    ichiro 		return (0);
    336  1.1    ichiro 
    337  1.1    ichiro 	case HPCFBIO_GCONF:
    338  1.1    ichiro 		fbconf = (struct hpcfb_fbconf *)data;
    339  1.1    ichiro 		if (fbconf->hf_conf_index != 0 &&
    340  1.1    ichiro 		    fbconf->hf_conf_index != HPCFB_CURRENT_CONFIG) {
    341  1.1    ichiro 			return (EINVAL);
    342  1.1    ichiro 		}
    343  1.1    ichiro 		*fbconf = sc->sc_fbconf;        /* structure assignment */
    344  1.1    ichiro 		return (0);
    345  1.1    ichiro 	case HPCFBIO_SCONF:
    346  1.1    ichiro 		fbconf = (struct hpcfb_fbconf *)data;
    347  1.1    ichiro 		if (fbconf->hf_conf_index != 0 &&
    348  1.1    ichiro 		    fbconf->hf_conf_index != HPCFB_CURRENT_CONFIG) {
    349  1.1    ichiro 			return (EINVAL);
    350  1.1    ichiro 		}
    351  1.1    ichiro 		/*
    352  1.1    ichiro 		 * nothing to do because we have only one configration
    353  1.1    ichiro 		 */
    354  1.1    ichiro 		return (0);
    355  1.1    ichiro 	case HPCFBIO_GDSPCONF:
    356  1.1    ichiro 		dspconf = (struct hpcfb_dspconf *)data;
    357  1.1    ichiro 		if ((dspconf->hd_unit_index != 0 &&
    358  1.1    ichiro 		     dspconf->hd_unit_index != HPCFB_CURRENT_UNIT) ||
    359  1.1    ichiro 		    (dspconf->hd_conf_index != 0 &&
    360  1.1    ichiro 		     dspconf->hd_conf_index != HPCFB_CURRENT_CONFIG)) {
    361  1.1    ichiro 			return (EINVAL);
    362  1.1    ichiro 		}
    363  1.1    ichiro 		*dspconf = sc->sc_dspconf;      /* structure assignment */
    364  1.1    ichiro 		return (0);
    365  1.1    ichiro 	case HPCFBIO_SDSPCONF:
    366  1.1    ichiro 		dspconf = (struct hpcfb_dspconf *)data;
    367  1.1    ichiro 		if ((dspconf->hd_unit_index != 0 &&
    368  1.1    ichiro 		     dspconf->hd_unit_index != HPCFB_CURRENT_UNIT) ||
    369  1.1    ichiro 		    (dspconf->hd_conf_index != 0 &&
    370  1.1    ichiro 		     dspconf->hd_conf_index != HPCFB_CURRENT_CONFIG)) {
    371  1.1    ichiro 			return (EINVAL);
    372  1.1    ichiro 		}
    373  1.1    ichiro 		/*
    374  1.1    ichiro 		 * nothing to do
    375  1.1    ichiro  		 * because we have only one unit and one configration
    376  1.1    ichiro 		 */
    377  1.1    ichiro 		return (0);
    378  1.1    ichiro 
    379  1.1    ichiro 	case HPCFBIO_GOP:
    380  1.1    ichiro         case HPCFBIO_SOP:
    381  1.1    ichiro 		return (EINVAL);
    382  1.1    ichiro         }
    383  1.1    ichiro 	return (ENOTTY);
    384  1.1    ichiro }
    385  1.1    ichiro 
    386  1.1    ichiro paddr_t
    387  1.1    ichiro ipaqlcd_mmap(ctx, offset, prot)
    388  1.1    ichiro 	void *ctx;
    389  1.1    ichiro 	off_t offset;
    390  1.1    ichiro 	int prot;
    391  1.1    ichiro {
    392  1.1    ichiro 	struct ipaqlcd_softc *sc = (struct ipaqlcd_softc *)ctx;
    393  1.1    ichiro 
    394  1.1    ichiro 	if (offset < 0 ||
    395  1.1    ichiro 	   (sc->sc_fbconf.hf_bytes_per_plane +
    396  1.1    ichiro 	    sc->sc_fbconf.hf_offset) <  offset)
    397  1.1    ichiro 		return -1;
    398  1.1    ichiro 
    399  1.1    ichiro 	return __BTOP((u_long)bootinfo->fb_addr + offset);
    400  1.1    ichiro }
    401