📄 em28xx-core.c
字号:
/* 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@brturbo.com.br> 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;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;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;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");/* ------------------------------------------------------------------ *//* debug help functions */static const char *v4l1_ioctls[] = { "0", "CGAP", "GCHAN", "SCHAN", "GTUNER", "STUNER", "GPICT", "SPICT", "CCAPTURE", "GWIN", "SWIN", "GFBUF", "SFBUF", "KEY", "GFREQ", "SFREQ", "GAUDIO", "SAUDIO", "SYNC", "MCAPTURE", "GMBUF", "GUNIT", "GCAPTURE", "SCAPTURE", "SPLAYMODE", "SWRITEMODE", "GPLAYINFO", "SMICROCODE", "GVBIFMT", "SVBIFMT" };#define V4L1_IOCTLS ARRAY_SIZE(v4l1_ioctls)static const char *v4l2_ioctls[] = { "QUERYCAP", "1", "ENUM_PIXFMT", "ENUM_FBUFFMT", "G_FMT", "S_FMT", "G_COMP", "S_COMP", "REQBUFS", "QUERYBUF", "G_FBUF", "S_FBUF", "G_WIN", "S_WIN", "PREVIEW", "QBUF", "16", "DQBUF", "STREAMON", "STREAMOFF", "G_PERF", "G_PARM", "S_PARM", "G_STD", "S_STD", "ENUMSTD", "ENUMINPUT", "G_CTRL", "S_CTRL", "G_TUNER", "S_TUNER", "G_FREQ", "S_FREQ", "G_AUDIO", "S_AUDIO", "35", "QUERYCTRL", "QUERYMENU", "G_INPUT", "S_INPUT", "ENUMCVT", "41", "42", "43", "44", "45", "G_OUTPUT", "S_OUTPUT", "ENUMOUTPUT", "G_AUDOUT", "S_AUDOUT", "ENUMFX", "G_EFFECT", "S_EFFECT", "G_MODULATOR", "S_MODULATOR"};#define V4L2_IOCTLS ARRAY_SIZE(v4l2_ioctls)void em28xx_print_ioctl(char *name, unsigned int cmd){ char *dir; switch (_IOC_DIR(cmd)) { case _IOC_NONE: dir = "--"; break; case _IOC_READ: dir = "r-"; break; case _IOC_WRITE: dir = "-w"; break; case _IOC_READ | _IOC_WRITE: dir = "rw"; break; default: dir = "??"; break; } switch (_IOC_TYPE(cmd)) { case 'v': printk(KERN_DEBUG "%s: ioctl 0x%08x (v4l1, %s, VIDIOC%s)\n", name, cmd, dir, (_IOC_NR(cmd) < V4L1_IOCTLS) ? v4l1_ioctls[_IOC_NR(cmd)] : "???"); break; case 'V': printk(KERN_DEBUG "%s: ioctl 0x%08x (v4l2, %s, VIDIOC_%s)\n", name, cmd, dir, (_IOC_NR(cmd) < V4L2_IOCTLS) ? v4l2_ioctls[_IOC_NR(cmd)] : "???"); break; default: printk(KERN_DEBUG "%s: ioctl 0x%08x (???, %s, #%d)\n", name, cmd, dir, _IOC_NR(cmd)); }}/* * 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 %zd", count, imagesize); if (count > EM28XX_NUM_FRAMES) count = EM28XX_NUM_FRAMES; dev->num_frames = count; while (dev->num_frames > 0) { if ((buff = vmalloc_32(dev->num_frames * imagesize))) { 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) { vfree(dev->frame[0].bufmem); 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; 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; 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 = 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); mdelay(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 exectuted: 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);}int 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);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -