mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
media: cx88-mpeg: clear interrupt status register before streaming video
[ Upstream commit 56cb61f70e
]
Some cx88 video cards may have transport stream status interrupts set
to 1 from cold start, causing errors like this:
cx88xx: cx88_print_irqbits: core:irq mpeg [0x100000] ts_err?*
cx8802: cx8802_mpeg_irq: mpeg:general errors: 0x00100000
According to CX2388x datasheet, the interrupt status register should be
cleared before enabling IRQs to stream video.
Fix it by clearing the Transport Stream Interrupt Status register.
Signed-off-by: Daniel González Cabanelas <dgcbueu@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
e209e6db2e
commit
5a0d964168
1 changed files with 3 additions and 0 deletions
|
@ -162,6 +162,9 @@ int cx8802_start_dma(struct cx8802_dev *dev,
|
||||||
cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
|
cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
|
||||||
q->count = 0;
|
q->count = 0;
|
||||||
|
|
||||||
|
/* clear interrupt status register */
|
||||||
|
cx_write(MO_TS_INTSTAT, 0x1f1111);
|
||||||
|
|
||||||
/* enable irqs */
|
/* enable irqs */
|
||||||
dprintk(1, "setting the interrupt mask\n");
|
dprintk(1, "setting the interrupt mask\n");
|
||||||
cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
|
cx_set(MO_PCI_INTMSK, core->pci_irqmask | PCI_INT_TSINT);
|
||||||
|
|
Loading…
Reference in a new issue