Searched refs:frontend (Results 1 - 25 of 250) sorted by relevance

12345678910

/linux-master/drivers/gpu/drm/sun4i/
H A Dsun4i_frontend.c79 static void sun4i_frontend_scaler_init(struct sun4i_frontend *frontend) argument
83 if (frontend->data->has_coef_access_ctrl)
84 regmap_write_bits(frontend->regs, SUN4I_FRONTEND_FRM_CTRL_REG,
89 regmap_write(frontend->regs, SUN4I_FRONTEND_CH0_HORZCOEF0_REG(i),
91 regmap_write(frontend->regs, SUN4I_FRONTEND_CH1_HORZCOEF0_REG(i),
93 regmap_write(frontend->regs, SUN4I_FRONTEND_CH0_HORZCOEF1_REG(i),
95 regmap_write(frontend->regs, SUN4I_FRONTEND_CH1_HORZCOEF1_REG(i),
97 regmap_write(frontend->regs, SUN4I_FRONTEND_CH0_VERTCOEF_REG(i),
99 regmap_write(frontend->regs, SUN4I_FRONTEND_CH1_VERTCOEF_REG(i),
103 if (frontend
110 sun4i_frontend_init(struct sun4i_frontend *frontend) argument
116 sun4i_frontend_exit(struct sun4i_frontend *frontend) argument
156 sun4i_frontend_update_buffer(struct sun4i_frontend *frontend, struct drm_plane *plane) argument
402 sun4i_frontend_update_formats(struct sun4i_frontend *frontend, struct drm_plane *plane, uint32_t out_fmt) argument
495 sun4i_frontend_update_coord(struct sun4i_frontend *frontend, struct drm_plane *plane) argument
539 sun4i_frontend_enable(struct sun4i_frontend *frontend) argument
560 struct sun4i_frontend *frontend; local
621 struct sun4i_frontend *frontend = dev_get_drvdata(dev); local
644 struct sun4i_frontend *frontend = dev_get_drvdata(dev); local
670 struct sun4i_frontend *frontend = dev_get_drvdata(dev); local
[all...]
/linux-master/drivers/media/dvb-frontends/
H A Dmn88473.h11 #include <linux/dvb/frontend.h>
30 * DVB frontend.
H A Dsi2165.h14 #include <linux/dvb/frontend.h>
27 * frontend
H A Dtda10071.h11 #include <linux/dvb/frontend.h>
26 * @get_dvb_frontend: Get DVB frontend.
H A Dcx22700.h14 #include <linux/dvb/frontend.h>
H A Dcx22702.h19 #include <linux/dvb/frontend.h>
H A Dcx24117.h13 #include <linux/dvb/frontend.h>
H A Dlnbp22.h21 #include <linux/dvb/frontend.h>
H A Dlgs8gl5.h14 #include <linux/dvb/frontend.h>
H A Dl64781.h14 #include <linux/dvb/frontend.h>
H A Dmt312.h16 #include <linux/dvb/frontend.h>
H A Dnxt6000.h13 #include <linux/dvb/frontend.h>
H A Dves1x93.h16 #include <linux/dvb/frontend.h>
H A Dec100.h11 #include <linux/dvb/frontend.h>
H A Dmn88472.h11 #include <linux/dvb/frontend.h>
25 * @fe: pointer to a frontend pointer
26 * @get_dvb_frontend: Get DVB frontend callback.
44 * DVB frontend.
H A Drtl2830.h11 #include <linux/dvb/frontend.h>
20 * @get_dvb_frontend: Get DVB frontend.
H A Dsi2168.h11 #include <linux/dvb/frontend.h>
16 * frontend returned by driver
/linux-master/drivers/media/pci/ddbridge/
H A Dddbridge-dummy-fe.h11 #include <linux/dvb/frontend.h>
/linux-master/drivers/media/dvb-frontends/drx39xyj/
H A Ddrx39xxj.h11 #include <linux/dvb/frontend.h>
18 struct dvb_frontend frontend; member in struct:drx39xxj_state
/linux-master/drivers/media/test-drivers/vidtv/
H A Dvidtv_demod.h14 #include <linux/dvb/frontend.h>
57 * @frontend: The frontend structure allocated by the demod.
63 struct dvb_frontend frontend; member in struct:vidtv_demod_state
/linux-master/drivers/media/pci/cx88/
H A Dcx88-dvb.c172 pr_err("%s() No frontend found\n", __func__);
210 if (fe && fe->dvb.frontend && fe->dvb.frontend->ops.i2c_gate_ctrl)
211 fe->dvb.frontend->ops.i2c_gate_ctrl(fe->dvb.frontend, open);
614 /* Get the first frontend */
619 if (!fe0->dvb.frontend) {
620 pr_err("dvb frontend not attached. Can't attach xc3028\n");
631 fe = dvb_attach(xc2028_attach, fe0->dvb.frontend, &cfg);
634 dvb_frontend_detach(fe0->dvb.frontend);
[all...]
/linux-master/drivers/media/pci/saa7134/
H A Dsaa7134-dvb.c588 /* Get the first frontend */
594 fe0->dvb.frontend = dvb_attach(tda10046_attach, cdec_conf, &dev->i2c_adap);
595 if (fe0->dvb.frontend) {
597 fe0->dvb.frontend->ops.i2c_gate_ctrl = tda8290_i2c_gate_ctrl;
598 if (dvb_attach(tda827x_attach, fe0->dvb.frontend,
1220 /* FIXME: add support for multi-frontend */
1224 pr_info("%s() allocating 1 frontend\n", __func__);
1254 fe0->dvb.frontend = dvb_attach(mt352_attach, &pinnacle_300i,
1256 if (fe0->dvb.frontend) {
1257 fe0->dvb.frontend
[all...]
/linux-master/drivers/media/usb/cx231xx/
H A Dcx231xx-dvb.c51 struct dvb_frontend *frontend[CX231XX_DVB_MAX_FRONTENDS]; member in struct:cx231xx_dvb
313 if (!demux->dmx.frontend)
380 if (!dev->dvb->frontend[0]) {
381 dev_err(dev->dev, "%s/2: dvb frontend not attached. Can't attach xc5000\n",
386 fe = dvb_attach(xc5000_attach, dev->dvb->frontend[0], &cfg);
389 dvb_frontend_detach(dev->dvb->frontend[0]);
390 dev->dvb->frontend[0] = NULL;
402 if (dev->dvb && dev->dvb->frontend[0]) {
404 struct dvb_tuner_ops *dops = &dev->dvb->frontend[0]->ops.tuner_ops;
415 dops->set_analog_params(dev->dvb->frontend[
[all...]
/linux-master/drivers/media/pci/cx23885/
H A Dcx23885-dvb.c146 if (fe && fe->dvb.frontend && fe->dvb.frontend->ops.i2c_gate_ctrl)
147 fe->dvb.frontend->ops.i2c_gate_ctrl(fe->dvb.frontend, open);
631 /* call the frontend set_voltage function */
659 /* call the frontend set_voltage function */
1209 /* Get the first frontend */
1217 /* multi-frontend gate control is undefined or defaults to fe0 */
1223 /* init frontend */
1227 fe0->dvb.frontend
[all...]
/linux-master/drivers/media/usb/ttusb-dec/
H A Dttusbdecfe.h11 #include <linux/dvb/frontend.h>

Completed in 220 milliseconds

12345678910