cx88-mpeg.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  1. /*
  2. *
  3. * Support for the mpeg transport stream transfers
  4. * PCI function #2 of the cx2388x.
  5. *
  6. * (c) 2004 Jelle Foks <jelle@foks.8m.com>
  7. * (c) 2004 Chris Pascoe <c.pascoe@itee.uq.edu.au>
  8. * (c) 2004 Gerd Knorr <kraxel@bytesex.org>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23. */
  24. #include <linux/module.h>
  25. #include <linux/moduleparam.h>
  26. #include <linux/init.h>
  27. #include <linux/device.h>
  28. #include <linux/interrupt.h>
  29. #include <asm/delay.h>
  30. #include "cx88.h"
  31. /* ------------------------------------------------------------------ */
  32. MODULE_DESCRIPTION("mpeg driver for cx2388x based TV cards");
  33. MODULE_AUTHOR("Jelle Foks <jelle@foks.8m.com>");
  34. MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
  35. MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
  36. MODULE_LICENSE("GPL");
  37. static unsigned int debug = 0;
  38. module_param(debug,int,0644);
  39. MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
  40. #define dprintk(level,fmt, arg...) if (debug >= level) \
  41. printk(KERN_DEBUG "%s/2: " fmt, dev->core->name , ## arg)
  42. /* ------------------------------------------------------------------ */
  43. static int cx8802_start_dma(struct cx8802_dev *dev,
  44. struct cx88_dmaqueue *q,
  45. struct cx88_buffer *buf)
  46. {
  47. struct cx88_core *core = dev->core;
  48. dprintk(0, "cx8802_start_dma %d\n", buf->vb.width);
  49. /* setup fifo + format */
  50. cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
  51. dev->ts_packet_size, buf->risc.dma);
  52. /* write TS length to chip */
  53. cx_write(MO_TS_LNGTH, buf->vb.width);
  54. /* FIXME: this needs a review.
  55. * also: move to cx88-blackbird + cx88-dvb source files? */
  56. if (cx88_boards[core->board].dvb) {
  57. /* negedge driven & software reset */
  58. cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
  59. udelay(100);
  60. cx_write(MO_PINMUX_IO, 0x00);
  61. cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01);
  62. switch (core->board) {
  63. case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q:
  64. case CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T:
  65. case CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD:
  66. cx_write(TS_SOP_STAT, 1<<13);
  67. break;
  68. default:
  69. cx_write(TS_SOP_STAT, 0x00);
  70. break;
  71. }
  72. cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
  73. udelay(100);
  74. }
  75. if (cx88_boards[core->board].blackbird) {
  76. cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
  77. cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
  78. udelay(100);
  79. cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
  80. cx_write(TS_VALERR_CNTRL, 0x2000);
  81. cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
  82. udelay(100);
  83. }
  84. /* reset counter */
  85. cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
  86. q->count = 1;
  87. /* enable irqs */
  88. dprintk( 0, "setting the interrupt mask\n" );
  89. cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x04);
  90. cx_set(MO_TS_INTMSK, 0x1f0011);
  91. /* start dma */
  92. cx_set(MO_DEV_CNTRL2, (1<<5));
  93. cx_set(MO_TS_DMACNTRL, 0x11);
  94. return 0;
  95. }
  96. static int cx8802_stop_dma(struct cx8802_dev *dev)
  97. {
  98. struct cx88_core *core = dev->core;
  99. dprintk( 0, "cx8802_stop_dma\n" );
  100. /* stop dma */
  101. cx_clear(MO_TS_DMACNTRL, 0x11);
  102. /* disable irqs */
  103. cx_clear(MO_PCI_INTMSK, 0x000004);
  104. cx_clear(MO_TS_INTMSK, 0x1f0011);
  105. /* Reset the controller */
  106. cx_write(TS_GEN_CNTRL, 0xcd);
  107. return 0;
  108. }
  109. static int cx8802_restart_queue(struct cx8802_dev *dev,
  110. struct cx88_dmaqueue *q)
  111. {
  112. struct cx88_buffer *buf;
  113. struct list_head *item;
  114. dprintk( 0, "cx8802_restart_queue\n" );
  115. if (list_empty(&q->active))
  116. {
  117. dprintk( 0, "cx8802_restart_queue: queue is empty\n" );
  118. return 0;
  119. }
  120. buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
  121. dprintk(2,"restart_queue [%p/%d]: restart dma\n",
  122. buf, buf->vb.i);
  123. cx8802_start_dma(dev, q, buf);
  124. list_for_each(item,&q->active) {
  125. buf = list_entry(item, struct cx88_buffer, vb.queue);
  126. buf->count = q->count++;
  127. }
  128. mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
  129. return 0;
  130. }
  131. /* ------------------------------------------------------------------ */
  132. int cx8802_buf_prepare(struct cx8802_dev *dev, struct cx88_buffer *buf)
  133. {
  134. int size = dev->ts_packet_size * dev->ts_packet_count;
  135. int rc;
  136. dprintk(1, "%s: %p\n", __FUNCTION__, buf);
  137. if (0 != buf->vb.baddr && buf->vb.bsize < size)
  138. return -EINVAL;
  139. if (STATE_NEEDS_INIT == buf->vb.state) {
  140. buf->vb.width = dev->ts_packet_size;
  141. buf->vb.height = dev->ts_packet_count;
  142. buf->vb.size = size;
  143. buf->vb.field = V4L2_FIELD_TOP;
  144. if (0 != (rc = videobuf_iolock(dev->pci,&buf->vb,NULL)))
  145. goto fail;
  146. cx88_risc_databuffer(dev->pci, &buf->risc,
  147. buf->vb.dma.sglist,
  148. buf->vb.width, buf->vb.height);
  149. }
  150. buf->vb.state = STATE_PREPARED;
  151. return 0;
  152. fail:
  153. cx88_free_buffer(dev->pci,buf);
  154. return rc;
  155. }
  156. void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
  157. {
  158. struct cx88_buffer *prev;
  159. struct cx88_dmaqueue *q = &dev->mpegq;
  160. dprintk( 1, "cx8802_buf_queue\n" );
  161. /* add jump to stopper */
  162. buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
  163. buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
  164. if (list_empty(&q->active)) {
  165. dprintk( 0, "queue is empty - first active\n" );
  166. list_add_tail(&buf->vb.queue,&q->active);
  167. cx8802_start_dma(dev, q, buf);
  168. buf->vb.state = STATE_ACTIVE;
  169. buf->count = q->count++;
  170. mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
  171. dprintk(0,"[%p/%d] %s - first active\n",
  172. buf, buf->vb.i, __FUNCTION__);
  173. } else {
  174. dprintk( 1, "queue is not empty - append to active\n" );
  175. prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
  176. list_add_tail(&buf->vb.queue,&q->active);
  177. buf->vb.state = STATE_ACTIVE;
  178. buf->count = q->count++;
  179. prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
  180. dprintk( 1, "[%p/%d] %s - append to active\n",
  181. buf, buf->vb.i, __FUNCTION__);
  182. }
  183. }
  184. /* ----------------------------------------------------------- */
  185. static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
  186. {
  187. struct cx88_dmaqueue *q = &dev->mpegq;
  188. struct cx88_buffer *buf;
  189. unsigned long flags;
  190. spin_lock_irqsave(&dev->slock,flags);
  191. while (!list_empty(&q->active)) {
  192. buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
  193. list_del(&buf->vb.queue);
  194. buf->vb.state = STATE_ERROR;
  195. wake_up(&buf->vb.done);
  196. dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
  197. buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
  198. }
  199. if (restart)
  200. {
  201. dprintk(0, "restarting queue\n" );
  202. cx8802_restart_queue(dev,q);
  203. }
  204. spin_unlock_irqrestore(&dev->slock,flags);
  205. }
  206. void cx8802_cancel_buffers(struct cx8802_dev *dev)
  207. {
  208. struct cx88_dmaqueue *q = &dev->mpegq;
  209. dprintk( 1, "cx8802_cancel_buffers" );
  210. del_timer_sync(&q->timeout);
  211. cx8802_stop_dma(dev);
  212. do_cancel_buffers(dev,"cancel",0);
  213. }
  214. static void cx8802_timeout(unsigned long data)
  215. {
  216. struct cx8802_dev *dev = (struct cx8802_dev*)data;
  217. dprintk(0, "%s\n",__FUNCTION__);
  218. if (debug)
  219. cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
  220. cx8802_stop_dma(dev);
  221. do_cancel_buffers(dev,"timeout",1);
  222. }
  223. static char *cx88_mpeg_irqs[32] = {
  224. "ts_risci1", NULL, NULL, NULL,
  225. "ts_risci2", NULL, NULL, NULL,
  226. "ts_oflow", NULL, NULL, NULL,
  227. "ts_sync", NULL, NULL, NULL,
  228. "opc_err", "par_err", "rip_err", "pci_abort",
  229. "ts_err?",
  230. };
  231. static void cx8802_mpeg_irq(struct cx8802_dev *dev)
  232. {
  233. struct cx88_core *core = dev->core;
  234. u32 status, mask, count;
  235. dprintk( 1, "cx8802_mpeg_irq\n" );
  236. status = cx_read(MO_TS_INTSTAT);
  237. mask = cx_read(MO_TS_INTMSK);
  238. if (0 == (status & mask))
  239. return;
  240. cx_write(MO_TS_INTSTAT, status);
  241. if (debug || (status & mask & ~0xff))
  242. cx88_print_irqbits(core->name, "irq mpeg ",
  243. cx88_mpeg_irqs, status, mask);
  244. /* risc op code error */
  245. if (status & (1 << 16)) {
  246. printk(KERN_WARNING "%s: mpeg risc op code error\n",core->name);
  247. cx_clear(MO_TS_DMACNTRL, 0x11);
  248. cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
  249. }
  250. /* risc1 y */
  251. if (status & 0x01) {
  252. dprintk( 1, "wake up\n" );
  253. spin_lock(&dev->slock);
  254. count = cx_read(MO_TS_GPCNT);
  255. cx88_wakeup(dev->core, &dev->mpegq, count);
  256. spin_unlock(&dev->slock);
  257. }
  258. /* risc2 y */
  259. if (status & 0x10) {
  260. spin_lock(&dev->slock);
  261. cx8802_restart_queue(dev,&dev->mpegq);
  262. spin_unlock(&dev->slock);
  263. }
  264. /* other general errors */
  265. if (status & 0x1f0100) {
  266. dprintk( 0, "general errors: 0x%08x\n", status & 0x1f0100 );
  267. spin_lock(&dev->slock);
  268. cx8802_stop_dma(dev);
  269. cx8802_restart_queue(dev,&dev->mpegq);
  270. spin_unlock(&dev->slock);
  271. }
  272. }
  273. #define MAX_IRQ_LOOP 10
  274. static irqreturn_t cx8802_irq(int irq, void *dev_id, struct pt_regs *regs)
  275. {
  276. struct cx8802_dev *dev = dev_id;
  277. struct cx88_core *core = dev->core;
  278. u32 status;
  279. int loop, handled = 0;
  280. for (loop = 0; loop < MAX_IRQ_LOOP; loop++) {
  281. status = cx_read(MO_PCI_INTSTAT) & (core->pci_irqmask | 0x04);
  282. if (0 == status)
  283. goto out;
  284. dprintk( 1, "cx8802_irq\n" );
  285. dprintk( 1, " loop: %d/%d\n", loop, MAX_IRQ_LOOP );
  286. dprintk( 1, " status: %d\n", status );
  287. handled = 1;
  288. cx_write(MO_PCI_INTSTAT, status);
  289. if (status & core->pci_irqmask)
  290. cx88_core_irq(core,status);
  291. if (status & 0x04)
  292. cx8802_mpeg_irq(dev);
  293. };
  294. if (MAX_IRQ_LOOP == loop) {
  295. dprintk( 0, "clearing mask\n" );
  296. printk(KERN_WARNING "%s/0: irq loop -- clearing mask\n",
  297. core->name);
  298. cx_write(MO_PCI_INTMSK,0);
  299. }
  300. out:
  301. return IRQ_RETVAL(handled);
  302. }
  303. /* ----------------------------------------------------------- */
  304. /* exported stuff */
  305. int cx8802_init_common(struct cx8802_dev *dev)
  306. {
  307. struct cx88_core *core = dev->core;
  308. int err;
  309. /* pci init */
  310. if (pci_enable_device(dev->pci))
  311. return -EIO;
  312. pci_set_master(dev->pci);
  313. if (!pci_dma_supported(dev->pci,0xffffffff)) {
  314. printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
  315. return -EIO;
  316. }
  317. pci_read_config_byte(dev->pci, PCI_CLASS_REVISION, &dev->pci_rev);
  318. pci_read_config_byte(dev->pci, PCI_LATENCY_TIMER, &dev->pci_lat);
  319. printk(KERN_INFO "%s/2: found at %s, rev: %d, irq: %d, "
  320. "latency: %d, mmio: 0x%lx\n", dev->core->name,
  321. pci_name(dev->pci), dev->pci_rev, dev->pci->irq,
  322. dev->pci_lat,pci_resource_start(dev->pci,0));
  323. /* initialize driver struct */
  324. spin_lock_init(&dev->slock);
  325. /* init dma queue */
  326. INIT_LIST_HEAD(&dev->mpegq.active);
  327. INIT_LIST_HEAD(&dev->mpegq.queued);
  328. dev->mpegq.timeout.function = cx8802_timeout;
  329. dev->mpegq.timeout.data = (unsigned long)dev;
  330. init_timer(&dev->mpegq.timeout);
  331. cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
  332. MO_TS_DMACNTRL,0x11,0x00);
  333. /* get irq */
  334. err = request_irq(dev->pci->irq, cx8802_irq,
  335. SA_SHIRQ | SA_INTERRUPT, dev->core->name, dev);
  336. if (err < 0) {
  337. printk(KERN_ERR "%s: can't get IRQ %d\n",
  338. dev->core->name, dev->pci->irq);
  339. return err;
  340. }
  341. cx_set(MO_PCI_INTMSK, core->pci_irqmask);
  342. /* everything worked */
  343. pci_set_drvdata(dev->pci,dev);
  344. return 0;
  345. }
  346. void cx8802_fini_common(struct cx8802_dev *dev)
  347. {
  348. dprintk( 2, "cx8802_fini_common\n" );
  349. cx8802_stop_dma(dev);
  350. pci_disable_device(dev->pci);
  351. /* unregister stuff */
  352. free_irq(dev->pci->irq, dev);
  353. pci_set_drvdata(dev->pci, NULL);
  354. /* free memory */
  355. btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
  356. }
  357. /* ----------------------------------------------------------- */
  358. int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
  359. {
  360. struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
  361. struct cx88_core *core = dev->core;
  362. /* stop mpeg dma */
  363. spin_lock(&dev->slock);
  364. if (!list_empty(&dev->mpegq.active)) {
  365. dprintk( 2, "suspend\n" );
  366. printk("%s: suspend mpeg\n", core->name);
  367. cx8802_stop_dma(dev);
  368. del_timer(&dev->mpegq.timeout);
  369. }
  370. spin_unlock(&dev->slock);
  371. /* FIXME -- shutdown device */
  372. cx88_shutdown(dev->core);
  373. pci_save_state(pci_dev);
  374. if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
  375. pci_disable_device(pci_dev);
  376. dev->state.disabled = 1;
  377. }
  378. return 0;
  379. }
  380. int cx8802_resume_common(struct pci_dev *pci_dev)
  381. {
  382. struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
  383. struct cx88_core *core = dev->core;
  384. if (dev->state.disabled) {
  385. pci_enable_device(pci_dev);
  386. dev->state.disabled = 0;
  387. }
  388. pci_set_power_state(pci_dev, PCI_D0);
  389. pci_restore_state(pci_dev);
  390. /* FIXME: re-initialize hardware */
  391. cx88_reset(dev->core);
  392. /* restart video+vbi capture */
  393. spin_lock(&dev->slock);
  394. if (!list_empty(&dev->mpegq.active)) {
  395. printk("%s: resume mpeg\n", core->name);
  396. cx8802_restart_queue(dev,&dev->mpegq);
  397. }
  398. spin_unlock(&dev->slock);
  399. return 0;
  400. }
  401. /* ----------------------------------------------------------- */
  402. EXPORT_SYMBOL(cx8802_buf_prepare);
  403. EXPORT_SYMBOL(cx8802_buf_queue);
  404. EXPORT_SYMBOL(cx8802_cancel_buffers);
  405. EXPORT_SYMBOL(cx8802_init_common);
  406. EXPORT_SYMBOL(cx8802_fini_common);
  407. EXPORT_SYMBOL(cx8802_suspend_common);
  408. EXPORT_SYMBOL(cx8802_resume_common);
  409. /* ----------------------------------------------------------- */
  410. /*
  411. * Local variables:
  412. * c-basic-offset: 8
  413. * End:
  414. * kate: eol "unix"; indent-width 3; remove-trailing-space on; replace-trailing-space-save on; tab-width 8; replace-tabs off; space-indent off; mixed-indent off
  415. */