/Linux-v5.10/drivers/media/dvb-core/ |
D | dvb_demux.c | 100 return (f->feed.sec.crc_val = crc32_be(f->feed.sec.crc_val, src, len)); in dvb_dmx_crc32() 113 static inline int dvb_dmx_swfilter_payload(struct dvb_demux_feed *feed, in dvb_dmx_swfilter_payload() argument 127 ccok = ((feed->cc + 1) & 0x0f) == cc; in dvb_dmx_swfilter_payload() 128 feed->cc = cc; in dvb_dmx_swfilter_payload() 130 set_buf_flags(feed, DMX_BUFFER_FLAG_DISCONTINUITY_DETECTED); in dvb_dmx_swfilter_payload() 132 cc, (feed->cc + 1) & 0x0f); in dvb_dmx_swfilter_payload() 136 feed->peslen = 0xfffa; in dvb_dmx_swfilter_payload() 138 feed->peslen += count; in dvb_dmx_swfilter_payload() 140 return feed->cb.ts(&buf[p], count, NULL, 0, &feed->feed.ts, in dvb_dmx_swfilter_payload() 141 &feed->buffer_flags); in dvb_dmx_swfilter_payload() [all …]
|
D | dmxdev.c | 433 struct dmx_ts_feed *feed, in dvb_dmxdev_ts_callback() argument 436 struct dmxdev_filter *dmxdevfilter = feed->priv; in dvb_dmxdev_ts_callback() 486 /* stop feed but only mark the specified filter as stopped (state set) */ 489 struct dmxdev_feed *feed; in dvb_dmxdev_feed_stop() local 496 dmxdevfilter->feed.sec->stop_filtering(dmxdevfilter->feed.sec); in dvb_dmxdev_feed_stop() 499 list_for_each_entry(feed, &dmxdevfilter->feed.ts, next) in dvb_dmxdev_feed_stop() 500 feed->ts->stop_filtering(feed->ts); in dvb_dmxdev_feed_stop() 508 /* start feed associated with the specified filter */ 511 struct dmxdev_feed *feed; in dvb_dmxdev_feed_start() local 518 return filter->feed.sec->start_filtering(filter->feed.sec); in dvb_dmxdev_feed_start() [all …]
|
/Linux-v5.10/include/media/ |
D | dvb_demux.h | 30 * enum dvb_dmx_filter_type - type of demux feed. 32 * @DMX_TYPE_TS: feed is in TS mode. 33 * @DMX_TYPE_SEC: feed is in Section mode. 71 * @feed: &struct dvb_demux_feed pointer. 85 struct dvb_demux_feed *feed; member 97 * @feed: a union describing a digital TV feed. 98 * Depending on the feed type, it can be either 99 * @feed.ts or @feed.sec. 100 * @feed.ts: a &struct dmx_ts_feed pointer. 101 * For TS feed only. [all …]
|
D | demux.h | 48 * DMX_MAX_SECFEED_SIZE: Maximum length (in bytes) of a private section feed 81 * struct dmx_ts_feed - Structure that contains a TS feed filter 90 * A TS feed is typically mapped to a hardware PID filter on the demux chip. 92 * filtering TS packets on a particular TS feed. 98 int (*set)(struct dmx_ts_feed *feed, 103 int (*start_filtering)(struct dmx_ts_feed *feed); 104 int (*stop_filtering)(struct dmx_ts_feed *feed); 139 * struct dmx_section_feed - Structure that contains a section feed filter 148 * is in progress on this section feed. If a filter cannot 153 * on this section feed. After calling this function, [all …]
|
D | dmxdev.h | 77 * struct dmxdev_feed - digital TV dmxdev feed 81 * @next: &struct list_head pointing to the next feed. 97 * @feed: a union describing a dmxdev feed. 99 * @feed.ts or @feed.sec. 100 * @feed.ts: a &struct list_head list. 102 * @feed.sec: a &struct dmx_section_feed pointer. 103 * For section feed only. 118 * feed timeouts. 134 } feed; member
|
/Linux-v5.10/drivers/media/spi/ |
D | cxd2880-spi.c | 322 static int cxd2880_start_feed(struct dvb_demux_feed *feed) in cxd2880_start_feed() argument 329 if (!feed) { in cxd2880_start_feed() 334 demux = feed->demux; in cxd2880_start_feed() 336 pr_err("feed->demux is NULL\n"); in cxd2880_start_feed() 347 if (feed->pid == 0x2000) { in cxd2880_start_feed() 359 pr_debug("all PID feed (count = %d)\n", in cxd2880_start_feed() 369 cfgtmp.pid_config[i].pid = feed->pid; in cxd2880_start_feed() 371 feed->pid, i); in cxd2880_start_feed() 416 pr_debug("start feed (count %d)\n", dvb_spi->feed_count); in cxd2880_start_feed() 420 static int cxd2880_stop_feed(struct dvb_demux_feed *feed) in cxd2880_stop_feed() argument [all …]
|
/Linux-v5.10/drivers/media/pci/cx23885/ |
D | altera-ci.c | 122 int (*start_feed)(struct dvb_demux_feed *feed); 123 int (*stop_feed)(struct dvb_demux_feed *feed); 463 /* stored old feed controls */ in altera_hw_filt_release() 576 struct dvb_demux_feed *feed, int onoff) in altera_pid_feed_control() argument 582 altera_pid_control(pid_filt, feed->pid, onoff ? 0 : 1); in altera_pid_feed_control() 583 /* call old feed proc's */ in altera_pid_feed_control() 585 pid_filt->start_feed(feed); in altera_pid_feed_control() 587 pid_filt->stop_feed(feed); in altera_pid_feed_control() 589 if (feed->pid == 0x2000) in altera_pid_feed_control() 596 static int altera_ci_start_feed(struct dvb_demux_feed *feed, int num) in altera_ci_start_feed() argument [all …]
|
/Linux-v5.10/drivers/media/pci/cx18/ |
D | cx18-dvb.c | 230 /* Kernel DVB framework calls this when the feed needs to start. 234 static int cx18_dvb_start_feed(struct dvb_demux_feed *feed) in cx18_dvb_start_feed() argument 236 struct dvb_demux *demux = feed->demux; in cx18_dvb_start_feed() 246 CX18_DEBUG_INFO("Start feed: pid = 0x%x index = %d\n", in cx18_dvb_start_feed() 247 feed->pid, feed->index); in cx18_dvb_start_feed() 253 CX18_ERR("Failed to initialize firmware starting DVB feed\n"); in cx18_dvb_start_feed() 304 /* Kernel DVB framework calls this when the feed needs to stop. */ 305 static int cx18_dvb_stop_feed(struct dvb_demux_feed *feed) in cx18_dvb_stop_feed() argument 307 struct dvb_demux *demux = feed->demux; in cx18_dvb_stop_feed() 314 CX18_DEBUG_INFO("Stop feed: pid = 0x%x index = %d\n", in cx18_dvb_stop_feed() [all …]
|
/Linux-v5.10/drivers/video/fbdev/matrox/ |
D | matroxfb_misc.h | 9 unsigned int* in, unsigned int* feed, unsigned int* post); 12 unsigned int *in, unsigned int *feed, in PLL_calcclock() argument 15 return matroxfb_PLL_calcclock(&minfo->features.pll, freq, fmax, in, feed, post); in PLL_calcclock()
|
/Linux-v5.10/drivers/media/pci/ttpci/ |
D | av7110.c | 103 static int budget_start_feed(struct dvb_demux_feed *feed); 104 static int budget_stop_feed(struct dvb_demux_feed *feed); 286 if (!dvbdmxfilter->feed->demux->dmx.frontend) in DvbDmxFilterCallback() 288 if (dvbdmxfilter->feed->demux->dmx.frontend->source == DMX_MEMORY_FE) in DvbDmxFilterCallback() 307 return dvbdmxfilter->feed->cb.sec(buffer1, buffer1_len, in DvbDmxFilterCallback() 311 if (!(dvbdmxfilter->feed->ts_type & TS_PACKET)) in DvbDmxFilterCallback() 313 if (dvbdmxfilter->feed->ts_type & TS_PAYLOAD_ONLY) in DvbDmxFilterCallback() 314 return dvbdmxfilter->feed->cb.ts(buffer1, buffer1_len, in DvbDmxFilterCallback() 316 &dvbdmxfilter->feed->feed.ts, in DvbDmxFilterCallback() 320 dvbdmxfilter->feed->pid, in DvbDmxFilterCallback() [all …]
|
D | av7110_av.h | 12 extern int av7110_write_to_decoder(struct dvb_demux_feed *feed, const u8 *buf, size_t len); 23 extern void av7110_p2t_init(struct av7110_p2t *p, struct dvb_demux_feed *feed);
|
D | av7110_av.c | 74 u8 *counter, struct dvb_demux_feed *feed); 88 &dvbdmxfeed->feed.ts, NULL); in av7110_record_cb() 98 &dvbdmxfeed->feed.ts, NULL); in dvb_filter_pes2ts_cb() 564 void av7110_p2t_init(struct av7110_p2t *p, struct dvb_demux_feed *feed) in av7110_p2t_init() argument 570 if (feed) in av7110_p2t_init() 571 p->feed = feed; in av7110_p2t_init() 676 p_to_t(p->pes, (TS_SIZE - 4), pid, &p->counter, p->feed); in av7110_p2t_write() 697 p_to_t(p->pes, p->pos, pid, &p->counter, p->feed); in av7110_p2t_write() 707 p_to_t(buf + c, c2 - c, pid, &p->counter, p->feed); in av7110_p2t_write() 717 p_to_t(buf + c, l, pid, &p->counter, p->feed); in av7110_p2t_write() [all …]
|
/Linux-v5.10/drivers/watchdog/ |
D | ts4800_wdt.c | 25 /* possible feed values */ 42 * 0 feed for 338ms 43 * 1 feed for 2.706s 44 * 2 feed for 10.824s 168 * The feed register is write-only, so it is not possible to determine in ts4800_wdt_probe()
|
/Linux-v5.10/drivers/media/pci/mantis/ |
D | mantis_dvb.c | 96 dprintk(MANTIS_DEBUG, 1, "Mantis DVB Start feed"); in mantis_dvb_start_feed() 103 dprintk(MANTIS_DEBUG, 1, "mantis start feed, feeds=%d", mantis->feeds); in mantis_dvb_start_feed() 106 dprintk(MANTIS_DEBUG, 1, "mantis start feed & dma"); in mantis_dvb_start_feed() 119 dprintk(MANTIS_DEBUG, 1, "Mantis DVB Stop feed"); in mantis_dvb_stop_feed() 127 dprintk(MANTIS_DEBUG, 1, "mantis stop feed and dma"); in mantis_dvb_stop_feed()
|
/Linux-v5.10/drivers/media/usb/tm6000/ |
D | tm6000-dvb.c | 179 static int tm6000_start_feed(struct dvb_demux_feed *feed) in tm6000_start_feed() argument 181 struct dvb_demux *demux = feed->demux; in tm6000_start_feed() 184 printk(KERN_INFO "tm6000: got start feed request %s\n", __func__); in tm6000_start_feed() 198 static int tm6000_stop_feed(struct dvb_demux_feed *feed) in tm6000_stop_feed() argument 200 struct dvb_demux *demux = feed->demux; in tm6000_stop_feed() 204 printk(KERN_INFO "tm6000: got stop feed request %s\n", __func__); in tm6000_stop_feed()
|
/Linux-v5.10/drivers/gpu/drm/sun4i/ |
D | Kconfig | 41 do some alpha blending and feed graphics to TCON. If M is 70 graphics mixture and feed graphics to TCON, If M is
|
/Linux-v5.10/drivers/net/wireless/broadcom/b43/ |
D | tables_nphy.h | 125 #define B43_NTAB_C0_LOFEEDTH B43_NTAB16(0x1A, 0x1C0) /* Local Oscillator Feed Through Lookup Table… 135 #define B43_NTAB_C1_LOFEEDTH B43_NTAB16(0x1B, 0x1C0) /* Local Oscillator Feed Through Lookup Table… 160 #define B43_NTAB_C0_LOFEEDTH_R3 B43_NTAB16(26, 448) /* Local Oscillator Feed Through lookup 0 */ 166 #define B43_NTAB_C1_LOFEEDTH_R3 B43_NTAB16(27, 448) /* Local Oscillator Feed Through lookup 1 */
|
/Linux-v5.10/net/sched/ |
D | sch_htb.c | 3 * net/sched/sch_htb.c Hierarchical token bucket, feed tree version 79 struct rb_root feed; member 83 * parent's feed then we lost ptr value and start from the 137 struct rb_node node[TC_HTB_NUMPRIO]; /* node for self or feed tree */ 394 * htb_activate_prios - creates active classe's feed chain 411 if (p->inner.clprio[prio].feed.rb_node) in htb_activate_prios() 412 /* parent already has its feed in use so that in htb_activate_prios() 417 htb_add_to_id_tree(&p->inner.clprio[prio].feed, cl, prio); in htb_activate_prios() 429 * htb_deactivate_prios - remove class from feed chain 432 * nothing if cl->prio_activity == 0. Class is removed from all feed [all …]
|
/Linux-v5.10/drivers/media/common/siano/ |
D | smsdvb-main.c | 518 * Only feed data to dvb demux if are there any feed listening in smsdvb_onresponse() 640 static int smsdvb_start_feed(struct dvb_demux_feed *feed) in smsdvb_start_feed() argument 643 container_of(feed->demux, struct smsdvb_client_t, demux); in smsdvb_start_feed() 647 feed->pid, feed->pid); in smsdvb_start_feed() 656 pid_msg.msg_data[0] = feed->pid; in smsdvb_start_feed() 662 static int smsdvb_stop_feed(struct dvb_demux_feed *feed) in smsdvb_stop_feed() argument 665 container_of(feed->demux, struct smsdvb_client_t, demux); in smsdvb_stop_feed() 669 feed->pid, feed->pid); in smsdvb_stop_feed() 678 pid_msg.msg_data[0] = feed->pid; in smsdvb_stop_feed()
|
/Linux-v5.10/drivers/media/pci/b2c2/ |
D | flexcop-pci.c | 116 struct dvb_demux_feed *feed; in flexcop_pci_irq_check_work() local 120 list_for_each_entry(feed, &fc->demux.feed_list, in flexcop_pci_irq_check_work() 122 flexcop_pid_feed_control(fc, feed, 0); in flexcop_pci_irq_check_work() 125 list_for_each_entry(feed, &fc->demux.feed_list, in flexcop_pci_irq_check_work() 127 flexcop_pid_feed_control(fc, feed, 1); in flexcop_pci_irq_check_work()
|
/Linux-v5.10/drivers/media/common/videobuf2/ |
D | videobuf2-dvb.c | 35 static int vb2_dvb_start_feed(struct dvb_demux_feed *feed) in vb2_dvb_start_feed() argument 37 struct dvb_demux *demux = feed->demux; in vb2_dvb_start_feed() 58 static int vb2_dvb_stop_feed(struct dvb_demux_feed *feed) in vb2_dvb_stop_feed() argument 60 struct dvb_demux *demux = feed->demux; in vb2_dvb_stop_feed()
|
/Linux-v5.10/drivers/media/firewire/ |
D | firedtv-dvb.c | 60 dev_err(fdtv->device, "can't start dmx feed: invalid type %u\n", in fdtv_start_feed() 79 "can't start dmx feed: invalid pes type %u\n", in fdtv_start_feed() 89 dev_err(fdtv->device, "can't start dmx feed: busy\n"); in fdtv_start_feed()
|
/Linux-v5.10/drivers/media/common/b2c2/ |
D | flexcop-hw-filter.c | 183 fc->feedcount += onoff ? 1 : -1; /* the number of PIDs/Feed currently requested */ in flexcop_pid_feed_control() 188 * - pid_filtering is not enabled and it is the first or last feed requested in flexcop_pid_feed_control() 208 /* if it was the first or last feed request change the stream-status */ in flexcop_pid_feed_control()
|
/Linux-v5.10/drivers/media/usb/dvb-usb/ |
D | dvb-usb-dvb.c | 29 /* stop feed before setting a new pid if there will be no pid anymore */ in dvb_usb_ctrl_feed() 55 /* start the feed if this was the first feed and there is still a feed in dvb_usb_ctrl_feed()
|
/Linux-v5.10/Documentation/process/ |
D | applying-patches.rst | 67 How do I feed a patch/diff file to ``patch``? 73 In all the examples below I feed the file (in uncompressed form) to patch 88 uncompress it before applying it, then you can feed it to patch like this 101 Which will leave you with a plain text patch-x.y.z file that you can feed to 195 feed patch a compressed patch file without uncompressing it first, or the patch 220 step. The -z flag to interdiff will even let you feed it patches in gzip or
|