Home | History | Annotate | Line # | Download | only in ic
ibm561.c revision 1.3.6.2
      1  1.3.6.1    skrll /* $NetBSD: ibm561.c,v 1.3.6.2 2004/09/18 14:45:58 skrll Exp $ */
      2      1.1    elric 
      3      1.1    elric /*-
      4      1.1    elric  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5      1.1    elric  * All rights reserved.
      6      1.1    elric  *
      7      1.1    elric  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1    elric  * by Roland C. Dowdeswell of Ponte, Inc.
      9      1.1    elric  *
     10      1.1    elric  * Redistribution and use in source and binary forms, with or without
     11      1.1    elric  * modification, are permitted provided that the following conditions
     12      1.1    elric  * are met:
     13      1.1    elric  * 1. Redistributions of source code must retain the above copyright
     14      1.1    elric  *    notice, this list of conditions and the following disclaimer.
     15      1.1    elric  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1    elric  *    notice, this list of conditions and the following disclaimer in the
     17      1.1    elric  *    documentation and/or other materials provided with the distribution.
     18      1.1    elric  * 3. All advertising materials mentioning features or use of this software
     19      1.1    elric  *    must display the following acknowledgement:
     20      1.1    elric  *	This product includes software developed by the NetBSD
     21      1.1    elric  *	Foundation, Inc. and its contributors.
     22      1.1    elric  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1    elric  *    contributors may be used to endorse or promote products derived
     24      1.1    elric  *    from this software without specific prior written permission.
     25      1.1    elric  *
     26      1.1    elric  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1    elric  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1    elric  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1    elric  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1    elric  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1    elric  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1    elric  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1    elric  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1    elric  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1    elric  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1    elric  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1    elric  */
     38      1.1    elric 
     39  1.3.6.1    skrll #include <sys/cdefs.h>
     40  1.3.6.1    skrll __KERNEL_RCSID(0, "$NetBSD: ibm561.c,v 1.3.6.2 2004/09/18 14:45:58 skrll Exp $");
     41  1.3.6.1    skrll 
     42      1.1    elric #include <sys/param.h>
     43      1.1    elric #include <sys/systm.h>
     44      1.1    elric #include <sys/device.h>
     45      1.1    elric #include <sys/buf.h>
     46      1.1    elric #include <sys/kernel.h>
     47      1.1    elric #include <sys/malloc.h>
     48      1.1    elric 
     49      1.1    elric #include <uvm/uvm_extern.h>
     50      1.1    elric 
     51      1.1    elric #include <dev/pci/pcivar.h>
     52      1.1    elric #include <dev/ic/ibm561reg.h>
     53      1.1    elric #include <dev/ic/ibm561var.h>
     54      1.1    elric #include <dev/ic/ramdac.h>
     55      1.1    elric 
     56      1.1    elric #include <dev/wscons/wsconsio.h>
     57      1.1    elric 
     58      1.1    elric /*
     59      1.1    elric  * Functions exported via the RAMDAC configuration table.
     60      1.1    elric  */
     61      1.1    elric void	ibm561_init __P((struct ramdac_cookie *));
     62      1.1    elric int	ibm561_set_cmap __P((struct ramdac_cookie *,
     63      1.1    elric 	    struct wsdisplay_cmap *));
     64      1.1    elric int	ibm561_get_cmap __P((struct ramdac_cookie *,
     65      1.1    elric 	    struct wsdisplay_cmap *));
     66      1.1    elric int	ibm561_set_cursor __P((struct ramdac_cookie *,
     67      1.1    elric 	    struct wsdisplay_cursor *));
     68      1.1    elric int	ibm561_get_cursor __P((struct ramdac_cookie *,
     69      1.1    elric 	    struct wsdisplay_cursor *));
     70      1.1    elric int	ibm561_set_curpos __P((struct ramdac_cookie *,
     71      1.1    elric 	    struct wsdisplay_curpos *));
     72      1.1    elric int	ibm561_get_curpos __P((struct ramdac_cookie *,
     73      1.1    elric 	    struct wsdisplay_curpos *));
     74      1.1    elric int	ibm561_get_curmax __P((struct ramdac_cookie *,
     75      1.1    elric 	    struct wsdisplay_curpos *));
     76      1.1    elric int	ibm561_set_dotclock __P((struct ramdac_cookie *,
     77      1.1    elric 	    unsigned));
     78      1.1    elric 
     79      1.1    elric /* XXX const */
     80      1.1    elric struct ramdac_funcs ibm561_funcsstruct = {
     81      1.1    elric 	"IBM561",
     82      1.1    elric 	ibm561_register,
     83      1.1    elric 	ibm561_init,
     84      1.1    elric 	ibm561_set_cmap,
     85      1.1    elric 	ibm561_get_cmap,
     86      1.1    elric 	ibm561_set_cursor,
     87      1.1    elric 	ibm561_get_cursor,
     88      1.1    elric 	ibm561_set_curpos,
     89      1.1    elric 	ibm561_get_curpos,
     90      1.1    elric 	ibm561_get_curmax,
     91      1.1    elric 	NULL,			/* check_curcmap; not needed */
     92      1.1    elric 	NULL,			/* set_curcmap; not needed */
     93      1.1    elric 	NULL,			/* get_curcmap; not needed */
     94      1.1    elric 	ibm561_set_dotclock,
     95      1.1    elric };
     96      1.1    elric 
     97      1.1    elric /*
     98      1.1    elric  * Private data.
     99      1.1    elric  */
    100      1.1    elric struct ibm561data {
    101      1.1    elric 	void            *cookie;
    102      1.1    elric 
    103      1.1    elric 	int             (*ramdac_sched_update) __P((void *, void (*)(void *)));
    104      1.1    elric 	void            (*ramdac_wr) __P((void *, u_int, u_int8_t));
    105      1.1    elric 	u_int8_t        (*ramdac_rd) __P((void *, u_int));
    106      1.1    elric 
    107      1.1    elric #define CHANGED_CURCMAP		0x0001	/* cursor cmap */
    108      1.1    elric #define CHANGED_CMAP		0x0002	/* color map */
    109      1.1    elric #define CHANGED_WTYPE		0x0004	/* window types */
    110      1.1    elric #define CHANGED_DOTCLOCK	0x0008	/* dot clock */
    111      1.1    elric #define CHANGED_ALL		0x000f	/* or of all above */
    112      1.1    elric 	u_int8_t	changed;
    113      1.1    elric 
    114      1.1    elric 	/* dotclock parameters */
    115      1.1    elric 	u_int8_t	vco_div;
    116      1.1    elric 	u_int8_t	pll_ref;
    117      1.1    elric 	u_int8_t	div_dotclock;
    118      1.1    elric 
    119      1.1    elric 	/* colormaps et al. */
    120      1.1    elric 	u_int8_t	curcmap_r[2];
    121      1.1    elric 	u_int8_t	curcmap_g[2];
    122      1.1    elric 	u_int8_t	curcmap_b[2];
    123      1.1    elric 
    124      1.1    elric 	u_int8_t	cmap_r[IBM561_NCMAP_ENTRIES];
    125      1.1    elric 	u_int8_t	cmap_g[IBM561_NCMAP_ENTRIES];
    126      1.1    elric 	u_int8_t	cmap_b[IBM561_NCMAP_ENTRIES];
    127      1.1    elric 
    128      1.1    elric 	u_int16_t	gamma_r[IBM561_NGAMMA_ENTRIES];
    129      1.1    elric 	u_int16_t	gamma_g[IBM561_NGAMMA_ENTRIES];
    130      1.1    elric 	u_int16_t	gamma_b[IBM561_NGAMMA_ENTRIES];
    131      1.1    elric 
    132      1.1    elric 	u_int16_t	wtype[IBM561_NWTYPES];
    133      1.1    elric };
    134      1.1    elric 
    135      1.1    elric /*
    136      1.1    elric  * private functions
    137      1.1    elric  */
    138      1.1    elric void	ibm561_update __P((void *));
    139      1.1    elric static void ibm561_load_cmap(struct ibm561data *);
    140      1.1    elric static void ibm561_load_dotclock(struct ibm561data *);
    141      1.1    elric static void ibm561_regbegin(struct ibm561data *, u_int16_t);
    142      1.1    elric static void ibm561_regcont(struct ibm561data *, u_int16_t, u_int8_t);
    143      1.1    elric static void ibm561_regcont10bit(struct ibm561data *, u_int16_t, u_int16_t);
    144      1.1    elric static void ibm561_regwr(struct ibm561data *, u_int16_t, u_int8_t);
    145      1.1    elric 
    146      1.1    elric struct ramdac_funcs *
    147      1.1    elric ibm561_funcs(void)
    148      1.1    elric {
    149      1.1    elric 	return &ibm561_funcsstruct;
    150      1.1    elric }
    151      1.1    elric 
    152      1.1    elric struct ramdac_cookie *
    153      1.1    elric ibm561_register(v, sched_update, wr, rd)
    154      1.1    elric 	void *v;
    155      1.1    elric 	int (*sched_update)(void *, void (*)(void *));
    156      1.1    elric 	void (*wr)(void *, u_int, u_int8_t);
    157      1.1    elric 	u_int8_t (*rd)(void *, u_int);
    158      1.1    elric {
    159      1.1    elric 	struct ibm561data *data;
    160      1.1    elric 
    161      1.2  tsutsui 	data = malloc(sizeof *data, M_DEVBUF, M_WAITOK|M_ZERO);
    162      1.1    elric 	data->cookie = v;
    163      1.1    elric 	data->ramdac_sched_update = sched_update;
    164      1.1    elric 	data->ramdac_wr = wr;
    165      1.1    elric 	data->ramdac_rd = rd;
    166      1.1    elric 	return (struct ramdac_cookie *)data;
    167      1.1    elric }
    168      1.1    elric 
    169      1.1    elric /*
    170      1.1    elric  * This function exists solely to provide a means to init
    171      1.1    elric  * the RAMDAC without first registering.  It is useful for
    172      1.1    elric  * initializing the console early on.
    173      1.1    elric  */
    174      1.1    elric 
    175      1.1    elric struct ibm561data *saved_console_data;
    176      1.1    elric 
    177      1.1    elric void
    178      1.1    elric ibm561_cninit(v, sched_update, wr, rd, dotclock)
    179      1.1    elric 	void *v;
    180      1.1    elric 	int (*sched_update)(void *, void (*)(void *));
    181      1.1    elric 	void (*wr)(void *, u_int, u_int8_t);
    182      1.1    elric 	u_int8_t (*rd)(void *, u_int);
    183      1.1    elric 	u_int dotclock;
    184      1.1    elric {
    185      1.1    elric 	struct ibm561data tmp, *data = &tmp;
    186      1.1    elric 	memset(data, 0x0, sizeof *data);
    187      1.1    elric 	data->cookie = v;
    188      1.1    elric 	data->ramdac_sched_update = sched_update;
    189      1.1    elric 	data->ramdac_wr = wr;
    190      1.1    elric 	data->ramdac_rd = rd;
    191      1.1    elric 	ibm561_set_dotclock((struct ramdac_cookie *)data, dotclock);
    192      1.1    elric 	saved_console_data = data;
    193      1.1    elric 	ibm561_init((struct ramdac_cookie *)data);
    194      1.1    elric 	saved_console_data = NULL;
    195      1.1    elric }
    196      1.1    elric 
    197      1.1    elric void
    198      1.1    elric ibm561_init(rc)
    199      1.1    elric 	struct ramdac_cookie *rc;
    200      1.1    elric {
    201      1.1    elric 	struct	ibm561data *data = (struct ibm561data *)rc;
    202      1.1    elric 	int	i;
    203      1.1    elric 
    204      1.1    elric 	/* XXX this is _essential_ */
    205      1.1    elric 
    206      1.1    elric 	ibm561_load_dotclock(data);
    207      1.1    elric 
    208      1.1    elric 	/* XXXrcd: bunch of magic of which I have no current clue */
    209      1.1    elric 	ibm561_regwr(data, IBM561_CONFIG_REG1, 0x2a);
    210      1.1    elric 	ibm561_regwr(data, IBM561_CONFIG_REG3, 0x41);
    211      1.1    elric 	ibm561_regwr(data, IBM561_CONFIG_REG4, 0x20);
    212      1.1    elric 
    213      1.1    elric 	/* initialize the card a bit */
    214      1.1    elric 	ibm561_regwr(data, IBM561_SYNC_CNTL, 0x1);
    215      1.1    elric 	ibm561_regwr(data, IBM561_CONFIG_REG2, 0x19);
    216      1.1    elric 
    217      1.1    elric 	ibm561_regwr(data, IBM561_CONFIG_REG1, 0x2a);
    218      1.1    elric 	ibm561_regwr(data, IBM561_CONFIG_REG4, 0x20);
    219      1.1    elric 
    220      1.1    elric 	ibm561_regbegin(data, IBM561_WAT_SEG_REG);
    221      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    222      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    223      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    224      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    225      1.1    elric 	ibm561_regbegin(data, IBM561_CHROMAKEY0);
    226      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    227      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    228      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    229      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    230      1.1    elric 
    231      1.1    elric 	ibm561_regwr(data, IBM561_CURS_CNTL_REG, 0x00); /* XXX off? */
    232      1.1    elric 
    233      1.1    elric 	/* cursor `hot spot' registers */
    234      1.1    elric 	ibm561_regbegin(data, IBM561_HOTSPOT_REG);
    235      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    236      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    237      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    238      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    239      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    240      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0x00);
    241      1.1    elric 
    242      1.1    elric 	/* VRAM Mask Registers (diagnostics) */
    243      1.1    elric 	ibm561_regbegin(data, IBM561_VRAM_MASK_REG);
    244      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    245      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    246      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    247      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    248      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    249      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    250      1.1    elric 	ibm561_regcont(data, IBM561_CMD, 0xff);
    251      1.1    elric 
    252      1.1    elric 	/* let's set up some decent default colour maps and gammas */
    253      1.1    elric 	for (i=0; i < IBM561_NCMAP_ENTRIES; i++)
    254      1.1    elric 		data->cmap_r[i] = data->cmap_g[i] = data->cmap_b[i] = 0xff;
    255      1.1    elric 	data->cmap_r[0]   = data->cmap_g[0]   = data->cmap_b[0]   = 0x00;
    256      1.1    elric 	data->cmap_r[256] = data->cmap_g[256] = data->cmap_b[256] = 0x00;
    257      1.1    elric 	data->cmap_r[512] = data->cmap_g[512] = data->cmap_b[512] = 0x00;
    258      1.1    elric 	data->cmap_r[768] = data->cmap_g[768] = data->cmap_b[768] = 0x00;
    259      1.1    elric 
    260      1.1    elric 	data->gamma_r[0] = data->gamma_g[0] = data->gamma_b[0] = 0x00;
    261      1.1    elric 	for (i=0; i < IBM561_NGAMMA_ENTRIES; i++)
    262      1.1    elric 		data->gamma_r[i] = data->gamma_g[i] = data->gamma_b[i] = 0xff;
    263      1.1    elric 
    264      1.1    elric 	for (i=0; i < IBM561_NWTYPES; i++)
    265      1.1    elric 		data->wtype[i] = 0x0036;
    266      1.1    elric 	data->wtype[1] = 0x0028;
    267      1.1    elric 
    268      1.1    elric 	/* the last step: */
    269      1.1    elric 	data->changed = CHANGED_ALL;
    270      1.1    elric 	data->ramdac_sched_update(data->cookie, ibm561_update);
    271      1.1    elric }
    272      1.1    elric 
    273      1.1    elric int
    274      1.1    elric ibm561_set_cmap(rc, cmapp)
    275      1.1    elric 	struct ramdac_cookie *rc;
    276      1.1    elric 	struct wsdisplay_cmap *cmapp;
    277      1.1    elric {
    278      1.1    elric 	struct ibm561data *data = (struct ibm561data *)rc;
    279      1.3   itojun 	u_int count, index;
    280  1.3.6.1    skrll 	uint8_t r[IBM561_NCMAP_ENTRIES];
    281  1.3.6.1    skrll 	uint8_t g[IBM561_NCMAP_ENTRIES];
    282  1.3.6.1    skrll 	uint8_t b[IBM561_NCMAP_ENTRIES];
    283  1.3.6.1    skrll 	int s, error;
    284      1.1    elric 
    285      1.3   itojun 	if (cmapp->index >= IBM561_NCMAP_ENTRIES ||
    286      1.3   itojun 	    cmapp->count > IBM561_NCMAP_ENTRIES - cmapp->index)
    287      1.1    elric 		return (EINVAL);
    288      1.1    elric 
    289      1.1    elric 	index = cmapp->index;
    290      1.1    elric 	count = cmapp->count;
    291  1.3.6.1    skrll 	error = copyin(cmapp->red, &r[index], count);
    292  1.3.6.1    skrll 	if (error)
    293  1.3.6.1    skrll 		return error;
    294  1.3.6.1    skrll 	error = copyin(cmapp->green, &g[index], count);
    295  1.3.6.1    skrll 	if (error)
    296  1.3.6.1    skrll 		return error;
    297  1.3.6.1    skrll 	error = copyin(cmapp->blue, &b[index], count);
    298  1.3.6.1    skrll 	if (error)
    299  1.3.6.1    skrll 		return error;
    300  1.3.6.1    skrll 	s = spltty();
    301  1.3.6.1    skrll 	memcpy(&data->cmap_r[index], &r[index], count);
    302  1.3.6.1    skrll 	memcpy(&data->cmap_g[index], &g[index], count);
    303  1.3.6.1    skrll 	memcpy(&data->cmap_b[index], &b[index], count);
    304      1.1    elric 	data->changed |= CHANGED_CMAP;
    305      1.1    elric 	data->ramdac_sched_update(data->cookie, ibm561_update);
    306      1.1    elric 	splx(s);
    307      1.1    elric 	return (0);
    308      1.1    elric }
    309      1.1    elric 
    310      1.1    elric int
    311      1.1    elric ibm561_get_cmap(rc, cmapp)
    312      1.1    elric 	struct ramdac_cookie *rc;
    313      1.1    elric 	struct wsdisplay_cmap *cmapp;
    314      1.1    elric {
    315      1.1    elric 	struct ibm561data *data = (struct ibm561data *)rc;
    316      1.3   itojun 	u_int count, index;
    317      1.1    elric 	int error;
    318      1.1    elric 
    319      1.3   itojun 	if (cmapp->index >= IBM561_NCMAP_ENTRIES ||
    320      1.3   itojun 	    cmapp->count > IBM561_NCMAP_ENTRIES - cmapp->index)
    321      1.1    elric 		return (EINVAL);
    322      1.1    elric 	count = cmapp->count;
    323      1.1    elric 	index = cmapp->index;
    324      1.1    elric 	error = copyout(&data->cmap_r[index], cmapp->red, count);
    325      1.1    elric 	if (error)
    326      1.1    elric 		return (error);
    327      1.1    elric 	error = copyout(&data->cmap_g[index], cmapp->green, count);
    328      1.1    elric 	if (error)
    329      1.1    elric 		return (error);
    330      1.1    elric 	error = copyout(&data->cmap_b[index], cmapp->blue, count);
    331      1.1    elric 	return (error);
    332      1.1    elric }
    333      1.1    elric 
    334      1.1    elric /*
    335      1.1    elric  * XXX:
    336      1.1    elric  *  I am leaving these functions returning EINVAL, as they are
    337      1.1    elric  *  not strictly necessary for the correct functioning of the
    338      1.1    elric  *  card and in fact are not used on the other TGA variants, except
    339      1.1    elric  *  they are exported via ioctl(2) to userland, which does not in
    340      1.1    elric  *  fact use them.
    341      1.1    elric  */
    342      1.1    elric 
    343      1.1    elric int
    344      1.1    elric ibm561_set_cursor(rc, cursorp)
    345      1.1    elric 	struct ramdac_cookie *rc;
    346      1.1    elric 	struct wsdisplay_cursor *cursorp;
    347      1.1    elric {
    348      1.1    elric 	return EINVAL;
    349      1.1    elric }
    350      1.1    elric 
    351      1.1    elric int
    352      1.1    elric ibm561_get_cursor(rc, cursorp)
    353      1.1    elric 	struct ramdac_cookie *rc;
    354      1.1    elric 	struct wsdisplay_cursor *cursorp;
    355      1.1    elric {
    356      1.1    elric 	return EINVAL;
    357      1.1    elric }
    358      1.1    elric 
    359      1.1    elric int
    360      1.1    elric ibm561_set_curpos(rc, curposp)
    361      1.1    elric 	struct ramdac_cookie *rc;
    362      1.1    elric 	struct wsdisplay_curpos *curposp;
    363      1.1    elric {
    364      1.1    elric 	return EINVAL;
    365      1.1    elric }
    366      1.1    elric 
    367      1.1    elric int
    368      1.1    elric ibm561_get_curpos(rc, curposp)
    369      1.1    elric 	struct ramdac_cookie *rc;
    370      1.1    elric 	struct wsdisplay_curpos *curposp;
    371      1.1    elric {
    372      1.1    elric 	return EINVAL;
    373      1.1    elric }
    374      1.1    elric 
    375      1.1    elric int
    376      1.1    elric ibm561_get_curmax(rc, curposp)
    377      1.1    elric 	struct ramdac_cookie *rc;
    378      1.1    elric 	struct wsdisplay_curpos *curposp;
    379      1.1    elric {
    380      1.1    elric 	return EINVAL;
    381      1.1    elric }
    382      1.1    elric 
    383      1.1    elric int
    384      1.1    elric ibm561_set_dotclock(rc, dotclock)
    385      1.1    elric 	struct ramdac_cookie *rc;
    386      1.1    elric 	unsigned dotclock;
    387      1.1    elric {
    388      1.1    elric 	struct ibm561data *data = (struct ibm561data *)rc;
    389      1.1    elric 
    390      1.1    elric 	/* XXXrcd:  a couple of these are a little hazy, vis a vis
    391      1.1    elric 	 *          check 175MHz and 202MHz, which are wrong...
    392      1.1    elric 	 */
    393      1.1    elric 	switch (dotclock) {
    394      1.1    elric 	case  25175000: data->vco_div = 0x3e; data->pll_ref = 0x09; break;
    395      1.1    elric 	case  31500000: data->vco_div = 0x17; data->pll_ref = 0x05; break;
    396      1.1    elric 	case  40000000: data->vco_div = 0x42; data->pll_ref = 0x06; break;
    397      1.1    elric 	case  50000000: data->vco_div = 0x45; data->pll_ref = 0x05; break;
    398      1.1    elric 	case  65000000: data->vco_div = 0xac; data->pll_ref = 0x0c; break;
    399      1.1    elric 	case  69000000: data->vco_div = 0xa9; data->pll_ref = 0x0b; break;
    400      1.1    elric 	case  74000000: data->vco_div = 0x9c; data->pll_ref = 0x09; break;
    401      1.1    elric 	case  75000000: data->vco_div = 0x93; data->pll_ref = 0x08; break;
    402      1.1    elric 	case 103994000: data->vco_div = 0x96; data->pll_ref = 0x06; break;
    403      1.1    elric 	case 108180000: data->vco_div = 0xb8; data->pll_ref = 0x08; break;
    404      1.1    elric 	case 110000000: data->vco_div = 0xba; data->pll_ref = 0x08; break;
    405      1.1    elric 	case 119840000: data->vco_div = 0x82; data->pll_ref = 0x04; break;
    406      1.1    elric 	case 130808000: data->vco_div = 0xc8; data->pll_ref = 0x08; break;
    407      1.1    elric 	case 135000000: data->vco_div = 0xc1; data->pll_ref = 0x07; break;
    408      1.1    elric 	case 175000000: data->vco_div = 0xe2; data->pll_ref = 0x07; break;
    409      1.1    elric 	case 202500000: data->vco_div = 0xe2; data->pll_ref = 0x07; break;
    410      1.1    elric 	default:
    411      1.1    elric 		return EINVAL;
    412      1.1    elric 	}
    413      1.1    elric 
    414      1.1    elric 	data->div_dotclock = 0xb0;
    415      1.1    elric 	data->changed |= CHANGED_DOTCLOCK;
    416      1.1    elric 	return 0;
    417      1.1    elric }
    418      1.1    elric 
    419      1.1    elric /*
    420      1.1    elric  * Internal Functions
    421      1.1    elric  */
    422      1.1    elric 
    423      1.1    elric void
    424      1.1    elric ibm561_update(vp)
    425      1.1    elric 	void *vp;
    426      1.1    elric {
    427      1.1    elric 	struct ibm561data *data = (struct ibm561data *)vp;
    428      1.1    elric 	int	i;
    429      1.1    elric 
    430      1.1    elric 	/* XXX see comment above ibm561_cninit() */
    431      1.1    elric 	if (!data)
    432      1.1    elric 		data = saved_console_data;
    433      1.1    elric 
    434      1.1    elric 	if (data->changed & CHANGED_WTYPE) {
    435      1.1    elric 		ibm561_regbegin(data, IBM561_FB_WINTYPE);
    436      1.1    elric 		for (i=0; i < IBM561_NWTYPES; i++)
    437      1.1    elric 			ibm561_regcont10bit(data, IBM561_CMD_FB_WAT, data->wtype[i]);
    438      1.1    elric 
    439      1.1    elric 		/* XXXrcd:  quick hack here for AUX FB table */
    440      1.1    elric 		ibm561_regbegin(data, IBM561_AUXFB_WINTYPE);
    441      1.1    elric 		for (i=0; i < IBM561_NWTYPES; i++)
    442      1.1    elric 			ibm561_regcont(data, IBM561_CMD, 0x04);
    443      1.1    elric 
    444      1.1    elric 		/* XXXrcd:  quick hack here for OL WAT table */
    445      1.1    elric 		ibm561_regbegin(data, IBM561_OL_WINTYPE);
    446      1.1    elric 		for (i=0; i < IBM561_NWTYPES; i++)
    447      1.1    elric 			ibm561_regcont10bit(data, IBM561_CMD_FB_WAT, 0x0231);
    448      1.1    elric 
    449      1.1    elric 		/* XXXrcd:  quick hack here for AUX OL WAT table */
    450      1.1    elric 		ibm561_regbegin(data, IBM561_AUXOL_WINTYPE);
    451      1.1    elric 		for (i=0; i < IBM561_NWTYPES; i++)
    452      1.1    elric 			ibm561_regcont(data, IBM561_CMD, 0x0c);
    453      1.1    elric 	}
    454      1.1    elric 
    455      1.1    elric 	if (data->changed & CHANGED_CMAP)
    456      1.1    elric 		ibm561_load_cmap(data);
    457      1.1    elric 
    458      1.1    elric 	/* XXX:  I am not sure in what situations it is safe to
    459      1.1    elric 	 *       change the dotclock---hope this is good.
    460      1.1    elric 	 */
    461      1.1    elric 	if (data->changed & CHANGED_DOTCLOCK)
    462      1.1    elric 		ibm561_load_dotclock(data);
    463      1.1    elric }
    464      1.1    elric 
    465      1.1    elric static void
    466      1.1    elric ibm561_load_cmap(struct ibm561data *data)
    467      1.1    elric {
    468      1.1    elric 	int	i;
    469      1.1    elric 
    470      1.1    elric 	ibm561_regbegin(data, IBM561_CMAP_TABLE);
    471      1.1    elric 	for (i=0; i < IBM561_NCMAP_ENTRIES; i++) {
    472      1.1    elric 		ibm561_regcont(data, IBM561_CMD_CMAP, data->cmap_r[i]);
    473      1.1    elric 		ibm561_regcont(data, IBM561_CMD_CMAP, data->cmap_g[i]);
    474      1.1    elric 		ibm561_regcont(data, IBM561_CMD_CMAP, data->cmap_b[i]);
    475      1.1    elric 	}
    476      1.1    elric 
    477      1.1    elric 	ibm561_regbegin(data, IBM561_RED_GAMMA_TABLE);
    478      1.1    elric 	for (i=0; i < 256; i++)
    479      1.1    elric 		ibm561_regcont10bit(data, IBM561_CMD_GAMMA, data->gamma_r[i]);
    480      1.1    elric 
    481      1.1    elric 	ibm561_regbegin(data, IBM561_GREEN_GAMMA_TABLE);
    482      1.1    elric 	for (i=1; i < 256; i++)
    483      1.1    elric 		ibm561_regcont10bit(data, IBM561_CMD_GAMMA, data->gamma_g[i]);
    484      1.1    elric 
    485      1.1    elric 	ibm561_regbegin(data, IBM561_BLUE_GAMMA_TABLE);
    486      1.1    elric 	for (i=1; i < 256; i++)
    487      1.1    elric 		ibm561_regcont10bit(data, IBM561_CMD_GAMMA, data->gamma_b[i]);
    488      1.1    elric 
    489      1.1    elric }
    490      1.1    elric 
    491      1.1    elric static void
    492      1.1    elric ibm561_load_dotclock(struct ibm561data *data)
    493      1.1    elric {
    494      1.1    elric 	/* XXX
    495      1.1    elric 	 * we should probably be more pro-active here, but it shouldn't
    496      1.1    elric 	 * actually happen...
    497      1.1    elric 	 */
    498      1.1    elric 	if (!data->vco_div || !data->pll_ref || ! data->div_dotclock) {
    499      1.1    elric 		panic("ibm561_load_dotclock: called uninitialized");
    500      1.1    elric 	}
    501      1.1    elric 
    502      1.1    elric 	ibm561_regwr(data, IBM561_PLL_VCO_DIV,  data->vco_div);
    503      1.1    elric 	ibm561_regwr(data, IBM561_PLL_REF_REG, data->pll_ref);
    504      1.1    elric 	ibm561_regwr(data, IBM561_DIV_DOTCLCK, data->div_dotclock);
    505      1.1    elric }
    506      1.1    elric 
    507      1.1    elric static void
    508      1.1    elric ibm561_regcont10bit(struct ibm561data *data, u_int16_t reg, u_int16_t val)
    509      1.1    elric {
    510      1.1    elric 	data->ramdac_wr(data->cookie, IBM561_CMD_GAMMA, (val >> 2) & 0xff);
    511      1.1    elric 	data->ramdac_wr(data->cookie, IBM561_CMD_GAMMA, (val & 0x3) << 6);
    512      1.1    elric }
    513      1.1    elric 
    514      1.1    elric static void
    515      1.1    elric ibm561_regbegin(struct ibm561data *data, u_int16_t reg)
    516      1.1    elric {
    517      1.1    elric 	data->ramdac_wr(data->cookie, IBM561_ADDR_LOW, reg & 0xff);
    518      1.1    elric 	data->ramdac_wr(data->cookie, IBM561_ADDR_HIGH, (reg >> 8) & 0xff);
    519      1.1    elric }
    520      1.1    elric 
    521      1.1    elric static void
    522      1.1    elric ibm561_regcont(struct ibm561data *data, u_int16_t reg, u_int8_t val)
    523      1.1    elric {
    524      1.1    elric 	data->ramdac_wr(data->cookie, reg, val);
    525      1.1    elric }
    526      1.1    elric 
    527      1.1    elric static void
    528      1.1    elric ibm561_regwr(struct ibm561data *data, u_int16_t reg, u_int8_t val)
    529      1.1    elric {
    530      1.1    elric 	ibm561_regbegin(data, reg);
    531      1.1    elric 	ibm561_regcont(data, IBM561_CMD, val);
    532      1.1    elric }
    533