cx88-mpeg.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503
  1. /*
  2. * $Id: cx88-mpeg.c,v 1.30 2005/07/05 19:44:40 mkrufky Exp $
  3. *
  4. * Support for the mpeg transport stream transfers
  5. * PCI function #2 of the cx2388x.
  6. *
  7. * (c) 2004 Jelle Foks <jelle@foks.8m.com>
  8. * (c) 2004 Chris Pascoe <c.pascoe@itee.uq.edu.au>
  9. * (c) 2004 Gerd Knorr <kraxel@bytesex.org>
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2 of the License, or
  14. * (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. */
  25. #include <linux/module.h>
  26. #include <linux/moduleparam.h>
  27. #include <linux/init.h>
  28. #include <linux/device.h>
  29. #include <linux/interrupt.h>
  30. #include <asm/delay.h>
  31. #include "cx88.h"
  32. /* ------------------------------------------------------------------ */
  33. MODULE_DESCRIPTION("mpeg driver for cx2388x based TV cards");
  34. MODULE_AUTHOR("Jelle Foks <jelle@foks.8m.com>");
  35. MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
  36. MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
  37. MODULE_LICENSE("GPL");
  38. static unsigned int debug = 0;
  39. module_param(debug,int,0644);
  40. MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
  41. #define dprintk(level,fmt, arg...) if (debug >= level) \
  42. printk(KERN_DEBUG "%s/2: " fmt, dev->core->name , ## arg)
  43. /* ------------------------------------------------------------------ */
  44. static int cx8802_start_dma(struct cx8802_dev *dev,
  45. struct cx88_dmaqueue *q,
  46. struct cx88_buffer *buf)
  47. {
  48. struct cx88_core *core = dev->core;
  49. dprintk(0, "cx8802_start_dma %d\n", buf->vb.width);
  50. /* setup fifo + format */
  51. cx88_sram_channel_setup(core, &cx88_sram_channels[SRAM_CH28],
  52. dev->ts_packet_size, buf->risc.dma);
  53. /* write TS length to chip */
  54. cx_write(MO_TS_LNGTH, buf->vb.width);
  55. #if 1
  56. /* FIXME: this needs a review.
  57. * also: move to cx88-blackbird + cx88-dvb source files? */
  58. if (cx88_boards[core->board].dvb) {
  59. /* negedge driven & software reset */
  60. cx_write(TS_GEN_CNTRL, 0x0040 | dev->ts_gen_cntrl);
  61. udelay(100);
  62. cx_write(MO_PINMUX_IO, 0x00);
  63. cx_write(TS_HW_SOP_CNTRL,0x47<<16|188<<4|0x01);
  64. if ((core->board == CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q) ||
  65. (core->board == CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T)) {
  66. cx_write(TS_SOP_STAT, 0<<16 | 0<<14 | 1<<13 | 0<<12);
  67. } else {
  68. cx_write(TS_SOP_STAT,0x00);
  69. }
  70. cx_write(TS_GEN_CNTRL, dev->ts_gen_cntrl);
  71. udelay(100);
  72. }
  73. if (cx88_boards[core->board].blackbird) {
  74. cx_write(MO_PINMUX_IO, 0x88); /* enable MPEG parallel IO */
  75. // cx_write(TS_F2_CMD_STAT_MM, 0x2900106); /* F2_CMD_STAT_MM defaults + master + memory space */
  76. cx_write(TS_GEN_CNTRL, 0x46); /* punctured clock TS & posedge driven & software reset */
  77. udelay(100);
  78. cx_write(TS_HW_SOP_CNTRL, 0x408); /* mpeg start byte */
  79. //cx_write(TS_HW_SOP_CNTRL, 0x2F0BC0); /* mpeg start byte ts: 0x2F0BC0 ? */
  80. cx_write(TS_VALERR_CNTRL, 0x2000);
  81. cx_write(TS_GEN_CNTRL, 0x06); /* punctured clock TS & posedge driven */
  82. udelay(100);
  83. }
  84. #endif
  85. /* reset counter */
  86. cx_write(MO_TS_GPCNTRL, GP_COUNT_CONTROL_RESET);
  87. q->count = 1;
  88. /* enable irqs */
  89. dprintk( 0, "setting the interrupt mask\n" );
  90. cx_set(MO_PCI_INTMSK, core->pci_irqmask | 0x04);
  91. cx_set(MO_TS_INTMSK, 0x1f0011);
  92. //cx_write(MO_TS_INTMSK, 0x0f0011);
  93. /* start dma */
  94. cx_set(MO_DEV_CNTRL2, (1<<5));
  95. cx_set(MO_TS_DMACNTRL, 0x11);
  96. return 0;
  97. }
  98. static int cx8802_stop_dma(struct cx8802_dev *dev)
  99. {
  100. struct cx88_core *core = dev->core;
  101. dprintk( 0, "cx8802_stop_dma\n" );
  102. /* stop dma */
  103. cx_clear(MO_TS_DMACNTRL, 0x11);
  104. /* disable irqs */
  105. cx_clear(MO_PCI_INTMSK, 0x000004);
  106. cx_clear(MO_TS_INTMSK, 0x1f0011);
  107. /* Reset the controller */
  108. cx_write(TS_GEN_CNTRL, 0xcd);
  109. return 0;
  110. }
  111. static int cx8802_restart_queue(struct cx8802_dev *dev,
  112. struct cx88_dmaqueue *q)
  113. {
  114. struct cx88_buffer *buf;
  115. struct list_head *item;
  116. dprintk( 0, "cx8802_restart_queue\n" );
  117. if (list_empty(&q->active))
  118. {
  119. dprintk( 0, "cx8802_restart_queue: queue is empty\n" );
  120. return 0;
  121. }
  122. buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
  123. dprintk(2,"restart_queue [%p/%d]: restart dma\n",
  124. buf, buf->vb.i);
  125. cx8802_start_dma(dev, q, buf);
  126. list_for_each(item,&q->active) {
  127. buf = list_entry(item, struct cx88_buffer, vb.queue);
  128. buf->count = q->count++;
  129. }
  130. mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
  131. return 0;
  132. }
  133. /* ------------------------------------------------------------------ */
  134. int cx8802_buf_prepare(struct cx8802_dev *dev, struct cx88_buffer *buf)
  135. {
  136. int size = dev->ts_packet_size * dev->ts_packet_count;
  137. int rc;
  138. dprintk(1, "%s: %p\n", __FUNCTION__, buf);
  139. if (0 != buf->vb.baddr && buf->vb.bsize < size)
  140. return -EINVAL;
  141. if (STATE_NEEDS_INIT == buf->vb.state) {
  142. buf->vb.width = dev->ts_packet_size;
  143. buf->vb.height = dev->ts_packet_count;
  144. buf->vb.size = size;
  145. buf->vb.field = V4L2_FIELD_TOP;
  146. if (0 != (rc = videobuf_iolock(dev->pci,&buf->vb,NULL)))
  147. goto fail;
  148. cx88_risc_databuffer(dev->pci, &buf->risc,
  149. buf->vb.dma.sglist,
  150. buf->vb.width, buf->vb.height);
  151. }
  152. buf->vb.state = STATE_PREPARED;
  153. return 0;
  154. fail:
  155. cx88_free_buffer(dev->pci,buf);
  156. return rc;
  157. }
  158. void cx8802_buf_queue(struct cx8802_dev *dev, struct cx88_buffer *buf)
  159. {
  160. struct cx88_buffer *prev;
  161. struct cx88_dmaqueue *q = &dev->mpegq;
  162. dprintk( 1, "cx8802_buf_queue\n" );
  163. /* add jump to stopper */
  164. buf->risc.jmp[0] = cpu_to_le32(RISC_JUMP | RISC_IRQ1 | RISC_CNT_INC);
  165. buf->risc.jmp[1] = cpu_to_le32(q->stopper.dma);
  166. if (list_empty(&q->active)) {
  167. dprintk( 0, "queue is empty - first active\n" );
  168. list_add_tail(&buf->vb.queue,&q->active);
  169. cx8802_start_dma(dev, q, buf);
  170. buf->vb.state = STATE_ACTIVE;
  171. buf->count = q->count++;
  172. mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
  173. dprintk(0,"[%p/%d] %s - first active\n",
  174. buf, buf->vb.i, __FUNCTION__);
  175. //udelay(100);
  176. } else {
  177. dprintk( 1, "queue is not empty - append to active\n" );
  178. prev = list_entry(q->active.prev, struct cx88_buffer, vb.queue);
  179. list_add_tail(&buf->vb.queue,&q->active);
  180. buf->vb.state = STATE_ACTIVE;
  181. buf->count = q->count++;
  182. prev->risc.jmp[1] = cpu_to_le32(buf->risc.dma);
  183. dprintk( 1, "[%p/%d] %s - append to active\n",
  184. buf, buf->vb.i, __FUNCTION__);
  185. //udelay(100);
  186. }
  187. }
  188. /* ----------------------------------------------------------- */
  189. static void do_cancel_buffers(struct cx8802_dev *dev, char *reason, int restart)
  190. {
  191. struct cx88_dmaqueue *q = &dev->mpegq;
  192. struct cx88_buffer *buf;
  193. unsigned long flags;
  194. spin_lock_irqsave(&dev->slock,flags);
  195. while (!list_empty(&q->active)) {
  196. buf = list_entry(q->active.next, struct cx88_buffer, vb.queue);
  197. list_del(&buf->vb.queue);
  198. buf->vb.state = STATE_ERROR;
  199. wake_up(&buf->vb.done);
  200. dprintk(1,"[%p/%d] %s - dma=0x%08lx\n",
  201. buf, buf->vb.i, reason, (unsigned long)buf->risc.dma);
  202. }
  203. if (restart)
  204. {
  205. dprintk(0, "restarting queue\n" );
  206. cx8802_restart_queue(dev,q);
  207. }
  208. spin_unlock_irqrestore(&dev->slock,flags);
  209. }
  210. void cx8802_cancel_buffers(struct cx8802_dev *dev)
  211. {
  212. struct cx88_dmaqueue *q = &dev->mpegq;
  213. dprintk( 1, "cx8802_cancel_buffers" );
  214. del_timer_sync(&q->timeout);
  215. cx8802_stop_dma(dev);
  216. do_cancel_buffers(dev,"cancel",0);
  217. }
  218. static void cx8802_timeout(unsigned long data)
  219. {
  220. struct cx8802_dev *dev = (struct cx8802_dev*)data;
  221. dprintk(0, "%s\n",__FUNCTION__);
  222. if (debug)
  223. cx88_sram_channel_dump(dev->core, &cx88_sram_channels[SRAM_CH28]);
  224. cx8802_stop_dma(dev);
  225. do_cancel_buffers(dev,"timeout",1);
  226. }
  227. static void cx8802_mpeg_irq(struct cx8802_dev *dev)
  228. {
  229. struct cx88_core *core = dev->core;
  230. u32 status, mask, count;
  231. dprintk( 1, "cx8802_mpeg_irq\n" );
  232. status = cx_read(MO_TS_INTSTAT);
  233. mask = cx_read(MO_TS_INTMSK);
  234. if (0 == (status & mask))
  235. return;
  236. cx_write(MO_TS_INTSTAT, status);
  237. #if 0
  238. cx88_print_irqbits(core->name, "irq mpeg ",
  239. cx88_mpeg_irqs, status, mask);
  240. #endif
  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. init_MUTEX(&dev->lock);
  325. spin_lock_init(&dev->slock);
  326. /* init dma queue */
  327. INIT_LIST_HEAD(&dev->mpegq.active);
  328. INIT_LIST_HEAD(&dev->mpegq.queued);
  329. dev->mpegq.timeout.function = cx8802_timeout;
  330. dev->mpegq.timeout.data = (unsigned long)dev;
  331. init_timer(&dev->mpegq.timeout);
  332. cx88_risc_stopper(dev->pci,&dev->mpegq.stopper,
  333. MO_TS_DMACNTRL,0x11,0x00);
  334. /* get irq */
  335. err = request_irq(dev->pci->irq, cx8802_irq,
  336. SA_SHIRQ | SA_INTERRUPT, dev->core->name, dev);
  337. if (err < 0) {
  338. printk(KERN_ERR "%s: can't get IRQ %d\n",
  339. dev->core->name, dev->pci->irq);
  340. return err;
  341. }
  342. cx_set(MO_PCI_INTMSK, core->pci_irqmask);
  343. /* everything worked */
  344. pci_set_drvdata(dev->pci,dev);
  345. return 0;
  346. }
  347. void cx8802_fini_common(struct cx8802_dev *dev)
  348. {
  349. dprintk( 2, "cx8802_fini_common\n" );
  350. cx8802_stop_dma(dev);
  351. pci_disable_device(dev->pci);
  352. /* unregister stuff */
  353. free_irq(dev->pci->irq, dev);
  354. pci_set_drvdata(dev->pci, NULL);
  355. /* free memory */
  356. btcx_riscmem_free(dev->pci,&dev->mpegq.stopper);
  357. }
  358. /* ----------------------------------------------------------- */
  359. int cx8802_suspend_common(struct pci_dev *pci_dev, pm_message_t state)
  360. {
  361. struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
  362. struct cx88_core *core = dev->core;
  363. /* stop mpeg dma */
  364. spin_lock(&dev->slock);
  365. if (!list_empty(&dev->mpegq.active)) {
  366. dprintk( 2, "suspend\n" );
  367. printk("%s: suspend mpeg\n", core->name);
  368. cx8802_stop_dma(dev);
  369. del_timer(&dev->mpegq.timeout);
  370. }
  371. spin_unlock(&dev->slock);
  372. #if 1
  373. /* FIXME -- shutdown device */
  374. cx88_shutdown(dev->core);
  375. #endif
  376. pci_save_state(pci_dev);
  377. if (0 != pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state))) {
  378. pci_disable_device(pci_dev);
  379. dev->state.disabled = 1;
  380. }
  381. return 0;
  382. }
  383. int cx8802_resume_common(struct pci_dev *pci_dev)
  384. {
  385. struct cx8802_dev *dev = pci_get_drvdata(pci_dev);
  386. struct cx88_core *core = dev->core;
  387. if (dev->state.disabled) {
  388. pci_enable_device(pci_dev);
  389. dev->state.disabled = 0;
  390. }
  391. pci_set_power_state(pci_dev, PCI_D0);
  392. pci_restore_state(pci_dev);
  393. #if 1
  394. /* FIXME: re-initialize hardware */
  395. cx88_reset(dev->core);
  396. #endif
  397. /* restart video+vbi capture */
  398. spin_lock(&dev->slock);
  399. if (!list_empty(&dev->mpegq.active)) {
  400. printk("%s: resume mpeg\n", core->name);
  401. cx8802_restart_queue(dev,&dev->mpegq);
  402. }
  403. spin_unlock(&dev->slock);
  404. return 0;
  405. }
  406. /* ----------------------------------------------------------- */
  407. EXPORT_SYMBOL(cx8802_buf_prepare);
  408. EXPORT_SYMBOL(cx8802_buf_queue);
  409. EXPORT_SYMBOL(cx8802_cancel_buffers);
  410. EXPORT_SYMBOL(cx8802_init_common);
  411. EXPORT_SYMBOL(cx8802_fini_common);
  412. EXPORT_SYMBOL(cx8802_suspend_common);
  413. EXPORT_SYMBOL(cx8802_resume_common);
  414. /* ----------------------------------------------------------- */
  415. /*
  416. * Local variables:
  417. * c-basic-offset: 8
  418. * End:
  419. * 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
  420. */