freebsd_amp_hwpstate/sys/pci
Peter Wemm 64bdf0c18d Nuke these two out of date readme files. This stuff should be in de(4)
man pages rather than hidden here anyway.
1997-10-03 14:22:10 +00:00
..
README.bt848
aic7870.c
brktree_reg.h
brooktree848.c
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
if_devar.h
if_ed_p.c
if_en_pci.c
if_fpa.c
if_fxp.c Killed a gratuitous assignment in a NetBSD case. 1997-09-30 11:28:24 +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.c
meteor_reg.h
ncr.c Update for new callout interface. 1997-09-21 22:02:25 +00:00
ncrreg.h
pci.c
pci_compat.c
pci_ioctl.h
pcireg.h Addition of support of the slightly rogue Promise IDE interface(Dyson), support 1997-09-20 07:41:58 +00:00
pcisupport.c Remove the 82371 IDE devices. 1997-09-24 07:37:56 +00:00
pcivar.h
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

README.bt848

-------------------------------------------------------------------------------
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