Home | History | Annotate | Line # | Download | only in bktr
bktr_os.c revision 1.66
      1  1.35       wiz /* $SourceForge: bktr_os.c,v 1.5 2003/03/11 23:11:25 thomasklausner Exp $ */
      2   1.1       wiz 
      3  1.66   msaitoh /*	$NetBSD: bktr_os.c,v 1.66 2016/07/07 06:55:42 msaitoh Exp $	*/
      4  1.35       wiz /* $FreeBSD: src/sys/dev/bktr/bktr_os.c,v 1.20 2000/10/20 08:16:53 roger Exp$ */
      5   1.1       wiz 
      6   1.1       wiz /*
      7   1.1       wiz  * This is part of the Driver for Video Capture Cards (Frame grabbers)
      8   1.1       wiz  * and TV Tuner cards using the Brooktree Bt848, Bt848A, Bt849A, Bt878, Bt879
      9   1.1       wiz  * chipset.
     10   1.1       wiz  * Copyright Roger Hardiman and Amancio Hasty.
     11   1.1       wiz  *
     12  1.60       wiz  * bktr_os : This has all the Operating System dependent code,
     13   1.1       wiz  *             probe/attach and open/close/ioctl/read/mmap
     14   1.1       wiz  *             memory allocation
     15   1.1       wiz  *             PCI bus interfacing
     16  1.35       wiz  *
     17   1.1       wiz  *
     18   1.1       wiz  */
     19   1.1       wiz 
     20   1.1       wiz /*
     21  1.35       wiz  * 1. Redistributions of source code must retain the
     22   1.1       wiz  * Copyright (c) 1997 Amancio Hasty, 1999 Roger Hardiman
     23   1.1       wiz  * All rights reserved.
     24   1.1       wiz  *
     25   1.1       wiz  * Redistribution and use in source and binary forms, with or without
     26   1.1       wiz  * modification, are permitted provided that the following conditions
     27   1.1       wiz  * are met:
     28   1.1       wiz  * 1. Redistributions of source code must retain the above copyright
     29   1.1       wiz  *    notice, this list of conditions and the following disclaimer.
     30   1.1       wiz  * 2. Redistributions in binary form must reproduce the above copyright
     31   1.1       wiz  *    notice, this list of conditions and the following disclaimer in the
     32   1.1       wiz  *    documentation and/or other materials provided with the distribution.
     33   1.1       wiz  * 3. All advertising materials mentioning features or use of this software
     34   1.1       wiz  *    must display the following acknowledgement:
     35   1.1       wiz  *	This product includes software developed by Amancio Hasty and
     36   1.1       wiz  *      Roger Hardiman
     37  1.35       wiz  * 4. The name of the author may not be used to endorse or promote products
     38   1.1       wiz  *    derived from this software without specific prior written permission.
     39   1.1       wiz  *
     40   1.1       wiz  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     41   1.1       wiz  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     42   1.1       wiz  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     43   1.1       wiz  * DISCLAIMED.	IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     44   1.1       wiz  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     45   1.1       wiz  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     46   1.1       wiz  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     47   1.1       wiz  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     48   1.1       wiz  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     49   1.1       wiz  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     50   1.1       wiz  * POSSIBILITY OF SUCH DAMAGE.
     51   1.1       wiz  */
     52   1.1       wiz 
     53  1.22     lukem #include <sys/cdefs.h>
     54  1.66   msaitoh __KERNEL_RCSID(0, "$NetBSD: bktr_os.c,v 1.66 2016/07/07 06:55:42 msaitoh Exp $");
     55   1.1       wiz 
     56   1.1       wiz #ifdef __FreeBSD__
     57   1.1       wiz #include "bktr.h"
     58   1.1       wiz #endif /* __FreeBSD__ */
     59   1.1       wiz 
     60   1.1       wiz #include "opt_bktr.h"		/* include any kernel config options */
     61   1.1       wiz 
     62   1.1       wiz #define FIFO_RISC_DISABLED      0
     63   1.1       wiz #define ALL_INTS_DISABLED       0
     64   1.1       wiz 
     65  1.10       wiz /*******************/
     66  1.10       wiz /* *** FreeBSD *** */
     67  1.10       wiz /*******************/
     68  1.10       wiz #ifdef __FreeBSD__
     69  1.10       wiz 
     70   1.1       wiz #include <sys/param.h>
     71   1.1       wiz #include <sys/systm.h>
     72   1.1       wiz #include <sys/conf.h>
     73   1.1       wiz #include <sys/uio.h>
     74   1.1       wiz #include <sys/kernel.h>
     75   1.1       wiz #include <sys/signalvar.h>
     76   1.1       wiz #include <sys/mman.h>
     77   1.1       wiz #include <sys/poll.h>
     78   1.1       wiz #include <sys/select.h>
     79   1.1       wiz #include <sys/vnode.h>
     80   1.1       wiz 
     81   1.1       wiz #include <vm/vm.h>
     82   1.1       wiz #include <vm/vm_kern.h>
     83   1.1       wiz #include <vm/pmap.h>
     84   1.1       wiz #include <vm/vm_extern.h>
     85   1.1       wiz 
     86   1.1       wiz #if (__FreeBSD_version >=400000) || (NSMBUS > 0)
     87   1.1       wiz #include <sys/bus.h>		/* used by smbus and newbus */
     88   1.1       wiz #endif
     89   1.1       wiz 
     90   1.1       wiz #if (__FreeBSD_version >=300000)
     91   1.1       wiz #include <machine/bus_memio.h>	/* used by bus space */
     92  1.48        ad #include <sys/bus.h>	/* used by bus space and newbus */
     93   1.1       wiz #include <sys/bus.h>
     94   1.1       wiz #endif
     95   1.1       wiz 
     96   1.1       wiz #if (__FreeBSD_version >=400000)
     97   1.1       wiz #include <sys/rman.h>		/* used by newbus */
     98   1.1       wiz #include <machine/resource.h>	/* used by newbus */
     99   1.1       wiz #endif
    100   1.1       wiz 
    101  1.13       wiz #if (__FreeBSD_version < 500000)
    102  1.13       wiz #include <machine/clock.h>              /* for DELAY */
    103  1.13       wiz #endif
    104   1.1       wiz 
    105   1.1       wiz #include <pci/pcivar.h>
    106   1.1       wiz #include <pci/pcireg.h>
    107   1.1       wiz 
    108   1.1       wiz #include <sys/sysctl.h>
    109  1.35       wiz int bt848_card = -1;
    110   1.1       wiz int bt848_tuner = -1;
    111  1.35       wiz int bt848_reverse_mute = -1;
    112   1.1       wiz int bt848_format = -1;
    113   1.1       wiz int bt848_slow_msp_audio = -1;
    114   1.1       wiz 
    115   1.1       wiz SYSCTL_NODE(_hw, OID_AUTO, bt848, CTLFLAG_RW, 0, "Bt848 Driver mgmt");
    116   1.1       wiz SYSCTL_INT(_hw_bt848, OID_AUTO, card, CTLFLAG_RW, &bt848_card, -1, "");
    117   1.1       wiz SYSCTL_INT(_hw_bt848, OID_AUTO, tuner, CTLFLAG_RW, &bt848_tuner, -1, "");
    118   1.1       wiz SYSCTL_INT(_hw_bt848, OID_AUTO, reverse_mute, CTLFLAG_RW, &bt848_reverse_mute, -1, "");
    119   1.1       wiz SYSCTL_INT(_hw_bt848, OID_AUTO, format, CTLFLAG_RW, &bt848_format, -1, "");
    120   1.1       wiz SYSCTL_INT(_hw_bt848, OID_AUTO, slow_msp_audio, CTLFLAG_RW, &bt848_slow_msp_audio, -1, "");
    121   1.1       wiz 
    122   1.1       wiz #if (__FreeBSD__ == 2)
    123   1.1       wiz #define PCIR_REVID     PCI_CLASS_REG
    124   1.1       wiz #endif
    125   1.1       wiz 
    126  1.10       wiz #endif /* end freebsd section */
    127  1.10       wiz 
    128  1.10       wiz 
    129   1.1       wiz 
    130   1.1       wiz /****************/
    131   1.1       wiz /* *** BSDI *** */
    132   1.1       wiz /****************/
    133   1.1       wiz #ifdef __bsdi__
    134   1.1       wiz #endif /* __bsdi__ */
    135   1.1       wiz 
    136   1.1       wiz 
    137   1.1       wiz /**************************/
    138   1.1       wiz /* *** OpenBSD/NetBSD *** */
    139   1.1       wiz /**************************/
    140   1.1       wiz #if defined(__NetBSD__) || defined(__OpenBSD__)
    141  1.10       wiz 
    142  1.10       wiz #include <sys/param.h>
    143  1.10       wiz #include <sys/systm.h>
    144  1.10       wiz #include <sys/conf.h>
    145  1.10       wiz #include <sys/uio.h>
    146  1.10       wiz #include <sys/kernel.h>
    147  1.10       wiz #include <sys/signalvar.h>
    148  1.10       wiz #include <sys/mman.h>
    149  1.10       wiz #include <sys/poll.h>
    150  1.10       wiz #include <sys/select.h>
    151  1.10       wiz #include <sys/vnode.h>
    152  1.10       wiz 
    153  1.11       wiz #ifndef __NetBSD__
    154  1.10       wiz #include <vm/vm.h>
    155  1.10       wiz #include <vm/vm_kern.h>
    156  1.10       wiz #include <vm/pmap.h>
    157  1.10       wiz #include <vm/vm_extern.h>
    158  1.10       wiz #endif
    159  1.10       wiz 
    160   1.1       wiz #include <sys/device.h>
    161   1.1       wiz #include <dev/pci/pcivar.h>
    162   1.1       wiz #include <dev/pci/pcireg.h>
    163   1.1       wiz #include <dev/pci/pcidevs.h>
    164   1.1       wiz 
    165   1.1       wiz #define BKTR_DEBUG
    166   1.1       wiz #ifdef BKTR_DEBUG
    167   1.1       wiz int bktr_debug = 0;
    168  1.62  dholland #define DPR(x)	(bktr_debug ? printf x : (void)0)
    169   1.1       wiz #else
    170   1.1       wiz #define DPR(x)
    171   1.1       wiz #endif
    172   1.1       wiz #endif /* __NetBSD__ || __OpenBSD__ */
    173   1.1       wiz 
    174  1.29   gehenna #ifdef __NetBSD__
    175  1.29   gehenna dev_type_open(bktr_open);
    176  1.29   gehenna dev_type_close(bktr_close);
    177  1.29   gehenna dev_type_read(bktr_read);
    178  1.29   gehenna dev_type_write(bktr_write);
    179  1.29   gehenna dev_type_ioctl(bktr_ioctl);
    180  1.29   gehenna dev_type_mmap(bktr_mmap);
    181  1.29   gehenna 
    182  1.29   gehenna const struct cdevsw bktr_cdevsw = {
    183  1.63  dholland 	.d_open = bktr_open,
    184  1.63  dholland 	.d_close = bktr_close,
    185  1.63  dholland 	.d_read = bktr_read,
    186  1.63  dholland 	.d_write = bktr_write,
    187  1.63  dholland 	.d_ioctl = bktr_ioctl,
    188  1.63  dholland 	.d_stop = nostop,
    189  1.63  dholland 	.d_tty = notty,
    190  1.63  dholland 	.d_poll = nopoll,
    191  1.63  dholland 	.d_mmap = bktr_mmap,
    192  1.63  dholland 	.d_kqfilter = nokqfilter,
    193  1.65  dholland 	.d_discard = nodiscard,
    194  1.63  dholland 	.d_flag = D_OTHER
    195  1.29   gehenna };
    196  1.29   gehenna #endif /* __NetBSD __ */
    197   1.1       wiz 
    198  1.10       wiz #ifdef __NetBSD__
    199  1.10       wiz #include <dev/ic/bt8xx.h>	/* NetBSD location for .h files */
    200  1.10       wiz #include <dev/pci/bktr/bktr_reg.h>
    201  1.10       wiz #include <dev/pci/bktr/bktr_tuner.h>
    202  1.10       wiz #include <dev/pci/bktr/bktr_card.h>
    203  1.10       wiz #include <dev/pci/bktr/bktr_audio.h>
    204  1.10       wiz #include <dev/pci/bktr/bktr_core.h>
    205  1.10       wiz #include <dev/pci/bktr/bktr_os.h>
    206  1.10       wiz #else					/* Traditional location for .h files */
    207  1.10       wiz #include <machine/ioctl_meteor.h>
    208  1.10       wiz #include <machine/ioctl_bt848.h>	/* extensions to ioctl_meteor.h */
    209  1.10       wiz #include <dev/bktr/bktr_reg.h>
    210  1.10       wiz #include <dev/bktr/bktr_tuner.h>
    211  1.10       wiz #include <dev/bktr/bktr_card.h>
    212  1.10       wiz #include <dev/bktr/bktr_audio.h>
    213  1.10       wiz #include <dev/bktr/bktr_core.h>
    214  1.10       wiz #include <dev/bktr/bktr_os.h>
    215  1.13       wiz #if defined(BKTR_USE_FREEBSD_SMBUS)
    216  1.13       wiz #include <dev/bktr/bktr_i2c.h>
    217  1.13       wiz #endif
    218  1.10       wiz #endif
    219  1.10       wiz 
    220  1.26      tron /* Support for radio(4) under NetBSD */
    221  1.26      tron #ifdef __NetBSD__
    222  1.26      tron #include "radio.h"
    223  1.26      tron #if NRADIO > 0
    224  1.26      tron #include <sys/radioio.h>
    225  1.26      tron #include <dev/radio_if.h>
    226  1.26      tron #endif
    227  1.26      tron #else
    228  1.26      tron #define	NRADIO	0
    229  1.26      tron #endif
    230   1.1       wiz 
    231   1.1       wiz /****************************/
    232   1.1       wiz /* *** FreeBSD 4.x code *** */
    233   1.1       wiz /****************************/
    234   1.1       wiz #if (__FreeBSD_version >= 400000)
    235   1.1       wiz 
    236  1.35       wiz static int	bktr_probe(device_t dev);
    237  1.35       wiz static int	bktr_attach(device_t dev);
    238  1.35       wiz static int	bktr_detach(device_t dev);
    239  1.35       wiz static int	bktr_shutdown(device_t dev);
    240   1.1       wiz static void	bktr_intr(void *arg) { common_bktr_intr(arg); }
    241   1.1       wiz 
    242   1.1       wiz static device_method_t bktr_methods[] = {
    243   1.1       wiz 	/* Device interface */
    244   1.1       wiz 	DEVMETHOD(device_probe,         bktr_probe),
    245   1.1       wiz 	DEVMETHOD(device_attach,        bktr_attach),
    246   1.1       wiz 	DEVMETHOD(device_detach,        bktr_detach),
    247   1.1       wiz 	DEVMETHOD(device_shutdown,      bktr_shutdown),
    248   1.1       wiz 
    249   1.1       wiz 	{ 0, 0 }
    250   1.1       wiz };
    251   1.1       wiz 
    252   1.1       wiz static driver_t bktr_driver = {
    253   1.1       wiz 	"bktr",
    254   1.1       wiz 	bktr_methods,
    255   1.1       wiz 	sizeof(struct bktr_softc),
    256   1.1       wiz };
    257   1.1       wiz 
    258   1.1       wiz static devclass_t bktr_devclass;
    259   1.1       wiz 
    260   1.1       wiz static	d_open_t	bktr_open;
    261   1.1       wiz static	d_close_t	bktr_close;
    262   1.1       wiz static	d_read_t	bktr_read;
    263   1.1       wiz static	d_write_t	bktr_write;
    264   1.1       wiz static	d_ioctl_t	bktr_ioctl;
    265   1.1       wiz static	d_mmap_t	bktr_mmap;
    266   1.1       wiz static	d_poll_t	bktr_poll;
    267   1.1       wiz 
    268  1.35       wiz #define CDEV_MAJOR 92
    269   1.1       wiz static struct cdevsw bktr_cdevsw = {
    270   1.1       wiz 	/* open */	bktr_open,
    271   1.1       wiz 	/* close */	bktr_close,
    272   1.1       wiz 	/* read */	bktr_read,
    273   1.1       wiz 	/* write */	bktr_write,
    274   1.1       wiz 	/* ioctl */	bktr_ioctl,
    275   1.1       wiz 	/* poll */	bktr_poll,
    276   1.1       wiz 	/* mmap */	bktr_mmap,
    277   1.1       wiz 	/* strategy */	nostrategy,
    278   1.1       wiz 	/* name */	"bktr",
    279   1.1       wiz 	/* maj */	CDEV_MAJOR,
    280   1.1       wiz 	/* dump */	nodump,
    281   1.1       wiz 	/* psize */	nopsize,
    282   1.1       wiz 	/* flags */	0,
    283   1.1       wiz 	/* bmaj */	-1
    284   1.1       wiz };
    285   1.1       wiz 
    286   1.1       wiz DRIVER_MODULE(bktr, pci, bktr_driver, bktr_devclass, 0, 0);
    287  1.13       wiz #if (__FreeBSD_version > 410000)
    288  1.13       wiz MODULE_DEPEND(bktr, bktr_mem, 1,1,1);
    289  1.13       wiz MODULE_VERSION(bktr, 1);
    290  1.13       wiz #endif
    291   1.1       wiz 
    292   1.1       wiz 
    293   1.1       wiz /*
    294   1.1       wiz  * the boot time probe routine.
    295   1.1       wiz  */
    296   1.1       wiz static int
    297  1.35       wiz bktr_probe(device_t dev)
    298   1.1       wiz {
    299   1.1       wiz 	unsigned int type = pci_get_devid(dev);
    300   1.1       wiz         unsigned int rev  = pci_get_revid(dev);
    301   1.1       wiz 
    302  1.12       wiz 	if (PCI_VENDOR(type) == PCI_VENDOR_BROOKTREE)
    303  1.12       wiz 	{
    304  1.12       wiz 		switch (PCI_PRODUCT(type)) {
    305  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT848:
    306  1.12       wiz 			if (rev == 0x12)
    307  1.12       wiz 				device_set_desc(dev, "BrookTree 848A");
    308  1.12       wiz 			else
    309  1.12       wiz 				device_set_desc(dev, "BrookTree 848");
    310  1.12       wiz 			return 0;
    311  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT849:
    312  1.12       wiz 			device_set_desc(dev, "BrookTree 849A");
    313  1.12       wiz 			return 0;
    314  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT878:
    315  1.12       wiz 			device_set_desc(dev, "BrookTree 878");
    316  1.12       wiz 			return 0;
    317  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT879:
    318  1.12       wiz 			device_set_desc(dev, "BrookTree 879");
    319  1.12       wiz 			return 0;
    320  1.13       wiz 		}
    321  1.34       mjl 	}
    322   1.1       wiz 
    323   1.1       wiz         return ENXIO;
    324   1.1       wiz }
    325   1.1       wiz 
    326   1.1       wiz 
    327   1.1       wiz /*
    328   1.1       wiz  * the attach routine.
    329   1.1       wiz  */
    330   1.1       wiz static int
    331  1.35       wiz bktr_attach(device_t dev)
    332   1.1       wiz {
    333  1.49  jmcneill 	u_int		latency;
    334  1.49  jmcneill 	u_int		fun;
    335  1.49  jmcneill 	u_int		val;
    336   1.1       wiz 	unsigned int	rev;
    337   1.1       wiz 	unsigned int	unit;
    338   1.1       wiz 	int		error = 0;
    339   1.1       wiz #ifdef BROOKTREE_IRQ
    340  1.49  jmcneill 	u_int		old_irq, new_irq;
    341  1.35       wiz #endif
    342   1.1       wiz 
    343  1.34       mjl 	struct bktr_softc *bktr = device_get_softc(dev);
    344   1.1       wiz 
    345   1.1       wiz 	unit = device_get_unit(dev);
    346   1.1       wiz 
    347  1.10       wiz 	/* build the device name for bktr_name() */
    348  1.10       wiz 	snprintf(bktr->bktr_xname, sizeof(bktr->bktr_xname), "bktr%d",unit);
    349  1.10       wiz 
    350   1.1       wiz 	/*
    351   1.1       wiz 	 * Enable bus mastering and Memory Mapped device
    352   1.1       wiz 	 */
    353   1.1       wiz 	val = pci_read_config(dev, PCIR_COMMAND, 4);
    354   1.1       wiz 	val |= (PCIM_CMD_MEMEN|PCIM_CMD_BUSMASTEREN);
    355   1.1       wiz 	pci_write_config(dev, PCIR_COMMAND, val, 4);
    356   1.1       wiz 
    357   1.1       wiz 	/*
    358   1.1       wiz 	 * Map control/status registers.
    359   1.1       wiz 	 */
    360  1.13       wiz 	bktr->mem_rid = PCIR_MAPS;
    361  1.13       wiz 	bktr->res_mem = bus_alloc_resource(dev, SYS_RES_MEMORY, &bktr->mem_rid,
    362  1.13       wiz 					0, ~0, 1, RF_ACTIVE);
    363  1.13       wiz 
    364   1.1       wiz 
    365   1.1       wiz 	if (!bktr->res_mem) {
    366   1.1       wiz 		device_printf(dev, "could not map memory\n");
    367   1.1       wiz 		error = ENXIO;
    368   1.1       wiz 		goto fail;
    369   1.1       wiz 	}
    370   1.1       wiz 	bktr->memt = rman_get_bustag(bktr->res_mem);
    371   1.1       wiz 	bktr->memh = rman_get_bushandle(bktr->res_mem);
    372   1.1       wiz 
    373   1.1       wiz 
    374   1.1       wiz 	/*
    375   1.1       wiz 	 * Disable the brooktree device
    376   1.1       wiz 	 */
    377   1.1       wiz 	OUTL(bktr, BKTR_INT_MASK, ALL_INTS_DISABLED);
    378   1.1       wiz 	OUTW(bktr, BKTR_GPIO_DMA_CTL, FIFO_RISC_DISABLED);
    379   1.1       wiz 
    380   1.1       wiz 
    381   1.1       wiz #ifdef BROOKTREE_IRQ		/* from the configuration file */
    382   1.1       wiz 	old_irq = pci_conf_read(tag, PCI_INTERRUPT_REG);
    383   1.1       wiz 	pci_conf_write(tag, PCI_INTERRUPT_REG, BROOKTREE_IRQ);
    384   1.1       wiz 	new_irq = pci_conf_read(tag, PCI_INTERRUPT_REG);
    385   1.1       wiz 	printf("bktr%d: attach: irq changed from %d to %d\n",
    386   1.1       wiz 		unit, (old_irq & 0xff), (new_irq & 0xff));
    387  1.35       wiz #endif
    388   1.1       wiz 
    389   1.1       wiz 	/*
    390   1.1       wiz 	 * Allocate our interrupt.
    391   1.1       wiz 	 */
    392  1.13       wiz 	bktr->irq_rid = 0;
    393  1.13       wiz 	bktr->res_irq = bus_alloc_resource(dev, SYS_RES_IRQ, &bktr->irq_rid,
    394  1.13       wiz 				0, ~0, 1, RF_SHAREABLE | RF_ACTIVE);
    395   1.1       wiz 	if (bktr->res_irq == NULL) {
    396   1.1       wiz 		device_printf(dev, "could not map interrupt\n");
    397   1.1       wiz 		error = ENXIO;
    398   1.1       wiz 		goto fail;
    399   1.1       wiz 	}
    400   1.1       wiz 
    401   1.1       wiz 	error = bus_setup_intr(dev, bktr->res_irq, INTR_TYPE_TTY,
    402   1.1       wiz                                bktr_intr, bktr, &bktr->res_ih);
    403   1.1       wiz 	if (error) {
    404   1.1       wiz 		device_printf(dev, "could not setup irq\n");
    405   1.1       wiz 		goto fail;
    406   1.1       wiz 
    407   1.1       wiz 	}
    408   1.1       wiz 
    409   1.1       wiz 
    410   1.1       wiz 	/* Update the Device Control Register */
    411   1.1       wiz 	/* on Bt878 and Bt879 cards           */
    412  1.35       wiz 	fun = pci_read_config(dev, 0x40, 2);
    413   1.1       wiz         fun = fun | 1;	/* Enable writes to the sub-system vendor ID */
    414   1.1       wiz 
    415  1.35       wiz #if defined(BKTR_430_FX_MODE)
    416  1.35       wiz 	if (bootverbose) printf("Using 430 FX chipset compatibility mode\n");
    417   1.1       wiz         fun = fun | 2;	/* Enable Intel 430 FX compatibility mode */
    418   1.1       wiz #endif
    419   1.1       wiz 
    420  1.35       wiz #if defined(BKTR_SIS_VIA_MODE)
    421  1.35       wiz 	if (bootverbose) printf("Using SiS/VIA chipset compatibility mode\n");
    422  1.35       wiz         fun = fun | 4;	/* Enable SiS/VIA compatibility mode (useful for
    423   1.1       wiz                            OPTi chipset motherboards too */
    424   1.1       wiz #endif
    425   1.1       wiz 	pci_write_config(dev, 0x40, fun, 2);
    426   1.1       wiz 
    427   1.1       wiz 
    428   1.1       wiz 	/* XXX call bt848_i2c dependent attach() routine */
    429  1.13       wiz #if defined(BKTR_USE_FREEBSD_SMBUS)
    430   1.1       wiz 	if (bt848_i2c_attach(unit, bktr, &bktr->i2c_sc))
    431   1.1       wiz 		printf("bktr%d: i2c_attach: can't attach\n", unit);
    432   1.1       wiz #endif
    433   1.1       wiz 
    434   1.1       wiz 
    435   1.1       wiz /*
    436   1.1       wiz  * PCI latency timer.  32 is a good value for 4 bus mastering slots, if
    437   1.1       wiz  * you have more than four, then 16 would probably be a better value.
    438   1.1       wiz  */
    439   1.1       wiz #ifndef BROOKTREE_DEF_LATENCY_VALUE
    440   1.1       wiz #define BROOKTREE_DEF_LATENCY_VALUE	10
    441   1.1       wiz #endif
    442   1.1       wiz 	latency = pci_read_config(dev, PCI_LATENCY_TIMER, 4);
    443   1.1       wiz 	latency = (latency >> 8) & 0xff;
    444  1.35       wiz 	if (bootverbose) {
    445   1.1       wiz 		if (latency)
    446   1.1       wiz 			printf("brooktree%d: PCI bus latency is", unit);
    447   1.1       wiz 		else
    448   1.1       wiz 			printf("brooktree%d: PCI bus latency was 0 changing to",
    449   1.1       wiz 				unit);
    450   1.1       wiz 	}
    451  1.35       wiz 	if (!latency) {
    452   1.1       wiz 		latency = BROOKTREE_DEF_LATENCY_VALUE;
    453   1.1       wiz 		pci_write_config(dev, PCI_LATENCY_TIMER, latency<<8, 4);
    454   1.1       wiz 	}
    455  1.35       wiz 	if (bootverbose) {
    456   1.1       wiz 		printf(" %d.\n", (int) latency);
    457   1.1       wiz 	}
    458   1.1       wiz 
    459   1.1       wiz 	/* read the pci device id and revision id */
    460   1.1       wiz 	fun = pci_get_devid(dev);
    461   1.1       wiz         rev = pci_get_revid(dev);
    462   1.1       wiz 
    463   1.1       wiz 	/* call the common attach code */
    464  1.43    bouyer 	if (common_bktr_attach(bktr, unit, fun, rev) == 0)
    465  1.43    bouyer 		return;
    466   1.1       wiz 
    467  1.13       wiz 	/* make the device entries */
    468  1.35       wiz 	bktr->bktrdev = make_dev(&bktr_cdevsw, unit,
    469  1.13       wiz 				0, 0, 0444, "bktr%d",  unit);
    470  1.13       wiz 	bktr->tunerdev= make_dev(&bktr_cdevsw, unit+16,
    471  1.13       wiz 				0, 0, 0444, "tuner%d", unit);
    472  1.13       wiz 	bktr->vbidev  = make_dev(&bktr_cdevsw, unit+32,
    473  1.13       wiz 				0, 0, 0444, "vbi%d"  , unit);
    474  1.13       wiz 
    475  1.13       wiz 
    476  1.13       wiz 	/* if this is unit 0 (/dev/bktr0, /dev/tuner0, /dev/vbi0) then make */
    477  1.13       wiz 	/* alias entries to /dev/bktr /dev/tuner and /dev/vbi */
    478  1.13       wiz #if (__FreeBSD_version >=500000)
    479  1.13       wiz 	if (unit == 0) {
    480  1.13       wiz 		bktr->bktrdev_alias = make_dev_alias(bktr->bktrdev,  "bktr");
    481  1.13       wiz 		bktr->tunerdev_alias= make_dev_alias(bktr->tunerdev, "tuner");
    482  1.13       wiz 		bktr->vbidev_alias  = make_dev_alias(bktr->vbidev,   "vbi");
    483  1.13       wiz 	}
    484  1.13       wiz #endif
    485   1.1       wiz 
    486   1.1       wiz 	return 0;
    487   1.1       wiz 
    488   1.1       wiz fail:
    489  1.13       wiz 	if (bktr->res_irq)
    490  1.13       wiz 		bus_release_resource(dev, SYS_RES_IRQ, bktr->irq_rid, bktr->res_irq);
    491  1.13       wiz 	if (bktr->res_mem)
    492  1.13       wiz 		bus_release_resource(dev, SYS_RES_IRQ, bktr->mem_rid, bktr->res_mem);
    493   1.1       wiz 	return error;
    494   1.1       wiz 
    495   1.1       wiz }
    496   1.1       wiz 
    497   1.1       wiz /*
    498   1.1       wiz  * the detach routine.
    499   1.1       wiz  */
    500   1.1       wiz static int
    501  1.35       wiz bktr_detach(device_t dev)
    502   1.1       wiz {
    503  1.13       wiz 	unsigned int	unit;
    504  1.13       wiz 
    505   1.1       wiz 	struct bktr_softc *bktr = device_get_softc(dev);
    506   1.1       wiz 
    507  1.13       wiz 	unit = device_get_unit(dev);
    508  1.13       wiz 
    509   1.1       wiz 	/* Disable the brooktree device */
    510   1.1       wiz 	OUTL(bktr, BKTR_INT_MASK, ALL_INTS_DISABLED);
    511   1.1       wiz 	OUTW(bktr, BKTR_GPIO_DMA_CTL, FIFO_RISC_DISABLED);
    512   1.1       wiz 
    513  1.13       wiz 	/* Note: We do not free memory for RISC programs, grab buffer, vbi buffers */
    514  1.13       wiz 	/* The memory is retained by the bktr_mem module so we can unload and */
    515  1.13       wiz 	/* then reload the main bktr driver module */
    516  1.13       wiz 
    517  1.13       wiz 	/* Unregister the /dev/bktrN, tunerN and vbiN devices */
    518  1.13       wiz 	destroy_dev(bktr->vbidev);
    519  1.13       wiz 	destroy_dev(bktr->tunerdev);
    520  1.13       wiz 	destroy_dev(bktr->bktrdev);
    521  1.13       wiz 
    522  1.13       wiz 	/* If this is unit 0, then destroy the alias entries too */
    523  1.13       wiz #if (__FreeBSD_version >=500000)
    524  1.13       wiz 	if (unit == 0) {
    525  1.13       wiz 	    destroy_dev(bktr->vbidev_alias);
    526  1.13       wiz 	    destroy_dev(bktr->tunerdev_alias);
    527  1.13       wiz 	    destroy_dev(bktr->bktrdev_alias);
    528  1.13       wiz 	}
    529  1.13       wiz #endif
    530  1.50     rmind 	seldestroy(&bktr->vbi_select);
    531   1.1       wiz 
    532   1.1       wiz 	/*
    533   1.1       wiz 	 * Deallocate resources.
    534   1.1       wiz 	 */
    535   1.1       wiz 	bus_teardown_intr(dev, bktr->res_irq, bktr->res_ih);
    536  1.13       wiz 	bus_release_resource(dev, SYS_RES_IRQ, bktr->irq_rid, bktr->res_irq);
    537  1.13       wiz 	bus_release_resource(dev, SYS_RES_MEMORY, bktr->mem_rid, bktr->res_mem);
    538  1.35       wiz 
    539   1.1       wiz 	return 0;
    540   1.1       wiz }
    541   1.1       wiz 
    542   1.1       wiz /*
    543   1.1       wiz  * the shutdown routine.
    544   1.1       wiz  */
    545   1.1       wiz static int
    546  1.35       wiz bktr_shutdown(device_t dev)
    547   1.1       wiz {
    548   1.1       wiz 	struct bktr_softc *bktr = device_get_softc(dev);
    549   1.1       wiz 
    550   1.1       wiz 	/* Disable the brooktree device */
    551   1.1       wiz 	OUTL(bktr, BKTR_INT_MASK, ALL_INTS_DISABLED);
    552   1.1       wiz 	OUTW(bktr, BKTR_GPIO_DMA_CTL, FIFO_RISC_DISABLED);
    553   1.1       wiz 
    554   1.1       wiz 	return 0;
    555   1.1       wiz }
    556   1.1       wiz 
    557   1.1       wiz 
    558   1.1       wiz /*
    559   1.1       wiz  * Special Memory Allocation
    560   1.1       wiz  */
    561   1.1       wiz vm_offset_t
    562  1.35       wiz get_bktr_mem(int unit, unsigned size)
    563   1.1       wiz {
    564   1.1       wiz 	vm_offset_t	addr = 0;
    565   1.1       wiz 
    566   1.1       wiz 	addr = vm_page_alloc_contig(size, 0, 0xffffffff, 1<<24);
    567   1.1       wiz 	if (addr == 0)
    568   1.1       wiz 		addr = vm_page_alloc_contig(size, 0, 0xffffffff, PAGE_SIZE);
    569   1.1       wiz 	if (addr == 0) {
    570   1.1       wiz 		printf("bktr%d: Unable to allocate %d bytes of memory.\n",
    571   1.1       wiz 			unit, size);
    572   1.1       wiz 	}
    573   1.1       wiz 
    574  1.35       wiz 	return(addr);
    575   1.1       wiz }
    576   1.1       wiz 
    577   1.1       wiz 
    578   1.1       wiz /*---------------------------------------------------------
    579   1.1       wiz **
    580   1.1       wiz **	BrookTree 848 character device driver routines
    581   1.1       wiz **
    582   1.1       wiz **---------------------------------------------------------
    583   1.1       wiz */
    584   1.1       wiz 
    585   1.1       wiz #define VIDEO_DEV	0x00
    586   1.1       wiz #define TUNER_DEV	0x01
    587   1.1       wiz #define VBI_DEV		0x02
    588   1.1       wiz 
    589   1.1       wiz #define UNIT(x)		((x) & 0x0f)
    590   1.1       wiz #define FUNCTION(x)	(x >> 4)
    591   1.1       wiz 
    592   1.1       wiz /*
    593  1.35       wiz  *
    594   1.1       wiz  */
    595   1.1       wiz int
    596  1.39  christos bktr_open(dev_t dev, int flags, int fmt, struct lwp *l)
    597   1.1       wiz {
    598   1.1       wiz 	bktr_ptr_t	bktr;
    599   1.1       wiz 	int		unit;
    600   1.1       wiz 	int		result;
    601   1.1       wiz 
    602  1.35       wiz 	unit = UNIT(minor(dev));
    603   1.1       wiz 
    604   1.1       wiz 	/* Get the device data */
    605   1.1       wiz 	bktr = (struct bktr_softc*)devclass_get_softc(bktr_devclass, unit);
    606   1.1       wiz 	if (bktr == NULL) {
    607   1.1       wiz 		/* the device is no longer valid/functioning */
    608   1.1       wiz 		return (ENXIO);
    609   1.1       wiz 	}
    610   1.1       wiz 
    611  1.20       wiz 	if (!(bktr->flags & METEOR_INITIALIZED)) /* device not found */
    612  1.35       wiz 		return(ENXIO);
    613   1.1       wiz 
    614   1.1       wiz 	/* Record that the device is now busy */
    615  1.35       wiz 	device_busy(devclass_get_device(bktr_devclass, unit));
    616   1.1       wiz 
    617   1.1       wiz 
    618   1.1       wiz 	if (bt848_card != -1) {
    619  1.35       wiz 	  if ((bt848_card >> 8   == unit) &&
    620  1.35       wiz 	     ((bt848_card & 0xff) < Bt848_MAX_CARD)) {
    621  1.35       wiz 	    if (bktr->bt848_card != (bt848_card & 0xff)) {
    622   1.1       wiz 	      bktr->bt848_card = (bt848_card & 0xff);
    623   1.1       wiz 	      probeCard(bktr, FALSE, unit);
    624   1.1       wiz 	    }
    625   1.1       wiz 	  }
    626   1.1       wiz 	}
    627   1.1       wiz 
    628   1.1       wiz 	if (bt848_tuner != -1) {
    629  1.35       wiz 	  if ((bt848_tuner >> 8   == unit) &&
    630  1.35       wiz 	     ((bt848_tuner & 0xff) < Bt848_MAX_TUNER)) {
    631  1.35       wiz 	    if (bktr->bt848_tuner != (bt848_tuner & 0xff)) {
    632   1.1       wiz 	      bktr->bt848_tuner = (bt848_tuner & 0xff);
    633   1.1       wiz 	      probeCard(bktr, FALSE, unit);
    634   1.1       wiz 	    }
    635   1.1       wiz 	  }
    636   1.1       wiz 	}
    637   1.1       wiz 
    638   1.1       wiz 	if (bt848_reverse_mute != -1) {
    639  1.35       wiz 	  if ((bt848_reverse_mute >> 8)   == unit) {
    640   1.1       wiz 	    bktr->reverse_mute = bt848_reverse_mute & 0xff;
    641   1.1       wiz 	  }
    642   1.1       wiz 	}
    643   1.1       wiz 
    644   1.1       wiz 	if (bt848_slow_msp_audio != -1) {
    645  1.35       wiz 	  if ((bt848_slow_msp_audio >> 8) == unit) {
    646   1.1       wiz 	      bktr->slow_msp_audio = (bt848_slow_msp_audio & 0xff);
    647   1.1       wiz 	  }
    648   1.1       wiz 	}
    649   1.1       wiz 
    650  1.35       wiz 	switch (FUNCTION(minor(dev))) {
    651   1.1       wiz 	case VIDEO_DEV:
    652  1.35       wiz 		result = video_open(bktr);
    653   1.1       wiz 		break;
    654   1.1       wiz 	case TUNER_DEV:
    655  1.35       wiz 		result = tuner_open(bktr);
    656   1.1       wiz 		break;
    657   1.1       wiz 	case VBI_DEV:
    658  1.35       wiz 		result = vbi_open(bktr);
    659   1.1       wiz 		break;
    660   1.1       wiz 	default:
    661   1.1       wiz 		result = ENXIO;
    662   1.1       wiz 		break;
    663   1.1       wiz 	}
    664   1.1       wiz 
    665   1.1       wiz 	/* If there was an error opening the device, undo the busy status */
    666   1.1       wiz 	if (result != 0)
    667  1.35       wiz 		device_unbusy(devclass_get_device(bktr_devclass, unit));
    668  1.35       wiz 	return(result);
    669   1.1       wiz }
    670   1.1       wiz 
    671   1.1       wiz 
    672   1.1       wiz /*
    673  1.35       wiz  *
    674   1.1       wiz  */
    675   1.1       wiz int
    676  1.39  christos bktr_close(dev_t dev, int flags, int fmt, struct lwp *l)
    677   1.1       wiz {
    678   1.1       wiz 	bktr_ptr_t	bktr;
    679   1.1       wiz 	int		unit;
    680   1.1       wiz 	int		result;
    681   1.1       wiz 
    682  1.35       wiz 	unit = UNIT(minor(dev));
    683   1.1       wiz 
    684   1.1       wiz 	/* Get the device data */
    685   1.1       wiz 	bktr = (struct bktr_softc*)devclass_get_softc(bktr_devclass, unit);
    686   1.1       wiz 	if (bktr == NULL) {
    687   1.1       wiz 		/* the device is no longer valid/functioning */
    688   1.1       wiz 		return (ENXIO);
    689   1.1       wiz 	}
    690   1.1       wiz 
    691  1.35       wiz 	switch (FUNCTION(minor(dev))) {
    692   1.1       wiz 	case VIDEO_DEV:
    693  1.35       wiz 		result = video_close(bktr);
    694   1.1       wiz 		break;
    695   1.1       wiz 	case TUNER_DEV:
    696  1.35       wiz 		result = tuner_close(bktr);
    697   1.1       wiz 		break;
    698   1.1       wiz 	case VBI_DEV:
    699  1.35       wiz 		result = vbi_close(bktr);
    700   1.1       wiz 		break;
    701   1.1       wiz 	default:
    702   1.1       wiz 		return (ENXIO);
    703   1.1       wiz 		break;
    704   1.1       wiz 	}
    705   1.1       wiz 
    706  1.35       wiz 	device_unbusy(devclass_get_device(bktr_devclass, unit));
    707  1.35       wiz 	return(result);
    708   1.1       wiz }
    709   1.1       wiz 
    710   1.1       wiz 
    711   1.1       wiz /*
    712  1.35       wiz  *
    713   1.1       wiz  */
    714   1.1       wiz int
    715  1.35       wiz bktr_read(dev_t dev, struct uio *uio, int ioflag)
    716   1.1       wiz {
    717   1.1       wiz 	bktr_ptr_t	bktr;
    718   1.1       wiz 	int		unit;
    719  1.35       wiz 
    720   1.1       wiz 	unit = UNIT(minor(dev));
    721   1.1       wiz 
    722   1.1       wiz 	/* Get the device data */
    723   1.1       wiz 	bktr = (struct bktr_softc*)devclass_get_softc(bktr_devclass, unit);
    724   1.1       wiz 	if (bktr == NULL) {
    725   1.1       wiz 		/* the device is no longer valid/functioning */
    726   1.1       wiz 		return (ENXIO);
    727   1.1       wiz 	}
    728   1.1       wiz 
    729  1.35       wiz 	switch (FUNCTION(minor(dev))) {
    730   1.1       wiz 	case VIDEO_DEV:
    731  1.35       wiz 		return(video_read(bktr, unit, dev, uio));
    732   1.1       wiz 	case VBI_DEV:
    733  1.35       wiz 		return(vbi_read(bktr, uio, ioflag));
    734   1.1       wiz 	}
    735  1.35       wiz         return(ENXIO);
    736   1.1       wiz }
    737   1.1       wiz 
    738   1.1       wiz 
    739   1.1       wiz /*
    740  1.35       wiz  *
    741   1.1       wiz  */
    742   1.1       wiz int
    743  1.35       wiz bktr_write(dev_t dev, struct uio *uio, int ioflag)
    744   1.1       wiz {
    745  1.35       wiz 	return(EINVAL); /* XXX or ENXIO ? */
    746   1.1       wiz }
    747   1.1       wiz 
    748   1.1       wiz 
    749   1.1       wiz /*
    750  1.35       wiz  *
    751   1.1       wiz  */
    752   1.1       wiz int
    753  1.46  christos bktr_ioctl(dev_t dev, ioctl_cmd_t cmd, void *arg, int flag, struct proc* pr)
    754   1.1       wiz {
    755   1.1       wiz 	bktr_ptr_t	bktr;
    756   1.1       wiz 	int		unit;
    757   1.1       wiz 
    758   1.1       wiz 	unit = UNIT(minor(dev));
    759   1.1       wiz 
    760   1.1       wiz 	/* Get the device data */
    761   1.1       wiz 	bktr = (struct bktr_softc*)devclass_get_softc(bktr_devclass, unit);
    762   1.1       wiz 	if (bktr == NULL) {
    763   1.1       wiz 		/* the device is no longer valid/functioning */
    764   1.1       wiz 		return (ENXIO);
    765   1.1       wiz 	}
    766   1.1       wiz 
    767   1.1       wiz 	if (bktr->bigbuf == 0)	/* no frame buffer allocated (ioctl failed) */
    768  1.35       wiz 		return(ENOMEM);
    769   1.1       wiz 
    770  1.35       wiz 	switch (FUNCTION(minor(dev))) {
    771   1.1       wiz 	case VIDEO_DEV:
    772  1.35       wiz 		return(video_ioctl(bktr, unit, cmd, arg, pr));
    773   1.1       wiz 	case TUNER_DEV:
    774  1.35       wiz 		return(tuner_ioctl(bktr, unit, cmd, arg, pr));
    775   1.1       wiz 	}
    776   1.1       wiz 
    777  1.35       wiz 	return(ENXIO);
    778   1.1       wiz }
    779   1.1       wiz 
    780   1.1       wiz 
    781   1.1       wiz /*
    782  1.35       wiz  *
    783   1.1       wiz  */
    784   1.8    simonb int
    785  1.35       wiz bktr_mmap(dev_t dev, vm_offset_t offset, int nprot)
    786   1.1       wiz {
    787   1.1       wiz 	int		unit;
    788   1.1       wiz 	bktr_ptr_t	bktr;
    789   1.1       wiz 
    790   1.1       wiz 	unit = UNIT(minor(dev));
    791   1.1       wiz 
    792   1.1       wiz 	if (FUNCTION(minor(dev)) > 0)	/* only allow mmap on /dev/bktr[n] */
    793  1.35       wiz 		return(-1);
    794   1.1       wiz 
    795   1.1       wiz 	/* Get the device data */
    796   1.1       wiz 	bktr = (struct bktr_softc*)devclass_get_softc(bktr_devclass, unit);
    797   1.1       wiz 	if (bktr == NULL) {
    798   1.1       wiz 		/* the device is no longer valid/functioning */
    799  1.18       mjl 		return (-1);
    800   1.1       wiz 	}
    801   1.1       wiz 
    802   1.1       wiz 	if (nprot & PROT_EXEC)
    803  1.35       wiz 		return(-1);
    804   1.1       wiz 
    805   1.1       wiz 	if (offset < 0)
    806  1.35       wiz 		return(-1);
    807   1.1       wiz 
    808   1.1       wiz 	if (offset >= bktr->alloc_pages * PAGE_SIZE)
    809  1.35       wiz 		return(-1);
    810   1.1       wiz 
    811  1.35       wiz 	return(atop(vtophys(bktr->bigbuf) + offset));
    812   1.1       wiz }
    813   1.1       wiz 
    814  1.39  christos int bktr_poll(dev_t dev, int events, struct lwp *l)
    815   1.1       wiz {
    816   1.1       wiz 	int		unit;
    817   1.1       wiz 	bktr_ptr_t	bktr;
    818  1.35       wiz 	int revents = 0;
    819   1.1       wiz 	DECLARE_INTR_MASK(s);
    820   1.1       wiz 
    821   1.1       wiz 	unit = UNIT(minor(dev));
    822   1.1       wiz 
    823   1.1       wiz 	/* Get the device data */
    824   1.1       wiz 	bktr = (struct bktr_softc*)devclass_get_softc(bktr_devclass, unit);
    825   1.1       wiz 	if (bktr == NULL) {
    826   1.1       wiz 		/* the device is no longer valid/functioning */
    827   1.1       wiz 		return (ENXIO);
    828   1.1       wiz 	}
    829   1.1       wiz 
    830   1.1       wiz 	DISABLE_INTR(s);
    831   1.1       wiz 
    832   1.1       wiz 	if (events & (POLLIN | POLLRDNORM)) {
    833   1.1       wiz 
    834  1.35       wiz 		switch (FUNCTION(minor(dev))) {
    835   1.1       wiz 		case VBI_DEV:
    836   1.1       wiz 			if(bktr->vbisize == 0)
    837   1.1       wiz 				selrecord(p, &bktr->vbi_select);
    838   1.1       wiz 			else
    839   1.1       wiz 				revents |= events & (POLLIN | POLLRDNORM);
    840   1.1       wiz 			break;
    841   1.1       wiz 		}
    842   1.1       wiz 	}
    843   1.1       wiz 
    844   1.1       wiz 	ENABLE_INTR(s);
    845   1.1       wiz 
    846   1.1       wiz 	return (revents);
    847   1.1       wiz }
    848   1.1       wiz 
    849   1.1       wiz #endif		/* FreeBSD 4.x specific kernel interface routines */
    850   1.1       wiz 
    851   1.1       wiz /**********************************/
    852   1.1       wiz /* *** FreeBSD 2.2.x and 3.x  *** */
    853   1.1       wiz /**********************************/
    854   1.1       wiz 
    855   1.1       wiz #if ((__FreeBSD__ == 2) || (__FreeBSD__ == 3))
    856   1.1       wiz 
    857  1.35       wiz static bktr_reg_t brooktree[NBKTR];
    858   1.1       wiz 
    859  1.35       wiz static const char*	bktr_probe(pcici_t tag, pcidi_t type);
    860  1.35       wiz static void		bktr_attach(pcici_t tag, int unit);
    861   1.1       wiz static void		bktr_intr(void *arg) { common_bktr_intr(arg); }
    862   1.1       wiz 
    863  1.49  jmcneill static u_int	bktr_count;
    864   1.1       wiz 
    865   1.1       wiz static struct	pci_device bktr_device = {
    866   1.1       wiz 	"bktr",
    867   1.1       wiz 	bktr_probe,
    868   1.1       wiz 	bktr_attach,
    869   1.1       wiz 	&bktr_count
    870   1.1       wiz };
    871   1.1       wiz 
    872   1.1       wiz DATA_SET (pcidevice_set, bktr_device);
    873   1.1       wiz 
    874   1.1       wiz static	d_open_t	bktr_open;
    875   1.1       wiz static	d_close_t	bktr_close;
    876   1.1       wiz static	d_read_t	bktr_read;
    877   1.1       wiz static	d_write_t	bktr_write;
    878   1.1       wiz static	d_ioctl_t	bktr_ioctl;
    879   1.1       wiz static	d_mmap_t	bktr_mmap;
    880   1.1       wiz static	d_poll_t	bktr_poll;
    881   1.1       wiz 
    882  1.35       wiz #define CDEV_MAJOR 92
    883  1.35       wiz static struct cdevsw bktr_cdevsw =
    884   1.1       wiz {
    885   1.1       wiz 	bktr_open,	bktr_close,	bktr_read,	bktr_write,
    886   1.1       wiz 	bktr_ioctl,	nostop,		nullreset,	nodevtotty,
    887   1.1       wiz 	bktr_poll,	bktr_mmap,	NULL,		"bktr",
    888   1.1       wiz 	NULL,		-1
    889   1.1       wiz };
    890   1.1       wiz 
    891   1.1       wiz static int bktr_devsw_installed;
    892   1.1       wiz 
    893   1.1       wiz static void
    894  1.35       wiz bktr_drvinit(void *unused)
    895   1.1       wiz {
    896   1.1       wiz 	dev_t dev;
    897   1.1       wiz 
    898  1.35       wiz 	if (! bktr_devsw_installed) {
    899   1.1       wiz 		dev = makedev(CDEV_MAJOR, 0);
    900   1.1       wiz 		cdevsw_add(&dev,&bktr_cdevsw, NULL);
    901   1.1       wiz 		bktr_devsw_installed = 1;
    902   1.1       wiz 	}
    903   1.1       wiz }
    904   1.1       wiz 
    905   1.1       wiz SYSINIT(bktrdev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE+CDEV_MAJOR,bktr_drvinit,NULL)
    906   1.1       wiz 
    907   1.1       wiz /*
    908   1.1       wiz  * the boot time probe routine.
    909   1.1       wiz  */
    910   1.1       wiz static const char*
    911  1.35       wiz bktr_probe(pcici_t tag, pcidi_t type)
    912   1.1       wiz {
    913  1.35       wiz         unsigned int rev = pci_conf_read(tag, PCIR_REVID) & 0x000000ff;
    914  1.13       wiz 
    915  1.12       wiz 	if (PCI_VENDOR(type) == PCI_VENDOR_BROOKTREE)
    916  1.12       wiz 	{
    917  1.12       wiz 		switch (PCI_PRODUCT(type)) {
    918  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT848:
    919  1.12       wiz 			if (rev == 0x12) return("BrookTree 848A");
    920  1.12       wiz 			else             return("BrookTree 848");
    921  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT849:
    922  1.12       wiz 			return("BrookTree 849A");
    923  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT878:
    924  1.12       wiz 			return("BrookTree 878");
    925  1.12       wiz 		case PCI_PRODUCT_BROOKTREE_BT879:
    926  1.12       wiz 			return("BrookTree 879");
    927  1.12       wiz 		}
    928   1.1       wiz 	};
    929   1.1       wiz 
    930   1.1       wiz 	return ((char *)0);
    931   1.1       wiz }
    932   1.1       wiz 
    933   1.1       wiz /*
    934   1.1       wiz  * the attach routine.
    935   1.1       wiz  */
    936   1.1       wiz static	void
    937  1.35       wiz bktr_attach(pcici_t tag, int unit)
    938   1.1       wiz {
    939   1.1       wiz 	bktr_ptr_t	bktr;
    940  1.49  jmcneill 	u_int		latency;
    941  1.49  jmcneill 	u_int		fun;
    942   1.1       wiz 	unsigned int	rev;
    943   1.1       wiz 	unsigned long	base;
    944   1.1       wiz #ifdef BROOKTREE_IRQ
    945  1.49  jmcneill 	u_int		old_irq, new_irq;
    946  1.35       wiz #endif
    947   1.1       wiz 
    948   1.1       wiz 	bktr = &brooktree[unit];
    949   1.1       wiz 
    950   1.1       wiz 	if (unit >= NBKTR) {
    951   1.1       wiz 		printf("brooktree%d: attach: only %d units configured.\n",
    952   1.1       wiz 		        unit, NBKTR);
    953   1.1       wiz 		printf("brooktree%d: attach: invalid unit number.\n", unit);
    954   1.1       wiz 		return;
    955   1.1       wiz 	}
    956  1.10       wiz 
    957  1.10       wiz 	/* build the device name for bktr_name() */
    958  1.10       wiz 	snprintf(bktr->bktr_xname, sizeof(bktr->bktr_xname), "bktr%d",unit);
    959   1.1       wiz 
    960   1.1       wiz 	/* Enable Memory Mapping */
    961   1.1       wiz 	fun = pci_conf_read(tag, PCI_COMMAND_STATUS_REG);
    962   1.1       wiz 	pci_conf_write(tag, PCI_COMMAND_STATUS_REG, fun | 2);
    963   1.1       wiz 
    964   1.1       wiz 	/* Enable Bus Mastering */
    965   1.1       wiz 	fun = pci_conf_read(tag, PCI_COMMAND_STATUS_REG);
    966   1.1       wiz 	pci_conf_write(tag, PCI_COMMAND_STATUS_REG, fun | 4);
    967   1.1       wiz 
    968   1.1       wiz 	bktr->tag = tag;
    969   1.1       wiz 
    970   1.1       wiz 
    971   1.1       wiz 	/*
    972   1.1       wiz 	 * Map control/status registers
    973   1.1       wiz 	 */
    974  1.35       wiz 	pci_map_mem(tag, PCI_MAP_REG_START, (vm_offset_t *) &base,
    975  1.35       wiz 		     &bktr->phys_base);
    976   1.1       wiz #if (__FreeBSD_version >= 300000)
    977   1.1       wiz 	bktr->memt = I386_BUS_SPACE_MEM; /* XXX should use proper bus space */
    978   1.1       wiz 	bktr->memh = (bus_space_handle_t)base; /* XXX functions here */
    979   1.1       wiz #endif
    980   1.1       wiz 
    981   1.1       wiz 	/*
    982   1.1       wiz 	 * Disable the brooktree device
    983   1.1       wiz 	 */
    984   1.1       wiz 	OUTL(bktr, BKTR_INT_MASK, ALL_INTS_DISABLED);
    985   1.1       wiz 	OUTW(bktr, BKTR_GPIO_DMA_CTL, FIFO_RISC_DISABLED);
    986   1.1       wiz 
    987   1.1       wiz #ifdef BROOKTREE_IRQ		/* from the configuration file */
    988   1.1       wiz 	old_irq = pci_conf_read(tag, PCI_INTERRUPT_REG);
    989   1.1       wiz 	pci_conf_write(tag, PCI_INTERRUPT_REG, BROOKTREE_IRQ);
    990   1.1       wiz 	new_irq = pci_conf_read(tag, PCI_INTERRUPT_REG);
    991   1.1       wiz 	printf("bktr%d: attach: irq changed from %d to %d\n",
    992   1.1       wiz 		unit, (old_irq & 0xff), (new_irq & 0xff));
    993  1.35       wiz #endif
    994   1.1       wiz 
    995   1.1       wiz 	/*
    996   1.1       wiz 	 * setup the interrupt handling routine
    997   1.1       wiz 	 */
    998   1.1       wiz 	pci_map_int(tag, bktr_intr, (void*) bktr, &tty_imask);
    999   1.1       wiz 
   1000   1.1       wiz 
   1001   1.1       wiz 	/* Update the Device Control Register */
   1002   1.1       wiz 	/* on Bt878 and Bt879 cards */
   1003   1.1       wiz 	fun = pci_conf_read(tag, 0x40);
   1004   1.1       wiz         fun = fun | 1;	/* Enable writes to the sub-system vendor ID */
   1005   1.1       wiz 
   1006  1.35       wiz #if defined(BKTR_430_FX_MODE)
   1007  1.35       wiz 	if (bootverbose) printf("Using 430 FX chipset compatibility mode\n");
   1008   1.1       wiz         fun = fun | 2;	/* Enable Intel 430 FX compatibility mode */
   1009   1.1       wiz #endif
   1010   1.1       wiz 
   1011  1.35       wiz #if defined(BKTR_SIS_VIA_MODE)
   1012  1.35       wiz 	if (bootverbose) printf("Using SiS/VIA chipset compatibility mode\n");
   1013  1.35       wiz         fun = fun | 4;	/* Enable SiS/VIA compatibility mode (useful for
   1014   1.1       wiz                            OPTi chipset motherboards too */
   1015   1.1       wiz #endif
   1016   1.1       wiz 	pci_conf_write(tag, 0x40, fun);
   1017   1.1       wiz 
   1018   1.1       wiz 
   1019   1.1       wiz 	/* XXX call bt848_i2c dependent attach() routine */
   1020  1.13       wiz #if defined(BKTR_USE_FREEBSD_SMBUS)
   1021   1.1       wiz 	if (bt848_i2c_attach(unit, bktr, &bktr->i2c_sc))
   1022   1.1       wiz 		printf("bktr%d: i2c_attach: can't attach\n", unit);
   1023   1.1       wiz #endif
   1024   1.1       wiz 
   1025   1.1       wiz 
   1026   1.1       wiz /*
   1027   1.1       wiz  * PCI latency timer.  32 is a good value for 4 bus mastering slots, if
   1028   1.1       wiz  * you have more than four, then 16 would probably be a better value.
   1029   1.1       wiz  */
   1030   1.1       wiz #ifndef BROOKTREE_DEF_LATENCY_VALUE
   1031   1.1       wiz #define BROOKTREE_DEF_LATENCY_VALUE	10
   1032   1.1       wiz #endif
   1033   1.1       wiz 	latency = pci_conf_read(tag, PCI_LATENCY_TIMER);
   1034   1.1       wiz 	latency = (latency >> 8) & 0xff;
   1035  1.35       wiz 	if (bootverbose) {
   1036   1.1       wiz 		if (latency)
   1037   1.1       wiz 			printf("brooktree%d: PCI bus latency is", unit);
   1038   1.1       wiz 		else
   1039   1.1       wiz 			printf("brooktree%d: PCI bus latency was 0 changing to",
   1040   1.1       wiz 				unit);
   1041   1.1       wiz 	}
   1042  1.35       wiz 	if (!latency) {
   1043   1.1       wiz 		latency = BROOKTREE_DEF_LATENCY_VALUE;
   1044   1.1       wiz 		pci_conf_write(tag, PCI_LATENCY_TIMER,	latency<<8);
   1045   1.1       wiz 	}
   1046  1.35       wiz 	if (bootverbose) {
   1047   1.1       wiz 		printf(" %d.\n", (int) latency);
   1048   1.1       wiz 	}
   1049   1.1       wiz 
   1050   1.1       wiz 
   1051   1.1       wiz 	/* read the pci device id and revision id */
   1052   1.1       wiz 	fun = pci_conf_read(tag, PCI_ID_REG);
   1053   1.1       wiz         rev = pci_conf_read(tag, PCIR_REVID) & 0x000000ff;
   1054   1.1       wiz 
   1055   1.1       wiz 	/* call the common attach code */
   1056  1.35       wiz 	common_bktr_attach(bktr, unit, fun, rev);
   1057   1.1       wiz 
   1058   1.1       wiz }
   1059   1.1       wiz 
   1060   1.1       wiz 
   1061   1.1       wiz /*
   1062   1.1       wiz  * Special Memory Allocation
   1063   1.1       wiz  */
   1064   1.1       wiz vm_offset_t
   1065  1.35       wiz get_bktr_mem(int unit, unsigned size)
   1066   1.1       wiz {
   1067   1.1       wiz 	vm_offset_t	addr = 0;
   1068   1.1       wiz 
   1069   1.1       wiz 	addr = vm_page_alloc_contig(size, 0x100000, 0xffffffff, 1<<24);
   1070   1.1       wiz 	if (addr == 0)
   1071   1.1       wiz 		addr = vm_page_alloc_contig(size, 0x100000, 0xffffffff,
   1072   1.1       wiz 								PAGE_SIZE);
   1073   1.1       wiz 	if (addr == 0) {
   1074   1.1       wiz 		printf("bktr%d: Unable to allocate %d bytes of memory.\n",
   1075   1.1       wiz 			unit, size);
   1076   1.1       wiz 	}
   1077   1.1       wiz 
   1078  1.35       wiz 	return(addr);
   1079   1.1       wiz }
   1080   1.1       wiz 
   1081   1.1       wiz /*---------------------------------------------------------
   1082   1.1       wiz **
   1083   1.1       wiz **	BrookTree 848 character device driver routines
   1084   1.1       wiz **
   1085   1.1       wiz **---------------------------------------------------------
   1086   1.1       wiz */
   1087   1.1       wiz 
   1088   1.1       wiz 
   1089   1.1       wiz #define VIDEO_DEV	0x00
   1090   1.1       wiz #define TUNER_DEV	0x01
   1091   1.1       wiz #define VBI_DEV		0x02
   1092   1.1       wiz 
   1093   1.1       wiz #define UNIT(x)		((x) & 0x0f)
   1094   1.1       wiz #define FUNCTION(x)	((x >> 4) & 0x0f)
   1095   1.1       wiz 
   1096   1.1       wiz 
   1097   1.1       wiz /*
   1098  1.35       wiz  *
   1099   1.1       wiz  */
   1100   1.1       wiz int
   1101  1.39  christos bktr_open(dev_t dev, int flags, int fmt, struct lwp *l)
   1102   1.1       wiz {
   1103   1.1       wiz 	bktr_ptr_t	bktr;
   1104   1.1       wiz 	int		unit;
   1105   1.1       wiz 
   1106  1.35       wiz 	unit = UNIT(minor(dev));
   1107   1.1       wiz 	if (unit >= NBKTR)			/* unit out of range */
   1108  1.35       wiz 		return(ENXIO);
   1109   1.1       wiz 
   1110  1.35       wiz 	bktr = &(brooktree[unit]);
   1111   1.1       wiz 
   1112  1.20       wiz 	if (!(bktr->flags & METEOR_INITIALIZED)) /* device not found */
   1113  1.35       wiz 		return(ENXIO);
   1114   1.1       wiz 
   1115   1.1       wiz 
   1116   1.1       wiz 	if (bt848_card != -1) {
   1117  1.35       wiz 	  if ((bt848_card >> 8   == unit) &&
   1118  1.35       wiz 	     ((bt848_card & 0xff) < Bt848_MAX_CARD)) {
   1119  1.35       wiz 	    if (bktr->bt848_card != (bt848_card & 0xff)) {
   1120   1.1       wiz 	      bktr->bt848_card = (bt848_card & 0xff);
   1121   1.1       wiz 	      probeCard(bktr, FALSE, unit);
   1122   1.1       wiz 	    }
   1123   1.1       wiz 	  }
   1124   1.1       wiz 	}
   1125   1.1       wiz 
   1126   1.1       wiz 	if (bt848_tuner != -1) {
   1127  1.35       wiz 	  if ((bt848_tuner >> 8   == unit) &&
   1128  1.35       wiz 	     ((bt848_tuner & 0xff) < Bt848_MAX_TUNER)) {
   1129  1.35       wiz 	    if (bktr->bt848_tuner != (bt848_tuner & 0xff)) {
   1130   1.1       wiz 	      bktr->bt848_tuner = (bt848_tuner & 0xff);
   1131   1.1       wiz 	      probeCard(bktr, FALSE, unit);
   1132   1.1       wiz 	    }
   1133   1.1       wiz 	  }
   1134   1.1       wiz 	}
   1135   1.1       wiz 
   1136   1.1       wiz 	if (bt848_reverse_mute != -1) {
   1137  1.35       wiz 	  if ((bt848_reverse_mute >> 8)   == unit) {
   1138   1.1       wiz 	    bktr->reverse_mute = bt848_reverse_mute & 0xff;
   1139   1.1       wiz 	  }
   1140   1.1       wiz 	}
   1141   1.1       wiz 
   1142   1.1       wiz 	if (bt848_slow_msp_audio != -1) {
   1143  1.35       wiz 	  if ((bt848_slow_msp_audio >> 8) == unit) {
   1144   1.1       wiz 	      bktr->slow_msp_audio = (bt848_slow_msp_audio & 0xff);
   1145   1.1       wiz 	  }
   1146   1.1       wiz 	}
   1147   1.1       wiz 
   1148  1.35       wiz 	switch (FUNCTION(minor(dev))) {
   1149   1.1       wiz 	case VIDEO_DEV:
   1150  1.35       wiz 		return(video_open(bktr));
   1151   1.1       wiz 	case TUNER_DEV:
   1152  1.35       wiz 		return(tuner_open(bktr));
   1153   1.1       wiz 	case VBI_DEV:
   1154  1.35       wiz 		return(vbi_open(bktr));
   1155   1.1       wiz 	}
   1156  1.35       wiz 	return(ENXIO);
   1157   1.1       wiz }
   1158   1.1       wiz 
   1159   1.1       wiz 
   1160   1.1       wiz /*
   1161  1.35       wiz  *
   1162   1.1       wiz  */
   1163   1.1       wiz int
   1164  1.39  christos bktr_close(dev_t dev, int flags, int fmt, struct lwp *l)
   1165   1.1       wiz {
   1166   1.1       wiz 	bktr_ptr_t	bktr;
   1167   1.1       wiz 	int		unit;
   1168   1.1       wiz 
   1169  1.35       wiz 	unit = UNIT(minor(dev));
   1170   1.1       wiz 	if (unit >= NBKTR)			/* unit out of range */
   1171  1.35       wiz 		return(ENXIO);
   1172   1.1       wiz 
   1173  1.35       wiz 	bktr = &(brooktree[unit]);
   1174   1.1       wiz 
   1175  1.35       wiz 	switch (FUNCTION(minor(dev))) {
   1176   1.1       wiz 	case VIDEO_DEV:
   1177  1.35       wiz 		return(video_close(bktr));
   1178   1.1       wiz 	case TUNER_DEV:
   1179  1.35       wiz 		return(tuner_close(bktr));
   1180   1.1       wiz 	case VBI_DEV:
   1181  1.35       wiz 		return(vbi_close(bktr));
   1182   1.1       wiz 	}
   1183   1.1       wiz 
   1184  1.35       wiz 	return(ENXIO);
   1185   1.1       wiz }
   1186   1.1       wiz 
   1187   1.1       wiz /*
   1188  1.35       wiz  *
   1189   1.1       wiz  */
   1190   1.1       wiz int
   1191  1.35       wiz bktr_read(dev_t dev, struct uio *uio, int ioflag)
   1192   1.1       wiz {
   1193   1.1       wiz 	bktr_ptr_t	bktr;
   1194   1.1       wiz 	int		unit;
   1195  1.35       wiz 
   1196   1.1       wiz 	unit = UNIT(minor(dev));
   1197   1.1       wiz 	if (unit >= NBKTR)	/* unit out of range */
   1198  1.35       wiz 		return(ENXIO);
   1199   1.1       wiz 
   1200   1.1       wiz 	bktr = &(brooktree[unit]);
   1201   1.1       wiz 
   1202  1.35       wiz 	switch (FUNCTION(minor(dev))) {
   1203   1.1       wiz 	case VIDEO_DEV:
   1204  1.35       wiz 		return(video_read(bktr, unit, dev, uio));
   1205   1.1       wiz 	case VBI_DEV:
   1206  1.35       wiz 		return(vbi_read(bktr, uio, ioflag));
   1207   1.1       wiz 	}
   1208  1.35       wiz         return(ENXIO);
   1209   1.1       wiz }
   1210   1.1       wiz 
   1211   1.1       wiz 
   1212   1.1       wiz /*
   1213  1.35       wiz  *
   1214   1.1       wiz  */
   1215   1.1       wiz int
   1216  1.35       wiz bktr_write(dev_t dev, struct uio *uio, int ioflag)
   1217   1.1       wiz {
   1218  1.35       wiz 	return(EINVAL); /* XXX or ENXIO ? */
   1219   1.1       wiz }
   1220   1.1       wiz 
   1221   1.1       wiz /*
   1222  1.35       wiz  *
   1223   1.1       wiz  */
   1224   1.1       wiz int
   1225  1.46  christos bktr_ioctl(dev_t dev, ioctl_cmd_t cmd, void *arg, int flag, struct proc* pr)
   1226   1.1       wiz {
   1227   1.1       wiz 	bktr_ptr_t	bktr;
   1228   1.1       wiz 	int		unit;
   1229   1.1       wiz 
   1230   1.1       wiz 	unit = UNIT(minor(dev));
   1231   1.1       wiz 	if (unit >= NBKTR)	/* unit out of range */
   1232  1.35       wiz 		return(ENXIO);
   1233   1.1       wiz 
   1234  1.35       wiz 	bktr = &(brooktree[unit]);
   1235   1.1       wiz 
   1236   1.1       wiz 	if (bktr->bigbuf == 0)	/* no frame buffer allocated (ioctl failed) */
   1237  1.35       wiz 		return(ENOMEM);
   1238   1.1       wiz 
   1239  1.35       wiz 	switch (FUNCTION(minor(dev))) {
   1240   1.1       wiz 	case VIDEO_DEV:
   1241  1.35       wiz 		return(video_ioctl(bktr, unit, cmd, arg, pr));
   1242   1.1       wiz 	case TUNER_DEV:
   1243  1.35       wiz 		return(tuner_ioctl(bktr, unit, cmd, arg, pr));
   1244   1.1       wiz 	}
   1245   1.1       wiz 
   1246  1.35       wiz 	return(ENXIO);
   1247   1.1       wiz }
   1248   1.1       wiz 
   1249   1.1       wiz /*
   1250   1.1       wiz  * bktr_mmap.
   1251   1.1       wiz  * Note: 2.2.5/2.2.6/2.2.7/3.0 users must manually
   1252   1.1       wiz  * edit the line below and change  "vm_offset_t" to "int"
   1253   1.1       wiz  */
   1254  1.35       wiz int bktr_mmap(dev_t dev, vm_offset_t offset, int nprot)
   1255   1.1       wiz 
   1256   1.1       wiz {
   1257   1.1       wiz 	int		unit;
   1258   1.1       wiz 	bktr_ptr_t	bktr;
   1259   1.1       wiz 
   1260   1.1       wiz 	unit = UNIT(minor(dev));
   1261   1.1       wiz 
   1262   1.1       wiz 	if (unit >= NBKTR || FUNCTION(minor(dev)) > 0)
   1263  1.35       wiz 		return(-1);
   1264   1.1       wiz 
   1265  1.35       wiz 	bktr = &(brooktree[unit]);
   1266   1.1       wiz 
   1267   1.1       wiz 	if (nprot & PROT_EXEC)
   1268  1.35       wiz 		return(-1);
   1269   1.1       wiz 
   1270   1.1       wiz 	if (offset < 0)
   1271  1.35       wiz 		return(-1);
   1272   1.1       wiz 
   1273   1.1       wiz 	if (offset >= bktr->alloc_pages * PAGE_SIZE)
   1274  1.35       wiz 		return(-1);
   1275   1.1       wiz 
   1276  1.35       wiz 	return(i386_btop(vtophys(bktr->bigbuf) + offset));
   1277   1.1       wiz }
   1278   1.1       wiz 
   1279  1.39  christos int bktr_poll(dev_t dev, int events, struct lwp *l)
   1280   1.1       wiz {
   1281   1.1       wiz 	int		unit;
   1282   1.1       wiz 	bktr_ptr_t	bktr;
   1283  1.35       wiz 	int revents = 0;
   1284   1.1       wiz 
   1285   1.1       wiz 	unit = UNIT(minor(dev));
   1286   1.1       wiz 
   1287   1.1       wiz 	if (unit >= NBKTR)
   1288  1.35       wiz 		return(-1);
   1289   1.1       wiz 
   1290  1.35       wiz 	bktr = &(brooktree[unit]);
   1291   1.1       wiz 
   1292   1.1       wiz 	disable_intr();
   1293   1.1       wiz 
   1294   1.1       wiz 	if (events & (POLLIN | POLLRDNORM)) {
   1295   1.1       wiz 
   1296  1.35       wiz 		switch (FUNCTION(minor(dev))) {
   1297   1.1       wiz 		case VBI_DEV:
   1298   1.1       wiz 			if(bktr->vbisize == 0)
   1299   1.1       wiz 				selrecord(p, &bktr->vbi_select);
   1300   1.1       wiz 			else
   1301   1.1       wiz 				revents |= events & (POLLIN | POLLRDNORM);
   1302   1.1       wiz 			break;
   1303   1.1       wiz 		}
   1304   1.1       wiz 	}
   1305   1.1       wiz 
   1306   1.1       wiz 	enable_intr();
   1307   1.1       wiz 
   1308   1.1       wiz 	return (revents);
   1309   1.1       wiz }
   1310   1.1       wiz 
   1311   1.1       wiz 
   1312   1.1       wiz #endif		/* FreeBSD 2.2.x and 3.x specific kernel interface routines */
   1313   1.1       wiz 
   1314   1.1       wiz 
   1315   1.1       wiz /*****************/
   1316   1.1       wiz /* *** BSDI  *** */
   1317   1.1       wiz /*****************/
   1318   1.1       wiz 
   1319   1.1       wiz #if defined(__bsdi__)
   1320   1.1       wiz #endif		/* __bsdi__ BSDI specific kernel interface routines */
   1321   1.1       wiz 
   1322   1.1       wiz 
   1323   1.1       wiz /*****************************/
   1324   1.1       wiz /* *** OpenBSD / NetBSD  *** */
   1325   1.1       wiz /*****************************/
   1326   1.1       wiz #if defined(__NetBSD__) || defined(__OpenBSD__)
   1327   1.1       wiz 
   1328   1.1       wiz #define IPL_VIDEO       IPL_BIO         /* XXX */
   1329   1.1       wiz 
   1330   1.1       wiz static	int		bktr_intr(void *arg) { return common_bktr_intr(arg); }
   1331   1.1       wiz 
   1332  1.29   gehenna #if defined(__OpenBSD__)
   1333   1.1       wiz #define bktr_open       bktropen
   1334   1.1       wiz #define bktr_close      bktrclose
   1335   1.1       wiz #define bktr_read       bktrread
   1336   1.1       wiz #define bktr_write      bktrwrite
   1337   1.1       wiz #define bktr_ioctl      bktrioctl
   1338   1.1       wiz #define bktr_mmap       bktrmmap
   1339   1.1       wiz 
   1340  1.35       wiz static int      bktr_probe(struct device *, void *, void *);
   1341   1.1       wiz #else
   1342  1.57    cegger static int      bktr_probe(device_t, cfdata_t, void *);
   1343   1.1       wiz #endif
   1344  1.57    cegger static void     bktr_attach(device_t, device_t, void *);
   1345   1.1       wiz 
   1346  1.61       chs CFATTACH_DECL_NEW(bktr, sizeof(struct bktr_softc),
   1347  1.32   thorpej     bktr_probe, bktr_attach, NULL, NULL);
   1348   1.1       wiz 
   1349   1.1       wiz #if defined(__NetBSD__)
   1350   1.1       wiz extern struct cfdriver bktr_cd;
   1351   1.1       wiz #else
   1352   1.1       wiz struct cfdriver bktr_cd = {
   1353   1.1       wiz         NULL, "bktr", DV_DULL
   1354   1.1       wiz };
   1355   1.1       wiz #endif
   1356   1.1       wiz 
   1357  1.23  jmcneill 
   1358  1.26      tron #if NRADIO > 0
   1359  1.23  jmcneill /* for radio(4) */
   1360  1.23  jmcneill int	bktr_get_info(void *, struct radio_info *);
   1361  1.23  jmcneill int	bktr_set_info(void *, struct radio_info *);
   1362  1.23  jmcneill 
   1363  1.38      yamt static struct radio_hw_if bktr_hw_if = {
   1364  1.23  jmcneill 	NULL,	/* open */
   1365  1.23  jmcneill 	NULL,	/* close */
   1366  1.23  jmcneill 	bktr_get_info,
   1367  1.23  jmcneill 	bktr_set_info,
   1368  1.23  jmcneill 	NULL	/* search */
   1369  1.23  jmcneill };
   1370  1.25      tron #endif
   1371  1.23  jmcneill 
   1372   1.2       wiz int
   1373  1.57    cegger bktr_probe(device_t parent, cfdata_t match, void *aux)
   1374   1.1       wiz {
   1375   1.1       wiz         struct pci_attach_args *pa = aux;
   1376   1.1       wiz 
   1377   1.1       wiz         if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_BROOKTREE &&
   1378   1.1       wiz             (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_BROOKTREE_BT848 ||
   1379   1.1       wiz              PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_BROOKTREE_BT849 ||
   1380   1.1       wiz              PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_BROOKTREE_BT878 ||
   1381   1.1       wiz              PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_BROOKTREE_BT879))
   1382   1.1       wiz                 return 1;
   1383   1.1       wiz 
   1384   1.1       wiz         return 0;
   1385   1.1       wiz }
   1386   1.1       wiz 
   1387   1.1       wiz 
   1388   1.1       wiz /*
   1389   1.1       wiz  * the attach routine.
   1390   1.1       wiz  */
   1391   1.1       wiz static void
   1392  1.57    cegger bktr_attach(device_t parent, device_t self, void *aux)
   1393   1.1       wiz {
   1394   1.1       wiz 	bktr_ptr_t	bktr;
   1395  1.49  jmcneill 	u_int		latency;
   1396  1.34       mjl 
   1397  1.34       mjl #if defined(__OpenBSD__)
   1398  1.49  jmcneill 	u_int		fun;
   1399   1.1       wiz 	unsigned int	rev;
   1400   1.1       wiz 	struct pci_attach_args *pa = aux;
   1401   1.1       wiz 	pci_chipset_tag_t pc = pa->pa_pc;
   1402   1.1       wiz 
   1403   1.1       wiz 	pci_intr_handle_t ih;
   1404   1.1       wiz 	const char *intrstr;
   1405   1.1       wiz 	int retval;
   1406   1.1       wiz 	int unit;
   1407  1.64  christos 	char intrbuf[PCI_INTRSTR_LEN];
   1408   1.1       wiz 
   1409   1.1       wiz 	bktr = (bktr_ptr_t)self;
   1410   1.1       wiz 	unit = bktr->bktr_dev.dv_unit;
   1411   1.1       wiz 
   1412   1.1       wiz 	bktr->pc = pa->pa_pc;
   1413   1.1       wiz 	bktr->tag = pa->pa_tag;
   1414   1.1       wiz         bktr->dmat = pa->pa_dmat;
   1415   1.1       wiz 
   1416   1.1       wiz 	/*
   1417   1.1       wiz 	 * map memory
   1418   1.1       wiz 	 */
   1419   1.1       wiz 	bktr->memt = pa->pa_memt;
   1420  1.35       wiz 	retval = pci_mem_find(pc, pa->pa_tag, PCI_MAPREG_START,
   1421   1.1       wiz 			      &bktr->phys_base, &bktr->obmemsz, NULL);
   1422   1.1       wiz 	if (!retval)
   1423   1.1       wiz 		retval = bus_space_map(pa->pa_memt, bktr->phys_base,
   1424   1.1       wiz 				       bktr->obmemsz, 0, &bktr->memh);
   1425   1.1       wiz 	if (retval) {
   1426   1.1       wiz 		printf(": couldn't map memory\n");
   1427   1.1       wiz 		return;
   1428   1.1       wiz 	}
   1429   1.1       wiz 
   1430   1.1       wiz 
   1431   1.1       wiz 	/*
   1432   1.1       wiz 	 * map interrupt
   1433   1.1       wiz 	 */
   1434  1.17       wiz 	if (pci_intr_map(pa->pa_pc, pa->pa_intrtag, pa->pa_intrpin,
   1435  1.17       wiz 			 pa->pa_intrline, &ih)) {
   1436   1.1       wiz 		printf(": couldn't map interrupt\n");
   1437   1.1       wiz 		return;
   1438   1.1       wiz 	}
   1439  1.64  christos 	intrstr = pci_intr_string(pa->pa_pc, ih, intrbuf, sizeof(intrbuf));
   1440   1.1       wiz 
   1441   1.1       wiz 	bktr->ih = pci_intr_establish(pa->pa_pc, ih, IPL_VIDEO,
   1442  1.61       chs 				      bktr_intr, bktr, device_xname(bktr->bktr_dev));
   1443   1.1       wiz 	if (bktr->ih == NULL) {
   1444   1.1       wiz 		printf(": couldn't establish interrupt");
   1445  1.35       wiz 		if (intrstr != NULL)
   1446   1.1       wiz 			printf(" at %s", intrstr);
   1447   1.1       wiz 		printf("\n");
   1448   1.1       wiz 		return;
   1449   1.1       wiz 	}
   1450   1.1       wiz 
   1451   1.1       wiz 	if (intrstr != NULL)
   1452   1.1       wiz 		printf(": %s\n", intrstr);
   1453   1.1       wiz #endif /* __OpenBSD__ */
   1454   1.1       wiz 
   1455  1.35       wiz #if defined(__NetBSD__)
   1456   1.1       wiz 	struct pci_attach_args *pa = aux;
   1457   1.1       wiz 	pci_intr_handle_t ih;
   1458  1.34       mjl 	pcireg_t command;
   1459   1.1       wiz 	const char *intrstr;
   1460   1.1       wiz 	int retval;
   1461   1.1       wiz 	int unit;
   1462  1.64  christos 	char intrbuf[PCI_INTRSTR_LEN];
   1463   1.1       wiz 
   1464  1.61       chs 	bktr = device_private(self);
   1465  1.61       chs 	bktr->bktr_dev = self;
   1466  1.61       chs 	unit = device_unit(bktr->bktr_dev);
   1467   1.1       wiz         bktr->dmat = pa->pa_dmat;
   1468   1.1       wiz 
   1469   1.1       wiz 	printf("\n");
   1470   1.1       wiz 
   1471  1.34       mjl 	/* Enable Bus Master
   1472  1.34       mjl 	   XXX: check if all old DMA is stopped first (e.g. after warm
   1473  1.34       mjl 	   boot) */
   1474  1.34       mjl 	command = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
   1475  1.34       mjl 	command |= PCI_COMMAND_MASTER_ENABLE;
   1476  1.34       mjl 	pci_conf_write(pa->pa_pc, pa->pa_tag, PCI_COMMAND_STATUS_REG, command);
   1477  1.34       mjl 
   1478   1.1       wiz 	/*
   1479   1.1       wiz 	 * map memory
   1480   1.1       wiz 	 */
   1481   1.1       wiz 	retval = pci_mapreg_map(pa, PCI_MAPREG_START,
   1482   1.2       wiz 				PCI_MAPREG_TYPE_MEM
   1483   1.2       wiz 				| PCI_MAPREG_MEM_TYPE_32BIT, 0,
   1484   1.2       wiz 				&bktr->memt, &bktr->memh, NULL,
   1485   1.2       wiz 				&bktr->obmemsz);
   1486  1.59  macallan 	DPR(("pci_mapreg_map: size %lx\n",
   1487  1.59  macallan 	     (unsigned long)bktr->obmemsz));
   1488   1.1       wiz 	if (retval) {
   1489   1.5       wiz 		printf("%s: couldn't map memory\n", bktr_name(bktr));
   1490   1.1       wiz 		return;
   1491   1.1       wiz 	}
   1492   1.1       wiz 
   1493   1.1       wiz 	/*
   1494   1.1       wiz 	 * Disable the brooktree device
   1495   1.1       wiz 	 */
   1496   1.1       wiz 	OUTL(bktr, BKTR_INT_MASK, ALL_INTS_DISABLED);
   1497   1.1       wiz 	OUTW(bktr, BKTR_GPIO_DMA_CTL, FIFO_RISC_DISABLED);
   1498  1.35       wiz 
   1499   1.1       wiz 	/*
   1500   1.1       wiz 	 * map interrupt
   1501   1.1       wiz 	 */
   1502  1.15  sommerfe 	if (pci_intr_map(pa, &ih)) {
   1503   1.2       wiz 		printf("%s: couldn't map interrupt\n",
   1504   1.5       wiz 		       bktr_name(bktr));
   1505   1.1       wiz 		return;
   1506   1.1       wiz 	}
   1507  1.64  christos 	intrstr = pci_intr_string(pa->pa_pc, ih, intrbuf, sizeof(intrbuf));
   1508   1.1       wiz 	bktr->ih = pci_intr_establish(pa->pa_pc, ih, IPL_VIDEO,
   1509   1.1       wiz 				      bktr_intr, bktr);
   1510   1.1       wiz 	if (bktr->ih == NULL) {
   1511   1.1       wiz 		printf("%s: couldn't establish interrupt",
   1512   1.5       wiz 		       bktr_name(bktr));
   1513   1.2       wiz 		if (intrstr != NULL)
   1514   1.2       wiz 			printf(" at %s", intrstr);
   1515   1.2       wiz 		printf("\n");
   1516   1.2       wiz 		return;
   1517   1.1       wiz 	}
   1518   1.1       wiz 	if (intrstr != NULL)
   1519  1.66   msaitoh 		printf("%s: interrupting at %s\n", bktr_name(bktr), intrstr);
   1520  1.47        ad 	selinit(&bktr->vbi_select);
   1521   1.1       wiz #endif /* __NetBSD__ */
   1522  1.35       wiz 
   1523   1.1       wiz /*
   1524   1.1       wiz  * PCI latency timer.  32 is a good value for 4 bus mastering slots, if
   1525   1.1       wiz  * you have more than four, then 16 would probably be a better value.
   1526   1.1       wiz  */
   1527   1.1       wiz #ifndef BROOKTREE_DEF_LATENCY_VALUE
   1528  1.34       mjl #define BROOKTREE_DEF_LATENCY_VALUE	0x10
   1529   1.1       wiz #endif
   1530   1.1       wiz 	latency = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_LATENCY_TIMER);
   1531   1.1       wiz 	latency = (latency >> 8) & 0xff;
   1532   1.1       wiz 
   1533   1.2       wiz 	if (!latency) {
   1534   1.2       wiz 		if (bootverbose) {
   1535   1.1       wiz 			printf("%s: PCI bus latency was 0 changing to %d",
   1536   1.5       wiz 			       bktr_name(bktr), BROOKTREE_DEF_LATENCY_VALUE);
   1537   1.1       wiz 		}
   1538   1.1       wiz 		latency = BROOKTREE_DEF_LATENCY_VALUE;
   1539  1.35       wiz 		pci_conf_write(pa->pa_pc, pa->pa_tag,
   1540   1.1       wiz 			       PCI_LATENCY_TIMER, latency<<8);
   1541   1.1       wiz 	}
   1542   1.1       wiz 
   1543  1.43    bouyer 	if (common_bktr_attach(bktr, unit, pa->pa_id,
   1544  1.43    bouyer 	    PCI_REVISION(pa->pa_class)) == 0)
   1545  1.43    bouyer 		return;
   1546  1.23  jmcneill 
   1547  1.26      tron #if NRADIO > 0
   1548  1.23  jmcneill 	/* attach to radio(4) */
   1549  1.28  jmcneill 	if (bktr->card.tuner->pllControl[3] != 0x00)
   1550  1.61       chs 		radio_attach_mi(&bktr_hw_if, bktr, bktr->bktr_dev);
   1551  1.25      tron #endif
   1552   1.1       wiz }
   1553   1.1       wiz 
   1554   1.1       wiz 
   1555   1.1       wiz /*
   1556   1.1       wiz  * Special Memory Allocation
   1557   1.1       wiz  */
   1558  1.14       wiz #if defined (__NetBSD__)
   1559  1.14       wiz vaddr_t
   1560  1.14       wiz #else
   1561   1.1       wiz vm_offset_t
   1562  1.14       wiz #endif
   1563  1.54       dsl get_bktr_mem(bktr_ptr_t bktr, bus_dmamap_t *dmapp, unsigned int size)
   1564   1.1       wiz {
   1565   1.1       wiz         bus_dma_tag_t dmat = bktr->dmat;
   1566   1.1       wiz         bus_dma_segment_t seg;
   1567   1.1       wiz         bus_size_t align;
   1568   1.1       wiz         int rseg;
   1569  1.46  christos         void *kva;
   1570   1.1       wiz 
   1571   1.1       wiz         /*
   1572   1.1       wiz          * Allocate a DMA area
   1573   1.1       wiz          */
   1574   1.1       wiz         align = 1 << 24;
   1575   1.1       wiz         if (bus_dmamem_alloc(dmat, size, align, 0, &seg, 1,
   1576   1.1       wiz                              &rseg, BUS_DMA_NOWAIT)) {
   1577   1.1       wiz                 align = PAGE_SIZE;
   1578   1.1       wiz                 if (bus_dmamem_alloc(dmat, size, align, 0, &seg, 1,
   1579   1.1       wiz                                      &rseg, BUS_DMA_NOWAIT)) {
   1580   1.5       wiz                         printf("%s: Unable to dmamem_alloc of %d bytes\n",
   1581   1.5       wiz 			       bktr_name(bktr), size);
   1582   1.1       wiz                         return 0;
   1583   1.1       wiz                 }
   1584   1.1       wiz         }
   1585   1.1       wiz         if (bus_dmamem_map(dmat, &seg, rseg, size,
   1586   1.1       wiz                            &kva, BUS_DMA_NOWAIT|BUS_DMA_COHERENT)) {
   1587   1.5       wiz                 printf("%s: Unable to dmamem_map of %d bytes\n",
   1588   1.5       wiz                         bktr_name(bktr), size);
   1589   1.1       wiz                 bus_dmamem_free(dmat, &seg, rseg);
   1590   1.1       wiz                 return 0;
   1591   1.1       wiz         }
   1592   1.1       wiz #ifdef __OpenBSD__
   1593   1.1       wiz         bktr->dm_mapsize = size;
   1594   1.1       wiz #endif
   1595   1.1       wiz         /*
   1596   1.1       wiz          * Create and locd the DMA map for the DMA area
   1597   1.1       wiz          */
   1598   1.1       wiz         if (bus_dmamap_create(dmat, size, 1, size, 0, BUS_DMA_NOWAIT, dmapp)) {
   1599   1.5       wiz                 printf("%s: Unable to dmamap_create of %d bytes\n",
   1600   1.5       wiz                         bktr_name(bktr), size);
   1601   1.1       wiz                 bus_dmamem_unmap(dmat, kva, size);
   1602   1.1       wiz                 bus_dmamem_free(dmat, &seg, rseg);
   1603   1.1       wiz                 return 0;
   1604   1.1       wiz         }
   1605   1.1       wiz         if (bus_dmamap_load(dmat, *dmapp, kva, size, NULL, BUS_DMA_NOWAIT)) {
   1606   1.5       wiz                 printf("%s: Unable to dmamap_load of %d bytes\n",
   1607   1.5       wiz                         bktr_name(bktr), size);
   1608   1.1       wiz                 bus_dmamem_unmap(dmat, kva, size);
   1609   1.1       wiz                 bus_dmamem_free(dmat, &seg, rseg);
   1610   1.1       wiz                 bus_dmamap_destroy(dmat, *dmapp);
   1611   1.1       wiz                 return 0;
   1612   1.1       wiz         }
   1613  1.14       wiz #if defined(__NetBSD__)
   1614  1.14       wiz         return (vaddr_t)kva;
   1615  1.14       wiz #else
   1616   1.1       wiz         return (vm_offset_t)kva;
   1617  1.14       wiz #endif
   1618   1.1       wiz }
   1619   1.1       wiz 
   1620   1.1       wiz void
   1621  1.55    cegger free_bktr_mem(bktr_ptr_t bktr, bus_dmamap_t dmap, vaddr_t kva)
   1622   1.1       wiz {
   1623   1.1       wiz         bus_dma_tag_t dmat = bktr->dmat;
   1624   1.1       wiz 
   1625  1.35       wiz #ifdef __NetBSD__
   1626  1.46  christos         bus_dmamem_unmap(dmat, (void *)kva, dmap->dm_mapsize);
   1627   1.1       wiz #else
   1628  1.46  christos         bus_dmamem_unmap(dmat, (void *)kva, bktr->dm_mapsize);
   1629   1.1       wiz #endif
   1630   1.1       wiz         bus_dmamem_free(dmat, dmap->dm_segs, 1);
   1631   1.1       wiz         bus_dmamap_destroy(dmat, dmap);
   1632   1.1       wiz }
   1633   1.1       wiz 
   1634   1.1       wiz 
   1635   1.1       wiz /*---------------------------------------------------------
   1636   1.1       wiz **
   1637   1.1       wiz **	BrookTree 848 character device driver routines
   1638   1.1       wiz **
   1639   1.1       wiz **---------------------------------------------------------
   1640   1.1       wiz */
   1641   1.1       wiz 
   1642   1.1       wiz 
   1643   1.1       wiz #define VIDEO_DEV	0x00
   1644   1.1       wiz #define TUNER_DEV	0x01
   1645   1.1       wiz #define VBI_DEV		0x02
   1646   1.1       wiz 
   1647   1.2       wiz #define UNIT(x)         (minor((x) & 0x0f))
   1648   1.2       wiz #define FUNCTION(x)     (minor((x >> 4) & 0x0f))
   1649   1.1       wiz 
   1650   1.1       wiz /*
   1651  1.35       wiz  *
   1652   1.1       wiz  */
   1653   1.1       wiz int
   1654  1.45  christos bktr_open(dev_t dev, int flags, int fmt,
   1655  1.45  christos     struct lwp *l)
   1656   1.1       wiz {
   1657   1.1       wiz 	bktr_ptr_t	bktr;
   1658   1.1       wiz 	int		unit;
   1659   1.1       wiz 
   1660   1.2       wiz 	unit = UNIT(dev);
   1661   1.1       wiz 
   1662   1.1       wiz 	/* unit out of range */
   1663  1.52   tsutsui 	bktr = device_lookup_private(&bktr_cd, unit);
   1664  1.52   tsutsui 	if (bktr == NULL)
   1665   1.2       wiz 		return(ENXIO);
   1666   1.1       wiz 
   1667  1.20       wiz 	if (!(bktr->flags & METEOR_INITIALIZED)) /* device not found */
   1668  1.35       wiz 		return(ENXIO);
   1669   1.1       wiz 
   1670   1.2       wiz 	switch (FUNCTION(dev)) {
   1671   1.1       wiz 	case VIDEO_DEV:
   1672   1.2       wiz 		return(video_open(bktr));
   1673   1.1       wiz 	case TUNER_DEV:
   1674   1.2       wiz 		return(tuner_open(bktr));
   1675   1.1       wiz 	case VBI_DEV:
   1676   1.2       wiz 		return(vbi_open(bktr));
   1677   1.1       wiz 	}
   1678   1.1       wiz 
   1679   1.2       wiz 	return(ENXIO);
   1680   1.1       wiz }
   1681   1.1       wiz 
   1682   1.1       wiz 
   1683   1.1       wiz /*
   1684  1.35       wiz  *
   1685   1.1       wiz  */
   1686   1.1       wiz int
   1687  1.45  christos bktr_close(dev_t dev, int flags, int fmt,
   1688  1.45  christos     struct lwp *l)
   1689   1.1       wiz {
   1690   1.1       wiz 	bktr_ptr_t	bktr;
   1691   1.1       wiz 	int		unit;
   1692   1.1       wiz 
   1693   1.2       wiz 	unit = UNIT(dev);
   1694   1.1       wiz 
   1695  1.52   tsutsui 	bktr = device_lookup_private(&bktr_cd, unit);
   1696   1.1       wiz 
   1697   1.2       wiz 	switch (FUNCTION(dev)) {
   1698   1.1       wiz 	case VIDEO_DEV:
   1699   1.2       wiz 		return(video_close(bktr));
   1700   1.1       wiz 	case TUNER_DEV:
   1701   1.2       wiz 		return(tuner_close(bktr));
   1702   1.1       wiz 	case VBI_DEV:
   1703   1.2       wiz 		return(vbi_close(bktr));
   1704   1.1       wiz 	}
   1705   1.1       wiz 
   1706   1.2       wiz 	return(ENXIO);
   1707   1.1       wiz }
   1708   1.1       wiz 
   1709   1.1       wiz /*
   1710  1.35       wiz  *
   1711   1.1       wiz  */
   1712   1.1       wiz int
   1713   1.2       wiz bktr_read(dev_t dev, struct uio *uio, int ioflag)
   1714   1.1       wiz {
   1715   1.1       wiz 	bktr_ptr_t	bktr;
   1716   1.1       wiz 	int		unit;
   1717  1.35       wiz 
   1718   1.2       wiz 	unit = UNIT(dev);
   1719   1.1       wiz 
   1720  1.52   tsutsui 	bktr = device_lookup_private(&bktr_cd, unit);
   1721   1.1       wiz 
   1722   1.2       wiz 	switch (FUNCTION(dev)) {
   1723   1.1       wiz 	case VIDEO_DEV:
   1724   1.2       wiz 		return(video_read(bktr, unit, dev, uio));
   1725   1.1       wiz 	case VBI_DEV:
   1726   1.2       wiz 		return(vbi_read(bktr, uio, ioflag));
   1727   1.1       wiz 	}
   1728   1.1       wiz 
   1729   1.2       wiz         return(ENXIO);
   1730   1.1       wiz }
   1731   1.1       wiz 
   1732   1.1       wiz 
   1733   1.1       wiz /*
   1734  1.35       wiz  *
   1735   1.1       wiz  */
   1736   1.1       wiz int
   1737  1.45  christos bktr_write(dev_t dev, struct uio *uio, int ioflag)
   1738   1.1       wiz {
   1739   1.1       wiz 	/* operation not supported */
   1740   1.2       wiz 	return(EOPNOTSUPP);
   1741   1.1       wiz }
   1742   1.1       wiz 
   1743   1.1       wiz /*
   1744  1.35       wiz  *
   1745   1.1       wiz  */
   1746   1.1       wiz int
   1747  1.46  christos bktr_ioctl(dev_t dev, ioctl_cmd_t cmd, void *arg, int flag,
   1748  1.44  christos     struct lwp *l)
   1749   1.1       wiz {
   1750   1.1       wiz 	bktr_ptr_t	bktr;
   1751   1.1       wiz 	int		unit;
   1752   1.1       wiz 
   1753   1.2       wiz 	unit = UNIT(dev);
   1754   1.1       wiz 
   1755  1.52   tsutsui 	bktr = device_lookup_private(&bktr_cd, unit);
   1756   1.1       wiz 
   1757   1.1       wiz 	if (bktr->bigbuf == 0)	/* no frame buffer allocated (ioctl failed) */
   1758   1.2       wiz 		return(ENOMEM);
   1759   1.1       wiz 
   1760   1.2       wiz 	switch (FUNCTION(dev)) {
   1761   1.1       wiz 	case VIDEO_DEV:
   1762  1.39  christos 		return(video_ioctl(bktr, unit, cmd, arg, l));
   1763   1.1       wiz 	case TUNER_DEV:
   1764  1.39  christos 		return(tuner_ioctl(bktr, unit, cmd, arg, l));
   1765   1.1       wiz 	}
   1766   1.1       wiz 
   1767   1.2       wiz 	return(ENXIO);
   1768   1.1       wiz }
   1769   1.1       wiz 
   1770   1.1       wiz /*
   1771  1.35       wiz  *
   1772   1.1       wiz  */
   1773   1.6    simonb paddr_t
   1774   1.6    simonb bktr_mmap(dev_t dev, off_t offset, int nprot)
   1775   1.1       wiz {
   1776   1.1       wiz 	int		unit;
   1777   1.1       wiz 	bktr_ptr_t	bktr;
   1778   1.1       wiz 
   1779   1.2       wiz 	unit = UNIT(dev);
   1780   1.1       wiz 
   1781   1.2       wiz 	if (FUNCTION(dev) > 0)	/* only allow mmap on /dev/bktr[n] */
   1782   1.2       wiz 		return(-1);
   1783   1.1       wiz 
   1784  1.52   tsutsui 	bktr = device_lookup_private(&bktr_cd, unit);
   1785   1.1       wiz 
   1786   1.2       wiz 	if ((vaddr_t)offset >= bktr->alloc_pages * PAGE_SIZE)
   1787   1.2       wiz 		return(-1);
   1788   1.1       wiz 
   1789   1.1       wiz #ifdef __NetBSD__
   1790   1.1       wiz 	return (bus_dmamem_mmap(bktr->dmat, bktr->dm_mem->dm_segs, 1,
   1791   1.2       wiz 				(vaddr_t)offset, nprot, BUS_DMA_WAITOK));
   1792   1.1       wiz #else
   1793   1.2       wiz 	return(i386_btop(vtophys(bktr->bigbuf) + offset));
   1794   1.1       wiz #endif
   1795  1.23  jmcneill }
   1796  1.23  jmcneill 
   1797  1.26      tron #if NRADIO > 0
   1798  1.23  jmcneill int
   1799  1.23  jmcneill bktr_set_info(void *v, struct radio_info *ri)
   1800  1.23  jmcneill {
   1801  1.23  jmcneill 	struct bktr_softc *sc = v;
   1802  1.23  jmcneill 	u_int32_t freq;
   1803  1.23  jmcneill 
   1804  1.23  jmcneill 	if (ri->mute) {
   1805  1.23  jmcneill 		/* mute the audio stream by switching the mux */
   1806  1.23  jmcneill 		set_audio(sc, AUDIO_MUTE);
   1807  1.23  jmcneill 
   1808  1.23  jmcneill 		/* disable drivers on the GPIO port that controls the MUXes */
   1809  1.23  jmcneill 		OUTL(sc, BKTR_GPIO_OUT_EN, INL(sc, BKTR_GPIO_OUT_EN) &
   1810  1.23  jmcneill 		    ~sc->card.gpio_mux_bits);
   1811  1.23  jmcneill 	} else {
   1812  1.23  jmcneill 		/* enable drivers on the GPIO port that controls the MUXes */
   1813  1.23  jmcneill 		OUTL(sc, BKTR_GPIO_OUT_EN, INL(sc, BKTR_GPIO_OUT_EN) |
   1814  1.23  jmcneill 		    sc->card.gpio_mux_bits);
   1815  1.23  jmcneill 
   1816  1.23  jmcneill 		/* unmute the audio stream */
   1817  1.23  jmcneill 		set_audio(sc, AUDIO_UNMUTE);
   1818  1.23  jmcneill 		init_audio_devices(sc);
   1819  1.23  jmcneill 	}
   1820  1.23  jmcneill 
   1821  1.23  jmcneill 	freq = ri->freq / 10;
   1822  1.23  jmcneill 	set_audio(sc, AUDIO_INTERN); /* use internal audio */
   1823  1.23  jmcneill 	temp_mute(sc, TRUE);
   1824  1.23  jmcneill 	ri->freq = tv_freq(sc, freq, FM_RADIO_FREQUENCY) * 10;
   1825  1.23  jmcneill 	temp_mute(sc, FALSE);
   1826  1.23  jmcneill 
   1827  1.23  jmcneill 	return (0);
   1828  1.23  jmcneill }
   1829  1.23  jmcneill 
   1830  1.23  jmcneill int
   1831  1.23  jmcneill bktr_get_info(void *v, struct radio_info *ri)
   1832  1.23  jmcneill {
   1833  1.23  jmcneill 	struct bktr_softc *sc = v;
   1834  1.23  jmcneill 	struct TVTUNER *tv = &sc->tuner;
   1835  1.23  jmcneill 	int status;
   1836  1.23  jmcneill 
   1837  1.23  jmcneill 	status = get_tuner_status(sc);
   1838  1.23  jmcneill 
   1839  1.24  jmcneill #define STATUSBIT_STEREO 0x10
   1840  1.23  jmcneill 	ri->mute = (int)sc->audio_mute_state ? 1 : 0;
   1841  1.23  jmcneill 	ri->stereo = (status & STATUSBIT_STEREO) ? 1 : 0;
   1842  1.23  jmcneill 	ri->caps = RADIO_CAPS_DETECT_STEREO | RADIO_CAPS_HW_AFC;
   1843  1.23  jmcneill 	ri->freq = tv->frequency * 10;
   1844  1.23  jmcneill 	ri->info = (status & STATUSBIT_STEREO) ? RADIO_INFO_STEREO : 0;
   1845  1.24  jmcneill #undef STATUSBIT_STEREO
   1846  1.23  jmcneill 
   1847  1.23  jmcneill 	/* not yet supported */
   1848  1.23  jmcneill 	ri->volume = ri->rfreq = ri->lock = 0;
   1849  1.23  jmcneill 
   1850  1.23  jmcneill 	return (0);
   1851   1.1       wiz }
   1852  1.25      tron #endif
   1853   1.1       wiz 
   1854  1.34       mjl 
   1855  1.34       mjl 
   1856   1.1       wiz #endif /* __NetBSD__ || __OpenBSD__ */
   1857  1.34       mjl 
   1858  1.34       mjl #if defined(__NetBSD__)
   1859  1.34       mjl 
   1860  1.34       mjl u_int8_t
   1861  1.34       mjl bktr_INB(struct bktr_softc *bktr, int offset)
   1862  1.34       mjl 	{
   1863  1.34       mjl 	u_int8_t val = bus_space_read_1(bktr->memt, bktr->memh, offset);
   1864  1.34       mjl 	bus_space_barrier(bktr->memt, bktr->memh, offset, 1,
   1865  1.34       mjl 	    BUS_SPACE_BARRIER_READ);
   1866  1.34       mjl 	return val;
   1867  1.34       mjl 	}
   1868  1.34       mjl 
   1869  1.34       mjl u_int16_t
   1870  1.34       mjl bktr_INW(struct bktr_softc *bktr, int offset)
   1871  1.34       mjl 	{
   1872  1.34       mjl 	u_int16_t val = bus_space_read_2(bktr->memt, bktr->memh, offset);
   1873  1.34       mjl 	bus_space_barrier(bktr->memt, bktr->memh, offset, 2,
   1874  1.34       mjl 	    BUS_SPACE_BARRIER_READ);
   1875  1.34       mjl 	return val;
   1876  1.34       mjl 	}
   1877  1.34       mjl 
   1878  1.34       mjl u_int32_t
   1879  1.34       mjl bktr_INL(struct bktr_softc *bktr, int offset)
   1880  1.34       mjl 	{
   1881  1.34       mjl 	u_int32_t val = bus_space_read_4(bktr->memt, bktr->memh, offset);
   1882  1.34       mjl 	bus_space_barrier(bktr->memt, bktr->memh, offset, 4,
   1883  1.34       mjl 	    BUS_SPACE_BARRIER_READ);
   1884  1.34       mjl 	return val;
   1885  1.34       mjl 	}
   1886  1.34       mjl 
   1887  1.34       mjl void
   1888  1.34       mjl bktr_OUTB(struct bktr_softc *bktr, int offset, u_int8_t value)
   1889  1.34       mjl 	{
   1890  1.34       mjl 	bus_space_write_1(bktr->memt, bktr->memh, offset, value);
   1891  1.34       mjl 	bus_space_barrier(bktr->memt, bktr->memh, offset, 1,
   1892  1.34       mjl 	    BUS_SPACE_BARRIER_WRITE);
   1893  1.34       mjl 	}
   1894  1.35       wiz 
   1895  1.34       mjl void
   1896  1.34       mjl bktr_OUTW(struct bktr_softc *bktr, int offset, u_int16_t value)
   1897  1.34       mjl 	{
   1898  1.34       mjl 	bus_space_write_2(bktr->memt, bktr->memh, offset, value);
   1899  1.34       mjl 	bus_space_barrier(bktr->memt, bktr->memh, offset, 2,
   1900  1.34       mjl 	    BUS_SPACE_BARRIER_WRITE);
   1901  1.34       mjl 	}
   1902  1.34       mjl 
   1903  1.34       mjl void
   1904  1.34       mjl bktr_OUTL(struct bktr_softc *bktr, int offset, u_int32_t value)
   1905  1.34       mjl 	{
   1906  1.34       mjl 	bus_space_write_4(bktr->memt, bktr->memh, offset, value);
   1907  1.34       mjl 	bus_space_barrier(bktr->memt, bktr->memh, offset, 4,
   1908  1.34       mjl 	    BUS_SPACE_BARRIER_WRITE);
   1909  1.34       mjl 	}
   1910  1.34       mjl 
   1911  1.34       mjl #endif /* __NetBSD__ */
   1912