[linux-dvb] trouble creating dvbscan
Greetings, I am having some trouble creating a dvbscan for pinnicale i800 card. The card works because I can watch over the air broadcast with TVtime (though the audio is out of sync). When I try to use w_scan, this is the output I get w_scan version 20080105 Info: using DVB adapter auto detection. Info: unable to open frontend /dev/dvb/adapter1/frontend0' Info: unable to open frontend /dev/dvb/adapter2/frontend0' Info: unable to open frontend /dev/dvb/adapter3/frontend0' main:2401: FATAL: * NO USEABLE DVB CARD FOUND. * Please check wether dvb driver is loaded and verify that no dvb application (i.e. vdr) is running. Any help would be greatly appreciated. Thanks, Ed Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] [PATCH] XC5000 tuner improvement/clean up
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: linux-dvb@linuxtv.org Sent: Monday, January 28, 2008 11:20:10 AM Subject: Re: [linux-dvb] [PATCH] XC5000 tuner improvement/clean up On Jan 27, 2008 6:50 PM, Chaogui Zhang <[EMAIL PROTECTED]> wrote: > > Download the newest v4l-dvb tree from http://linuxtv.org/hg/v4l-dvb > and apply the patch against it. > I just noticed that the previous patch that fixed the kernel oops has been merged into the master tree, which conflicts with the patch for tuner performance improvement(which contains the oops fixes too). I regenerated the patch against the master tree and it is below. Please use this one instead. -- Chaogui Zhang Signed-off-by: Chaogui Zhang <[EMAIL PROTECTED]> diff -r ed7daeb29425 linux/drivers/media/dvb/frontends/xc5000.c --- a/linux/drivers/media/dvb/frontends/xc5000.c Mon Jan 28 10:01:11 2008 -0200 +++ b/linux/drivers/media/dvb/frontends/xc5000.c Sun Jan 27 19:36:07 2008 -0500 @@ -3,6 +3,7 @@ * * Copyright (c) 2007 Xceive Corporation * Copyright (c) 2007 Steven Toth <[EMAIL PROTECTED]> + * Copyright (c) 2007, 2008 Chaogui Zhang <[EMAIL PROTECTED]> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -38,6 +39,13 @@ MODULE_PARM_DESC(debug, "Turn on/off deb #define dprintk(level,fmt, arg...) if (debug >= level) \ printk(KERN_INFO "%s: " fmt, "xc5000", ## arg) + +static int allow_shutdown; +module_param(allow_shutdown, int, 0644); +MODULE_PARM_DESC(allow_shutdown, "Allow the XC5000 tuner to be shutdown (default: no)."); + +static LIST_HEAD(xc5000_list); +static DEFINE_MUTEX(xc5000_list_lock); #define XC5000_DEFAULT_FIRMWARE "dvb-fe-xc5000-1.1.fw" #define XC5000_DEFAULT_FIRMWARE_SIZE 12332 @@ -179,7 +187,6 @@ XC_TV_STANDARD XC5000_Standard[MAX_TV_ST static int xc5000_writeregs(struct xc5000_priv *priv, u8 *buf, u8 len); static int xc5000_readregs(struct xc5000_priv *priv, u8 *buf, u8 len); -static void xc5000_TunerReset(struct dvb_frontend *fe); static int xc_send_i2c_data(struct xc5000_priv *priv, u8 *buf, int len) { @@ -195,29 +202,21 @@ static int xc_read_i2c_data(struct xc500 static int xc_reset(struct dvb_frontend *fe) { - xc5000_TunerReset(fe); - return XC_RESULT_SUCCESS; -} - -static void xc_wait(int wait_ms) -{ - msleep(wait_ms); -} - -static void xc5000_TunerReset(struct dvb_frontend *fe) -{ struct xc5000_priv *priv = fe->tuner_priv; int ret; dprintk(1, "%s()\n", __FUNCTION__); - if (priv->cfg->tuner_callback) { - ret = priv->cfg->tuner_callback(priv->cfg->priv, - XC5000_TUNER_RESET, 0); - if (ret) - printk(KERN_ERR "xc5000: reset failed\n"); - } else - printk(KERN_ERR "xc5000: no tuner reset callback function, fatal\n"); + if (!priv->cfg->tuner_callback) { + printk(KERN_ERR + "xc5000: no tuner reset callback function, fatal\n"); + return XC_RESULT_RESET_FAILURE; + } + + ret = priv->cfg->tuner_callback(priv->cfg->priv, + XC5000_TUNER_RESET, 0); + if (ret) printk(KERN_ERR "xc5000: reset failed\n"); + return ret; } static int xc_write_reg(struct xc5000_priv *priv, u16 regAddr, u16 i2cData) @@ -245,7 +244,7 @@ static int xc_write_reg(struct xc5000_pr /* busy flag cleared */ break; } else { - xc_wait(100); /* wait 5 ms */ + msleep(5); /* wait 5 ms */ WatchDogTimer--; } } @@ -296,7 +295,7 @@ static int xc_load_i2c_sequence(struct d return result; } else if (len & 0x8000) { /* WAIT command */ - xc_wait(len & 0x7FFF); + msleep(len & 0x7FFF); index += 2; } else { /* Send i2c data whilst ensuring individual transactions @@ -352,11 +351,10 @@ static int xc_SetTVStandard(struct xc500 static int xc_shutdown(struct xc5000_priv *priv) { - return 0; - /* Fixme: cannot bring tuner back alive once shutdown - * without reloading the driver modules. - * return xc_write_reg(priv, XREG_POWER_DOWN, 0); - */ + if(allow_shutdown) + return xc_write_reg(priv, XREG_POWER_DOWN, 0); + else + return 0; } static int
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Friday, January 25, 2008 8:50:42 PM Subject: Re: [linux-dvb] Pinnacle 800i driver problems On Jan 25, 2008 6:52 PM, Muppet Man <[EMAIL PROTECTED]> wrote: > > - Original Message > From: Chaogui Zhang <[EMAIL PROTECTED]> > To: Muppet Man <[EMAIL PROTECTED]> > Cc: linux-dvb@linuxtv.org > Sent: Friday, January 25, 2008 8:39:16 AM > Subject: Re: [linux-dvb] Pinnacle 800i driver problems > > Previously, Muppet Man <[EMAIL PROTECTED]> wrote: > > >Hmm...I thought that's what I did? I guess I don't know how to > >"run it from a shell". All the shell scripts I have ran was via > >giving permissions to allow exicuting as a file. > > "run it from a shell" means you need to open a terminal and cd into > the directory that contains the script and type in the file name of > the script to run it (of course, make sure it is set to be executable > first). You may need to put "./" before the file name, for example, > you may need to type in "./extract.sh" to run the extracting script. > > > - Original Message > > From: Chaogui Zhang <[EMAIL PROTECTED]> > > To: superhappyfunball <[EMAIL PROTECTED]> > > Cc: linux-dvb@linuxtv.org > > Sent: Wednesday, January 23, 2008 11:09:03 PM > > Subject: Re: [linux-dvb] Pinnacle 800i driver problems > > > > On Jan 23, 2008 11:11 PM, superhappyfunball <[EMAIL PROTECTED]> > > wrote: > > > > > > I have since gotten it running. Seems I was missing the XC firmware for > > > > Glad to hear that. I guess it should have been mentioned earlier that > > the firmware is needed. In any event, I have updated the wiki page at > > linuxtv.org with the relevant firmware downloading instruction so we > > can point anyone else to a page that explains all the necessary pieces > > to get the 800i working. > > > > > the tuner. I grabbed, extracted and reloaded the modules, and all is > > > well. Except for one thing: > > > > > > No sound. Now, it could just be ALSA issues. I know running multiple > > > soundcards can be an issue. Ideas? > > > > I assume you mean analog tv or analog input. The audio is via the > > cx88-alsa module, which is working fine for me last time I tested. You > > need to grab the sound from the appropriate /dev/dsp? device. Do a > > "cat /proc/asound/cards" and it will tell you what number(the "?") to > > use for your cx88-alsa device. Note that you might run into issues if > > your cx88-alsa grabs the index 0 for your sound cards. In that case, > > use module options to force the cx88-alsa to index 1 or 2 as needed. > > Index 0 should be reserved for your main sound card so your normal > > software can use /dev/dsp (which they always default to). > > > > -- > > Chaogui Zhang > > > > Ok, I know I am really close now, but I am still having trouble. > > > > Here's what I did, and what I am getting. I extracted the xc5000 file, > > moved it over to /lib/firmware, then I downloaded the lastest v4l-dvb, > sudo > > make, sudo make install, and rebooted. My system came right back online. > I > > have sound and a network connection. I went to mythtv back end, and my > card > > was already selected, but when I go to scan channels, I get an error. I > > For people to be able to help you most effectively, next time when > something goes wrong or errors happen, be sure to include *details* of > the errors, such as exactly what happened and what was the error > message etc. If you don't provide such details, we would have to ask > you to try to reproduce the error and report back, which obviously > delays the process. > > Also, when it is related to kernel drivers, it is almost always a good > idea to run "dmesg" and look at what relevant error or warning > messages might be in there. If so, post that when you ask for help on > the list. > > So, I am really not sure what might have gone wrong at this point. > Please post more details of the errors that you are seeing (for each > tests you performed). Also, post the full dmesg output. I suggest you > paste the dmesg output to pastebin.com and just send the link > generated by pastebin.com to the list, because the dmesg output tend > to be very long and I really want to see the FULL dmesg output (after > the errors have occurred. Don't do dmesg before the errors, since that > won't tell us anyth
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Friday, January 25, 2008 8:39:16 AM Subject: Re: [linux-dvb] Pinnacle 800i driver problems Previously, Muppet Man <[EMAIL PROTECTED]> wrote: >Hmm...I thought that's what I did? I guess I don't know how to >"run it from a shell". All the shell scripts I have ran was via >giving permissions to allow exicuting as a file. "run it from a shell" means you need to open a terminal and cd into the directory that contains the script and type in the file name of the script to run it (of course, make sure it is set to be executable first). You may need to put "./" before the file name, for example, you may need to type in "./extract.sh" to run the extracting script. > - Original Message > From: Chaogui Zhang <[EMAIL PROTECTED]> > To: superhappyfunball <[EMAIL PROTECTED]> > Cc: linux-dvb@linuxtv.org > Sent: Wednesday, January 23, 2008 11:09:03 PM > Subject: Re: [linux-dvb] Pinnacle 800i driver problems > > On Jan 23, 2008 11:11 PM, superhappyfunball <[EMAIL PROTECTED]> > wrote: > > > > I have since gotten it running. Seems I was missing the XC firmware for > > Glad to hear that. I guess it should have been mentioned earlier that > the firmware is needed. In any event, I have updated the wiki page at > linuxtv.org with the relevant firmware downloading instruction so we > can point anyone else to a page that explains all the necessary pieces > to get the 800i working. > > > the tuner. I grabbed, extracted and reloaded the modules, and all is > > well. Except for one thing: > > > > No sound. Now, it could just be ALSA issues. I know running multiple > > soundcards can be an issue. Ideas? > > I assume you mean analog tv or analog input. The audio is via the > cx88-alsa module, which is working fine for me last time I tested. You > need to grab the sound from the appropriate /dev/dsp? device. Do a > "cat /proc/asound/cards" and it will tell you what number(the "?") to > use for your cx88-alsa device. Note that you might run into issues if > your cx88-alsa grabs the index 0 for your sound cards. In that case, > use module options to force the cx88-alsa to index 1 or 2 as needed. > Index 0 should be reserved for your main sound card so your normal > software can use /dev/dsp (which they always default to). > > -- > Chaogui Zhang > > Ok, I know I am really close now, but I am still having trouble. > > Here's what I did, and what I am getting. I extracted the xc5000 file, > moved it over to /lib/firmware, then I downloaded the lastest v4l-dvb, sudo > make, sudo make install, and rebooted. My system came right back online. I > have sound and a network connection. I went to mythtv back end, and my card > was already selected, but when I go to scan channels, I get an error. I For people to be able to help you most effectively, next time when something goes wrong or errors happen, be sure to include *details* of the errors, such as exactly what happened and what was the error message etc. If you don't provide such details, we would have to ask you to try to reproduce the error and report back, which obviously delays the process. Also, when it is related to kernel drivers, it is almost always a good idea to run "dmesg" and look at what relevant error or warning messages might be in there. If so, post that when you ask for help on the list. So, I am really not sure what might have gone wrong at this point. Please post more details of the errors that you are seeing (for each tests you performed). Also, post the full dmesg output. I suggest you paste the dmesg output to pastebin.com and just send the link generated by pastebin.com to the list, because the dmesg output tend to be very long and I really want to see the FULL dmesg output (after the errors have occurred. Don't do dmesg before the errors, since that won't tell us anything about the error.) > started tvtime, went to scan for channels, nothing. I started kaffeine, and > again, my card was there, but I cannot scan for channels. I know I am so > close, but I don't know what to do from here. > On the plus side though, I am truly thankful for all the assistance from > Chaogui and Steve. > Thanks again. You are welcome. Ok, here's my results from 'cat/proc/sound/card' [EMAIL PROTECTED]:~$ cat /proc/asound/cards 0 [Live ]: EMU10K1 - SBLive! Value [SB0101] SBLive! Value [SB0101] (rev.7, serial:0x80691102) at 0xb000, irq 20 1 [CX8801
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Friday, January 25, 2008 8:39:16 AM Subject: Re: [linux-dvb] Pinnacle 800i driver problems Previously, Muppet Man <[EMAIL PROTECTED]> wrote: >Hmm...I thought that's what I did? I guess I don't know how to >"run it from a shell". All the shell scripts I have ran was via >giving permissions to allow exicuting as a file. "run it from a shell" means you need to open a terminal and cd into the directory that contains the script and type in the file name of the script to run it (of course, make sure it is set to be executable first). You may need to put "./" before the file name, for example, you may need to type in "./extract.sh" to run the extracting script. > - Original Message > From: Chaogui Zhang <[EMAIL PROTECTED]> > To: superhappyfunball <[EMAIL PROTECTED]> > Cc: linux-dvb@linuxtv.org > Sent: Wednesday, January 23, 2008 11:09:03 PM > Subject: Re: [linux-dvb] Pinnacle 800i driver problems > > On Jan 23, 2008 11:11 PM, superhappyfunball <[EMAIL PROTECTED]> > wrote: > > > > I have since gotten it running. Seems I was missing the XC firmware for > > Glad to hear that. I guess it should have been mentioned earlier that > the firmware is needed. In any event, I have updated the wiki page at > linuxtv.org with the relevant firmware downloading instruction so we > can point anyone else to a page that explains all the necessary pieces > to get the 800i working. > > > the tuner. I grabbed, extracted and reloaded the modules, and all is > > well. Except for one thing: > > > > No sound. Now, it could just be ALSA issues. I know running multiple > > soundcards can be an issue. Ideas? > > I assume you mean analog tv or analog input. The audio is via the > cx88-alsa module, which is working fine for me last time I tested. You > need to grab the sound from the appropriate /dev/dsp? device. Do a > "cat /proc/asound/cards" and it will tell you what number(the "?") to > use for your cx88-alsa device. Note that you might run into issues if > your cx88-alsa grabs the index 0 for your sound cards. In that case, > use module options to force the cx88-alsa to index 1 or 2 as needed. > Index 0 should be reserved for your main sound card so your normal > software can use /dev/dsp (which they always default to). > > -- > Chaogui Zhang > > Ok, I know I am really close now, but I am still having trouble. > > Here's what I did, and what I am getting. I extracted the xc5000 file, > moved it over to /lib/firmware, then I downloaded the lastest v4l-dvb, sudo > make, sudo make install, and rebooted. My system came right back online. I > have sound and a network connection. I went to mythtv back end, and my card > was already selected, but when I go to scan channels, I get an error. I For people to be able to help you most effectively, next time when something goes wrong or errors happen, be sure to include *details* of the errors, such as exactly what happened and what was the error message etc. If you don't provide such details, we would have to ask you to try to reproduce the error and report back, which obviously delays the process. Also, when it is related to kernel drivers, it is almost always a good idea to run "dmesg" and look at what relevant error or warning messages might be in there. If so, post that when you ask for help on the list. So, I am really not sure what might have gone wrong at this point. Please post more details of the errors that you are seeing (for each tests you performed). Also, post the full dmesg output. I suggest you paste the dmesg output to pastebin.com and just send the link generated by pastebin.com to the list, because the dmesg output tend to be very long and I really want to see the FULL dmesg output (after the errors have occurred. Don't do dmesg before the errors, since that won't tell us anything about the error.) > started tvtime, went to scan for channels, nothing. I started kaffeine, and > again, my card was there, but I cannot scan for channels. I know I am so > close, but I don't know what to do from here. > On the plus side though, I am truly thankful for all the assistance from > Chaogui and Steve. > Thanks again. You are welcome. -- Chaogui Zhang Chaogui, I don't know what my 2 year old son did, but last night I actually got 1 channel to show up via TVtime, but I did not have any sound associated with it. Of course, I am currently away from my system and cannot dive in more, but I will do the tests, and post the dmesg per your request when I get home tonight. Ed Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: superhappyfunball <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Wednesday, January 23, 2008 11:09:03 PM Subject: Re: [linux-dvb] Pinnacle 800i driver problems On Jan 23, 2008 11:11 PM, superhappyfunball <[EMAIL PROTECTED]> wrote: > > I have since gotten it running. Seems I was missing the XC firmware for Glad to hear that. I guess it should have been mentioned earlier that the firmware is needed. In any event, I have updated the wiki page at linuxtv.org with the relevant firmware downloading instruction so we can point anyone else to a page that explains all the necessary pieces to get the 800i working. > the tuner. I grabbed, extracted and reloaded the modules, and all is > well. Except for one thing: > > No sound. Now, it could just be ALSA issues. I know running multiple > soundcards can be an issue. Ideas? I assume you mean analog tv or analog input. The audio is via the cx88-alsa module, which is working fine for me last time I tested. You need to grab the sound from the appropriate /dev/dsp? device. Do a "cat /proc/asound/cards" and it will tell you what number(the "?") to use for your cx88-alsa device. Note that you might run into issues if your cx88-alsa grabs the index 0 for your sound cards. In that case, use module options to force the cx88-alsa to index 1 or 2 as needed. Index 0 should be reserved for your main sound card so your normal software can use /dev/dsp (which they always default to). -- Chaogui Zhang Ok, I know I am really close now, but I am still having trouble. Here's what I did, and what I am getting. I extracted the xc5000 file, moved it over to /lib/firmware, then I downloaded the lastest v4l-dvb, sudo make, sudo make install, and rebooted. My system came right back online. I have sound and a network connection. I went to mythtv back end, and my card was already selected, but when I go to scan channels, I get an error. I started tvtime, went to scan for channels, nothing. I started kaffeine, and again, my card was there, but I cannot scan for channels. I know I am so close, but I don't know what to do from here. On the plus side though, I am truly thankful for all the assistance from Chaogui and Steve. Thanks again. Ed ___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Michael Krufky <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: Steven Toth <[EMAIL PROTECTED]>; linux-dvb@linuxtv.org Sent: Thursday, January 24, 2008 4:06:18 PM Subject: Re: [linux-dvb] Pinnacle 800i driver problems 2008/1/24 Muppet Man <[EMAIL PROTECTED]>: > - Original Message > From: Steven Toth <[EMAIL PROTECTED]> > Did you _really_ read the output from the extract script, which says > something like... > > "Now copy this file into your firmware folder. > EG. sudo cp firmware.fw /lib/firmware/`uname -r/'" > > Are you _SURE_ you read the output from the extract script? > > Steve, > There was no "output" from the script. I ran the script, a white screen > popped up for less than a second, and then it went back to my desktop. I > think that is where my confusion is coming in at. > Ed For future reference, next time you try to run a shell script, run it from a shell. All in all, I think I have everything work. Ed -Mike Hmm...I thought that's what I did? I guess I don't know how to "run it from a shell". All the shell scripts I have ran was via giving permissions to allow exicuting as a file. Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Steven Toth <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: Chaogui Zhang <[EMAIL PROTECTED]>; superhappyfunball <[EMAIL PROTECTED]>; linux-dvb@linuxtv.org Sent: Thursday, January 24, 2008 9:13:25 AM Subject: Re: [linux-dvb] Pinnacle 800i driver problems > Ok, I did not know about the xc5000 tuner, so, no, it was not in place. > I went over the to the link and downloaded the extract script, and I > looked at the read me txt, but I have no idea what I am suppose to do > from here. When I run the extract script, I get dvb-fe-xc5000-1.1.fw Am > I suppose to do anything with this? Do I need to put this in the > v4l-dvb folder? > Again, sorry for asking what seems like the obvious, but I am still new > to the linux side of the house. > Thanks again, > Ed Did you _really_ read the output from the extract script, which says something like... "Now copy this file into your firmware folder. EG. sudo cp firmware.fw /lib/firmware/`uname -r/'" Are you _SURE_ you read the output from the extract script? Steve, There was no "output" from the script. I ran the script, a white screen popped up for less than a second, and then it went back to my desktop. I think that is where my confusion is coming in at. Ed Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: superhappyfunball <[EMAIL PROTECTED]> Cc: Muppet Man <[EMAIL PROTECTED]>; linux-dvb@linuxtv.org Sent: Wednesday, January 23, 2008 10:02:56 PM Subject: Re: [linux-dvb] Pinnacle 800i driver problems On Jan 23, 2008 7:29 PM, superhappyfunball <[EMAIL PROTECTED]> wrote: > Muppet Man wrote: > > > Ok, I did the sudo make rminstall and rm rf v4l-dvb, downloaded the > > file from the link, extracted, cd, sudo make, sudo make install, > > rebooted, and still had the same problem > > Indeed. I even made sure the old modules were completely wiped before I > installed a clean set of modules from mercurial. > > In short... > > [ 50.272060] cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded > [ 50.272223] cx88[0]: subsystem: 11bd:0051, board: Pinnacle PCTV HD > 800i [card=58,autodetected] > [ 50.272294] cx88[0]: TV tuner type 76, Radio tuner type -1 > [ 50.418386] input: cx88 IR (Pinnacle PCTV HD 800i) as /class/input/input6 > [ 50.418494] cx88[0]/2: cx2388x 8802 Driver Manager > [ 50.418685] cx88[0]/2: found at :02:02.2, rev: 5, irq: 18, > latency: 32, mmio: 0xf400 > [ 50.615427] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded > [ 50.615675] cx88[0]/0: found at :02:02.0, rev: 5, irq: 18, > latency: 32, mmio: 0xf200 > [ 51.253871] cx88/2: cx2388x dvb driver version 0.0.6 loaded > [ 51.253935] cx88/2: registering cx8802 driver, type: dvb access: shared > [ 51.254792] cx88[0]/2: subsystem: 11bd:0051, board: Pinnacle PCTV HD > 800i [card=58] > [ 51.254861] cx88[0]/2: cx2388x based DVB/ATSC card > [ 52.343530] tuner' 0-0064: chip found @ 0xc8 (cx88[0]) > [ 52.375709] DVB: registering new adapter (cx88[0]) > [ 52.458249] Modules linked in: snd_mpu401 snd_mpu401_uart snd_emu10k1 > snd_ac97_codec ac97_bus snd_util_mem snd_seq_midi snd_hwdep > snd_seq_dummy s5h1409 snd_seq_oss tuner tea576$ > [ 52.465209] [] cx88_tuner_callback+0x0/0x60 [cx88xx] > [ 52.465537] [] attach_inform+0xee/0x180 [cx88xx] > [ 52.465664] [] cx88_tuner_callback+0x0/0x60 [cx88xx] > [ 52.470649] cx88[0]/0: registered device video0 [v4l2] > [ 52.470759] cx88[0]/0: registered device vbi0 > [ 52.476241] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards > > > The only way I could get this dmesg output, was to boot off the recovery > kernel. Even under the recovery kernel, attempting to start or load X in > any way (kdm, gdm, or startx) results in a complete and utter > crash/freeze. You cannot get out of it without a system reset. You can't > even get into an alternate tty to kill the process. It just locks. > > I guess my question at this point is twofold: > > 1) is this, as Steve suggested earlier, a problem with core videobuf? Or > is it the nVidia driver? The hang point seems to be when nVidia gets > invoked and X Starts. kdm/gdm do not even seem to get a chance to load. > > 2) What, if anything can I do to get it to work, or help you guys figure > out where the problem is? I am open to being a guinea pig in any way I > can to help get this solved. =) > > The compile runs fine. The modules install fine. Something else is amiss. > Before we try anything else, I would like to rule out the obvious: Do you have the firmware for the xc5000 tuner in place? If not, then please download it from http://www.steventoth.net/linux/xc5000/ and extract the firmware using the script in the same location (see the readme file for instruction). I hope that will resolve the issue. If you have indeed put the firmware in place for your previous tests, would you please post the *full* output of dmesg? You can post that at pastebin.com and just send the link in the email. -- Chaogui Zhang Ok, I did not know about the xc5000 tuner, so, no, it was not in place. I went over the to the link and downloaded the extract script, and I looked at the read me txt, but I have no idea what I am suppose to do from here. When I run the extract script, I get dvb-fe-xc5000-1.1.fw Am I suppose to do anything with this? Do I need to put this in the v4l-dvb folder? Again, sorry for asking what seems like the obvious, but I am still new to the linux side of the house. Thanks again, Ed Never miss a thing. Make Yahoo your home page. http://www.yahoo.com/r/hs___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: superhappyfunball <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: Chaogui Zhang <[EMAIL PROTECTED]>; linux-dvb@linuxtv.org Sent: Wednesday, January 23, 2008 6:29:47 PM Subject: Re: [linux-dvb] Pinnacle 800i driver problems Muppet Man wrote: > Ok, I did the sudo make rminstall and rm rf v4l-dvb, downloaded the > file from the link, extracted, cd, sudo make, sudo make install, > rebooted, and still had the same problem Indeed. I even made sure the old modules were completely wiped before I installed a clean set of modules from mercurial. In short... [ 50.272060] cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded [ 50.272223] cx88[0]: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i [card=58,autodetected] [ 50.272294] cx88[0]: TV tuner type 76, Radio tuner type -1 [ 50.418386] input: cx88 IR (Pinnacle PCTV HD 800i) as /class/input/input6 [ 50.418494] cx88[0]/2: cx2388x 8802 Driver Manager [ 50.418685] cx88[0]/2: found at :02:02.2, rev: 5, irq: 18, latency: 32, mmio: 0xf400 [ 50.615427] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded [ 50.615675] cx88[0]/0: found at :02:02.0, rev: 5, irq: 18, latency: 32, mmio: 0xf200 [ 51.253871] cx88/2: cx2388x dvb driver version 0.0.6 loaded [ 51.253935] cx88/2: registering cx8802 driver, type: dvb access: shared [ 51.254792] cx88[0]/2: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i [card=58] [ 51.254861] cx88[0]/2: cx2388x based DVB/ATSC card [ 52.343530] tuner' 0-0064: chip found @ 0xc8 (cx88[0]) [ 52.375709] DVB: registering new adapter (cx88[0]) [ 52.458249] Modules linked in: snd_mpu401 snd_mpu401_uart snd_emu10k1 snd_ac97_codec ac97_bus snd_util_mem snd_seq_midi snd_hwdep snd_seq_dummy s5h1409 snd_seq_oss tuner tea576$ [ 52.465209] [] cx88_tuner_callback+0x0/0x60 [cx88xx] [ 52.465537] [] attach_inform+0xee/0x180 [cx88xx] [ 52.465664] [] cx88_tuner_callback+0x0/0x60 [cx88xx] [ 52.470649] cx88[0]/0: registered device video0 [v4l2] [ 52.470759] cx88[0]/0: registered device vbi0 [ 52.476241] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards The only way I could get this dmesg output, was to boot off the recovery kernel. Even under the recovery kernel, attempting to start or load X in any way (kdm, gdm, or startx) results in a complete and utter crash/freeze. You cannot get out of it without a system reset. You can't even get into an alternate tty to kill the process. It just locks. I guess my question at this point is twofold: 1) is this, as Steve suggested earlier, a problem with core videobuf? Or is it the nVidia driver? The hang point seems to be when nVidia gets invoked and X Starts. kdm/gdm do not even seem to get a chance to load. 2) What, if anything can I do to get it to work, or help you guys figure out where the problem is? I am open to being a guinea pig in any way I can to help get this solved. =) The compile runs fine. The modules install fine. Something else is amiss. Christopher. -- "Do not taunt Happy Fun Ball" [EMAIL PROTECTED] "You fiend! Never have I encountered such corrupt and foul-minded perversity! Have you ever considered a career in the church?" -- Bishop of Bath and Wells Wow, You went way, way over my head with the start up and stuff like that. I basically turned my computer on, walked away for 15 minutes. Anywho, I would be willing to be a test subject also, but I am rather new to the linux thing, and very new to the driver compiling. Ed Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Wednesday, January 23, 2008 10:32:21 AM Subject: Re: [linux-dvb] Pinnacle 800i driver problems On Jan 23, 2008 4:22 PM, Muppet Man <[EMAIL PROTECTED]> wrote: > > 1. Delete EVERYTHING related to v4l-dvb that you have in your system > now: first, go into your v4l-dvb directory and do "make rminstall", > then "cd .." and "rm -rf v4l-dvb" > > 2. Download the latest v4l-dvb tree from http://linuxtv.org/hg/v4l-dvb > > 3. Go into the v4l-dvb directory and "make", then "make install" > > 4. Reboot and see what happens. > > -- > Chaogui Zhang > > > Chaogui, > Thank you for the response and the help. I will look at this when I get > home from work. My question about downloading from the v4l-dvd tree, do I > download the finalized support file > http://linuxtv.org/hg/v4l-dvb/rev/6303d8072fff ? > Do I need to make a folder v4l-dvd or can I make, and make install from the > folder that I extract the tz file from? > Again, thank youfor all the help. > Ed > No, that is NOT the file you want. You need the file from http://linuxtv.org/hg/v4l-dvb including ALL the patches. Click on the "bz2" or "gz" link at the top of that page (depending on if you want a bzip2'ed or gzip'ed file). Once you download that file (and make sure you have deleted your previous v4l-dvb folder), extract the sources and it will create a folder "v4l-dvb". You then do make and make install from that directory. -- Chaogui Zhang Ok, I did the sudo make rminstall and rm rf v4l-dvb, downloaded the file from the link, extracted, cd, sudo make, sudo make install, rebooted, and still had the same problem dmesg is as followed [EMAIL PROTECTED]:~$ dmesg | grep cx88 [ 21.526819] cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded [ 21.526896] cx88[0]: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i [card=58,autodetected] [ 21.526899] cx88[0]: TV tuner type 76, Radio tuner type -1 [ 21.672025] input: cx88 IR (Pinnacle PCTV HD 800i) as /class/input/input2 [ 21.672056] cx88[0]/2: cx2388x 8802 Driver Manager [ 21.672088] cx88[0]/2: found at :00:0c.2, rev: 5, irq: 19, latency: 32, mmio: 0xe800 [ 21.709734] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded [ 21.709788] cx88[0]/0: found at :00:0c.0, rev: 5, irq: 19, latency: 32, mmio: 0xe600 [ 21.973091] cx88/2: cx2388x dvb driver version 0.0.6 loaded [ 21.973095] cx88/2: registering cx8802 driver, type: dvb access: shared [ 21.973099] cx88[0]/2: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i [card=58] [ 21.973102] cx88[0]/2: cx2388x based DVB/ATSC card [ 22.844604] tuner' 0-0064: chip found @ 0xc8 (cx88[0]) [ 22.871286] DVB: registering new adapter (cx88[0]) [ 22.899945] Modules linked in: usb_storage parport_pc libusual snd_emu10k1 snd_util_mem snd_hwdep snd_seq_dummy ide_cd cdrom pcspkr serio_raw snd_seq_oss s5h1409 parport snd_via82xx snd_ac97_codec ac97_bus snd_mpu401_uart snd_seq_midi snd_rawmidi 8139too cx88_alsa snd_pcm_oss snd_mixer_oss psmouse i2c_viapro k8temp snd_seq_midi_event snd_seq snd_seq_device cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core snd_pcm snd_timer snd_page_alloc tuner tea5767 tda8290 tda18271 tda827x tuner_xc2028 xc5000 tda9887 tuner_simple mt20xx tea5761 cx8800 compat_ioctl32 snd cx8802 cx88xx ir_common i2c_algo_bit tveeprom videodev v4l2_common i2c_core v4l1_compat amd64_agp shpchp pci_hotplug videobuf_dma_sg videobuf_core btcx_risc emu10k1_gp gameport soundcore agpgart evdev ext3 jbd mbcache sg sd_mod via82cxxx ide_core floppy 8139cp mii ehci_hcd uhci_hcd usbcore ata_generic sata_via libata scsi_mod ohci1394 ieee1394 thermal processor fan fuse apparmor commoncap [ 22.900240] [] cx88_tuner_callback+0x0/0x60 [cx88xx] [ 22.900290] [] attach_inform+0xee/0x180 [cx88xx] [ 22.900325] [] cx88_tuner_callback+0x0/0x60 [cx88xx] [ 22.900649] [] snd_ctl_boolean_mono_info+0x0/0x20 [cx88_alsa] [ 22.900927] cx88[0]/0: registered device video0 [v4l2] [ 22.900950] cx88[0]/0: registered device vbi0 [ 22.901969] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards (I removed everything because it pretty much locked up my computer). I noticed when I had this driver installed that it took about 5 minutes to boot to the log in screen, and I would either loose sound or internet connection. Again, thank you for all the help. Ed Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Wednesday, January 23, 2008 10:04:08 AM Subject: Re: [linux-dvb] Pinnacle 800i driver problems Ed, sorry for the double email. I accidentally dropped the list from the cc last time. On Jan 23, 2008 11:13 AM, Muppet Man <[EMAIL PROTECTED]> wrote: > > - Original Message > From: Chaogui Zhang <[EMAIL PROTECTED]> > To: Muppet Man <[EMAIL PROTECTED]> > Cc: linux-dvb@linuxtv.org > Sent: Tuesday, January 22, 2008 10:09:02 PM > Subject: Re: [linux-dvb] Pinnacle 800i driver problems > > > On Jan 22, 2008 7:17 PM, Muppet Man <[EMAIL PROTECTED]> wrote: > > Agian, I must say thank you for helping someone that is rather new to > linux. > > Ok, here is my set-up. I am running ultimate edition ubuntu 1.6. I > > followed the directions on downloading the tree and installing from this > > website > > http://www.linuxtv.org/wiki/index.php/How_to_install_DVB_device_drivers > > When I run lspci -v in terminal I get this: > > > >. > > > > I was having problem with the sound card being disabled, but I figured > that > > out. When I try to start myth tv back end, I log out restart my computer, > > and when I log back in, I lost my internet connection. > > > > I did not have any of these problems before this. > > > > Any help would be greatly apprecated. > > What is the output if you do "dmesg | grep cx88"? > > -- > Chaogui Zhang > > > Here is the output from dmesg | grep cx88 > > [EMAIL PROTECTED]:~$ dmesg | grep cx88 > [ 31.145652] cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded > [ 31.145718] cx88[0]: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i > [card=58,autodetected] > [ 31.145721] cx88[0]: TV tuner type 76, Radio tuner type -1 > [ 31.170925] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded > [ 31.288994] input: cx88 IR (Pinnacle PCTV HD 800i) as /class/input/input2 > [ 31.289021] cx88[0]/2: cx2388x 8802 Driver Manager > [ 31.289053] cx88[0]/2: found at :00:0c.2, rev: 5, irq: 20, latency: > 32, mmio: 0xe800 > [ 31.296906] cx88[0]/0: found at :00:0c.0, rev: 5, irq: 20, latency: > 32, mmio: 0xe600 > [ 31.400200] cx88/2: cx2388x dvb driver version 0.0.6 loaded > [ 31.400203] cx88/2: registering cx8802 driver, type: dvb access: shared > [ 31.400207] cx88[0]/2: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i > [card=58] > [ 31.400210] cx88[0]/2: cx2388x based DVB/ATSC card > [ 32.394149] tuner' 0-0064: chip found @ 0xc8 (cx88[0]) > [ 32.421015] DVB: registering new adapter (cx88[0]) > [ 32.446076] Modules linked in: parport_pc pcspkr snd_emu10k1 snd_util_mem > snd_hwdep snd_seq_dummy snd_via82xx snd_ac97_codec parport snd_seq_oss > snd_seq_midi ac97_bus snd_mpu401_uart serio_raw psmouse i2c_viapro s5h1409 > snd_rawmidi snd_seq_midi_event tuner tea5767 k8temp cx88_alsa snd_pcm_oss > snd_mixer_oss cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core snd_seq > snd_seq_device tda8290 tda18271 tda827x tuner_xc2028 xc5000 tda9887 > tuner_simple mt20xx tea5761 cx8800 compat_ioctl32 cx8802 emu10k1_gp gameport > snd_pcm snd_timer snd_page_alloc cx88xx ir_common i2c_algo_bit tveeprom > videodev v4l2_common i2c_core v4l1_compat videobuf_dma_sg videobuf_core > btcx_risc snd soundcore shpchp pci_hotplug amd64_agp agpgart evdev > usb_storage libusual 8139too ext3 jbd mbcache sg sd_mod ide_cd cdrom floppy > ehci_hcd 8139cp mii uhci_hcd usbcore via82cxxx ide_core ata_generic sata_via > libata scsi_mod ohci1394 ieee1394 thermal processor fan fuse apparmor > commoncap > [ 32.446373] [] cx88_tuner_callback+0x0/0x60 [cx88xx] > [ 32.446428] [] attach_inform+0xee/0x180 [cx88xx] > [ 32.446465] [] cx88_tuner_callback+0x0/0x60 [cx88xx] > [ 32.447085] cx88[0]/0: registered device video0 [v4l2] > [ 32.447112] cx88[0]/0: registered device vbi0 > [ 32.448038] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards > It looks like the tuner callback function caused a kernel OOPS for some reason. If you are sure you are using the latest v4l-dvb tree, then we have a bigger problem, but then again, I am NOT sure whether you have the latest tree compiled and installed correctly. A few other users and myself ran into the same kind of issues BEFORE the latest patch related tuner callback function was applied, but they have been fixed by that patch as far as I know. My suggestion: 1. Delete EVERYTHING related to v4l-dvb that you have in your system now: first, go into your v4l-dvb directory and do "make rminstall", then "cd .." and "rm -rf v4l-dvb" 2. D
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Tuesday, January 22, 2008 10:09:02 PM Subject: Re: [linux-dvb] Pinnacle 800i driver problems On Jan 22, 2008 7:17 PM, Muppet Man <[EMAIL PROTECTED]> wrote: > Agian, I must say thank you for helping someone that is rather new to linux. > Ok, here is my set-up. I am running ultimate edition ubuntu 1.6. I > followed the directions on downloading the tree and installing from this > website > http://www.linuxtv.org/wiki/index.php/How_to_install_DVB_device_drivers > When I run lspci -v in terminal I get this: > >. > > I was having problem with the sound card being disabled, but I figured that > out. When I try to start myth tv back end, I log out restart my computer, > and when I log back in, I lost my internet connection. > > I did not have any of these problems before this. > > Any help would be greatly apprecated. What is the output if you do "dmesg | grep cx88"? -- Chaogui Zhang Here is the output from dmesg | grep cx88 [EMAIL PROTECTED]:~$ dmesg | grep cx88 [ 31.145652] cx88/2: cx2388x MPEG-TS Driver Manager version 0.0.6 loaded [ 31.145718] cx88[0]: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i [card=58,autodetected] [ 31.145721] cx88[0]: TV tuner type 76, Radio tuner type -1 [ 31.170925] cx88/0: cx2388x v4l2 driver version 0.0.6 loaded [ 31.288994] input: cx88 IR (Pinnacle PCTV HD 800i) as /class/input/input2 [ 31.289021] cx88[0]/2: cx2388x 8802 Driver Manager [ 31.289053] cx88[0]/2: found at :00:0c.2, rev: 5, irq: 20, latency: 32, mmio: 0xe800 [ 31.296906] cx88[0]/0: found at :00:0c.0, rev: 5, irq: 20, latency: 32, mmio: 0xe600 [ 31.400200] cx88/2: cx2388x dvb driver version 0.0.6 loaded [ 31.400203] cx88/2: registering cx8802 driver, type: dvb access: shared [ 31.400207] cx88[0]/2: subsystem: 11bd:0051, board: Pinnacle PCTV HD 800i [card=58] [ 31.400210] cx88[0]/2: cx2388x based DVB/ATSC card [ 32.394149] tuner' 0-0064: chip found @ 0xc8 (cx88[0]) [ 32.421015] DVB: registering new adapter (cx88[0]) [ 32.446076] Modules linked in: parport_pc pcspkr snd_emu10k1 snd_util_mem snd_hwdep snd_seq_dummy snd_via82xx snd_ac97_codec parport snd_seq_oss snd_seq_midi ac97_bus snd_mpu401_uart serio_raw psmouse i2c_viapro s5h1409 snd_rawmidi snd_seq_midi_event tuner tea5767 k8temp cx88_alsa snd_pcm_oss snd_mixer_oss cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core snd_seq snd_seq_device tda8290 tda18271 tda827x tuner_xc2028 xc5000 tda9887 tuner_simple mt20xx tea5761 cx8800 compat_ioctl32 cx8802 emu10k1_gp gameport snd_pcm snd_timer snd_page_alloc cx88xx ir_common i2c_algo_bit tveeprom videodev v4l2_common i2c_core v4l1_compat videobuf_dma_sg videobuf_core btcx_risc snd soundcore shpchp pci_hotplug amd64_agp agpgart evdev usb_storage libusual 8139too ext3 jbd mbcache sg sd_mod ide_cd cdrom floppy ehci_hcd 8139cp mii uhci_hcd usbcore via82cxxx ide_core ata_generic sata_via libata scsi_mod ohci1394 ieee1394 thermal processor fan fuse apparmor commoncap [ 32.446373] [] cx88_tuner_callback+0x0/0x60 [cx88xx] [ 32.446428] [] attach_inform+0xee/0x180 [cx88xx] [ 32.446465] [] cx88_tuner_callback+0x0/0x60 [cx88xx] [ 32.447085] cx88[0]/0: registered device video0 [v4l2] [ 32.447112] cx88[0]/0: registered device vbi0 [ 32.448038] cx88[0]/1: CX88x/0: ALSA support for cx2388x boards Thanks again. Ed Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle 800i driver problems
- Original Message From: Chaogui Zhang <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]> Cc: linux-dvb@linuxtv.org Sent: Tuesday, January 22, 2008 10:29:24 AM Subject: Re: [linux-dvb] Pinnacle 800i driver problems 2008/1/22 Muppet Man <[EMAIL PROTECTED]>: > > Greetings all, > Ok, I feel really dumb but I have having a devil of a time getting linux to > see my capture card. I believe I am doing everything right, but then again, > I don't know. > I downloaded the file posted about a week ago stating it was a patch for the > pinnacle pci card (800i). I extracted the tz file, opened terminal, cd > directory to the folder, did sudo make, sudo make install and restarted my > computer. When I start mythtv back end, I get no card can be found error. > I'm sure I am really close to getting this to work. Any help for a linux > nOOb would be greatly appreciated. Given the changes the 800i driver have been through, you will be much better off if you use the latest code available at http://linuxtv.org/hg/v4l-dvb As of this morning, all patches related to the 800i so far have been merged into the master tree above, so it should work without problems. The only time that one may consider not using the master tree is when you know for sure that there are patches related to your device that have not been merged. If you still cannot get it working, post here. Good luck! -- Chaogui Zhang Agian, I must say thank you for helping someone that is rather new to linux. Ok, here is my set-up. I am running ultimate edition ubuntu 1.6. I followed the directions on downloading the tree and installing from this website http://www.linuxtv.org/wiki/index.php/How_to_install_DVB_device_drivers When I run lspci -v in terminal I get this: [EMAIL PROTECTED]:~$ lspci -v 00:00.0 Host bridge: VIA Technologies, Inc. VT8385 [K8T800 AGP] Host Bridge (rev 01) Subsystem: FIRST INTERNATIONAL Computer Inc Unknown device 9223 Flags: bus master, 66MHz, medium devsel, latency 8 Memory at e000 (32-bit, prefetchable) [size=64M] Capabilities: 00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI bridge [K8T800/K8T890 South] (prog-if 00 [Normal decode]) Flags: bus master, 66MHz, medium devsel, latency 0 Bus: primary=00, secondary=01, subordinate=01, sec-latency=0 I/O behind bridge: a000-afff Memory behind bridge: e400-e5ff Prefetchable memory behind bridge: d000-dfff Capabilities: 00:0a.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 07) Subsystem: Creative Labs Unknown device 8069 Flags: bus master, medium devsel, latency 32, IRQ 19 I/O ports at b000 [size=32] Capabilities: 00:0a.1 Input device controller: Creative Labs SB Live! Game Port (rev 07) Subsystem: Creative Labs Gameport Joystick Flags: bus master, medium devsel, latency 32 I/O ports at b400 [size=8] Capabilities: 00:0c.0 Multimedia video controller: Conexant CX23880/1/2/3 PCI Video and Audio Decoder (rev 05) Subsystem: Pinnacle Systems Inc. Unknown device 0051 Flags: bus master, medium devsel, latency 32, IRQ 20 Memory at e600 (32-bit, non-prefetchable) [size=16M] Capabilities: 00:0c.1 Multimedia controller: Conexant CX23880/1/2/3 PCI Video and Audio Decoder [Audio Port] (rev 05) Subsystem: Pinnacle Systems Inc. Unknown device 0051 Flags: bus master, medium devsel, latency 32, IRQ 5 Memory at e700 (32-bit, non-prefetchable) [size=16M] Capabilities: 00:0c.2 Multimedia controller: Conexant CX23880/1/2/3 PCI Video and Audio Decoder [MPEG Port] (rev 05) Subsystem: Pinnacle Systems Inc. Unknown device 0051 Flags: bus master, medium devsel, latency 32, IRQ 20 Memory at e800 (32-bit, non-prefetchable) [size=16M] Capabilities: 00:0e.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller (rev 80) (prog-if 10 [OHCI]) Subsystem: FIRST INTERNATIONAL Computer Inc Unknown device 9223 Flags: bus master, medium devsel, latency 32, IRQ 16 Memory at e900 (32-bit, non-prefetchable) [size=2K] I/O ports at b800 [size=128] Capabilities: 00:0f.0 IDE interface: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80) (prog-if 8f [Master SecP SecO PriP PriO]) Subsystem: FIRST INTERNATIONAL Computer Inc Unknown device 9223 Flags: bus master, medium devsel, latency 32, IRQ 17 I/O ports at bc00 [size=8] I/O ports at c000 [size=4] I/O ports at c400 [size=8] I/O ports at c800 [size=4] I/O ports at cc00 [size=16] I/O ports at d000 [size=256] Capabilities: 00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev
Re: [linux-dvb] Pinnacle 800i driver problems
Thank you for your response, and for some help I am currently at work (and not by my machine). I will post more when I get home and jump onto my machine. Ed - Original Message From: Timothy E. Krantz <[EMAIL PROTECTED]> To: Muppet Man <[EMAIL PROTECTED]>; linux-dvb@linuxtv.org Sent: Tuesday, January 22, 2008 6:42:59 AM Subject: RE: [linux-dvb] Pinnacle 800i driver problems DIV { MARGIN:0px;} Greetings all, Ok, I feel really dumb but I have having a devil of a time getting linux to see my capture card. I believe I am doing everything right, but then again, I don't know. I downloaded the file posted about a week ago stating it was a patch for the pinnacle pci card (800i). I extracted the tz file, opened terminal, cd directory to the folder, did sudo make, sudo make install and restarted my computer. When I start mythtv back end, I get no card can be found error. I'm sure I am really close to getting this to work. Any help for a linux nOOb would be greatly appreciated. Thanks Can you tell us a little more about what you are seeing. What file did you download from where? What does the output from dmesg say about cx88? Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
[linux-dvb] Pinnacle 800i driver problems
Greetings all, Ok, I feel really dumb but I have having a devil of a time getting linux to see my capture card. I believe I am doing everything right, but then again, I don't know. I downloaded the file posted about a week ago stating it was a patch for the pinnacle pci card (800i). I extracted the tz file, opened terminal, cd directory to the folder, did sudo make, sudo make install and restarted my computer. When I start mythtv back end, I get no card can be found error. I'm sure I am really close to getting this to work. Any help for a linux nOOb would be greatly appreciated. Thanks Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
Re: [linux-dvb] Pinnacle HD 800i - Testers required
- Original Message From: Steven Toth <[EMAIL PROTECTED]> To: Linux and Kernel Video <[EMAIL PROTECTED]>; linux-dvb Sent: Monday, January 14, 2008 9:15:58 AM Subject: [linux-dvb] Pinnacle HD 800i - Testers required Hi, http://linuxtv.org/hg/~stoth/xc5000-analog This tree contains full support for the product, firmware is available from here: http://steventoth.net/linux/xc5000 I need someone to test digital either QAM or ATSC. I've tested digital remotely via ssh and dvbtraffic looks good, another user has tested it and gets junk. Any other people willing to test? I could well believe we have issues, but I can't fix what I can't break. Thanks, - Steve Greetings, I have this card, and would be willing to test. I am pretty new to the linux thing, so I would need some assistance with this. I would be able to check over the air digital feeds. Thanks ___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
[linux-dvb] Questions about setting up a Pinnacle PCTV HD Card (800i)
Greetings all, I recently switched from Windows to linux and I am currently running kubuntu 7.10. I received a Pinnacle PCTV HD Card (800i) pci card from my family, and I am having some trouble getting linux to recognizing this card. I was hoping to use myth tv to record some shows, but because I am rather new to the linux operating system, I thought I would subscribe to the mailing list on myth tv in order to get some help with this card. Here's what I did so far, and my results. I downloaded, extracted, sudo make, sudo make install, and sudo make menuconfig this file http://www.linuxtv.org/hg/v4l-dvb/archive/tip.tar.bz2 per the advice of people on the myth tv mailing list. I believe myth tv sees the card, but when I scan for channels, nothing comes up (I am doing over the air broadcasting). I guess my questions are several fold. 1) How do I know linux found my card and that it's operating correctly besides being able to see TV on my screen? 2) I'm to the point now that I really don't care if I record TV shows (mostly it was football) but I want to be able to watch TV on my system, would Kaffeine be better for this? I read somewhere that kaffeine was a lot easier to set up than myth tv. 3) If I get one program to work with the pci card (kaffeine, myth tv, ect) would I be able to use the other programs to watch shows? Forgive all my questions, I am rather new to linux, but I feel a fast learner. Thanks. Looking for last minute shopping deals? Find them fast with Yahoo! Search. http://tools.search.yahoo.com/newsearch/category.php?category=shopping___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb