⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 em28xx-core.c

📁 V4l driver for DVB HD
💻 C
📖 第 1 页 / 共 2 页
字号:
/*   em28xx-core.c - driver for Empia EM2800/EM2820/2840 USB video capture devices   Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>		      Markus Rechberger <mrechberger@gmail.com>		      Mauro Carvalho Chehab <mchehab@infradead.org>		      Sascha Sommer <saschasommer@freenet.de>   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., 675 Mass Ave, Cambridge, MA 02139, USA. */#include <linux/init.h>#include <linux/list.h>#include <linux/module.h>#include <linux/moduleparam.h>#include <linux/usb.h>#include <linux/vmalloc.h>#include "em28xx.h"/* #define ENABLE_DEBUG_ISOC_FRAMES */static unsigned int core_debug = 0;module_param(core_debug,int,0644);MODULE_PARM_DESC(core_debug,"enable debug messages [core]");#define em28xx_coredbg(fmt, arg...) do {\	if (core_debug) \		printk(KERN_INFO "%s %s :"fmt, \			 dev->name, __FUNCTION__ , ##arg); } while (0)static unsigned int reg_debug = 0;module_param(reg_debug,int,0644);MODULE_PARM_DESC(reg_debug,"enable debug messages [URB reg]");#define em28xx_regdbg(fmt, arg...) do {\	if (reg_debug) \		printk(KERN_INFO "%s %s :"fmt, \			 dev->name, __FUNCTION__ , ##arg); } while (0)static unsigned int isoc_debug = 0;module_param(isoc_debug,int,0644);MODULE_PARM_DESC(isoc_debug,"enable debug messages [isoc transfers]");#define em28xx_isocdbg(fmt, arg...) do {\	if (isoc_debug) \		printk(KERN_INFO "%s %s :"fmt, \			 dev->name, __FUNCTION__ , ##arg); } while (0)static int alt = EM28XX_PINOUT;module_param(alt, int, 0644);MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint");#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)static void *rvmalloc(size_t size){	void *mem;	unsigned long adr;	size = PAGE_ALIGN(size);	mem = vmalloc_32((unsigned long)size);	if (!mem)		return NULL;	adr = (unsigned long)mem;	while (size > 0) {		SetPageReserved(vmalloc_to_page((void *)adr));		adr += PAGE_SIZE;		size -= PAGE_SIZE;	}	return mem;}static void rvfree(void *mem, size_t size){	unsigned long adr;	if (!mem)		return;	size = PAGE_ALIGN(size);	adr = (unsigned long)mem;	while (size > 0) {		ClearPageReserved(vmalloc_to_page((void *)adr));		adr += PAGE_SIZE;		size -= PAGE_SIZE;	}	vfree(mem);}#endif/* * em28xx_request_buffers() * allocate a number of buffers */u32 em28xx_request_buffers(struct em28xx *dev, u32 count){	const size_t imagesize = PAGE_ALIGN(dev->frame_size);	/*needs to be page aligned cause the buffers can be mapped individually! */	void *buff = NULL;	u32 i;	em28xx_coredbg("requested %i buffers with size %zi", count, imagesize);	if (count > EM28XX_NUM_FRAMES)		count = EM28XX_NUM_FRAMES;	dev->num_frames = count;	while (dev->num_frames > 0) {#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)		if ((buff = rvmalloc(dev->num_frames * imagesize))) {#else		if ((buff = vmalloc_32(dev->num_frames * imagesize))) {#endif			memset(buff, 0, dev->num_frames * imagesize);			break;		}		dev->num_frames--;	}	for (i = 0; i < dev->num_frames; i++) {		dev->frame[i].bufmem = buff + i * imagesize;		dev->frame[i].buf.index = i;		dev->frame[i].buf.m.offset = i * imagesize;		dev->frame[i].buf.length = dev->frame_size;		dev->frame[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;		dev->frame[i].buf.sequence = 0;		dev->frame[i].buf.field = V4L2_FIELD_NONE;		dev->frame[i].buf.memory = V4L2_MEMORY_MMAP;		dev->frame[i].buf.flags = 0;	}	return dev->num_frames;}/* * em28xx_queue_unusedframes() * add all frames that are not currently in use to the inbuffer queue */void em28xx_queue_unusedframes(struct em28xx *dev){	unsigned long lock_flags;	u32 i;	for (i = 0; i < dev->num_frames; i++)		if (dev->frame[i].state == F_UNUSED) {			dev->frame[i].state = F_QUEUED;			spin_lock_irqsave(&dev->queue_lock, lock_flags);			list_add_tail(&dev->frame[i].frame, &dev->inqueue);			spin_unlock_irqrestore(&dev->queue_lock, lock_flags);		}}/* * em28xx_release_buffers() * free frame buffers */void em28xx_release_buffers(struct em28xx *dev){	if (dev->num_frames) {#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,15)		rvfree(dev->frame[0].bufmem,		       dev->num_frames * PAGE_ALIGN(dev->frame[0].buf.length));#else		vfree(dev->frame[0].bufmem);#endif		dev->num_frames = 0;	}}/* * em28xx_read_reg_req() * reads data from the usb device specifying bRequest */int em28xx_read_reg_req_len(struct em28xx *dev, u8 req, u16 reg,				   char *buf, int len){	int ret, byte;	if (dev->state & DEV_DISCONNECTED)		return(-ENODEV);	em28xx_regdbg("req=%02x, reg=%02x ", req, reg);	ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), req,			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,			      0x0000, reg, buf, len, HZ);	if (reg_debug){		printk(ret < 0 ? " failed!\n" : "%02x values: ", ret);		for (byte = 0; byte < len; byte++) {			printk(" %02x", buf[byte]);		}		printk("\n");	}	return ret;}/* * em28xx_read_reg_req() * reads data from the usb device specifying bRequest */int em28xx_read_reg_req(struct em28xx *dev, u8 req, u16 reg){	u8 val;	int ret;	if (dev->state & DEV_DISCONNECTED)		return(-ENODEV);	em28xx_regdbg("req=%02x, reg=%02x:", req, reg);	ret = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0), req,			      USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,			      0x0000, reg, &val, 1, HZ);	if (reg_debug)		printk(ret < 0 ? " failed!\n" : "%02x\n", val);	if (ret < 0)		return ret;	return val;}int em28xx_read_reg(struct em28xx *dev, u16 reg){	return em28xx_read_reg_req(dev, USB_REQ_GET_STATUS, reg);}/* * em28xx_write_regs_req() * sends data to the usb device, specifying bRequest */int em28xx_write_regs_req(struct em28xx *dev, u8 req, u16 reg, char *buf,				 int len){	int ret;	/*usb_control_msg seems to expect a kmalloced buffer */	unsigned char *bufs;	if (dev->state & DEV_DISCONNECTED)		return(-ENODEV);	bufs = kmalloc(len, GFP_KERNEL);	em28xx_regdbg("req=%02x reg=%02x:", req, reg);	if (reg_debug) {		int i;		for (i = 0; i < len; ++i)			printk (" %02x", (unsigned char)buf[i]);		printk ("\n");	}	if (!bufs)		return -ENOMEM;	memcpy(bufs, buf, len);	ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), req,			      USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,			      0x0000, reg, bufs, len, HZ);	msleep(5);		/* FIXME: magic number */	kfree(bufs);	return ret;}int em28xx_write_regs(struct em28xx *dev, u16 reg, char *buf, int len){	return em28xx_write_regs_req(dev, USB_REQ_GET_STATUS, reg, buf, len);}/* * em28xx_write_reg_bits() * sets only some bits (specified by bitmask) of a register, by first reading * the actual value */int em28xx_write_reg_bits(struct em28xx *dev, u16 reg, u8 val,				 u8 bitmask){	int oldval;	u8 newval;	if ((oldval = em28xx_read_reg(dev, reg)) < 0)		return oldval;	newval = (((u8) oldval) & ~bitmask) | (val & bitmask);	return em28xx_write_regs(dev, reg, &newval, 1);}/* * em28xx_write_ac97() * write a 16 bit value to the specified AC97 address (LSB first!) */int em28xx_write_ac97(struct em28xx *dev, u8 reg, u8 * val){	int ret;	u8 addr = reg & 0x7f;	if ((ret = em28xx_write_regs(dev, AC97LSB_REG, val, 2)) < 0)		return ret;	if ((ret = em28xx_write_regs(dev, AC97ADDR_REG, &addr, 1)) < 0)		return ret;	if ((ret = em28xx_read_reg(dev, AC97BUSY_REG)) < 0)		return ret;	else if (((u8) ret) & 0x01) {		em28xx_warn ("AC97 command still being executed: not handled properly!\n");	}	return 0;}int em28xx_audio_analog_set(struct em28xx *dev){	char s[2] = { 0x00, 0x00 };	s[0] |= 0x1f - dev->volume;	s[1] |= 0x1f - dev->volume;	if (dev->mute)		s[1] |= 0x80;	return em28xx_write_ac97(dev, MASTER_AC97, s);}#if 0int em28xx_audio_analog_mute(struct em28xx *dev, int mute){	/* (un)mute master mixer with maximum volume level */	return em28xx_write_ac97(dev, MASTER_AC97,				 mute ? "\x00\x80" : "\x00\x00");}#endifint em28xx_colorlevels_set_default(struct em28xx *dev){	em28xx_write_regs(dev, YGAIN_REG, "\x10", 1);	/* contrast */	em28xx_write_regs(dev, YOFFSET_REG, "\x00", 1);	/* brightness */	em28xx_write_regs(dev, UVGAIN_REG, "\x10", 1);	/* saturation */	em28xx_write_regs(dev, UOFFSET_REG, "\x00", 1);	em28xx_write_regs(dev, VOFFSET_REG, "\x00", 1);	em28xx_write_regs(dev, SHARPNESS_REG, "\x00", 1);	em28xx_write_regs(dev, GAMMA_REG, "\x20", 1);	em28xx_write_regs(dev, RGAIN_REG, "\x20", 1);	em28xx_write_regs(dev, GGAIN_REG, "\x20", 1);	em28xx_write_regs(dev, BGAIN_REG, "\x20", 1);	em28xx_write_regs(dev, ROFFSET_REG, "\x00", 1);	em28xx_write_regs(dev, GOFFSET_REG, "\x00", 1);	return em28xx_write_regs(dev, BOFFSET_REG, "\x00", 1);}int em28xx_capture_start(struct em28xx *dev, int start){	int ret;	/* FIXME: which is the best order? */	/* video registers are sampled by VREF */	if ((ret = em28xx_write_reg_bits(dev, USBSUSP_REG, start ? 0x10 : 0x00,					  0x10)) < 0)		return ret;	/* enable video capture */	return em28xx_write_regs(dev, VINENABLE_REG, start ? "\x67" : "\x27", 1);}int em28xx_outfmt_set_yuv422(struct em28xx *dev){	em28xx_write_regs(dev, OUTFMT_REG, "\x34", 1);	em28xx_write_regs(dev, VINMODE_REG, "\x10", 1);	return em28xx_write_regs(dev, VINCTRL_REG, "\x11", 1);}int em28xx_accumulator_set(struct em28xx *dev, u8 xmin, u8 xmax, u8 ymin,				  u8 ymax){	em28xx_coredbg("em28xx Scale: (%d,%d)-(%d,%d)\n", xmin, ymin, xmax, ymax);	em28xx_write_regs(dev, XMIN_REG, &xmin, 1);	em28xx_write_regs(dev, XMAX_REG, &xmax, 1);	em28xx_write_regs(dev, YMIN_REG, &ymin, 1);	return em28xx_write_regs(dev, YMAX_REG, &ymax, 1);}int em28xx_capture_area_set(struct em28xx *dev, u8 hstart, u8 vstart,				   u16 width, u16 height){	u8 cwidth = width;	u8 cheight = height;	u8 overflow = (height >> 7 & 0x02) | (width >> 8 & 0x01);	em28xx_coredbg("em28xx Area Set: (%d,%d)\n", (width | (overflow & 2) << 7),			(height | (overflow & 1) << 8));	em28xx_write_regs(dev, HSTART_REG, &hstart, 1);	em28xx_write_regs(dev, VSTART_REG, &vstart, 1);	em28xx_write_regs(dev, CWIDTH_REG, &cwidth, 1);	em28xx_write_regs(dev, CHEIGHT_REG, &cheight, 1);	return em28xx_write_regs(dev, OFLOW_REG, &overflow, 1);}int em28xx_scaler_set(struct em28xx *dev, u16 h, u16 v)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -