Date: Thu, 4 Jun 1998 17:05:33 +0900 (JST) From: Hiroharu Tamaru <tamaru@ap.t.u-tokyo.ac.jp> To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: kern/6854: probing brooktree849 capture card Message-ID: <199806040805.RAA07758@gin.myn.t.u-tokyo.ac.jp>
index | next in thread | raw e-mail
>Number: 6854
>Category: kern
>Synopsis: probing brooktree849 capture card
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Thu Jun 4 01:10:01 PDT 1998
>Last-Modified:
>Originator: Hiroharu Tamaru
>Organization:
University of Tokyo
>Release: FreeBSD 2.2.6-STABLE i386
>Environment:
FreeBSD 2.2.6-STABLE as of June 3, 1998
i386 PentiumII-333MHz PCI/ISA system
brooktree 849 based video capture card
>Description:
In the current sources, brooktree 849 is supported for other
OS'es already. On FreeBSD, the probe routine ignores the card.
I have an 849 card and it is working with the patch below.
>How-To-Repeat:
Build a kernel with bktr0 in it.
brooktree 849 cards won't be attached.
>Fix:
--- brktree_reg.h- Wed Jun 3 02:10:26 1998
+++ brktree_reg.h Thu Jun 4 16:08:29 1998
@@ -36,7 +36,7 @@
* Definitions for the Philips SAA7116 digital video to pci interface.
*/
#define BROOKTREE_848_ID 0x0350109E
-#define BROOKTREE 849_ID 0x0351109E
+#define BROOKTREE_849_ID 0x0351109E
typedef volatile u_int bregister_t;
/*
--- brooktree848.c- Mon Mar 2 17:42:24 1998
+++ brooktree848.c Thu Jun 4 16:03:33 1998
@@ -757,6 +757,8 @@
switch (type) {
case BROOKTREE_848_ID:
return("BrookTree 848");
+ case BROOKTREE_849_ID:
+ return("BrookTree 849");
};
return ((char *)0);
>Audit-Trail:
>Unformatted:
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199806040805.RAA07758>
