2008-04-28 20:24:33 -03:00
/*
* cx18 buffer queues
*
* Derived from ivtv - queue . c
*
* Copyright ( C ) 2007 Hans Verkuil < hverkuil @ xs4all . nl >
*
* 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
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA
* 02111 - 1307 USA
*/
# include "cx18-driver.h"
# include "cx18-streams.h"
# include "cx18-queue.h"
# include "cx18-scb.h"
void cx18_buf_swap ( struct cx18_buffer * buf )
{
int i ;
for ( i = 0 ; i < buf - > bytesused ; i + = 4 )
swab32s ( ( u32 * ) ( buf - > buf + i ) ) ;
}
void cx18_queue_init ( struct cx18_queue * q )
{
INIT_LIST_HEAD ( & q - > list ) ;
2008-08-22 21:03:11 -03:00
atomic_set ( & q - > buffers , 0 ) ;
2008-04-28 20:24:33 -03:00
q - > bytesused = 0 ;
}
void cx18_enqueue ( struct cx18_stream * s , struct cx18_buffer * buf ,
struct cx18_queue * q )
{
unsigned long flags = 0 ;
/* clear the buffer if it is going to be enqueued to the free queue */
if ( q = = & s - > q_free ) {
buf - > bytesused = 0 ;
buf - > readpos = 0 ;
buf - > b_flags = 0 ;
}
spin_lock_irqsave ( & s - > qlock , flags ) ;
list_add_tail ( & buf - > list , & q - > list ) ;
2008-08-22 21:03:11 -03:00
atomic_inc ( & q - > buffers ) ;
2008-04-28 20:24:33 -03:00
q - > bytesused + = buf - > bytesused - buf - > readpos ;
spin_unlock_irqrestore ( & s - > qlock , flags ) ;
}
struct cx18_buffer * cx18_dequeue ( struct cx18_stream * s , struct cx18_queue * q )
{
struct cx18_buffer * buf = NULL ;
unsigned long flags = 0 ;
spin_lock_irqsave ( & s - > qlock , flags ) ;
if ( ! list_empty ( & q - > list ) ) {
buf = list_entry ( q - > list . next , struct cx18_buffer , list ) ;
list_del_init ( q - > list . next ) ;
2008-08-22 21:03:11 -03:00
atomic_dec ( & q - > buffers ) ;
2008-04-28 20:24:33 -03:00
q - > bytesused - = buf - > bytesused - buf - > readpos ;
}
spin_unlock_irqrestore ( & s - > qlock , flags ) ;
return buf ;
}
2008-09-03 16:47:50 -03:00
struct cx18_buffer * cx18_queue_get_buf_irq ( struct cx18_stream * s , u32 id ,
2008-04-28 20:24:33 -03:00
u32 bytesused )
{
struct cx18 * cx = s - > cx ;
struct list_head * p ;
2008-09-03 16:47:50 -03:00
spin_lock ( & s - > qlock ) ;
2008-04-28 20:24:33 -03:00
list_for_each ( p , & s - > q_free . list ) {
struct cx18_buffer * buf =
list_entry ( p , struct cx18_buffer , list ) ;
if ( buf - > id ! = id )
continue ;
buf - > bytesused = bytesused ;
/* the transport buffers are handled differently,
2008-09-03 16:47:50 -03:00
they are not moved to the full queue */
if ( s - > type ! = CX18_ENC_STREAM_TYPE_TS ) {
2008-08-22 21:03:11 -03:00
atomic_dec ( & s - > q_free . buffers ) ;
atomic_inc ( & s - > q_full . buffers ) ;
2008-09-03 16:47:50 -03:00
s - > q_full . bytesused + = buf - > bytesused ;
list_move_tail ( & buf - > list , & s - > q_full . list ) ;
}
spin_unlock ( & s - > qlock ) ;
2008-04-28 20:24:33 -03:00
return buf ;
}
2008-09-03 16:47:50 -03:00
spin_unlock ( & s - > qlock ) ;
2008-04-28 20:24:33 -03:00
CX18_ERR ( " Cannot find buffer %d for stream %s \n " , id , s - > name ) ;
return NULL ;
}
2008-09-03 17:11:54 -03:00
/* Move all buffers of a queue to q_free, while flushing the buffers */
static void cx18_queue_flush ( struct cx18_stream * s , struct cx18_queue * q )
2008-04-28 20:24:33 -03:00
{
unsigned long flags ;
2008-09-03 17:11:54 -03:00
struct cx18_buffer * buf ;
2008-04-28 20:24:33 -03:00
2008-09-03 17:11:54 -03:00
if ( q = = & s - > q_free )
return ;
2008-04-28 20:24:33 -03:00
2008-09-03 17:11:54 -03:00
spin_lock_irqsave ( & s - > qlock , flags ) ;
while ( ! list_empty ( & q - > list ) ) {
buf = list_entry ( q - > list . next , struct cx18_buffer , list ) ;
list_move_tail ( q - > list . next , & s - > q_free . list ) ;
buf - > bytesused = buf - > readpos = buf - > b_flags = 0 ;
2008-08-22 21:03:11 -03:00
atomic_inc ( & s - > q_free . buffers ) ;
2008-04-28 20:24:33 -03:00
}
2008-09-03 17:11:54 -03:00
cx18_queue_init ( q ) ;
2008-04-28 20:24:33 -03:00
spin_unlock_irqrestore ( & s - > qlock , flags ) ;
}
void cx18_flush_queues ( struct cx18_stream * s )
{
2008-09-03 17:11:54 -03:00
cx18_queue_flush ( s , & s - > q_io ) ;
cx18_queue_flush ( s , & s - > q_full ) ;
2008-04-28 20:24:33 -03:00
}
int cx18_stream_alloc ( struct cx18_stream * s )
{
struct cx18 * cx = s - > cx ;
int i ;
if ( s - > buffers = = 0 )
return 0 ;
CX18_DEBUG_INFO ( " Allocate %s stream: %d x %d buffers (%dkB total) \n " ,
s - > name , s - > buffers , s - > buf_size ,
s - > buffers * s - > buf_size / 1024 ) ;
2008-09-03 17:11:54 -03:00
if ( ( ( char __iomem * ) & cx - > scb - > cpu_mdl [ cx - > mdl_offset + s - > buffers ] -
( char __iomem * ) cx - > scb ) > SCB_RESERVED_SIZE ) {
unsigned bufsz = ( ( ( char __iomem * ) cx - > scb ) + SCB_RESERVED_SIZE -
( ( char __iomem * ) cx - > scb - > cpu_mdl ) ) ;
2008-04-28 20:24:33 -03:00
CX18_ERR ( " Too many buffers, cannot fit in SCB area \n " ) ;
CX18_ERR ( " Max buffers = %zd \n " ,
bufsz / sizeof ( struct cx18_mdl ) ) ;
return - ENOMEM ;
}
s - > mdl_offset = cx - > mdl_offset ;
/* allocate stream buffers. Initially all buffers are in q_free. */
for ( i = 0 ; i < s - > buffers ; i + + ) {
2008-05-01 10:31:12 -03:00
struct cx18_buffer * buf = kzalloc ( sizeof ( struct cx18_buffer ) ,
GFP_KERNEL | __GFP_NOWARN ) ;
2008-04-28 20:24:33 -03:00
if ( buf = = NULL )
break ;
2008-05-01 10:31:12 -03:00
buf - > buf = kmalloc ( s - > buf_size , GFP_KERNEL | __GFP_NOWARN ) ;
2008-04-28 20:24:33 -03:00
if ( buf - > buf = = NULL ) {
kfree ( buf ) ;
break ;
}
buf - > id = cx - > buffer_id + + ;
INIT_LIST_HEAD ( & buf - > list ) ;
2008-08-30 16:03:44 -03:00
/* FIXME - check for mmio */
2008-04-28 20:24:33 -03:00
buf - > dma_handle = pci_map_single ( s - > cx - > dev ,
buf - > buf , s - > buf_size , s - > dma ) ;
cx18_buf_sync_for_cpu ( s , buf ) ;
cx18_enqueue ( s , buf , & s - > q_free ) ;
}
if ( i = = s - > buffers ) {
cx - > mdl_offset + = s - > buffers ;
return 0 ;
}
CX18_ERR ( " Couldn't allocate buffers for %s stream \n " , s - > name ) ;
cx18_stream_free ( s ) ;
return - ENOMEM ;
}
void cx18_stream_free ( struct cx18_stream * s )
{
struct cx18_buffer * buf ;
/* move all buffers to q_free */
cx18_flush_queues ( s ) ;
/* empty q_free */
while ( ( buf = cx18_dequeue ( s , & s - > q_free ) ) ) {
2008-08-30 16:03:44 -03:00
/* FIXME - check for mmio */
2008-04-28 20:24:33 -03:00
pci_unmap_single ( s - > cx - > dev , buf - > dma_handle ,
s - > buf_size , s - > dma ) ;
kfree ( buf - > buf ) ;
kfree ( buf ) ;
}
}