Home
last modified time | relevance | path

Searched full:feed (Results 1 – 25 of 393) sorted by relevance

12345678910>>...16

/openbmc/linux/drivers/media/dvb-core/
H A Ddvb_demux.c90 return (f->feed.sec.crc_val = crc32_be(f->feed.sec.crc_val, src, len)); in dvb_dmx_crc32()
103 static inline int dvb_dmx_swfilter_payload(struct dvb_demux_feed *feed, in dvb_dmx_swfilter_payload() argument
117 ccok = ((feed->cc + 1) & 0x0f) == cc; in dvb_dmx_swfilter_payload()
119 set_buf_flags(feed, DMX_BUFFER_FLAG_DISCONTINUITY_DETECTED); in dvb_dmx_swfilter_payload()
121 cc, (feed->cc + 1) & 0x0f); in dvb_dmx_swfilter_payload()
123 feed->cc = cc; in dvb_dmx_swfilter_payload()
126 feed->peslen = 0xfffa; in dvb_dmx_swfilter_payload()
128 feed->peslen += count; in dvb_dmx_swfilter_payload()
130 return feed->cb.ts(&buf[p], count, NULL, 0, &feed->feed.ts, in dvb_dmx_swfilter_payload()
131 &feed->buffer_flags); in dvb_dmx_swfilter_payload()
[all …]
H A Ddmxdev.c423 struct dmx_ts_feed *feed, in dvb_dmxdev_ts_callback() argument
426 struct dmxdev_filter *dmxdevfilter = feed->priv; in dvb_dmxdev_ts_callback()
476 /* stop feed but only mark the specified filter as stopped (state set) */
479 struct dmxdev_feed *feed; in dvb_dmxdev_feed_stop() local
486 dmxdevfilter->feed.sec->stop_filtering(dmxdevfilter->feed.sec); in dvb_dmxdev_feed_stop()
489 list_for_each_entry(feed, &dmxdevfilter->feed.ts, next) in dvb_dmxdev_feed_stop()
490 feed->ts->stop_filtering(feed->ts); in dvb_dmxdev_feed_stop()
498 /* start feed associated with the specified filter */
501 struct dmxdev_feed *feed; in dvb_dmxdev_feed_start() local
508 return filter->feed.sec->start_filtering(filter->feed.sec); in dvb_dmxdev_feed_start()
[all …]
/openbmc/linux/include/media/
H A Ddvb_demux.h30 * 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 …]
H A Ddemux.h48 * 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 …]
H A Ddmxdev.h76 * struct dmxdev_feed - digital TV dmxdev feed
80 * @next: &struct list_head pointing to the next feed.
96 * @feed: a union describing a dmxdev feed.
98 * @feed.ts or @feed.sec.
99 * @feed.ts: a &struct list_head list.
101 * @feed.sec: a &struct dmx_section_feed pointer.
102 * For section feed only.
117 * feed timeouts.
133 } feed; member
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/meta/
H A Ddistro-feed-configs.bb6 DISTRO_FEED_URI ?= "http://my-distribution.example/remote-feed/"
11 for feed in ${DISTRO_FEED_ARCHS}; do
12 …echo "src/gz ${DISTRO_FEED_PREFIX}-${feed} ${DISTRO_FEED_URI}/${feed}" > ${S}/${sysconfdir}/opkg/$…
27 # confs = [ ( "${sysconfdir}/opkg/%s-feed.conf" % feed ) for feed in archs ]
32 CONFFILES:${PN} += '${@ " ".join( [ ( "${sysconfdir}/opkg/%s-feed.conf" % feed ) for feed in "all $…
/openbmc/linux/drivers/media/spi/
H A Dcxd2880-spi.c322 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 …]
/openbmc/linux/drivers/media/pci/cx23885/
H A Daltera-ci.c122 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 …]
/openbmc/phosphor-pid-control/pid/ec/
H A Dpid.hpp34 double feedFwdOffset = 0.0; // offset coeff for feed-forward term
35 double feedFwdGain = 0.0; // gain for feed-forward term
58 double feedFwdOffset = 0.0; // offset coeff for feed-forward term
59 double feedFwdGain = 0.0; // gain for feed-forward term
/openbmc/linux/drivers/video/fbdev/matrox/
H A Dmatroxfb_misc.h9 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()
/openbmc/linux/drivers/media/pci/cx18/
H A Dcx18-dvb.c230 /* 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 …]
/openbmc/linux/drivers/staging/media/av7110/
H A Dav7110.c103 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 …]
H A Dav7110_av.h12 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);
H A Dav7110_av.c75 u8 *counter, struct dvb_demux_feed *feed);
89 &dvbdmxfeed->feed.ts, NULL); in av7110_record_cb()
99 &dvbdmxfeed->feed.ts, NULL); in dvb_filter_pes2ts_cb()
565 void av7110_p2t_init(struct av7110_p2t *p, struct dvb_demux_feed *feed) in av7110_p2t_init() argument
571 if (feed) in av7110_p2t_init()
572 p->feed = feed; in av7110_p2t_init()
677 p_to_t(p->pes, (TS_SIZE - 4), pid, &p->counter, p->feed); in av7110_p2t_write()
698 p_to_t(p->pes, p->pos, pid, &p->counter, p->feed); in av7110_p2t_write()
708 p_to_t(buf + c, c2 - c, pid, &p->counter, p->feed); in av7110_p2t_write()
718 p_to_t(buf + c, l, pid, &p->counter, p->feed); in av7110_p2t_write()
[all …]
/openbmc/linux/drivers/watchdog/
H A Dts4800_wdt.c23 /* possible feed values */
40 * 0 feed for 338ms
41 * 1 feed for 2.706s
42 * 2 feed for 10.824s
169 * The feed register is write-only, so it is not possible to determine in ts4800_wdt_probe()
/openbmc/openbmc/poky/bitbake/lib/bs4/builder/
H A D_lxml.py221 def feed(self, markup): member in LXMLTreeBuilderForXML
227 # Call feed() at least once, even if the markup is empty,
232 self.parser.feed(data)
234 # Now call feed() on the rest of the data, chunk by chunk.
237 self.parser.feed(data)
376 def feed(self, markup): member in LXMLTreeBuilder
380 self.parser.feed(markup)
/openbmc/linux/drivers/media/pci/mantis/
H A Dmantis_dvb.c96 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()
/openbmc/bmcweb/redfish-core/schema/oem/openbmc/json-schema/
H A DOpenBMCManager.v1_0_0.json102 "description": "Feed forward gain coefficient for the PID.",
103 "longDescription": "Feed forward gain coefficient for the PID.",
108 "description": "Feed forward offset coefficient for the PID.",
109 "longDescription": "Feed forward offset coefficient for the PID.",
354 "description": "Feed forward gain coefficient for the PID.",
355 "longDescription": "Feed forward gain coefficient for the PID.",
360 "description": "Feed forward offset coefficient for the PID.",
361 "longDescription": "Feed forward offset coefficient for the PID.",
/openbmc/linux/drivers/gpu/drm/sun4i/
H A DKconfig42 do some alpha blending and feed graphics to TCON. If M is
74 graphics mixture and feed graphics to TCON, If M is
/openbmc/linux/drivers/net/wireless/broadcom/b43/
H A Dtables_nphy.h125 #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 */
/openbmc/u-boot/drivers/crypto/
H A Dace_sha.h122 /* Feed control - BRDMA control */
131 /* Feed control - BTDMA control */
140 /* Feed control - HRDMA control */
149 /* Feed control - PKDMA control */
155 /* Feed control - PKDMA offset */
/openbmc/openbmc/poky/meta/lib/oe/package_manager/ipk/
H A D__init__.py170 bb.note("Add %s feed with URL %s" % (feed_name, feed_uri))
176 feed. This creates individual feed configs for each arch subdir of those
178 NOTE: Development-helper feature, NOT a full-fledged feed.
185 "local-%s-feed.conf" % arch)
250 bb.note('Adding opkg feed url-%s-%d (%s)' %
255 bb.note('Adding opkg feed url-%d (%s)' %
/openbmc/bmcweb/redfish-core/schema/oem/openbmc/csdl/
H A DOpenBMCManager_v1.xml126 <Annotation Term="OData.Description" String="Feed forward gain coefficient for the PID."/>
127 … <Annotation Term="OData.LongDescription" String="Feed forward gain coefficient for the PID."/>
131 … <Annotation Term="OData.Description" String="Feed forward offset coefficient for the PID."/>
132 … <Annotation Term="OData.LongDescription" String="Feed forward offset coefficient for the PID."/>
228 <Annotation Term="OData.Description" String="Feed forward gain coefficient for the PID."/>
229 … <Annotation Term="OData.LongDescription" String="Feed forward gain coefficient for the PID."/>
233 … <Annotation Term="OData.Description" String="Feed forward offset coefficient for the PID."/>
234 … <Annotation Term="OData.LongDescription" String="Feed forward offset coefficient for the PID."/>
/openbmc/linux/drivers/media/pci/b2c2/
H A Dflexcop-pci.c116 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()
/openbmc/linux/drivers/media/common/siano/
H A Dsmsdvb-main.c554 * Only feed data to dvb demux if are there any feed listening in smsdvb_onresponse()
676 static int smsdvb_start_feed(struct dvb_demux_feed *feed) in smsdvb_start_feed() argument
679 container_of(feed->demux, struct smsdvb_client_t, demux); in smsdvb_start_feed()
683 feed->pid, feed->pid); in smsdvb_start_feed()
692 pid_msg.msg_data[0] = feed->pid; in smsdvb_start_feed()
698 static int smsdvb_stop_feed(struct dvb_demux_feed *feed) in smsdvb_stop_feed() argument
701 container_of(feed->demux, struct smsdvb_client_t, demux); in smsdvb_stop_feed()
705 feed->pid, feed->pid); in smsdvb_stop_feed()
714 pid_msg.msg_data[0] = feed->pid; in smsdvb_stop_feed()

12345678910>>...16