Date: Thu, 04 Jun 1998 09:37:38 -0700 From: Amancio Hasty <hasty@rah.star-gate.com> To: John Matthews <matthews@nethawk.converg.com> Cc: multimedia@FreeBSD.ORG, matthews@converg.com Subject: Re: BT848 and newer versions of WinTV cards Message-ID: <199806041637.JAA02799@rah.star-gate.com> In-Reply-To: Your message of "Wed, 03 Jun 1998 22:56:35 MDT." <199806040456.WAA00291@nethawk.converg.com>
next in thread | previous in thread | raw e-mail | index | archive | help
It is easy to incorporate a new bt848/tuner if the driver does not
recognize the card/tuner.
struct bt848_card_sig bt848_card_signature[1]= {
/* IMS TURBO TV : card 5 */
{ 5,9, {00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00}}
5 is the card number
9 is the tuner number
{00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 00, 02, 00, 00, 00} is
the output of sign available from http://www.freebsd.org/~ahasty/Bt848.html
I have to try to get the Bt878 databook later on this week.
If anyone in the meantime runs into this card try to assign
the PCI ID in the driver (/sys/pci/brooktree848.c):
static int
bktr_pci_match(pci_devaddr_t *pa)
{
unsigned id;
id = pci_inl(pa, PCI_VENDOR_ID);
if (id == BROOKTREE_848_ID || id == BROOKTREE_849_ID ) {
return 1;
}
aprint_debug("bktr_pci_match got %x\n", id);
return 0;
}
Cheers,
Amancio
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-multimedia" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806041637.JAA02799>
