forked from Minki/linux
Merge branch 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb
* 'master' of ssh://master.kernel.org/pub/scm/linux/kernel/git/mchehab/v4l-dvb: V4L/DVB (5880): wm8775/wm8739: Fix memory leak when unloading module V4L/DVB (5877): radio-gemtek-pci: remove unused structure member V4L/DVB (5871): Conexant 2388x: check for kthread_run V4L/DVB (5869): Add check for valid control ID to v4l2_ctrl_next. V4L/DVB (5867): videodev2.h: add missing <sys/time.h> for userspace V4L/DVB (5866): ivtv: fix DMA timeout when capturing VBI + another stream V4L/DVB (5865): Remove usage of HZ on ivtv driver, replacing by msecs_to_jiffies V4L/DVB (5861): Use msecs_to_jiffies instead of HZ on bttv, cx88 and saa7134 V4L/DVB (5860): Use msecs_to_jiffies instead of HZ on some webcam drivers V4L/DVB (5859): use msecs_to_jiffies on InfraRed RC5 timeout V4L/DVB (5858): Use msecs_to_jiffies instead of HZ on media/video I2C drivers V4L/DVB (5857): Use msecs_to_jiffies instead of HZ on radio drivers V4L/DVB (5855): ivtv: fix Kconfig typo and refer to the driver homepage. V4L/DVB (5854): ivtv: cleanup of driver messages V4L/DVB (5853): ivtv: add support to suppress high volume i2c debug messages. V4L/DVB (5852): ivtv: don't recompile needlessly V4L/DVB (5851): ivtv: fix missing I2C_ALGOBIT config option V4L/DVB (5850): ivtv: improve API command debugging V4L/DVB (5848): Av7110: fix typo
This commit is contained in:
commit
d6f410bdbc
@ -345,8 +345,8 @@ void ir_rc5_timer_end(unsigned long data)
|
||||
}
|
||||
|
||||
/* Set/reset key-up timer */
|
||||
timeout = current_jiffies + (500 + ir->rc5_key_timeout
|
||||
* HZ) / 1000;
|
||||
timeout = current_jiffies +
|
||||
msecs_to_jiffies(ir->rc5_key_timeout);
|
||||
mod_timer(&ir->timer_keyup, timeout);
|
||||
|
||||
/* Save code for repeat test */
|
||||
|
@ -2267,7 +2267,7 @@ static int frontend_init(struct av7110 *av7110)
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.diseqc_send_master_cmd, av7110->fe_diseqc_send_master_cmd, av7110_fe_diseqc_send_master_cmd);
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.diseqc_send_burst, av7110->fe_diseqc_send_burst, av7110_fe_diseqc_send_burst);
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.set_tone, av7110->fe_set_tone, av7110_fe_set_tone);
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.set_voltage, av7110->fe_set_voltage, av7110_fe_set_voltage;)
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.set_voltage, av7110->fe_set_voltage, av7110_fe_set_voltage);
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.dishnetwork_send_legacy_command, av7110->fe_dishnetwork_send_legacy_command, av7110_fe_dishnetwork_send_legacy_command);
|
||||
FE_FUNC_OVERRIDE(av7110->fe->ops.set_frontend, av7110->fe_set_frontend, av7110_fe_set_frontend);
|
||||
|
||||
|
@ -63,7 +63,7 @@ struct rt_device
|
||||
static void sleep_delay(long n)
|
||||
{
|
||||
/* Sleep nicely for 'n' uS */
|
||||
int d=n/(1000000/HZ);
|
||||
int d=n/msecs_to_jiffies(1000);
|
||||
if(!d)
|
||||
udelay(n);
|
||||
else
|
||||
|
@ -329,7 +329,7 @@ cadet_handler(unsigned long data)
|
||||
init_timer(&readtimer);
|
||||
readtimer.function=cadet_handler;
|
||||
readtimer.data=(unsigned long)0;
|
||||
readtimer.expires=jiffies+(HZ/20);
|
||||
readtimer.expires=jiffies+msecs_to_jiffies(50);
|
||||
add_timer(&readtimer);
|
||||
}
|
||||
|
||||
@ -349,7 +349,7 @@ cadet_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
|
||||
init_timer(&readtimer);
|
||||
readtimer.function=cadet_handler;
|
||||
readtimer.data=(unsigned long)0;
|
||||
readtimer.expires=jiffies+(HZ/20);
|
||||
readtimer.expires=jiffies+msecs_to_jiffies(50);
|
||||
add_timer(&readtimer);
|
||||
}
|
||||
if(rdsin==rdsout) {
|
||||
|
@ -94,7 +94,6 @@ struct gemtek_pci_card {
|
||||
|
||||
u32 iobase;
|
||||
u32 length;
|
||||
u16 model;
|
||||
|
||||
u32 current_frequency;
|
||||
u8 mute;
|
||||
@ -413,8 +412,6 @@ static int __devinit gemtek_pci_probe( struct pci_dev *pci_dev, const struct pci
|
||||
goto err_pci;
|
||||
}
|
||||
|
||||
pci_read_config_word( pci_dev, PCI_SUBSYSTEM_ID, &card->model );
|
||||
|
||||
pci_set_drvdata( pci_dev, card );
|
||||
|
||||
if ( (devradio = kmalloc( sizeof( struct video_device ), GFP_KERNEL )) == NULL ) {
|
||||
|
@ -257,7 +257,7 @@ static int bt866_write(struct bt866 *encoder,
|
||||
printk(KERN_WARNING "%s: I/O error #%d "
|
||||
"(write 0x%02x/0x%02x)\n",
|
||||
encoder->i2c->name, err, encoder->addr, subaddr);
|
||||
schedule_timeout_interruptible(HZ/10);
|
||||
schedule_timeout_interruptible(msecs_to_jiffies(100));
|
||||
}
|
||||
if (err == 3) {
|
||||
printk(KERN_WARNING "%s: giving up\n",
|
||||
|
@ -4209,7 +4209,7 @@ static int tea5757_read(struct bttv *btv)
|
||||
bus_low(btv,btv->mbox_clk);
|
||||
|
||||
udelay(10);
|
||||
timeout= jiffies + HZ;
|
||||
timeout= jiffies + msecs_to_jiffies(1000);
|
||||
|
||||
/* wait for DATA line to go low; error if it doesn't */
|
||||
while (bus_in(btv,btv->mbox_data) && time_before(jiffies, timeout))
|
||||
|
@ -153,7 +153,7 @@ static void bttv_ir_start(struct bttv *btv, struct card_ir *ir)
|
||||
{
|
||||
if (ir->polling) {
|
||||
setup_timer(&ir->timer, bttv_input_timer, (unsigned long)btv);
|
||||
ir->timer.expires = jiffies + HZ;
|
||||
ir->timer.expires = jiffies + msecs_to_jiffies(1000);
|
||||
add_timer(&ir->timer);
|
||||
} else if (ir->rc5_gpio) {
|
||||
/* set timer_end for code completion */
|
||||
|
@ -284,8 +284,8 @@ extern int fini_bttv_i2c(struct bttv *btv);
|
||||
#define d2printk if (bttv_debug >= 2) printk
|
||||
|
||||
#define BTTV_MAX_FBUF 0x208000
|
||||
#define BTTV_TIMEOUT (HZ/2) /* 0.5 seconds */
|
||||
#define BTTV_FREE_IDLE (HZ) /* one second */
|
||||
#define BTTV_TIMEOUT msecs_to_jiffies(500) /* 0.5 seconds */
|
||||
#define BTTV_FREE_IDLE msecs_to_jiffies(1000) /* one second */
|
||||
|
||||
|
||||
struct bttv_pll_info {
|
||||
|
@ -95,7 +95,7 @@ static unsigned int qcam_await_ready1(struct qcam_device *qcam,
|
||||
unsigned long oldjiffies = jiffies;
|
||||
unsigned int i;
|
||||
|
||||
for (oldjiffies = jiffies; (jiffies - oldjiffies) < (HZ/25); )
|
||||
for (oldjiffies = jiffies; (jiffies - oldjiffies) < msecs_to_jiffies(40); )
|
||||
if (qcam_ready1(qcam) == value)
|
||||
return 0;
|
||||
|
||||
@ -120,7 +120,7 @@ static unsigned int qcam_await_ready2(struct qcam_device *qcam, int value)
|
||||
unsigned long oldjiffies = jiffies;
|
||||
unsigned int i;
|
||||
|
||||
for (oldjiffies = jiffies; (jiffies - oldjiffies) < (HZ/25); )
|
||||
for (oldjiffies = jiffies; (jiffies - oldjiffies) < msecs_to_jiffies(40); )
|
||||
if (qcam_ready2(qcam) == value)
|
||||
return 0;
|
||||
|
||||
|
@ -1881,8 +1881,14 @@ static int __devinit cx8800_initdev(struct pci_dev *pci_dev,
|
||||
mutex_unlock(&core->lock);
|
||||
|
||||
/* start tvaudio thread */
|
||||
if (core->tuner_type != TUNER_ABSENT)
|
||||
if (core->tuner_type != TUNER_ABSENT) {
|
||||
core->kthread = kthread_run(cx88_audio_thread, core, "cx88 tvaudio");
|
||||
if (IS_ERR(core->kthread)) {
|
||||
err = PTR_ERR(core->kthread);
|
||||
printk(KERN_ERR "Failed to create cx88 audio thread, err=%d\n",
|
||||
err);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
||||
fail_unreg:
|
||||
|
@ -259,7 +259,7 @@ struct cx88_subid {
|
||||
#define RESOURCE_VIDEO 2
|
||||
#define RESOURCE_VBI 4
|
||||
|
||||
#define BUFFER_TIMEOUT (HZ/2) /* 0.5 seconds */
|
||||
#define BUFFER_TIMEOUT msecs_to_jiffies(500) /* 0.5 seconds */
|
||||
|
||||
/* buffer for one video frame */
|
||||
struct cx88_buffer {
|
||||
|
@ -1,6 +1,7 @@
|
||||
config VIDEO_IVTV
|
||||
tristate "Conexant cx23416/cx23415 MPEG encoder/decoder support"
|
||||
depends on VIDEO_V4L1 && VIDEO_V4L2 && PCI && I2C && EXPERIMENTAL
|
||||
select I2C_ALGOBIT
|
||||
select FW_LOADER
|
||||
select VIDEO_TUNER
|
||||
select VIDEO_TVEEPROM
|
||||
@ -16,11 +17,11 @@ config VIDEO_IVTV
|
||||
select VIDEO_UPD64031A
|
||||
select VIDEO_UPD64083
|
||||
---help---
|
||||
This is a video4linux driver for Conexant cx23416 or cx23416 based
|
||||
This is a video4linux driver for Conexant cx23416 or cx23415 based
|
||||
PCI personal video recorder devices.
|
||||
|
||||
This is used in devices such as the Hauppauge PVR-150/250/350/500
|
||||
cards.
|
||||
cards. There is a driver homepage at <http://www.ivtvdriver.org>.
|
||||
|
||||
To compile this driver as a module, choose M here: the
|
||||
module will be called ivtv.
|
||||
|
@ -56,7 +56,6 @@
|
||||
#include "ivtv-gpio.h"
|
||||
#include "ivtv-yuv.h"
|
||||
|
||||
#include <linux/vermagic.h>
|
||||
#include <media/tveeprom.h>
|
||||
#include <media/v4l2-chip-ident.h>
|
||||
|
||||
@ -276,9 +275,10 @@ int ivtv_waitq(wait_queue_head_t *waitq)
|
||||
}
|
||||
|
||||
/* Generic utility functions */
|
||||
int ivtv_sleep_timeout(int timeout, int intr)
|
||||
int ivtv_msleep_timeout(unsigned int msecs, int intr)
|
||||
{
|
||||
int ret;
|
||||
int timeout = msecs_to_jiffies(msecs);
|
||||
|
||||
do {
|
||||
set_current_state(intr ? TASK_INTERRUPTIBLE : TASK_UNINTERRUPTIBLE);
|
||||
@ -427,7 +427,7 @@ static void ivtv_process_eeprom(struct ivtv *itv)
|
||||
if (itv->options.newi2c == -1 && tv.has_ir != -1 && tv.has_ir != 2) {
|
||||
itv->options.newi2c = (tv.has_ir & 2) ? 1 : 0;
|
||||
if (itv->options.newi2c) {
|
||||
IVTV_INFO("reopen i2c bus for IR-blaster support\n");
|
||||
IVTV_INFO("Reopen i2c bus for IR-blaster support\n");
|
||||
exit_ivtv_i2c(itv);
|
||||
init_ivtv_i2c(itv);
|
||||
}
|
||||
@ -951,7 +951,7 @@ static int __devinit ivtv_probe(struct pci_dev *dev,
|
||||
|
||||
/* Make sure we've got a place for this card */
|
||||
if (ivtv_cards_active == IVTV_MAX_CARDS) {
|
||||
printk(KERN_ERR "ivtv: Maximum number of cards detected (%d).\n",
|
||||
printk(KERN_ERR "ivtv: Maximum number of cards detected (%d)\n",
|
||||
ivtv_cards_active);
|
||||
spin_unlock(&ivtv_cards_lock);
|
||||
return -ENOMEM;
|
||||
@ -966,9 +966,7 @@ static int __devinit ivtv_probe(struct pci_dev *dev,
|
||||
itv->dev = dev;
|
||||
itv->num = ivtv_cards_active++;
|
||||
snprintf(itv->name, sizeof(itv->name) - 1, "ivtv%d", itv->num);
|
||||
if (itv->num) {
|
||||
printk(KERN_INFO "ivtv: ====================== NEXT CARD ======================\n");
|
||||
}
|
||||
IVTV_INFO("Initializing card #%d\n", itv->num);
|
||||
|
||||
spin_unlock(&ivtv_cards_lock);
|
||||
|
||||
@ -1215,7 +1213,7 @@ static int __devinit ivtv_probe(struct pci_dev *dev,
|
||||
if (itv->has_cx23415)
|
||||
ivtv_set_osd_alpha(itv);
|
||||
|
||||
IVTV_INFO("Initialized %s, card #%d\n", itv->card_name, itv->num);
|
||||
IVTV_INFO("Initialized card #%d: %s\n", itv->num, itv->card_name);
|
||||
|
||||
return 0;
|
||||
|
||||
@ -1248,15 +1246,15 @@ static void ivtv_remove(struct pci_dev *pci_dev)
|
||||
{
|
||||
struct ivtv *itv = pci_get_drvdata(pci_dev);
|
||||
|
||||
IVTV_DEBUG_INFO("Removing Card #%d.\n", itv->num);
|
||||
IVTV_DEBUG_INFO("Removing Card #%d\n", itv->num);
|
||||
|
||||
/* Stop all captures */
|
||||
IVTV_DEBUG_INFO(" Stopping all streams.\n");
|
||||
IVTV_DEBUG_INFO("Stopping all streams\n");
|
||||
if (atomic_read(&itv->capturing) > 0)
|
||||
ivtv_stop_all_captures(itv);
|
||||
|
||||
/* Stop all decoding */
|
||||
IVTV_DEBUG_INFO(" Stopping decoding.\n");
|
||||
IVTV_DEBUG_INFO("Stopping decoding\n");
|
||||
if (atomic_read(&itv->decoding) > 0) {
|
||||
int type;
|
||||
|
||||
@ -1269,30 +1267,30 @@ static void ivtv_remove(struct pci_dev *pci_dev)
|
||||
}
|
||||
|
||||
/* Interrupts */
|
||||
IVTV_DEBUG_INFO(" Disabling interrupts.\n");
|
||||
IVTV_DEBUG_INFO("Disabling interrupts\n");
|
||||
ivtv_set_irq_mask(itv, 0xffffffff);
|
||||
del_timer_sync(&itv->dma_timer);
|
||||
|
||||
/* Stop all Work Queues */
|
||||
IVTV_DEBUG_INFO(" Stop Work Queues.\n");
|
||||
IVTV_DEBUG_INFO("Stop Work Queues\n");
|
||||
flush_workqueue(itv->irq_work_queues);
|
||||
destroy_workqueue(itv->irq_work_queues);
|
||||
|
||||
IVTV_DEBUG_INFO(" Stopping Firmware.\n");
|
||||
IVTV_DEBUG_INFO("Stopping Firmware\n");
|
||||
ivtv_halt_firmware(itv);
|
||||
|
||||
IVTV_DEBUG_INFO(" Unregistering v4l devices.\n");
|
||||
IVTV_DEBUG_INFO("Unregistering v4l devices\n");
|
||||
ivtv_streams_cleanup(itv);
|
||||
IVTV_DEBUG_INFO(" Freeing dma resources.\n");
|
||||
IVTV_DEBUG_INFO("Freeing dma resources\n");
|
||||
ivtv_udma_free(itv);
|
||||
|
||||
exit_ivtv_i2c(itv);
|
||||
|
||||
IVTV_DEBUG_INFO(" Releasing irq.\n");
|
||||
IVTV_DEBUG_INFO(" Releasing irq\n");
|
||||
free_irq(itv->dev->irq, (void *)itv);
|
||||
ivtv_iounmap(itv);
|
||||
|
||||
IVTV_DEBUG_INFO(" Releasing mem.\n");
|
||||
IVTV_DEBUG_INFO(" Releasing mem\n");
|
||||
release_mem_region(itv->base_addr, IVTV_ENCODER_SIZE);
|
||||
release_mem_region(itv->base_addr + IVTV_REG_OFFSET, IVTV_REG_SIZE);
|
||||
if (itv->has_cx23415)
|
||||
@ -1313,28 +1311,27 @@ static struct pci_driver ivtv_pci_driver = {
|
||||
|
||||
static int module_start(void)
|
||||
{
|
||||
printk(KERN_INFO "ivtv: ==================== START INIT IVTV ====================\n");
|
||||
printk(KERN_INFO "ivtv: version %s (" VERMAGIC_STRING ") loading\n", IVTV_VERSION);
|
||||
printk(KERN_INFO "ivtv: Start initialization, version %s\n", IVTV_VERSION);
|
||||
|
||||
memset(ivtv_cards, 0, sizeof(ivtv_cards));
|
||||
|
||||
/* Validate parameters */
|
||||
if (ivtv_first_minor < 0 || ivtv_first_minor >= IVTV_MAX_CARDS) {
|
||||
printk(KERN_ERR "ivtv: ivtv_first_minor must be between 0 and %d. Exiting...\n",
|
||||
printk(KERN_ERR "ivtv: Exiting, ivtv_first_minor must be between 0 and %d\n",
|
||||
IVTV_MAX_CARDS - 1);
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (ivtv_debug < 0 || ivtv_debug > 1023) {
|
||||
ivtv_debug = 0;
|
||||
printk(KERN_INFO "ivtv: debug value must be >= 0 and <= 1023!\n");
|
||||
printk(KERN_INFO "ivtv: Debug value must be >= 0 and <= 1023\n");
|
||||
}
|
||||
|
||||
if (pci_register_driver(&ivtv_pci_driver)) {
|
||||
printk(KERN_ERR "ivtv: Error detecting PCI card\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
printk(KERN_INFO "ivtv: ==================== END INIT IVTV ====================\n");
|
||||
printk(KERN_INFO "ivtv: End initialization\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -848,7 +848,7 @@ int ivtv_set_output_mode(struct ivtv *itv, int mode);
|
||||
struct ivtv_stream *ivtv_get_output_stream(struct ivtv *itv);
|
||||
|
||||
/* Return non-zero if a signal is pending */
|
||||
int ivtv_sleep_timeout(int timeout, int intr);
|
||||
int ivtv_msleep_timeout(unsigned int msecs, int intr);
|
||||
|
||||
/* Wait on queue, returns -EINTR if interrupted */
|
||||
int ivtv_waitq(wait_queue_head_t *waitq);
|
||||
|
@ -218,7 +218,7 @@ static struct ivtv_buffer *ivtv_get_buffer(struct ivtv_stream *s, int non_block,
|
||||
/* Process pending program info updates and pending VBI data */
|
||||
ivtv_update_pgm_info(itv);
|
||||
|
||||
if (jiffies - itv->dualwatch_jiffies > HZ) {
|
||||
if (jiffies - itv->dualwatch_jiffies > msecs_to_jiffies(1000)) {
|
||||
itv->dualwatch_jiffies = jiffies;
|
||||
ivtv_dualwatch(itv);
|
||||
}
|
||||
@ -832,7 +832,7 @@ int ivtv_v4l2_open(struct inode *inode, struct file *filp)
|
||||
if (itv == NULL) {
|
||||
/* Couldn't find a device registered
|
||||
on that minor, shouldn't happen! */
|
||||
printk(KERN_WARNING "ivtv: no ivtv device found on minor %d\n", minor);
|
||||
printk(KERN_WARNING "ivtv: No ivtv device found on minor %d\n", minor);
|
||||
return -ENXIO;
|
||||
}
|
||||
|
||||
@ -924,7 +924,7 @@ void ivtv_unmute(struct ivtv *itv)
|
||||
if (atomic_read(&itv->capturing) == 0)
|
||||
ivtv_vapi(itv, CX2341X_ENC_INITIALIZE_INPUT, 0);
|
||||
|
||||
ivtv_sleep_timeout(HZ / 10, 0);
|
||||
ivtv_msleep_timeout(100, 0);
|
||||
|
||||
if (atomic_read(&itv->capturing)) {
|
||||
ivtv_vapi(itv, CX2341X_ENC_MISC, 1, 12);
|
||||
|
@ -36,7 +36,7 @@
|
||||
#define IVTV_CMD_SPU_STOP 0x00000001
|
||||
#define IVTV_CMD_SDRAM_PRECHARGE_INIT 0x0000001A
|
||||
#define IVTV_CMD_SDRAM_REFRESH_INIT 0x80000640
|
||||
#define IVTV_SDRAM_SLEEPTIME (60 * HZ / 100) /* 600 ms */
|
||||
#define IVTV_SDRAM_SLEEPTIME 600
|
||||
|
||||
#define IVTV_DECODE_INIT_MPEG_FILENAME "v4l-cx2341x-init.mpg"
|
||||
#define IVTV_DECODE_INIT_MPEG_SIZE (152*1024)
|
||||
@ -61,7 +61,7 @@ retry:
|
||||
the wrong file was sometimes loaded. So we check filesizes to
|
||||
see if at least the right-sized file was loaded. If not, then we
|
||||
retry. */
|
||||
IVTV_INFO("retry: file loaded was not %s (expected size %ld, got %zd)\n", fn, size, fw->size);
|
||||
IVTV_INFO("Retry: file loaded was not %s (expected size %ld, got %zd)\n", fn, size, fw->size);
|
||||
release_firmware(fw);
|
||||
retries--;
|
||||
goto retry;
|
||||
@ -73,11 +73,11 @@ retry:
|
||||
src++;
|
||||
}
|
||||
release_firmware(fw);
|
||||
IVTV_INFO("loaded %s firmware (%zd bytes)\n", fn, fw->size);
|
||||
IVTV_INFO("Loaded %s firmware (%zd bytes)\n", fn, fw->size);
|
||||
return size;
|
||||
}
|
||||
IVTV_ERR("unable to open firmware %s (must be %ld bytes)\n", fn, size);
|
||||
IVTV_ERR("did you put the firmware in the hotplug firmware directory?\n");
|
||||
IVTV_ERR("Unable to open firmware %s (must be %ld bytes)\n", fn, size);
|
||||
IVTV_ERR("Did you put the firmware in the hotplug firmware directory?\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
@ -89,7 +89,7 @@ void ivtv_halt_firmware(struct ivtv *itv)
|
||||
if (itv->enc_mbox.mbox)
|
||||
ivtv_vapi(itv, CX2341X_ENC_HALT_FW, 0);
|
||||
|
||||
ivtv_sleep_timeout(HZ / 100, 0);
|
||||
ivtv_msleep_timeout(10, 0);
|
||||
itv->enc_mbox.mbox = itv->dec_mbox.mbox = NULL;
|
||||
|
||||
IVTV_DEBUG_INFO("Stopping VDM\n");
|
||||
@ -113,7 +113,7 @@ void ivtv_halt_firmware(struct ivtv *itv)
|
||||
IVTV_DEBUG_INFO("Stopping SPU\n");
|
||||
write_reg(IVTV_CMD_SPU_STOP, IVTV_REG_SPU);
|
||||
|
||||
ivtv_sleep_timeout(HZ / 100, 0);
|
||||
ivtv_msleep_timeout(10, 0);
|
||||
|
||||
IVTV_DEBUG_INFO("init Encoder SDRAM pre-charge\n");
|
||||
write_reg(IVTV_CMD_SDRAM_PRECHARGE_INIT, IVTV_REG_ENC_SDRAM_PRECHARGE);
|
||||
@ -129,9 +129,8 @@ void ivtv_halt_firmware(struct ivtv *itv)
|
||||
write_reg(IVTV_CMD_SDRAM_REFRESH_INIT, IVTV_REG_DEC_SDRAM_REFRESH);
|
||||
}
|
||||
|
||||
IVTV_DEBUG_INFO("Sleeping for %dms (600 recommended)\n",
|
||||
(int)(IVTV_SDRAM_SLEEPTIME * 1000 / HZ));
|
||||
ivtv_sleep_timeout(IVTV_SDRAM_SLEEPTIME, 0);
|
||||
IVTV_DEBUG_INFO("Sleeping for %dms\n", IVTV_SDRAM_SLEEPTIME);
|
||||
ivtv_msleep_timeout(IVTV_SDRAM_SLEEPTIME, 0);
|
||||
}
|
||||
|
||||
void ivtv_firmware_versions(struct ivtv *itv)
|
||||
@ -204,12 +203,12 @@ int ivtv_firmware_init(struct ivtv *itv)
|
||||
|
||||
/* start firmware */
|
||||
write_reg(read_reg(IVTV_REG_SPU) & IVTV_MASK_SPU_ENABLE, IVTV_REG_SPU);
|
||||
ivtv_sleep_timeout(HZ / 10, 0);
|
||||
ivtv_msleep_timeout(100, 0);
|
||||
if (itv->has_cx23415)
|
||||
write_reg(read_reg(IVTV_REG_VPU) & IVTV_MASK_VPU_ENABLE15, IVTV_REG_VPU);
|
||||
else
|
||||
write_reg(read_reg(IVTV_REG_VPU) & IVTV_MASK_VPU_ENABLE16, IVTV_REG_VPU);
|
||||
ivtv_sleep_timeout(HZ / 10, 0);
|
||||
ivtv_msleep_timeout(100, 0);
|
||||
|
||||
/* find mailboxes and ping firmware */
|
||||
itv->enc_mbox.mbox = ivtv_search_mailbox(itv->enc_mem, IVTV_ENCODER_SIZE);
|
||||
@ -264,7 +263,7 @@ void ivtv_init_mpeg_decoder(struct ivtv *itv)
|
||||
IVTV_DECODE_INIT_MPEG_FILENAME);
|
||||
} else {
|
||||
ivtv_vapi(itv, CX2341X_DEC_SCHED_DMA_FROM_HOST, 3, 0, readbytes, 0);
|
||||
ivtv_sleep_timeout(HZ / 10, 0);
|
||||
ivtv_msleep_timeout(100, 0);
|
||||
}
|
||||
ivtv_vapi(itv, CX2341X_DEC_STOP_PLAYBACK, 4, 0, 0, 0, 1);
|
||||
}
|
||||
|
@ -130,7 +130,7 @@ int ivtv_reset_tuner_gpio(enum v4l2_tuner_type mode, void *priv, int ptr)
|
||||
|
||||
if (itv->card->type != IVTV_CARD_PG600V2 || itv->options.tuner != TUNER_XCEIVE_XC3028)
|
||||
return -EINVAL;
|
||||
IVTV_INFO("Resetting tuner.\n");
|
||||
IVTV_INFO("Resetting tuner\n");
|
||||
curout = read_reg(IVTV_REG_GPIO_OUT);
|
||||
curdir = read_reg(IVTV_REG_GPIO_DIR);
|
||||
curdir |= (1 << 12); /* GPIO bit 12 */
|
||||
|
@ -144,7 +144,7 @@ static int attach_inform(struct i2c_client *client)
|
||||
}
|
||||
}
|
||||
if (i == I2C_CLIENTS_MAX) {
|
||||
IVTV_ERR("insufficient room for new I2C client!\n");
|
||||
IVTV_ERR("Insufficient room for new I2C client\n");
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -236,7 +236,7 @@ static int ivtv_ack(struct ivtv *itv)
|
||||
int ret = 0;
|
||||
|
||||
if (ivtv_getscl(itv) == 1) {
|
||||
IVTV_DEBUG_I2C("SCL was high starting an ack\n");
|
||||
IVTV_DEBUG_HI_I2C("SCL was high starting an ack\n");
|
||||
ivtv_setscl(itv, 0);
|
||||
if (!ivtv_waitscl(itv, 0)) {
|
||||
IVTV_DEBUG_I2C("Could not set SCL low starting an ack\n");
|
||||
@ -263,7 +263,7 @@ static int ivtv_sendbyte(struct ivtv *itv, unsigned char byte)
|
||||
{
|
||||
int i, bit;
|
||||
|
||||
IVTV_DEBUG_I2C("write %x\n",byte);
|
||||
IVTV_DEBUG_HI_I2C("write %x\n",byte);
|
||||
for (i = 0; i < 8; ++i, byte<<=1) {
|
||||
ivtv_setscl(itv, 0);
|
||||
if (!ivtv_waitscl(itv, 0)) {
|
||||
@ -318,7 +318,7 @@ static int ivtv_readbyte(struct ivtv *itv, unsigned char *byte, int nack)
|
||||
ivtv_scldelay(itv);
|
||||
ivtv_setscl(itv, 0);
|
||||
ivtv_scldelay(itv);
|
||||
IVTV_DEBUG_I2C("read %x\n",*byte);
|
||||
IVTV_DEBUG_HI_I2C("read %x\n",*byte);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -330,7 +330,7 @@ static int ivtv_start(struct ivtv *itv)
|
||||
|
||||
sda = ivtv_getsda(itv);
|
||||
if (sda != 1) {
|
||||
IVTV_DEBUG_I2C("SDA was low at start\n");
|
||||
IVTV_DEBUG_HI_I2C("SDA was low at start\n");
|
||||
ivtv_setsda(itv, 1);
|
||||
if (!ivtv_waitsda(itv, 1)) {
|
||||
IVTV_DEBUG_I2C("SDA stuck low\n");
|
||||
@ -355,7 +355,7 @@ static int ivtv_stop(struct ivtv *itv)
|
||||
int i;
|
||||
|
||||
if (ivtv_getscl(itv) != 0) {
|
||||
IVTV_DEBUG_I2C("SCL not low when stopping\n");
|
||||
IVTV_DEBUG_HI_I2C("SCL not low when stopping\n");
|
||||
ivtv_setscl(itv, 0);
|
||||
if (!ivtv_waitscl(itv, 0)) {
|
||||
IVTV_DEBUG_I2C("SCL could not be set low\n");
|
||||
@ -569,7 +569,7 @@ int ivtv_call_i2c_client(struct ivtv *itv, int addr, unsigned int cmd, void *arg
|
||||
}
|
||||
}
|
||||
if (cmd != VIDIOC_G_CHIP_IDENT)
|
||||
IVTV_ERR("i2c addr 0x%02x not found for command 0x%x!\n", addr, cmd);
|
||||
IVTV_ERR("i2c addr 0x%02x not found for command 0x%x\n", addr, cmd);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
@ -640,7 +640,7 @@ int ivtv_i2c_hw(struct ivtv *itv, u32 hw, unsigned int cmd, void *arg)
|
||||
|
||||
addr = ivtv_i2c_hw_addr(itv, hw);
|
||||
if (addr < 0) {
|
||||
IVTV_ERR("i2c hardware 0x%08x (%s) not found for command 0x%x!\n",
|
||||
IVTV_ERR("i2c hardware 0x%08x (%s) not found for command 0x%x\n",
|
||||
hw, ivtv_i2c_hw_name(hw), cmd);
|
||||
return addr;
|
||||
}
|
||||
@ -655,7 +655,7 @@ int ivtv_i2c_id(struct ivtv *itv, u32 id, unsigned int cmd, void *arg)
|
||||
addr = ivtv_i2c_id_addr(itv, id);
|
||||
if (addr < 0) {
|
||||
if (cmd != VIDIOC_G_CHIP_IDENT)
|
||||
IVTV_ERR("i2c ID 0x%08x (%s) not found for command 0x%x!\n",
|
||||
IVTV_ERR("i2c ID 0x%08x (%s) not found for command 0x%x\n",
|
||||
id, ivtv_i2c_id_name(id), cmd);
|
||||
return addr;
|
||||
}
|
||||
@ -696,7 +696,7 @@ int ivtv_upd64083(struct ivtv *itv, unsigned int cmd, void *arg)
|
||||
void ivtv_call_i2c_clients(struct ivtv *itv, unsigned int cmd, void *arg)
|
||||
{
|
||||
if (itv->i2c_adap.algo == NULL) {
|
||||
IVTV_ERR("adapter is not set");
|
||||
IVTV_ERR("Adapter is not set");
|
||||
return;
|
||||
}
|
||||
i2c_clients_command(&itv->i2c_adap, cmd, arg);
|
||||
|
@ -403,6 +403,11 @@ static void ivtv_dma_enc_start(struct ivtv_stream *s)
|
||||
/* Mark last buffer size for Interrupt flag */
|
||||
s->SGarray[s->SG_length - 1].size |= cpu_to_le32(0x80000000);
|
||||
|
||||
if (s->type == IVTV_ENC_STREAM_TYPE_VBI)
|
||||
set_bit(IVTV_F_I_ENC_VBI, &itv->i_flags);
|
||||
else
|
||||
clear_bit(IVTV_F_I_ENC_VBI, &itv->i_flags);
|
||||
|
||||
if (ivtv_use_pio(s)) {
|
||||
for (i = 0; i < s->SG_length; i++) {
|
||||
s->PIOarray[i].src = le32_to_cpu(s->SGarray[i].src);
|
||||
@ -420,7 +425,7 @@ static void ivtv_dma_enc_start(struct ivtv_stream *s)
|
||||
write_reg_sync(read_reg(IVTV_REG_DMAXFER) | 0x02, IVTV_REG_DMAXFER);
|
||||
set_bit(IVTV_F_I_DMA, &itv->i_flags);
|
||||
itv->cur_dma_stream = s->type;
|
||||
itv->dma_timer.expires = jiffies + HZ / 10;
|
||||
itv->dma_timer.expires = jiffies + msecs_to_jiffies(100);
|
||||
add_timer(&itv->dma_timer);
|
||||
}
|
||||
}
|
||||
@ -437,7 +442,7 @@ static void ivtv_dma_dec_start(struct ivtv_stream *s)
|
||||
write_reg_sync(read_reg(IVTV_REG_DMAXFER) | 0x01, IVTV_REG_DMAXFER);
|
||||
set_bit(IVTV_F_I_DMA, &itv->i_flags);
|
||||
itv->cur_dma_stream = s->type;
|
||||
itv->dma_timer.expires = jiffies + HZ / 10;
|
||||
itv->dma_timer.expires = jiffies + msecs_to_jiffies(100);
|
||||
add_timer(&itv->dma_timer);
|
||||
}
|
||||
|
||||
@ -597,7 +602,6 @@ static void ivtv_irq_enc_start_cap(struct ivtv *itv)
|
||||
data[0], data[1], data[2]);
|
||||
return;
|
||||
}
|
||||
clear_bit(IVTV_F_I_ENC_VBI, &itv->i_flags);
|
||||
s = &itv->streams[ivtv_stream_map[data[0]]];
|
||||
if (!stream_enc_dma_append(s, data)) {
|
||||
set_bit(ivtv_use_pio(s) ? IVTV_F_S_PIO_PENDING : IVTV_F_S_DMA_PENDING, &s->s_flags);
|
||||
@ -634,7 +638,6 @@ static void ivtv_irq_enc_vbi_cap(struct ivtv *itv)
|
||||
then start a DMA request for just the VBI data. */
|
||||
if (!stream_enc_dma_append(s, data) &&
|
||||
!test_bit(IVTV_F_S_STREAMING, &s_mpg->s_flags)) {
|
||||
set_bit(IVTV_F_I_ENC_VBI, &itv->i_flags);
|
||||
set_bit(ivtv_use_pio(s) ? IVTV_F_S_PIO_PENDING : IVTV_F_S_DMA_PENDING, &s->s_flags);
|
||||
}
|
||||
}
|
||||
|
@ -37,6 +37,7 @@
|
||||
#define API_RESULT (1 << 1) /* Allow 1 second for this cmd to end */
|
||||
#define API_FAST_RESULT (3 << 1) /* Allow 0.1 second for this cmd to end */
|
||||
#define API_DMA (1 << 3) /* DMA mailbox, has special handling */
|
||||
#define API_HIGH_VOL (1 << 5) /* High volume command (i.e. called during encoding or decoding) */
|
||||
#define API_NO_WAIT_MB (1 << 4) /* Command may not wait for a free mailbox */
|
||||
#define API_NO_WAIT_RES (1 << 5) /* Command may not wait for the result */
|
||||
|
||||
@ -77,11 +78,11 @@ static const struct ivtv_api_info api_info[256] = {
|
||||
API_ENTRY(CX2341X_ENC_SET_DMA_BLOCK_SIZE, API_CACHE),
|
||||
API_ENTRY(CX2341X_ENC_GET_PREV_DMA_INFO_MB_10, API_FAST_RESULT),
|
||||
API_ENTRY(CX2341X_ENC_GET_PREV_DMA_INFO_MB_9, API_FAST_RESULT),
|
||||
API_ENTRY(CX2341X_ENC_SCHED_DMA_TO_HOST, API_DMA),
|
||||
API_ENTRY(CX2341X_ENC_SCHED_DMA_TO_HOST, API_DMA | API_HIGH_VOL),
|
||||
API_ENTRY(CX2341X_ENC_INITIALIZE_INPUT, API_RESULT),
|
||||
API_ENTRY(CX2341X_ENC_SET_FRAME_DROP_RATE, API_CACHE),
|
||||
API_ENTRY(CX2341X_ENC_PAUSE_ENCODER, API_RESULT),
|
||||
API_ENTRY(CX2341X_ENC_REFRESH_INPUT, API_NO_WAIT_MB),
|
||||
API_ENTRY(CX2341X_ENC_REFRESH_INPUT, API_NO_WAIT_MB | API_HIGH_VOL),
|
||||
API_ENTRY(CX2341X_ENC_SET_COPYRIGHT, API_CACHE),
|
||||
API_ENTRY(CX2341X_ENC_SET_EVENT_NOTIFICATION, API_RESULT),
|
||||
API_ENTRY(CX2341X_ENC_SET_NUM_VSYNC_LINES, API_CACHE),
|
||||
@ -102,7 +103,7 @@ static const struct ivtv_api_info api_info[256] = {
|
||||
API_ENTRY(CX2341X_DEC_SET_DMA_BLOCK_SIZE, API_CACHE),
|
||||
API_ENTRY(CX2341X_DEC_GET_XFER_INFO, API_FAST_RESULT),
|
||||
API_ENTRY(CX2341X_DEC_GET_DMA_STATUS, API_FAST_RESULT),
|
||||
API_ENTRY(CX2341X_DEC_SCHED_DMA_FROM_HOST, API_DMA),
|
||||
API_ENTRY(CX2341X_DEC_SCHED_DMA_FROM_HOST, API_DMA | API_HIGH_VOL),
|
||||
API_ENTRY(CX2341X_DEC_PAUSE_PLAYBACK, API_RESULT),
|
||||
API_ENTRY(CX2341X_DEC_HALT_FW, API_FAST_RESULT),
|
||||
API_ENTRY(CX2341X_DEC_SET_STANDARD, API_CACHE),
|
||||
@ -175,9 +176,9 @@ static int get_mailbox(struct ivtv *itv, struct ivtv_mailbox_data *mbdata, int f
|
||||
|
||||
/* Sleep before a retry, if not atomic */
|
||||
if (!(flags & API_NO_WAIT_MB)) {
|
||||
if (jiffies - then > retries * HZ / 100)
|
||||
if (jiffies - then > msecs_to_jiffies(10*retries))
|
||||
break;
|
||||
ivtv_sleep_timeout(HZ / 100, 0);
|
||||
ivtv_msleep_timeout(10, 0);
|
||||
}
|
||||
}
|
||||
return -ENODEV;
|
||||
@ -212,7 +213,7 @@ static int ivtv_api_call(struct ivtv *itv, int cmd, int args, u32 data[])
|
||||
{
|
||||
struct ivtv_mailbox_data *mbdata = (cmd >= 128) ? &itv->enc_mbox : &itv->dec_mbox;
|
||||
volatile struct ivtv_mailbox __iomem *mbox;
|
||||
int api_timeout = HZ;
|
||||
int api_timeout = msecs_to_jiffies(1000);
|
||||
int flags, mb, i;
|
||||
unsigned long then;
|
||||
|
||||
@ -227,7 +228,12 @@ static int ivtv_api_call(struct ivtv *itv, int cmd, int args, u32 data[])
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
IVTV_DEBUG_API("API Call: %s\n", api_info[cmd].name);
|
||||
if (api_info[cmd].flags & API_HIGH_VOL) {
|
||||
IVTV_DEBUG_HI_API("API Call: %s\n", api_info[cmd].name);
|
||||
}
|
||||
else {
|
||||
IVTV_DEBUG_API("API Call: %s\n", api_info[cmd].name);
|
||||
}
|
||||
|
||||
/* clear possibly uninitialized part of data array */
|
||||
for (i = args; i < CX2341X_MBOX_MAX_DATA; i++)
|
||||
@ -237,7 +243,7 @@ static int ivtv_api_call(struct ivtv *itv, int cmd, int args, u32 data[])
|
||||
data, then just return 0 as there is no need to issue this command again.
|
||||
Just an optimization to prevent unnecessary use of mailboxes. */
|
||||
if (itv->api_cache[cmd].last_jiffies &&
|
||||
jiffies - itv->api_cache[cmd].last_jiffies < HZ * 1800 &&
|
||||
jiffies - itv->api_cache[cmd].last_jiffies < msecs_to_jiffies(1800000) &&
|
||||
!memcmp(data, itv->api_cache[cmd].data, sizeof(itv->api_cache[cmd].data))) {
|
||||
itv->api_cache[cmd].last_jiffies = jiffies;
|
||||
return 0;
|
||||
@ -262,7 +268,7 @@ static int ivtv_api_call(struct ivtv *itv, int cmd, int args, u32 data[])
|
||||
}
|
||||
|
||||
if ((flags & API_FAST_RESULT) == API_FAST_RESULT)
|
||||
api_timeout = HZ / 10;
|
||||
api_timeout = msecs_to_jiffies(100);
|
||||
|
||||
mb = get_mailbox(itv, mbdata, flags);
|
||||
if (mb < 0) {
|
||||
@ -295,11 +301,12 @@ static int ivtv_api_call(struct ivtv *itv, int cmd, int args, u32 data[])
|
||||
if (flags & API_NO_WAIT_RES)
|
||||
mdelay(1);
|
||||
else
|
||||
ivtv_sleep_timeout(HZ / 100, 0);
|
||||
ivtv_msleep_timeout(10, 0);
|
||||
}
|
||||
if (jiffies - then > HZ / 10)
|
||||
IVTV_DEBUG_WARN("%s took %lu jiffies (%d per HZ)\n",
|
||||
api_info[cmd].name, jiffies - then, HZ);
|
||||
if (jiffies - then > msecs_to_jiffies(100))
|
||||
IVTV_DEBUG_WARN("%s took %u jiffies\n",
|
||||
api_info[cmd].name,
|
||||
jiffies_to_msecs(jiffies - then));
|
||||
|
||||
for (i = 0; i < CX2341X_MBOX_MAX_DATA; i++)
|
||||
data[i] = readl(&mbox->data[i]);
|
||||
|
@ -565,7 +565,7 @@ int ivtv_start_v4l2_encode_stream(struct ivtv_stream *s)
|
||||
/* Initialize Digitizer for Capture */
|
||||
ivtv_vapi(itv, CX2341X_ENC_INITIALIZE_INPUT, 0);
|
||||
|
||||
ivtv_sleep_timeout(HZ / 10, 0);
|
||||
ivtv_msleep_timeout(100, 0);
|
||||
}
|
||||
|
||||
/* begin_capture */
|
||||
@ -781,8 +781,9 @@ int ivtv_stop_v4l2_encode_stream(struct ivtv_stream *s, int gop_end)
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
|
||||
/* wait 2s for EOS interrupt */
|
||||
while (!test_bit(IVTV_F_I_EOS, &itv->i_flags) && jiffies < then + 2 * HZ) {
|
||||
schedule_timeout(HZ / 100);
|
||||
while (!test_bit(IVTV_F_I_EOS, &itv->i_flags) &&
|
||||
jiffies < then + msecs_to_jiffies (2000)) {
|
||||
schedule_timeout(msecs_to_jiffies(10));
|
||||
}
|
||||
|
||||
/* To convert jiffies to ms, we must multiply by 1000
|
||||
@ -821,7 +822,8 @@ int ivtv_stop_v4l2_encode_stream(struct ivtv_stream *s, int gop_end)
|
||||
} else if (read_reg(IVTV_REG_DMASTATUS) & 0x02) {
|
||||
break;
|
||||
}
|
||||
} while (!ivtv_sleep_timeout(HZ / 100, 1) && then + HZ * 2 > jiffies);
|
||||
} while (!ivtv_msleep_timeout(10, 1) &&
|
||||
then + msecs_to_jiffies(2000) > jiffies);
|
||||
|
||||
set_current_state(TASK_RUNNING);
|
||||
remove_wait_queue(&s->waitq, &wait);
|
||||
@ -892,7 +894,7 @@ int ivtv_stop_v4l2_decode_stream(struct ivtv_stream *s, int flags, u64 pts)
|
||||
break;
|
||||
tmp = data[3];
|
||||
}
|
||||
if (ivtv_sleep_timeout(HZ/10, 1))
|
||||
if (ivtv_msleep_timeout(100, 1))
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -86,9 +86,9 @@ static const int disp_modes[8][3] =
|
||||
|
||||
|
||||
|
||||
#define PAGE_WAIT (300*HZ/1000) /* Time between requesting page and */
|
||||
#define PAGE_WAIT msecs_to_jiffies(300) /* Time between requesting page and */
|
||||
/* checking status bits */
|
||||
#define PGBUF_EXPIRE (15*HZ) /* Time to wait before retransmitting */
|
||||
#define PGBUF_EXPIRE msecs_to_jiffies(15000) /* Time to wait before retransmitting */
|
||||
/* page regardless of infobits */
|
||||
typedef struct {
|
||||
u8 pgbuf[VTX_VIRTUALSIZE]; /* Page-buffer */
|
||||
@ -115,8 +115,8 @@ struct saa5249_device
|
||||
#define CCTWR 34 /* I²C write/read-address of vtx-chip */
|
||||
#define CCTRD 35
|
||||
#define NOACK_REPEAT 10 /* Retry access this many times on failure */
|
||||
#define CLEAR_DELAY (HZ/20) /* Time required to clear a page */
|
||||
#define READY_TIMEOUT (30*HZ/1000) /* Time to wait for ready signal of I²C-bus interface */
|
||||
#define CLEAR_DELAY msecs_to_jiffies(50) /* Time required to clear a page */
|
||||
#define READY_TIMEOUT msecs_to_jiffies(30) /* Time to wait for ready signal of I2C-bus interface */
|
||||
#define INIT_DELAY 500 /* Time in usec to wait at initialization of CEA interface */
|
||||
#define START_DELAY 10 /* Time in usec to wait before starting write-cycle (CEA) */
|
||||
|
||||
|
@ -208,7 +208,7 @@ determine_norm (struct i2c_client *client)
|
||||
saa7110_write_block(client, initseq, sizeof(initseq));
|
||||
saa7110_selmux(client, decoder->input);
|
||||
prepare_to_wait(&decoder->wq, &wait, TASK_UNINTERRUPTIBLE);
|
||||
schedule_timeout(HZ/4);
|
||||
schedule_timeout(msecs_to_jiffies(250));
|
||||
finish_wait(&decoder->wq, &wait);
|
||||
status = saa7110_read(client);
|
||||
if (status & 0x40) {
|
||||
@ -249,7 +249,7 @@ determine_norm (struct i2c_client *client)
|
||||
//saa7110_write(client,0x2E,0x9A);
|
||||
|
||||
prepare_to_wait(&decoder->wq, &wait, TASK_UNINTERRUPTIBLE);
|
||||
schedule_timeout(HZ/4);
|
||||
schedule_timeout(msecs_to_jiffies(250));
|
||||
finish_wait(&decoder->wq, &wait);
|
||||
|
||||
status = saa7110_read(client);
|
||||
|
@ -314,7 +314,7 @@ struct saa7134_board {
|
||||
#define INTERLACE_ON 1
|
||||
#define INTERLACE_OFF 2
|
||||
|
||||
#define BUFFER_TIMEOUT (HZ/2) /* 0.5 seconds */
|
||||
#define BUFFER_TIMEOUT msecs_to_jiffies(500) /* 0.5 seconds */
|
||||
|
||||
struct saa7134_dev;
|
||||
struct saa7134_dma;
|
||||
|
@ -290,7 +290,7 @@ static int chip_thread(void *data)
|
||||
desc->checkmode(chip);
|
||||
|
||||
/* schedule next check */
|
||||
mod_timer(&chip->wt, jiffies+2*HZ);
|
||||
mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
|
||||
}
|
||||
|
||||
v4l_dbg(1, debug, &chip->c, "%s: thread exiting\n", chip->c.name);
|
||||
@ -1770,7 +1770,7 @@ static int chip_command(struct i2c_client *client,
|
||||
desc->setmode(chip,VIDEO_SOUND_MONO);
|
||||
if (chip->prevmode != VIDEO_SOUND_MONO)
|
||||
chip->prevmode = -1; /* reset previous mode */
|
||||
mod_timer(&chip->wt, jiffies+2*HZ);
|
||||
mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
|
||||
/* the thread will call checkmode() later */
|
||||
}
|
||||
break;
|
||||
|
@ -939,16 +939,25 @@ int v4l2_ctrl_query_menu(struct v4l2_querymenu *qmenu, struct v4l2_queryctrl *qc
|
||||
When no more controls are available 0 is returned. */
|
||||
u32 v4l2_ctrl_next(const u32 * const * ctrl_classes, u32 id)
|
||||
{
|
||||
u32 ctrl_class;
|
||||
u32 ctrl_class = V4L2_CTRL_ID2CLASS(id);
|
||||
const u32 *pctrl;
|
||||
|
||||
/* if no query is desired, then just return the control ID */
|
||||
if ((id & V4L2_CTRL_FLAG_NEXT_CTRL) == 0)
|
||||
return id;
|
||||
if (ctrl_classes == NULL)
|
||||
return 0;
|
||||
|
||||
/* if no query is desired, then check if the ID is part of ctrl_classes */
|
||||
if ((id & V4L2_CTRL_FLAG_NEXT_CTRL) == 0) {
|
||||
/* find class */
|
||||
while (*ctrl_classes && V4L2_CTRL_ID2CLASS(**ctrl_classes) != ctrl_class)
|
||||
ctrl_classes++;
|
||||
if (*ctrl_classes == NULL)
|
||||
return 0;
|
||||
pctrl = *ctrl_classes;
|
||||
/* find control ID */
|
||||
while (*pctrl && *pctrl != id) pctrl++;
|
||||
return *pctrl ? id : 0;
|
||||
}
|
||||
id &= V4L2_CTRL_ID_MASK;
|
||||
ctrl_class = V4L2_CTRL_ID2CLASS(id);
|
||||
id++; /* select next control */
|
||||
/* find first class that matches (or is greater than) the class of
|
||||
the ID */
|
||||
|
@ -2080,7 +2080,7 @@ static int vino_wait_for_frame(struct vino_channel_settings *vcs)
|
||||
|
||||
/* to ensure that schedule_timeout will return immediately
|
||||
* if VINO interrupt was triggered meanwhile */
|
||||
schedule_timeout_interruptible(HZ / 10);
|
||||
schedule_timeout_interruptible(msecs_to_jiffies(100));
|
||||
|
||||
if (signal_pending(current))
|
||||
err = -EINTR;
|
||||
|
@ -321,12 +321,14 @@ static int wm8739_probe(struct i2c_adapter *adapter)
|
||||
|
||||
static int wm8739_detach(struct i2c_client *client)
|
||||
{
|
||||
struct wm8739_state *state = i2c_get_clientdata(client);
|
||||
int err;
|
||||
|
||||
err = i2c_detach_client(client);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
kfree(state);
|
||||
kfree(client);
|
||||
return 0;
|
||||
}
|
||||
|
@ -222,12 +222,14 @@ static int wm8775_probe(struct i2c_adapter *adapter)
|
||||
|
||||
static int wm8775_detach(struct i2c_client *client)
|
||||
{
|
||||
struct wm8775_state *state = i2c_get_clientdata(client);
|
||||
int err;
|
||||
|
||||
err = i2c_detach_client(client);
|
||||
if (err) {
|
||||
return err;
|
||||
}
|
||||
kfree(state);
|
||||
kfree(client);
|
||||
|
||||
return 0;
|
||||
|
@ -60,6 +60,7 @@
|
||||
#include <linux/compiler.h> /* need __user */
|
||||
#else
|
||||
#define __user
|
||||
#include <sys/time.h>
|
||||
#endif
|
||||
#include <linux/types.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user