meye.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:42k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * Motion Eye video4linux driver for Sony Vaio PictureBook
  3.  *
  4.  * Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alc魐e
  5.  *
  6.  * Copyright (C) 2000 Andrew Tridgell <tridge@valinux.com>
  7.  *
  8.  * Earlier work by Werner Almesberger, Paul `Rusty' Russell and Paul Mackerras.
  9.  *
  10.  * Some parts borrowed from various video4linux drivers, especially
  11.  * bttv-driver.c and zoran.c, see original files for credits.
  12.  * 
  13.  * This program is free software; you can redistribute it and/or modify
  14.  * it under the terms of the GNU General Public License as published by
  15.  * the Free Software Foundation; either version 2 of the License, or
  16.  * (at your option) any later version.
  17.  * 
  18.  * This program is distributed in the hope that it will be useful,
  19.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  * GNU General Public License for more details.
  22.  * 
  23.  * You should have received a copy of the GNU General Public License
  24.  * along with this program; if not, write to the Free Software
  25.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26.  */
  27. #include <linux/config.h>
  28. #include <linux/module.h>
  29. #include <linux/pci.h>
  30. #include <linux/sched.h>
  31. #include <linux/init.h>
  32. #include <linux/videodev.h>
  33. #include <asm/uaccess.h>
  34. #include <asm/io.h>
  35. #include <linux/delay.h>
  36. #include <linux/wrapper.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/vmalloc.h>
  39. #include "meye.h"
  40. #include "linux/meye.h"
  41. /* driver structure - only one possible */
  42. static struct meye meye;
  43. /* number of grab buffers */
  44. static unsigned int gbuffers = 2;
  45. /* size of a grab buffer */
  46. static unsigned int gbufsize = MEYE_MAX_BUFSIZE;
  47. /* /dev/videoX registration number */
  48. static int video_nr = -1;
  49. /****************************************************************************/
  50. /* Queue routines                                                           */
  51. /****************************************************************************/
  52. /* Inits the queue */
  53. static inline void meye_initq(struct meye_queue *queue) {
  54. queue->head = queue->tail = 0;
  55. queue->len = 0;
  56. queue->s_lock = (spinlock_t)SPIN_LOCK_UNLOCKED;
  57. init_waitqueue_head(&queue->proc_list);
  58. }
  59. /* Pulls an element from the queue */
  60. static inline int meye_pullq(struct meye_queue *queue) {
  61. int result;
  62. unsigned long flags;
  63. spin_lock_irqsave(&queue->s_lock, flags);
  64. if (!queue->len) {
  65. spin_unlock_irqrestore(&queue->s_lock, flags);
  66. return -1;
  67. }
  68. result = queue->buf[queue->head];
  69. queue->head++;
  70. queue->head &= (MEYE_QUEUE_SIZE - 1);
  71. queue->len--;
  72. spin_unlock_irqrestore(&queue->s_lock, flags);
  73. return result;
  74. }
  75. /* Pushes an element into the queue */
  76. static inline void meye_pushq(struct meye_queue *queue, int element) {
  77. unsigned long flags;
  78. spin_lock_irqsave(&queue->s_lock, flags);
  79. if (queue->len == MEYE_QUEUE_SIZE) {
  80. /* remove the first element */
  81. queue->head++;
  82. queue->head &= (MEYE_QUEUE_SIZE - 1);
  83. queue->len--;
  84. }
  85. queue->buf[queue->tail] = element;
  86. queue->tail++;
  87. queue->tail &= (MEYE_QUEUE_SIZE - 1);
  88. queue->len++;
  89. spin_unlock_irqrestore(&queue->s_lock, flags);
  90. }
  91. /* Tests if the queue is empty */
  92. static inline int meye_emptyq(struct meye_queue *queue, int *elem) {
  93. int result;
  94. unsigned long flags;
  95. spin_lock_irqsave(&queue->s_lock, flags);
  96. result = (queue->len == 0);
  97. if (!result && elem)
  98. *elem = queue->buf[queue->head];
  99. spin_unlock_irqrestore(&queue->s_lock, flags);
  100. return result;
  101. }
  102. /****************************************************************************/
  103. /* Memory allocation routines (stolen from bttv-driver.c)                   */
  104. /****************************************************************************/
  105. #define MDEBUG(x) do {} while (0)
  106. /* #define MDEBUG(x) x */
  107. /* Given PGD from the address space's page table, return the kernel
  108.  * virtual mapping of the physical memory mapped at ADR.
  109.  */
  110. static inline unsigned long uvirt_to_kva(pgd_t *pgd, unsigned long adr) {
  111.         unsigned long ret = 0UL;
  112. pmd_t *pmd;
  113. pte_t *ptep, pte;
  114.   
  115. if (!pgd_none(*pgd)) {
  116.                 pmd = pmd_offset(pgd, adr);
  117.                 if (!pmd_none(*pmd)) {
  118.                         ptep = pte_offset(pmd, adr);
  119.                         pte = *ptep;
  120.                         if(pte_present(pte)) {
  121. ret = (unsigned long)page_address(pte_page(pte));
  122. ret |= (adr & (PAGE_SIZE - 1));
  123. }
  124.                 }
  125.         }
  126.         MDEBUG(printk("uv2kva(%lx-->%lx)n", adr, ret));
  127. return ret;
  128. }
  129. static inline unsigned long uvirt_to_bus(unsigned long adr) {
  130.         unsigned long kva, ret;
  131.         kva = uvirt_to_kva(pgd_offset(current->mm, adr), adr);
  132. ret = virt_to_bus((void *)kva);
  133.         MDEBUG(printk("uv2b(%lx-->%lx)n", adr, ret));
  134.         return ret;
  135. }
  136. static inline unsigned long kvirt_to_bus(unsigned long adr) {
  137.         unsigned long va, kva, ret;
  138.         va = VMALLOC_VMADDR(adr);
  139.         kva = uvirt_to_kva(pgd_offset_k(va), va);
  140. ret = virt_to_bus((void *)kva);
  141.         MDEBUG(printk("kv2b(%lx-->%lx)n", adr, ret));
  142.         return ret;
  143. }
  144. /* Here we want the physical address of the memory.
  145.  * This is used when initializing the contents of the
  146.  * area and marking the pages as reserved.
  147.  */
  148. static inline unsigned long kvirt_to_pa(unsigned long adr) {
  149.         unsigned long va, kva, ret;
  150.         va = VMALLOC_VMADDR(adr);
  151.         kva = uvirt_to_kva(pgd_offset_k(va), va);
  152. ret = __pa(kva);
  153.         MDEBUG(printk("kv2pa(%lx-->%lx)n", adr, ret));
  154.         return ret;
  155. }
  156. static void *rvmalloc(signed long size) {
  157. void *mem;
  158. unsigned long adr, page;
  159. mem = vmalloc_32(size);
  160. if (mem) {
  161. memset(mem, 0, size); /* Clear the ram out, no junk to the user */
  162.         adr = (unsigned long)mem;
  163. while (size > 0) {
  164.                 page = kvirt_to_pa(adr);
  165. mem_map_reserve(virt_to_page(__va(page)));
  166. adr += PAGE_SIZE;
  167. size -= PAGE_SIZE;
  168. }
  169. }
  170. return mem;
  171. }
  172. static void rvfree(void * mem, signed long size) {
  173.         unsigned long adr, page;
  174.         
  175. if (mem) {
  176.         adr = (unsigned long) mem;
  177. while (size > 0) {
  178.                 page = kvirt_to_pa(adr);
  179. mem_map_unreserve(virt_to_page(__va(page)));
  180. adr += PAGE_SIZE;
  181. size -= PAGE_SIZE;
  182. }
  183. vfree(mem);
  184. }
  185. }
  186. /* return a page table pointing to N pages of locked memory */
  187. static void *ptable_alloc(int npages, u32 *pt_addr) {
  188. int i;
  189. void *vmem;
  190. u32 *ptable;
  191. unsigned long adr;
  192. vmem = rvmalloc((npages + 1) * PAGE_SIZE);
  193. if (!vmem)
  194. return NULL;
  195.         adr = (unsigned long)vmem;
  196. ptable = (u32 *)(vmem + npages * PAGE_SIZE);
  197. for (i = 0; i < npages; i++) {
  198. ptable[i] = (u32) kvirt_to_bus(adr);
  199. adr += PAGE_SIZE;
  200. }
  201. *pt_addr = (u32) kvirt_to_bus(adr);
  202. return vmem;
  203. }
  204. static void ptable_free(void *vmem, int npages) {
  205. rvfree(vmem, (npages + 1) * PAGE_SIZE);
  206. }
  207. /****************************************************************************/
  208. /* JPEG tables at different qualities to load into the VRJ chip             */
  209. /****************************************************************************/
  210. /* return a set of quantisation tables based on a quality from 1 to 10 */
  211. static u16 *jpeg_quantisation_tables(int *size, int quality) {
  212. static u16 tables0[] = {
  213. 0xdbff, 0x4300, 0xff00, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  214. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  215. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  216. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  217. 0xffff, 0xffff, 0xffff, 
  218. 0xdbff, 0x4300, 0xff01, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  219. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  220. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  221. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  222. 0xffff, 0xffff, 0xffff, 
  223. };
  224. static u16 tables1[] = {
  225. 0xdbff, 0x4300, 0x5000, 0x3c37, 0x3c46, 0x5032, 0x4146, 0x5a46, 
  226. 0x5055, 0x785f, 0x82c8, 0x6e78, 0x786e, 0xaff5, 0x91b9, 0xffc8, 
  227. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  228. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  229. 0xffff, 0xffff, 0xffff, 
  230. 0xdbff, 0x4300, 0x5501, 0x5a5a, 0x6978, 0xeb78, 0x8282, 0xffeb, 
  231. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  232. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  233. 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 
  234. 0xffff, 0xffff, 0xffff, 
  235. };
  236. static u16 tables2[] = {
  237. 0xdbff, 0x4300, 0x2800, 0x1e1c, 0x1e23, 0x2819, 0x2123, 0x2d23, 
  238. 0x282b, 0x3c30, 0x4164, 0x373c, 0x3c37, 0x587b, 0x495d, 0x9164, 
  239. 0x9980, 0x8f96, 0x8c80, 0xa08a, 0xe6b4, 0xa0c3, 0xdaaa, 0x8aad, 
  240. 0xc88c, 0xcbff, 0xeeda, 0xfff5, 0xffff, 0xc19b, 0xffff, 0xfaff, 
  241. 0xe6ff, 0xfffd, 0xfff8, 
  242. 0xdbff, 0x4300, 0x2b01, 0x2d2d, 0x353c, 0x763c, 0x4141, 0xf876, 
  243. 0x8ca5, 0xf8a5, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 
  244. 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 
  245. 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 0xf8f8, 
  246. 0xf8f8, 0xf8f8, 0xfff8, 
  247. };
  248. static u16 tables3[] = {
  249. 0xdbff, 0x4300, 0x1b00, 0x1412, 0x1417, 0x1b11, 0x1617, 0x1e17, 
  250. 0x1b1c, 0x2820, 0x2b42, 0x2528, 0x2825, 0x3a51, 0x303d, 0x6042, 
  251. 0x6555, 0x5f64, 0x5d55, 0x6a5b, 0x9978, 0x6a81, 0x9071, 0x5b73, 
  252. 0x855d, 0x86b5, 0x9e90, 0xaba3, 0xabad, 0x8067, 0xc9bc, 0xa6ba, 
  253. 0x99c7, 0xaba8, 0xffa4, 
  254. 0xdbff, 0x4300, 0x1c01, 0x1e1e, 0x2328, 0x4e28, 0x2b2b, 0xa44e, 
  255. 0x5d6e, 0xa46e, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 
  256. 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 
  257. 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 0xa4a4, 
  258. 0xa4a4, 0xa4a4, 0xffa4, 
  259. };
  260. static u16 tables4[] = {
  261. 0xdbff, 0x4300, 0x1400, 0x0f0e, 0x0f12, 0x140d, 0x1012, 0x1712, 
  262. 0x1415, 0x1e18, 0x2132, 0x1c1e, 0x1e1c, 0x2c3d, 0x242e, 0x4932, 
  263. 0x4c40, 0x474b, 0x4640, 0x5045, 0x735a, 0x5062, 0x6d55, 0x4556, 
  264. 0x6446, 0x6588, 0x776d, 0x817b, 0x8182, 0x604e, 0x978d, 0x7d8c, 
  265. 0x7396, 0x817e, 0xff7c, 
  266. 0xdbff, 0x4300, 0x1501, 0x1717, 0x1a1e, 0x3b1e, 0x2121, 0x7c3b, 
  267. 0x4653, 0x7c53, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 
  268. 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 
  269. 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 0x7c7c, 
  270. 0x7c7c, 0x7c7c, 0xff7c, 
  271. };
  272. static u16 tables5[] = {
  273. 0xdbff, 0x4300, 0x1000, 0x0c0b, 0x0c0e, 0x100a, 0x0d0e, 0x120e, 
  274. 0x1011, 0x1813, 0x1a28, 0x1618, 0x1816, 0x2331, 0x1d25, 0x3a28, 
  275. 0x3d33, 0x393c, 0x3833, 0x4037, 0x5c48, 0x404e, 0x5744, 0x3745, 
  276. 0x5038, 0x516d, 0x5f57, 0x6762, 0x6768, 0x4d3e, 0x7971, 0x6470, 
  277. 0x5c78, 0x6765, 0xff63, 
  278. 0xdbff, 0x4300, 0x1101, 0x1212, 0x1518, 0x2f18, 0x1a1a, 0x632f, 
  279. 0x3842, 0x6342, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 
  280. 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 
  281. 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 0x6363, 
  282. 0x6363, 0x6363, 0xff63, 
  283. };
  284. static u16 tables6[] = {
  285. 0xdbff, 0x4300, 0x0d00, 0x0a09, 0x0a0b, 0x0d08, 0x0a0b, 0x0e0b, 
  286. 0x0d0e, 0x130f, 0x1520, 0x1213, 0x1312, 0x1c27, 0x171e, 0x2e20, 
  287. 0x3129, 0x2e30, 0x2d29, 0x332c, 0x4a3a, 0x333e, 0x4636, 0x2c37, 
  288. 0x402d, 0x4157, 0x4c46, 0x524e, 0x5253, 0x3e32, 0x615a, 0x505a, 
  289. 0x4a60, 0x5251, 0xff4f, 
  290. 0xdbff, 0x4300, 0x0e01, 0x0e0e, 0x1113, 0x2613, 0x1515, 0x4f26, 
  291. 0x2d35, 0x4f35, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 
  292. 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 
  293. 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 0x4f4f, 
  294. 0x4f4f, 0x4f4f, 0xff4f, 
  295. };
  296. static u16 tables7[] = {
  297. 0xdbff, 0x4300, 0x0a00, 0x0707, 0x0708, 0x0a06, 0x0808, 0x0b08, 
  298. 0x0a0a, 0x0e0b, 0x1018, 0x0d0e, 0x0e0d, 0x151d, 0x1116, 0x2318, 
  299. 0x251f, 0x2224, 0x221f, 0x2621, 0x372b, 0x262f, 0x3429, 0x2129, 
  300. 0x3022, 0x3141, 0x3934, 0x3e3b, 0x3e3e, 0x2e25, 0x4944, 0x3c43, 
  301. 0x3748, 0x3e3d, 0xff3b, 
  302. 0xdbff, 0x4300, 0x0a01, 0x0b0b, 0x0d0e, 0x1c0e, 0x1010, 0x3b1c, 
  303. 0x2228, 0x3b28, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 
  304. 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 
  305. 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 0x3b3b, 
  306. 0x3b3b, 0x3b3b, 0xff3b, 
  307. };
  308. static u16 tables8[] = {
  309. 0xdbff, 0x4300, 0x0600, 0x0504, 0x0506, 0x0604, 0x0506, 0x0706, 
  310. 0x0607, 0x0a08, 0x0a10, 0x090a, 0x0a09, 0x0e14, 0x0c0f, 0x1710, 
  311. 0x1814, 0x1718, 0x1614, 0x1a16, 0x251d, 0x1a1f, 0x231b, 0x161c, 
  312. 0x2016, 0x202c, 0x2623, 0x2927, 0x292a, 0x1f19, 0x302d, 0x282d, 
  313. 0x2530, 0x2928, 0xff28, 
  314. 0xdbff, 0x4300, 0x0701, 0x0707, 0x080a, 0x130a, 0x0a0a, 0x2813, 
  315. 0x161a, 0x281a, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 
  316. 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 
  317. 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 0x2828, 
  318. 0x2828, 0x2828, 0xff28, 
  319. };
  320. static u16 tables9[] = {
  321. 0xdbff, 0x4300, 0x0300, 0x0202, 0x0203, 0x0302, 0x0303, 0x0403, 
  322. 0x0303, 0x0504, 0x0508, 0x0405, 0x0504, 0x070a, 0x0607, 0x0c08, 
  323. 0x0c0a, 0x0b0c, 0x0b0a, 0x0d0b, 0x120e, 0x0d10, 0x110e, 0x0b0e, 
  324. 0x100b, 0x1016, 0x1311, 0x1514, 0x1515, 0x0f0c, 0x1817, 0x1416, 
  325. 0x1218, 0x1514, 0xff14, 
  326. 0xdbff, 0x4300, 0x0301, 0x0404, 0x0405, 0x0905, 0x0505, 0x1409, 
  327. 0x0b0d, 0x140d, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 
  328. 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 
  329. 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 0x1414, 
  330. 0x1414, 0x1414, 0xff14, 
  331. };
  332. static u16 tables10[] = {
  333. 0xdbff, 0x4300, 0x0100, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  334. 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  335. 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  336. 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  337. 0x0101, 0x0101, 0xff01, 
  338. 0xdbff, 0x4300, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  339. 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  340. 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  341. 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 0x0101, 
  342. 0x0101, 0x0101, 0xff01, 
  343. };
  344. switch (quality) {
  345. case 0:
  346. *size = sizeof(tables0);
  347. return tables0;
  348. case 1:
  349. *size = sizeof(tables1);
  350. return tables1;
  351. case 2:
  352. *size = sizeof(tables2);
  353. return tables2;
  354. case 3:
  355. *size = sizeof(tables3);
  356. return tables3;
  357. case 4:
  358. *size = sizeof(tables4);
  359. return tables4;
  360. case 5:
  361. *size = sizeof(tables5);
  362. return tables5;
  363. case 6:
  364. *size = sizeof(tables6);
  365. return tables6;
  366. case 7:
  367. *size = sizeof(tables7);
  368. return tables7;
  369. case 8:
  370. *size = sizeof(tables8);
  371. return tables8;
  372. case 9:
  373. *size = sizeof(tables9);
  374. return tables9;
  375. case 10:
  376. *size = sizeof(tables10);
  377. return tables10;
  378. default:
  379. printk(KERN_WARNING "meye: invalid quality level %d - using 8n", quality);
  380. *size = sizeof(tables8);
  381. return tables8;
  382. }
  383. return NULL;
  384. }
  385. /* return a generic set of huffman tables */
  386. static u16 *jpeg_huffman_tables(int *size) {
  387. static u16 tables[] = {
  388. 0xC4FF, 0xB500, 0x0010, 0x0102, 0x0303, 0x0402, 0x0503, 0x0405, 
  389. 0x0004, 0x0100, 0x017D, 0x0302, 0x0400, 0x0511, 0x2112, 0x4131, 
  390. 0x1306, 0x6151, 0x2207, 0x1471, 0x8132, 0xA191, 0x2308, 0xB142, 
  391. 0x15C1, 0xD152, 0x24F0, 0x6233, 0x8272, 0x0A09, 0x1716, 0x1918, 
  392. 0x251A, 0x2726, 0x2928, 0x342A, 0x3635, 0x3837, 0x3A39, 0x4443, 
  393. 0x4645, 0x4847, 0x4A49, 0x5453, 0x5655, 0x5857, 0x5A59, 0x6463, 
  394. 0x6665, 0x6867, 0x6A69, 0x7473, 0x7675, 0x7877, 0x7A79, 0x8483, 
  395. 0x8685, 0x8887, 0x8A89, 0x9392, 0x9594, 0x9796, 0x9998, 0xA29A, 
  396. 0xA4A3, 0xA6A5, 0xA8A7, 0xAAA9, 0xB3B2, 0xB5B4, 0xB7B6, 0xB9B8, 
  397. 0xC2BA, 0xC4C3, 0xC6C5, 0xC8C7, 0xCAC9, 0xD3D2, 0xD5D4, 0xD7D6, 
  398. 0xD9D8, 0xE1DA, 0xE3E2, 0xE5E4, 0xE7E6, 0xE9E8, 0xF1EA, 0xF3F2, 
  399. 0xF5F4, 0xF7F6, 0xF9F8, 0xFFFA, 
  400. 0xC4FF, 0xB500, 0x0011, 0x0102, 0x0402, 0x0304, 0x0704, 0x0405, 
  401. 0x0004, 0x0201, 0x0077, 0x0201, 0x1103, 0x0504, 0x3121, 0x1206, 
  402. 0x5141, 0x6107, 0x1371, 0x3222, 0x0881, 0x4214, 0xA191, 0xC1B1, 
  403. 0x2309, 0x5233, 0x15F0, 0x7262, 0x0AD1, 0x2416, 0xE134, 0xF125, 
  404. 0x1817, 0x1A19, 0x2726, 0x2928, 0x352A, 0x3736, 0x3938, 0x433A, 
  405. 0x4544, 0x4746, 0x4948, 0x534A, 0x5554, 0x5756, 0x5958, 0x635A, 
  406. 0x6564, 0x6766, 0x6968, 0x736A, 0x7574, 0x7776, 0x7978, 0x827A, 
  407. 0x8483, 0x8685, 0x8887, 0x8A89, 0x9392, 0x9594, 0x9796, 0x9998, 
  408. 0xA29A, 0xA4A3, 0xA6A5, 0xA8A7, 0xAAA9, 0xB3B2, 0xB5B4, 0xB7B6, 
  409. 0xB9B8, 0xC2BA, 0xC4C3, 0xC6C5, 0xC8C7, 0xCAC9, 0xD3D2, 0xD5D4, 
  410. 0xD7D6, 0xD9D8, 0xE2DA, 0xE4E3, 0xE6E5, 0xE8E7, 0xEAE9, 0xF3F2, 
  411. 0xF5F4, 0xF7F6, 0xF9F8, 0xFFFA, 
  412. 0xC4FF, 0x1F00, 0x0000, 0x0501, 0x0101, 0x0101, 0x0101, 0x0000, 
  413. 0x0000, 0x0000, 0x0000, 0x0201, 0x0403, 0x0605, 0x0807, 0x0A09, 
  414. 0xFF0B, 
  415. 0xC4FF, 0x1F00, 0x0001, 0x0103, 0x0101, 0x0101, 0x0101, 0x0101, 
  416. 0x0000, 0x0000, 0x0000, 0x0201, 0x0403, 0x0605, 0x0807, 0x0A09, 
  417. 0xFF0B
  418. };
  419. *size = sizeof(tables);
  420. return tables;
  421. }
  422. /****************************************************************************/
  423. /* MCHIP low-level functions                                                */
  424. /****************************************************************************/
  425. /* waits for the specified miliseconds */
  426. static inline void wait_ms(unsigned int ms) {
  427. if (!in_interrupt()) {
  428. set_current_state(TASK_UNINTERRUPTIBLE);
  429. schedule_timeout(1 + ms * HZ / 1000);
  430. }
  431. else
  432. mdelay(ms);
  433. }
  434. /* returns the horizontal capture size */
  435. static inline int mchip_hsize(void) {
  436. return meye.params.subsample ? 320 : 640;
  437. }
  438. /* returns the vertical capture size */
  439. static inline int mchip_vsize(void) {
  440. return meye.params.subsample ? 240 : 480;
  441. }
  442. /* waits for a register to be available */
  443. static void mchip_sync(int reg) {
  444. u32 status;
  445. int i;
  446. if (reg == MCHIP_MM_FIFO_DATA) {
  447. for (i = 0; i < MCHIP_REG_TIMEOUT; i++) {
  448. status = readl(meye.mchip_mmregs + MCHIP_MM_FIFO_STATUS);
  449. if (!(status & MCHIP_MM_FIFO_WAIT)) {
  450. printk(KERN_WARNING "meye: fifo not readyn");
  451. return;
  452. }
  453. if (status & MCHIP_MM_FIFO_READY)
  454. return;
  455. udelay(1);
  456. }
  457. }
  458. else if (reg > 0x80) {
  459. u32 mask = (reg < 0x100) ? MCHIP_HIC_STATUS_MCC_RDY
  460.                  : MCHIP_HIC_STATUS_VRJ_RDY;
  461. for (i = 0; i < MCHIP_REG_TIMEOUT; i++) {
  462. status = readl(meye.mchip_mmregs + MCHIP_HIC_STATUS);
  463. if (status & mask)
  464. return;
  465. udelay(1);
  466. }
  467. }
  468. else
  469. return;
  470. printk(KERN_WARNING "meye: mchip_sync() timeout on reg 0x%x status=0x%xn", reg, status);
  471. }
  472. /* sets a value into the register */
  473. static inline void mchip_set(int reg, u32 v) {
  474. mchip_sync(reg);
  475. writel(v, meye.mchip_mmregs + reg);
  476. }
  477. /* get the register value */
  478. static inline u32 mchip_read(int reg) {
  479. mchip_sync(reg);
  480. return readl(meye.mchip_mmregs + reg);
  481. }
  482. /* wait for a register to become a particular value */
  483. static inline int mchip_delay(u32 reg, u32 v) {
  484. int n = 10;
  485. while (--n && mchip_read(reg) != v) 
  486. udelay(1);
  487. return n;
  488. }
  489. /* setup subsampling */
  490. static void mchip_subsample(void) {
  491. mchip_set(MCHIP_MCC_R_SAMPLING, meye.params.subsample);
  492. mchip_set(MCHIP_MCC_R_XRANGE, mchip_hsize());
  493. mchip_set(MCHIP_MCC_R_YRANGE, mchip_vsize());
  494. mchip_set(MCHIP_MCC_B_XRANGE, mchip_hsize());
  495. mchip_set(MCHIP_MCC_B_YRANGE, mchip_vsize());
  496. mchip_delay(MCHIP_HIC_STATUS, MCHIP_HIC_STATUS_IDLE);
  497. }
  498. /* set the framerate into the mchip */
  499. static void mchip_set_framerate(void) {
  500. mchip_set(MCHIP_HIC_S_RATE, meye.params.framerate);
  501. }
  502. /* load some huffman and quantisation tables into the VRJ chip ready
  503.    for JPEG compression */
  504. static void mchip_load_tables(void) {
  505. int i;
  506. int size;
  507. u16 *tables;
  508. tables = jpeg_huffman_tables(&size);
  509. for (i = 0; i < size / 2; i++)
  510. writel(tables[i], meye.mchip_mmregs + MCHIP_VRJ_TABLE_DATA);
  511. tables = jpeg_quantisation_tables(&size, meye.params.quality);
  512. for (i = 0; i < size / 2; i++)
  513. writel(tables[i], meye.mchip_mmregs + MCHIP_VRJ_TABLE_DATA);
  514. }
  515. /* setup the VRJ parameters in the chip */
  516. static void mchip_vrj_setup(u8 mode) {
  517. mchip_set(MCHIP_VRJ_BUS_MODE, 5);
  518. mchip_set(MCHIP_VRJ_SIGNAL_ACTIVE_LEVEL, 0x1f);
  519. mchip_set(MCHIP_VRJ_PDAT_USE, 1);
  520. mchip_set(MCHIP_VRJ_IRQ_FLAG, 0xa0);
  521. mchip_set(MCHIP_VRJ_MODE_SPECIFY, mode);
  522. mchip_set(MCHIP_VRJ_NUM_LINES, mchip_vsize());
  523. mchip_set(MCHIP_VRJ_NUM_PIXELS, mchip_hsize());
  524. mchip_set(MCHIP_VRJ_NUM_COMPONENTS, 0x1b);
  525. mchip_set(MCHIP_VRJ_LIMIT_COMPRESSED_LO, 0xFFFF);
  526. mchip_set(MCHIP_VRJ_LIMIT_COMPRESSED_HI, 0xFFFF);
  527. mchip_set(MCHIP_VRJ_COMP_DATA_FORMAT, 0xC);
  528. mchip_set(MCHIP_VRJ_RESTART_INTERVAL, 0);
  529. mchip_set(MCHIP_VRJ_SOF1, 0x601);
  530. mchip_set(MCHIP_VRJ_SOF2, 0x1502);
  531. mchip_set(MCHIP_VRJ_SOF3, 0x1503);
  532. mchip_set(MCHIP_VRJ_SOF4, 0x1596);
  533. mchip_set(MCHIP_VRJ_SOS,  0x0ed0);
  534. mchip_load_tables();
  535. }
  536. /* setup for DMA transfers - also zeros the framebuffer */
  537. static int mchip_dma_alloc(void) {
  538. if (!meye.mchip_fbuffer) {
  539. meye.mchip_fbuffer = ptable_alloc(MCHIP_NB_PAGES, 
  540.                   &meye.mchip_ptaddr);
  541. if (!meye.mchip_fbuffer)
  542. return -1;
  543. }
  544. return 0;
  545. }
  546. /* frees the DMA buffer */
  547. static void mchip_dma_free(void) {
  548. if (meye.mchip_fbuffer) {
  549. ptable_free(meye.mchip_fbuffer, MCHIP_NB_PAGES);
  550. meye.mchip_fbuffer = 0;
  551. meye.mchip_ptaddr = 0;
  552. }
  553. }
  554. /* sets the DMA parameters into the chip */
  555. static void mchip_dma_setup(void) {
  556. int i;
  557. mchip_set(MCHIP_MM_PT_ADDR, meye.mchip_ptaddr);
  558. for (i = 0; i < 4; i++)
  559. mchip_set(MCHIP_MM_FIR(i), 0);
  560. meye.mchip_fnum = 0;
  561. }
  562. /* stop any existing HIC action and wait for any dma to complete then
  563.    reset the dma engine */
  564. static void mchip_hic_stop(void) {
  565. int i = 0;
  566. meye.mchip_mode = MCHIP_HIC_MODE_NOOP;
  567. if (!(mchip_read(MCHIP_HIC_STATUS) & MCHIP_HIC_STATUS_BUSY)) 
  568. return;
  569. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_STOP);
  570. mchip_delay(MCHIP_HIC_CMD, 0);
  571. while (!mchip_delay(MCHIP_HIC_STATUS, MCHIP_HIC_STATUS_IDLE)) {
  572. /*  resetting HIC */
  573. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_STOP);
  574. mchip_delay(MCHIP_HIC_CMD, 0);
  575. mchip_set(MCHIP_HIC_CTL, MCHIP_HIC_CTL_SOFT_RESET);
  576. wait_ms(250);
  577. if (i++ > 20) {
  578. printk(KERN_ERR "meye: resetting HIC hanged!n");
  579. break;
  580. }
  581. }
  582. wait_ms(100);
  583. }
  584. /****************************************************************************/
  585. /* MCHIP frame processing functions                                         */
  586. /****************************************************************************/
  587. /* get the next ready frame from the dma engine */
  588. static u32 mchip_get_frame(void) {
  589. u32 v;
  590. v = mchip_read(MCHIP_MM_FIR(meye.mchip_fnum));
  591. return v;
  592. }
  593. /* frees the current frame from the dma engine */
  594. static void mchip_free_frame(void) {
  595. mchip_set(MCHIP_MM_FIR(meye.mchip_fnum), 0);
  596. meye.mchip_fnum++;
  597. meye.mchip_fnum %= 4;
  598. }
  599. /* read one frame from the framebuffer assuming it was captured using
  600.    a uncompressed transfer */
  601. static void  mchip_cont_read_frame(u32 v, u8 *buf, int size) {
  602. int pt_id;
  603. int avail;
  604. pt_id = (v >> 17) & 0x3FF;
  605. avail = MCHIP_NB_PAGES - pt_id;
  606. if (size > avail*PAGE_SIZE) {
  607. memcpy(buf, meye.mchip_fbuffer + pt_id * PAGE_SIZE, 
  608.        avail * PAGE_SIZE);
  609. memcpy(buf +avail * PAGE_SIZE, meye.mchip_fbuffer,
  610.        size - avail * PAGE_SIZE);
  611. }
  612. else
  613. memcpy(buf, meye.mchip_fbuffer + pt_id * PAGE_SIZE, size);
  614. }
  615. /* read a compressed frame from the framebuffer */
  616. static int mchip_comp_read_frame(u32 v, u8 *buf, int size) {
  617. int pt_start, pt_end, trailer;
  618. int fsize, fsize2;
  619. int i;
  620. pt_start = (v >> 19) & 0xFF;
  621. pt_end = (v >> 11) & 0xFF;
  622. trailer = (v >> 1) & 0x3FF;
  623. if (pt_end < pt_start) {
  624. fsize = (MCHIP_NB_PAGES_MJPEG - pt_start) * PAGE_SIZE;
  625. fsize2 = pt_end * PAGE_SIZE + trailer * 4;
  626. if (fsize + fsize2 > size) {
  627. printk(KERN_WARNING "meye: oversized compressed frame %d %dn", 
  628.        fsize, fsize2);
  629. return -1;
  630. } else {
  631. memcpy(buf, meye.mchip_fbuffer + pt_start * PAGE_SIZE, 
  632.        fsize);
  633. memcpy(buf + fsize, meye.mchip_fbuffer, fsize2); 
  634. fsize += fsize2;
  635. }
  636. } else {
  637. fsize = (pt_end - pt_start) * PAGE_SIZE + trailer * 4;
  638. if (fsize > size) {
  639. printk(KERN_WARNING "meye: oversized compressed frame %dn", 
  640.        fsize);
  641. return -1;
  642. } else
  643. memcpy(buf, meye.mchip_fbuffer + pt_start * PAGE_SIZE, 
  644.        fsize);
  645. }
  646. #ifdef MEYE_JPEG_CORRECTION
  647. /* Some mchip generated jpeg frames are incorrect. In most
  648.  * (all ?) of those cases, the final EOI (0xff 0xd9) marker 
  649.  * is not present at the end of the frame.
  650.  *
  651.  * Since adding the final marker is not enough to restore
  652.  * the jpeg integrity, we drop the frame.
  653.  */
  654. for (i = fsize - 1; i > 0 && buf[i] == 0xff; i--) ;
  655. if (i < 2 || buf[i - 1] != 0xff || buf[i] != 0xd9)
  656. return -1;
  657. #endif
  658. return fsize;
  659. }
  660. /* take a picture into SDRAM */
  661. static void mchip_take_picture(void) {
  662. int i;
  663. mchip_hic_stop();
  664. mchip_subsample();
  665. mchip_dma_setup();
  666. mchip_set(MCHIP_HIC_MODE, MCHIP_HIC_MODE_STILL_CAP);
  667. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_START);
  668. mchip_delay(MCHIP_HIC_CMD, 0);
  669. for (i = 0; i < 100; ++i) {
  670. if (mchip_delay(MCHIP_HIC_STATUS, MCHIP_HIC_STATUS_IDLE))
  671. break;
  672. wait_ms(1);
  673. }
  674. }
  675. /* dma a previously taken picture into a buffer */
  676. static void mchip_get_picture(u8 *buf, int bufsize) {
  677. u32 v;
  678. int i;
  679. mchip_set(MCHIP_HIC_MODE, MCHIP_HIC_MODE_STILL_OUT);
  680. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_START);
  681. mchip_delay(MCHIP_HIC_CMD, 0);
  682. for (i = 0; i < 100; ++i) {
  683. if (mchip_delay(MCHIP_HIC_STATUS, MCHIP_HIC_STATUS_IDLE))
  684. break;
  685. wait_ms(1);
  686. }
  687. for (i = 0; i < 4 ; ++i) {
  688. v = mchip_get_frame();
  689. if (v & MCHIP_MM_FIR_RDY) {
  690. mchip_cont_read_frame(v, buf, bufsize);
  691. break;
  692. }
  693. mchip_free_frame();
  694. }
  695. }
  696. /* start continuous dma capture */
  697. static void mchip_continuous_start(void) {
  698. mchip_hic_stop();
  699. mchip_subsample();
  700. mchip_set_framerate();
  701. mchip_dma_setup();
  702. meye.mchip_mode = MCHIP_HIC_MODE_CONT_OUT;
  703. mchip_set(MCHIP_HIC_MODE, MCHIP_HIC_MODE_CONT_OUT);
  704. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_START);
  705. mchip_delay(MCHIP_HIC_CMD, 0);
  706. }
  707. /* compress one frame into a buffer */
  708. static int mchip_compress_frame(u8 *buf, int bufsize) {
  709. u32 v;
  710. int len = -1, i;
  711. mchip_vrj_setup(0x3f);
  712. udelay(50);
  713. mchip_set(MCHIP_HIC_MODE, MCHIP_HIC_MODE_STILL_COMP);
  714. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_START);
  715. mchip_delay(MCHIP_HIC_CMD, 0);
  716. for (i = 0; i < 100; ++i) {
  717. if (mchip_delay(MCHIP_HIC_STATUS, MCHIP_HIC_STATUS_IDLE))
  718. break;
  719. wait_ms(1);
  720. }
  721. for (i = 0; i < 4 ; ++i) {
  722. v = mchip_get_frame();
  723. if (v & MCHIP_MM_FIR_RDY) {
  724. len = mchip_comp_read_frame(v, buf, bufsize);
  725. break;
  726. }
  727. mchip_free_frame();
  728. }
  729. return len;
  730. }
  731. #if 0
  732. /* uncompress one image into a buffer */
  733. static int mchip_uncompress_frame(u8 *img, int imgsize, u8 *buf, int bufsize) {
  734. mchip_vrj_setup(0x3f);
  735. udelay(50);
  736. mchip_set(MCHIP_HIC_MODE, MCHIP_HIC_MODE_STILL_DECOMP);
  737. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_START);
  738. mchip_delay(MCHIP_HIC_CMD, 0);
  739. return mchip_comp_read_frame(buf, bufsize);
  740. }
  741. #endif
  742. /* start continuous compressed capture */
  743. static void mchip_cont_compression_start(void) {
  744. mchip_hic_stop();
  745. mchip_vrj_setup(0x3f);
  746. mchip_subsample();
  747. mchip_set_framerate();
  748. mchip_dma_setup();
  749. meye.mchip_mode = MCHIP_HIC_MODE_CONT_COMP;
  750. mchip_set(MCHIP_HIC_MODE, MCHIP_HIC_MODE_CONT_COMP);
  751. mchip_set(MCHIP_HIC_CMD, MCHIP_HIC_CMD_START);
  752. mchip_delay(MCHIP_HIC_CMD, 0);
  753. }
  754. /****************************************************************************/
  755. /* Interrupt handling                                                       */
  756. /****************************************************************************/
  757. static void meye_irq(int irq, void *dev_id, struct pt_regs *regs) {
  758. u32 v;
  759. int reqnr;
  760. v = mchip_read(MCHIP_MM_INTA);
  761. while (1) {
  762. v = mchip_get_frame();
  763. if (!(v & MCHIP_MM_FIR_RDY))
  764. goto out;
  765. switch (meye.mchip_mode) {
  766. case MCHIP_HIC_MODE_CONT_OUT:
  767. if (!meye_emptyq(&meye.grabq, NULL)) {
  768. int nr = meye_pullq(&meye.grabq);
  769. mchip_cont_read_frame(
  770. v, 
  771. meye.grab_fbuffer + gbufsize * nr,
  772. mchip_hsize() * mchip_vsize() * 2);
  773. meye.grab_buffer[nr].state = MEYE_BUF_DONE;
  774. wake_up_interruptible(&meye.grabq.proc_list);
  775. }
  776. break;
  777. case MCHIP_HIC_MODE_CONT_COMP:
  778. if (!meye_emptyq(&meye.grabq, &reqnr)) {
  779. int size;
  780. size = mchip_comp_read_frame(
  781. v,
  782. meye.grab_fbuffer + gbufsize * reqnr,
  783. gbufsize);
  784. if (size == -1)
  785. break;
  786. reqnr = meye_pullq(&meye.grabq);
  787. meye.grab_buffer[reqnr].size = size;
  788. meye.grab_buffer[reqnr].state = MEYE_BUF_DONE;
  789. wake_up_interruptible(&meye.grabq.proc_list);
  790. }
  791. break;
  792. default:
  793. /* do not free frame, since it can be a snap */
  794. goto out;
  795. } /* switch */
  796. mchip_free_frame();
  797. }
  798. out:
  799. }
  800. /****************************************************************************/
  801. /* video4linux integration                                                  */
  802. /****************************************************************************/
  803. static int meye_open(struct video_device *dev, int flags) {
  804. int i;
  805. down(&meye.lock);
  806. if (meye.open_count) {
  807. up(&meye.lock);
  808. return -EBUSY;
  809. }
  810. meye.open_count++;
  811. if (mchip_dma_alloc()) {
  812. printk(KERN_ERR "meye: mchip framebuffer allocation failedn");
  813. up(&meye.lock);
  814. return -ENOBUFS;
  815. }
  816. mchip_hic_stop();
  817. meye_initq(&meye.grabq);
  818. for (i = 0; i < MEYE_MAX_BUFNBRS; i++)
  819. meye.grab_buffer[i].state = MEYE_BUF_UNUSED;
  820. up(&meye.lock);
  821. return 0;
  822. }
  823. static void meye_close(struct video_device *dev) {
  824. down(&meye.lock);
  825. meye.open_count--;
  826. mchip_hic_stop();
  827. up(&meye.lock);
  828. }
  829. static int meye_ioctl(struct video_device *dev, unsigned int cmd, void *arg) {
  830. switch (cmd) {
  831. case VIDIOCGCAP: {
  832. struct video_capability b;
  833. strcpy(b.name,meye.video_dev.name);
  834. b.type = VID_TYPE_CAPTURE;
  835. b.channels = 1;
  836. b.audios = 0;
  837. b.maxwidth = 640;
  838. b.maxheight = 480;
  839. b.minwidth = 320;
  840. b.minheight = 240;
  841. if(copy_to_user(arg,&b,sizeof(b)))
  842. return -EFAULT;
  843. break;
  844. }
  845. case VIDIOCGCHAN: {
  846. struct video_channel v;
  847. if(copy_from_user(&v, arg,sizeof(v)))
  848. return -EFAULT;
  849. v.flags = 0;
  850. v.tuners = 0;
  851. v.type = VIDEO_TYPE_CAMERA;
  852. if (v.channel != 0)
  853. return -EINVAL;
  854. strcpy(v.name,"Camera");
  855. if(copy_to_user(arg,&v,sizeof(v)))
  856. return -EFAULT;
  857. break;
  858. }
  859. case VIDIOCSCHAN: {
  860. struct video_channel v;
  861. if(copy_from_user(&v, arg,sizeof(v)))
  862. return -EFAULT;
  863. if (v.channel != 0)
  864. return -EINVAL;
  865. break;
  866. }
  867. case VIDIOCGPICT: {
  868. struct video_picture p = meye.picture;
  869. if(copy_to_user(arg, &p, sizeof(p)))
  870. return -EFAULT;
  871. break;
  872. }
  873. case VIDIOCSPICT: {
  874. struct video_picture p;
  875. if(copy_from_user(&p, arg,sizeof(p)))
  876. return -EFAULT;
  877. if (p.depth != 2)
  878. return -EINVAL;
  879. if (p.palette != VIDEO_PALETTE_YUV422)
  880. return -EINVAL;
  881. down(&meye.lock);
  882. sonypi_camera_command(SONYPI_COMMAND_SETCAMERABRIGHTNESS, 
  883.       p.brightness >> 10);
  884. sonypi_camera_command(SONYPI_COMMAND_SETCAMERAHUE, 
  885.       p.hue >> 10);
  886. sonypi_camera_command(SONYPI_COMMAND_SETCAMERACOLOR, 
  887.       p.colour >> 10);
  888. sonypi_camera_command(SONYPI_COMMAND_SETCAMERACONTRAST, 
  889.       p.contrast >> 10);
  890. memcpy(&meye.picture, &p, sizeof(p));
  891. up(&meye.lock);
  892. break;
  893. }
  894. case VIDIOCSYNC: {
  895. int i;
  896. DECLARE_WAITQUEUE(wait, current);
  897. if(copy_from_user((void *)&i,arg,sizeof(int)))
  898. return -EFAULT;
  899. if (i < 0 || i >= gbuffers)
  900. return -EINVAL;
  901. switch (meye.grab_buffer[i].state) {
  902. case MEYE_BUF_UNUSED:
  903. return -EINVAL;
  904. case MEYE_BUF_USING:
  905. add_wait_queue(&meye.grabq.proc_list, &wait);
  906. current->state = TASK_INTERRUPTIBLE;
  907. while (meye.grab_buffer[i].state == MEYE_BUF_USING) {
  908. schedule();
  909. if(signal_pending(current)) {
  910. remove_wait_queue(&meye.grabq.proc_list, &wait);
  911. current->state = TASK_RUNNING;
  912. return -EINTR;
  913. }
  914. }
  915. remove_wait_queue(&meye.grabq.proc_list, &wait);
  916. current->state = TASK_RUNNING;
  917. /* fall through */
  918. case MEYE_BUF_DONE:
  919. meye.grab_buffer[i].state = MEYE_BUF_UNUSED;
  920. }
  921. break;
  922. }
  923. case VIDIOCMCAPTURE: {
  924. struct video_mmap vm;
  925. int restart = 0;
  926. if(copy_from_user((void *) &vm, (void *) arg, sizeof(vm)))
  927. return -EFAULT;
  928. if (vm.frame >= gbuffers || vm.frame < 0)
  929. return -EINVAL;
  930. if (vm.format != VIDEO_PALETTE_YUV422)
  931. return -EINVAL;
  932. if (vm.height * vm.width * 2 > gbufsize)
  933. return -EINVAL;
  934. if (!meye.grab_fbuffer)
  935. return -EINVAL;
  936. if (meye.grab_buffer[vm.frame].state != MEYE_BUF_UNUSED)
  937. return -EBUSY;
  938. down(&meye.lock);
  939. if (vm.width == 640 && vm.height == 480) {
  940. if (meye.params.subsample) {
  941. meye.params.subsample = 0;
  942. restart = 1;
  943. }
  944. }
  945. else if (vm.width == 320 && vm.height == 240) {
  946. if (!meye.params.subsample) {
  947. meye.params.subsample = 1;
  948. restart = 1;
  949. }
  950. }
  951. else {
  952. up(&meye.lock);
  953. return -EINVAL;
  954. }
  955. if (restart || meye.mchip_mode != MCHIP_HIC_MODE_CONT_OUT)
  956. mchip_continuous_start();
  957. meye.grab_buffer[vm.frame].state = MEYE_BUF_USING;
  958. meye_pushq(&meye.grabq, vm.frame);
  959. up(&meye.lock);
  960. break;
  961. }
  962. case VIDIOCGMBUF: {
  963. struct video_mbuf vm;
  964. int i;
  965. memset(&vm, 0 , sizeof(vm));
  966. vm.size = gbufsize * gbuffers;
  967. vm.frames = gbuffers;
  968. for (i = 0; i < gbuffers; i++)
  969. vm.offsets[i] = i * gbufsize;
  970. if(copy_to_user((void *)arg, (void *)&vm, sizeof(vm)))
  971. return -EFAULT;
  972. break;
  973. }
  974. case MEYEIOC_G_PARAMS: {
  975. if (copy_to_user(arg, &meye.params, sizeof(meye.params)))
  976. return -EFAULT;
  977. break;
  978. }
  979. case MEYEIOC_S_PARAMS: {
  980. struct meye_params jp;
  981. if (copy_from_user(&jp, arg, sizeof(jp)))
  982. return -EFAULT;
  983. if (jp.subsample > 1)
  984. return -EINVAL;
  985. if (jp.quality > 10)
  986. return -EINVAL;
  987. if (jp.sharpness > 63 || jp.agc > 63 || jp.picture > 63)
  988. return -EINVAL;
  989. if (jp.framerate > 31)
  990. return -EINVAL;
  991. down(&meye.lock);
  992. if (meye.params.subsample != jp.subsample ||
  993.     meye.params.quality != jp.quality)
  994. mchip_hic_stop(); /* need restart */
  995. memcpy(&meye.params, &jp, sizeof(jp));
  996. sonypi_camera_command(SONYPI_COMMAND_SETCAMERASHARPNESS,
  997.       meye.params.sharpness);
  998. sonypi_camera_command(SONYPI_COMMAND_SETCAMERAAGC,
  999.       meye.params.agc);
  1000. sonypi_camera_command(SONYPI_COMMAND_SETCAMERAPICTURE,
  1001.       meye.params.picture);
  1002. up(&meye.lock);
  1003. break;
  1004. }
  1005. case MEYEIOC_QBUF_CAPT: {
  1006. int nb;
  1007. if (copy_from_user((void *) &nb, (void *) arg, sizeof(int)))
  1008. return -EFAULT;
  1009. if (!meye.grab_fbuffer) 
  1010. return -EINVAL;
  1011. if (nb >= gbuffers)
  1012. return -EINVAL;
  1013. if (nb < 0) {
  1014. /* stop capture */
  1015. mchip_hic_stop();
  1016. return 0;
  1017. }
  1018. if (meye.grab_buffer[nb].state != MEYE_BUF_UNUSED)
  1019. return -EBUSY;
  1020. down(&meye.lock);
  1021. if (meye.mchip_mode != MCHIP_HIC_MODE_CONT_COMP)
  1022. mchip_cont_compression_start();
  1023. meye.grab_buffer[nb].state = MEYE_BUF_USING;
  1024. meye_pushq(&meye.grabq, nb);
  1025. up(&meye.lock);
  1026. break;
  1027. }
  1028. case MEYEIOC_SYNC: {
  1029. int i;
  1030. DECLARE_WAITQUEUE(wait, current);
  1031. if(copy_from_user((void *)&i,arg,sizeof(int)))
  1032. return -EFAULT;
  1033. if (i < 0 || i >= gbuffers)
  1034. return -EINVAL;
  1035. switch (meye.grab_buffer[i].state) {
  1036. case MEYE_BUF_UNUSED:
  1037. return -EINVAL;
  1038. case MEYE_BUF_USING:
  1039. add_wait_queue(&meye.grabq.proc_list, &wait);
  1040. current->state = TASK_INTERRUPTIBLE;
  1041. while (meye.grab_buffer[i].state == MEYE_BUF_USING) {
  1042. schedule();
  1043. if(signal_pending(current)) {
  1044. remove_wait_queue(&meye.grabq.proc_list, &wait);
  1045. current->state = TASK_RUNNING;
  1046. return -EINTR;
  1047. }
  1048. }
  1049. remove_wait_queue(&meye.grabq.proc_list, &wait);
  1050. current->state = TASK_RUNNING;
  1051. /* fall through */
  1052. case MEYE_BUF_DONE:
  1053. meye.grab_buffer[i].state = MEYE_BUF_UNUSED;
  1054. }
  1055. i = meye.grab_buffer[i].size;
  1056. if (copy_to_user(arg, (void *)&i, sizeof(int)))
  1057. return -EFAULT;
  1058. break;
  1059. }
  1060. case MEYEIOC_STILLCAPT: {
  1061. if (!meye.grab_fbuffer) 
  1062. return -EINVAL;
  1063. if (meye.grab_buffer[0].state != MEYE_BUF_UNUSED)
  1064. return -EBUSY;
  1065. down(&meye.lock);
  1066. meye.grab_buffer[0].state = MEYE_BUF_USING;
  1067. mchip_take_picture();
  1068. mchip_get_picture(
  1069. meye.grab_fbuffer,
  1070. mchip_hsize() * mchip_vsize() * 2);
  1071. meye.grab_buffer[0].state = MEYE_BUF_DONE;
  1072. up(&meye.lock);
  1073. break;
  1074. }
  1075. case MEYEIOC_STILLJCAPT: {
  1076. int len = -1;
  1077. if (!meye.grab_fbuffer) 
  1078. return -EINVAL;
  1079. if (meye.grab_buffer[0].state != MEYE_BUF_UNUSED)
  1080. return -EBUSY;
  1081. down(&meye.lock);
  1082. meye.grab_buffer[0].state = MEYE_BUF_USING;
  1083. while (len == -1) {
  1084. mchip_take_picture();
  1085. len = mchip_compress_frame(meye.grab_fbuffer, gbufsize);
  1086. }
  1087. meye.grab_buffer[0].state = MEYE_BUF_DONE;
  1088. up(&meye.lock);
  1089. if (copy_to_user(arg, (void *)&len, sizeof(int)))
  1090. return -EFAULT;
  1091. break;
  1092. }
  1093. default:
  1094. return -ENOIOCTLCMD;
  1095. } /* switch */
  1096. return 0;
  1097. }
  1098. static int meye_mmap(struct video_device *dev, const char *adr, 
  1099.      unsigned long size) {
  1100. unsigned long start=(unsigned long) adr;
  1101. unsigned long page,pos;
  1102. down(&meye.lock);
  1103. if (size > gbuffers * gbufsize) {
  1104. up(&meye.lock);
  1105. return -EINVAL;
  1106. }
  1107. if (!meye.grab_fbuffer) {
  1108. /* lazy allocation */
  1109. meye.grab_fbuffer = rvmalloc(gbuffers*gbufsize);
  1110. if (!meye.grab_fbuffer) {
  1111. printk(KERN_ERR "meye: v4l framebuffer allocation failedn");
  1112. up(&meye.lock);
  1113. return -ENOMEM;
  1114. }
  1115. }
  1116. pos = (unsigned long)meye.grab_fbuffer;
  1117. while (size > 0) {
  1118. page = kvirt_to_pa(pos);
  1119. if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED)) {
  1120. up(&meye.lock);
  1121. return -EAGAIN;
  1122. }
  1123. start += PAGE_SIZE;
  1124. pos += PAGE_SIZE;
  1125. size -= PAGE_SIZE;
  1126. }
  1127. up(&meye.lock);
  1128. return 0;
  1129. }
  1130. static struct video_device meye_template = {
  1131. owner: THIS_MODULE,
  1132. name: "meye",
  1133. type: VID_TYPE_CAPTURE,
  1134. hardware: VID_HARDWARE_MEYE,
  1135. open: meye_open,
  1136. close: meye_close,
  1137. ioctl: meye_ioctl,
  1138. mmap: meye_mmap,
  1139. };
  1140. static int __devinit meye_probe(struct pci_dev *pcidev, 
  1141.                 const struct pci_device_id *ent) {
  1142. int ret;
  1143. unsigned long mchip_adr;
  1144. u8 revision;
  1145. if (meye.mchip_dev != NULL) {
  1146. printk(KERN_ERR "meye: only one device allowed!n");
  1147. ret = -EBUSY;
  1148. goto out1;
  1149. }
  1150. sonypi_camera_command(SONYPI_COMMAND_SETCAMERA, 1);
  1151. meye.mchip_dev = pcidev;
  1152. meye.mchip_irq = pcidev->irq;
  1153. memcpy(&meye.video_dev, &meye_template, sizeof(meye_template));
  1154. if (mchip_dma_alloc()) {
  1155. printk(KERN_ERR "meye: mchip framebuffer allocation failedn");
  1156. ret = -ENOMEM;
  1157. goto out2;
  1158. }
  1159. if ((ret = pci_enable_device(meye.mchip_dev))) {
  1160. printk(KERN_ERR "meye: pci_enable_device failedn");
  1161. goto out3;
  1162. }
  1163. mchip_adr = pci_resource_start(meye.mchip_dev,0);
  1164. if (!mchip_adr) {
  1165. printk(KERN_ERR "meye: mchip has no device base addressn");
  1166. ret = -EIO;
  1167. goto out4;
  1168. }
  1169. if (!request_mem_region(pci_resource_start(meye.mchip_dev, 0),
  1170.         pci_resource_len(meye.mchip_dev, 0),
  1171. "meye")) {
  1172. ret = -EIO;
  1173. printk(KERN_ERR "meye: request_mem_region failedn");
  1174. goto out4;
  1175. }
  1176. pci_read_config_byte(meye.mchip_dev, PCI_REVISION_ID, &revision);
  1177. pci_set_master(meye.mchip_dev);
  1178. pci_write_config_byte(meye.mchip_dev, PCI_CACHE_LINE_SIZE, 8);
  1179. pci_write_config_byte(meye.mchip_dev, PCI_LATENCY_TIMER, 64);
  1180. if ((ret = request_irq(meye.mchip_irq, meye_irq, 
  1181.        SA_INTERRUPT | SA_SHIRQ, "meye", meye_irq))) {
  1182. printk(KERN_ERR "meye: request_irq failed (ret=%d)n", ret);
  1183. goto out5;
  1184. }
  1185. meye.mchip_mmregs = ioremap(mchip_adr, MCHIP_MM_REGS);
  1186. if (!meye.mchip_mmregs) {
  1187. printk(KERN_ERR "meye: ioremap failedn");
  1188. ret = -EIO;
  1189. goto out6;
  1190. }
  1191. /* Ask the camera to perform a soft reset. */
  1192. pci_write_config_word(meye.mchip_dev, MCHIP_PCI_SOFTRESET_SET, 1);
  1193. mchip_delay(MCHIP_HIC_CMD, 0);
  1194. mchip_delay(MCHIP_HIC_STATUS, MCHIP_HIC_STATUS_IDLE);
  1195. wait_ms(1);
  1196. mchip_set(MCHIP_VRJ_SOFT_RESET, 1);
  1197. wait_ms(1);
  1198. mchip_set(MCHIP_MM_PCI_MODE, 5);
  1199. wait_ms(1);
  1200. mchip_set(MCHIP_MM_INTA, MCHIP_MM_INTA_HIC_1_MASK);
  1201. if (video_register_device(&meye.video_dev, VFL_TYPE_GRABBER, video_nr) < 0) {
  1202. printk(KERN_ERR "meye: video_register_device failedn");
  1203. ret = -EIO;
  1204. goto out7;
  1205. }
  1206. printk(KERN_INFO "meye: Motion Eye Camera Driver v%d.%d.n",
  1207.        MEYE_DRIVER_MAJORVERSION,
  1208.        MEYE_DRIVER_MINORVERSION);
  1209. printk(KERN_INFO "meye: mchip KL5A72002 rev. %d, base %lx, irq %dn", 
  1210. revision, mchip_adr, meye.mchip_irq);
  1211. /* init all fields */
  1212. init_MUTEX(&meye.lock);
  1213. meye.picture.depth = 2;
  1214. meye.picture.palette = VIDEO_PALETTE_YUV422;
  1215. meye.picture.brightness = 32 << 10;
  1216. meye.picture.hue = 32 << 10;
  1217. meye.picture.colour = 32 << 10;
  1218. meye.picture.contrast = 32 << 10;
  1219. meye.picture.whiteness = 0;
  1220. meye.params.subsample = 0;
  1221. meye.params.quality = 7;
  1222. meye.params.sharpness = 32;
  1223. meye.params.agc = 48;
  1224. meye.params.picture = 0;
  1225. meye.params.framerate = 0;
  1226. sonypi_camera_command(SONYPI_COMMAND_SETCAMERABRIGHTNESS, 32);
  1227. sonypi_camera_command(SONYPI_COMMAND_SETCAMERAHUE, 32);
  1228. sonypi_camera_command(SONYPI_COMMAND_SETCAMERACOLOR, 32);
  1229. sonypi_camera_command(SONYPI_COMMAND_SETCAMERACONTRAST, 32);
  1230. sonypi_camera_command(SONYPI_COMMAND_SETCAMERASHARPNESS, 32);
  1231. sonypi_camera_command(SONYPI_COMMAND_SETCAMERAPICTURE, 0);
  1232. sonypi_camera_command(SONYPI_COMMAND_SETCAMERAAGC, 48);
  1233. return 0;
  1234. out7:
  1235. iounmap(meye.mchip_mmregs);
  1236. out6:
  1237. free_irq(meye.mchip_irq, meye_irq);
  1238. out5:
  1239. release_mem_region(pci_resource_start(meye.mchip_dev, 0),
  1240.    pci_resource_len(meye.mchip_dev, 0));
  1241. out4:
  1242. pci_disable_device(meye.mchip_dev);
  1243. out3:
  1244. mchip_dma_free();
  1245. out2:
  1246. sonypi_camera_command(SONYPI_COMMAND_SETCAMERA, 0);
  1247. out1:
  1248. return ret;
  1249. }
  1250. static void __devexit meye_remove(struct pci_dev *pcidev) {
  1251. video_unregister_device(&meye.video_dev);
  1252. mchip_hic_stop();
  1253. /* disable interrupts */
  1254. mchip_set(MCHIP_MM_INTA, 0x0);
  1255. free_irq(meye.mchip_irq, meye_irq);
  1256. iounmap(meye.mchip_mmregs);
  1257. release_mem_region(pci_resource_start(meye.mchip_dev, 0),
  1258.    pci_resource_len(meye.mchip_dev, 0));
  1259. pci_disable_device(meye.mchip_dev);
  1260. mchip_dma_free();
  1261. if (meye.grab_fbuffer)
  1262. rvfree(meye.grab_fbuffer, gbuffers*gbufsize);
  1263. sonypi_camera_command(SONYPI_COMMAND_SETCAMERA, 0);
  1264. printk(KERN_INFO "meye: removedn");
  1265. }
  1266. static struct pci_device_id meye_pci_tbl[] __devinitdata = {
  1267. { PCI_VENDOR_ID_KAWASAKI, PCI_DEVICE_ID_MCHIP_KL5A72002, 
  1268.   PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  1269. { }
  1270. };
  1271. MODULE_DEVICE_TABLE(pci, meye_pci_tbl);
  1272. static struct pci_driver meye_driver = {
  1273. name: "meye",
  1274. id_table: meye_pci_tbl,
  1275. probe: meye_probe,
  1276. remove: __devexit_p(meye_remove),
  1277. };
  1278. static int __init meye_init_module(void) {
  1279. if (gbuffers < 2)
  1280. gbuffers = 2;
  1281. if (gbuffers > MEYE_MAX_BUFNBRS)
  1282. gbuffers = MEYE_MAX_BUFNBRS;
  1283. if (gbufsize < 0 || gbufsize > MEYE_MAX_BUFSIZE)
  1284. gbufsize = MEYE_MAX_BUFSIZE;
  1285. printk(KERN_INFO "meye: using %d buffers with %dk (%dk total) for capturen",
  1286.        gbuffers, gbufsize/1024, gbuffers*gbufsize/1024);
  1287. return pci_module_init(&meye_driver);
  1288. }
  1289. static void __exit meye_cleanup_module(void) {
  1290. pci_unregister_driver(&meye_driver);
  1291. }
  1292. MODULE_AUTHOR("Stelian Pop <stelian.pop@fr.alcove.com>");
  1293. MODULE_DESCRIPTION("video4linux driver for the MotionEye camera");
  1294. MODULE_LICENSE("GPL");
  1295. EXPORT_NO_SYMBOLS;
  1296. MODULE_PARM(gbuffers,"i");
  1297. MODULE_PARM_DESC(gbuffers,"number of capture buffers, default is 2 (32 max)");
  1298. MODULE_PARM(gbufsize,"i");
  1299. MODULE_PARM_DESC(gbufsize,"size of the capture buffers, default is 614400");
  1300. MODULE_PARM(video_nr,"i");
  1301. MODULE_PARM_DESC(video_nr,"video device to register (0=/dev/video0, etc)");
  1302. /* Module entry points */
  1303. module_init(meye_init_module);
  1304. module_exit(meye_cleanup_module);