freebsd-nq/sys/pci
1997-10-17 06:27:44 +00:00
..
aic7870.c
brktree_reg.h Latest round of patches from the author. 1997-10-07 06:30:01 +00:00
brooktree848.c Despam 1.11, 1.12 and 1.13 caused by no sync between author/committer/CURRENT 1997-10-08 06:54:43 +00:00
bt9xx.c
cy_pci.c
cy_pcireg.h
dc21040reg.h
ide_pci.c Addition of support of the slightly rogue Promise IDE interface(Dyson), support 1997-09-20 07:41:58 +00:00
ide_pcireg.h
if_de.c Attempt to support IPX. 1997-10-12 14:14:27 +00:00
if_devar.h malloc() the rx and tx descriptors seperately rather than as part of the 1997-09-11 15:27:35 +00:00
if_ed_p.c
if_en_pci.c
if_fpa.c
if_fxp.c Fixed a bug where input packets were counted twice - messing up the 1997-10-17 06:27:44 +00:00
if_fxpreg.h Work around a bug in the 82557 NIC where the receiver will lock up 1997-09-29 11:27:43 +00:00
if_fxpvar.h Work around a bug in the 82557 NIC where the receiver will lock up 1997-09-29 11:27:43 +00:00
if_lnc_p.c
if_sr_p.c
if_vx_pci.c
locate.pl
meteor_reg.h
meteor.c
ncr.c Update for new callout interface. 1997-09-21 22:02:25 +00:00
ncrreg.h
pci_compat.c
pci_ioctl.h
pci.c Update select -> poll in drivers. 1997-09-14 03:19:42 +00:00
pcireg.h Addition of support of the slightly rogue Promise IDE interface(Dyson), support 1997-09-20 07:41:58 +00:00
pcisupport.c Add IDs for Intel 82371MX/82437MX (mobile PCI chipset). 1997-10-10 11:52:17 +00:00
pcivar.h
README.bt848
scsiiom.c Update for new callout interface. 1997-09-21 22:02:25 +00:00
tek390.c Update for new callout interface. 1997-09-21 22:02:25 +00:00
tek390.h
wdc_p.c

-------------------------------------------------------------------------------
Recent versions of 3.0-current have the bktr driver built in.  Older versions
of 3.0 and all versions of 2.2 need to have the driver files installed by hand:

cp ioctl_bt848.h /sys/i386/include/
cp brktree_reg.h brooktree848.c /sys/pci/

In /sys/conf/files add:
pci/brooktree848.c        optional bktr device-driver

-------------------------------------------------------------------------------
In all cases you will need to add the driver to your kernel:

In your kernel configuration file:
controller      pci0     #if you already have this line don't add it.
device          bktr0    

There is no need to specify DMA channels nor interrupts for this
driver.

-------------------------------------------------------------------------------
Finally you need to create nodes for the driver:

Create a video device:
mknod /dev/bktr0 c 79 0

Create a tuner device:
mknod /dev/tuner0 c 79 16

-------------------------------------------------------------------------------
The code attempts to auto-probe code to detect card/tuner types.
The detected card is printed in the dmesg as the driver is loaded.  If
this fails to detect the proper card you can override it in brooktree848.c:

#define OVERRIDE_CARD	<card type>

where <card type> is one of:
	CARD_UNKNOWN
	CARD_MIRO
	CARD_HAUPPAUGE
	CARD_STB
	CARD_INTEL

-------------------------------------------------------------------------------
This model now separates the "tuner control" items into a minor device:

minor device layout:  xxxxxxxx xxxT UUUU

 UUUU:   the card (ie UNIT) identifier, 0 thru 15
 T == 0: video device
 T == 1: tuner device

Access your tuner ioctl thru your tuner device handle and anything
which controls the video capture process thru the video device handle.

Certain ioctl()s such as video source are available thru both devices.

-------------------------------------------------------------------------------
The bt848 driver consists of:

src/sys/i386/include/ioctl_bt848.h
src/sys/pci/brktree_reg.h
src/sys/pci/brooktree848.c