├── .gitignore ├── Kbuild ├── Makefile ├── README.md ├── dvb-frontends ├── MN_DMD_API.h ├── MXL603_API.h ├── cx24117.c ├── cx24117.h ├── cxd2820r.h ├── cxd2820r_c.c ├── cxd2820r_core.c ├── cxd2820r_priv.h ├── cxd2820r_t.c ├── cxd2820r_t2.c ├── gx1133.c ├── gx1133.h ├── gx1133_priv.h ├── gx1503.c ├── gx1503.h ├── gx1503_priv.h ├── isl6422.c ├── isl6422.h ├── isl6423.c ├── isl6423.h ├── m88rs6060.c ├── m88rs6060.h ├── m88rs6060_priv.h ├── mb86a16.c ├── mb86a16.h ├── mb86a16_priv.h ├── mn88436.c ├── mn88436.h ├── mtv23x.c ├── mtv23x.h ├── mtv23x_priv.h ├── mxl58x.c ├── mxl58x.h ├── mxl58x_defs.h ├── mxl58x_regs.h ├── si2168.c ├── si2168.h ├── si2168_priv.h ├── si2183.c ├── si2183.h ├── stb6100.c ├── stb6100.h ├── stb6100_cfg.h ├── stb6100_proc.h ├── stid135 │ ├── Kconfig │ ├── LICENCE.txt │ ├── Makefile │ ├── afe_ctrl_reg_init.h │ ├── c8codew_addr_map.h │ ├── c8codew_custom.h │ ├── c8codew_dvbs2fec_reg_init.h │ ├── c8codew_path_ctrl_gen_reg_init.h │ ├── c8codew_path_ctrl_reg_init.h │ ├── c8codew_rfmux_reg_init.h │ ├── c8codew_top_ctrl_reg_init.h │ ├── c8irq_merger_top_reg_init.h │ ├── c8sectp_fe_input_block_reg_init.h │ ├── c8sectp_fe_tag_counter_reg_init.h │ ├── c8sectp_fe_tsdma_top_reg_init.h │ ├── c8sectp_oxford_fe_top_reg_init.h │ ├── c9ths_glue_top_reg_init.h │ ├── chip.c │ ├── chip.h │ ├── dvbsx_agcrf_reg_init.h │ ├── dvbsx_demod_reg_init.h │ ├── dvbsx_diseqc_reg_init.h │ ├── dvbsx_diseqctst_reg_init.h │ ├── dvbsx_fecspy_reg_init.h │ ├── dvbsx_fsk_reg_init.h │ ├── dvbsx_hware_gen_reg_init.h │ ├── dvbsx_hware_reg_init.h │ ├── dvbsx_lnbctrl_reg_init.h │ ├── dvbsx_pktdelin_reg_init.h │ ├── dvbsx_superfec_reg_init.h │ ├── dvbsx_viterbi_reg_init.h │ ├── fesat_commlla_str.h │ ├── fesat_pro_advance.h │ ├── gen_csts.h │ ├── gen_macros.h │ ├── gen_spcar.h │ ├── gen_types.h │ ├── globaldefs.h │ ├── i2c.h │ ├── north_sysconf_reg_init.h │ ├── oxford_anafe_func.c │ ├── oxford_anafe_func.h │ ├── oxford_anafe_init.h │ ├── oxford_flexclkgen_a_reg_spirit_reg_init.h │ ├── pio_reg_v1_4_reg_init.h │ ├── piomux_north_sysconf_reg_init.h │ ├── piomux_south_sysconf_reg_init.h │ ├── pwm_reg_reg_init.h │ ├── south_sysconf_reg_init.h │ ├── stddefs.h │ ├── stfe_utilities.c │ ├── stfe_utilities.h │ ├── stid135-fe.c │ ├── stid135.h │ ├── stid135_addr_map.h │ ├── stid135_custom.h │ ├── stid135_drv.c │ ├── stid135_drv.h │ ├── stid135_init.c │ ├── stid135_init.h │ └── stid135_initLLA_cut2.h ├── stv090x.c ├── stv090x.h ├── stv090x_priv.h ├── stv090x_reg.h ├── stv091x.c ├── stv091x.h ├── stv091x_regs.h ├── stv6110x.c ├── stv6110x.h ├── stv6110x_priv.h ├── stv6110x_reg.h ├── tas2101.c ├── tas2101.h ├── tas2101_priv.h ├── tas2971.c ├── tas2971.h ├── tas2971_priv.h ├── tda1004x.c ├── tda1004x.h ├── zl10353.c ├── zl10353.h └── zl10353_priv.h ├── saa716x ├── Kconfig ├── Makefile ├── saa716x_adap.c ├── saa716x_adap.h ├── saa716x_aip.c ├── saa716x_aip.h ├── saa716x_aip_reg.h ├── saa716x_boot.c ├── saa716x_boot.h ├── saa716x_budget.c ├── saa716x_budget.h ├── saa716x_cgu.c ├── saa716x_cgu.h ├── saa716x_cgu_reg.h ├── saa716x_dcs_reg.h ├── saa716x_dma.c ├── saa716x_dma.h ├── saa716x_dma_reg.h ├── saa716x_ff.h ├── saa716x_ff_cmd.c ├── saa716x_ff_cmd.h ├── saa716x_ff_ir.c ├── saa716x_ff_main.c ├── saa716x_fgpi.c ├── saa716x_fgpi.h ├── saa716x_fgpi_reg.h ├── saa716x_gpio.c ├── saa716x_gpio.h ├── saa716x_gpio_reg.h ├── saa716x_greg.c ├── saa716x_greg.h ├── saa716x_greg_reg.h ├── saa716x_hybrid.c ├── saa716x_hybrid.h ├── saa716x_i2c.c ├── saa716x_i2c.h ├── saa716x_i2c_reg.h ├── saa716x_mod.h ├── saa716x_msi.c ├── saa716x_msi.h ├── saa716x_msi_reg.h ├── saa716x_pci.c ├── saa716x_phi.c ├── saa716x_phi.h ├── saa716x_phi_reg.h ├── saa716x_priv.h ├── saa716x_rom.c ├── saa716x_rom.h ├── saa716x_spi.c ├── saa716x_spi.h ├── saa716x_spi_reg.h ├── saa716x_vip.c ├── saa716x_vip.h ├── saa716x_vip_reg.h ├── tbs-ci.c ├── tbs-ci.h ├── tbsci-i2c.c └── tbsci-i2c.h ├── tbsecp3 ├── Kconfig ├── Makefile ├── tbsecp3-asi.c ├── tbsecp3-ca.c ├── tbsecp3-cards.c ├── tbsecp3-core.c ├── tbsecp3-dma.c ├── tbsecp3-dvb.c ├── tbsecp3-i2c.c ├── tbsecp3-regs.h └── tbsecp3.h └── tuners ├── av201x.c ├── av201x.h ├── av201x_priv.h ├── mxl603.c ├── mxl603.h ├── mxl603_priv.h ├── rda5816.c ├── rda5816.h ├── si2157.c ├── si2157.h ├── si2157_priv.h ├── stv6120.c ├── stv6120.h ├── tda18212.c ├── tda18212.h ├── tda18271-common.c ├── tda18271-fe.c ├── tda18271-maps.c ├── tda18271-priv.h ├── tda18271.h ├── tda827x.c ├── tda827x.h ├── tda8290.c ├── tda8290.h └── tuner-i2c.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/Kbuild -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/README.md -------------------------------------------------------------------------------- /dvb-frontends/MN_DMD_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/MN_DMD_API.h -------------------------------------------------------------------------------- /dvb-frontends/MXL603_API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/MXL603_API.h -------------------------------------------------------------------------------- /dvb-frontends/cx24117.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cx24117.c -------------------------------------------------------------------------------- /dvb-frontends/cx24117.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cx24117.h -------------------------------------------------------------------------------- /dvb-frontends/cxd2820r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cxd2820r.h -------------------------------------------------------------------------------- /dvb-frontends/cxd2820r_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cxd2820r_c.c -------------------------------------------------------------------------------- /dvb-frontends/cxd2820r_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cxd2820r_core.c -------------------------------------------------------------------------------- /dvb-frontends/cxd2820r_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cxd2820r_priv.h -------------------------------------------------------------------------------- /dvb-frontends/cxd2820r_t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cxd2820r_t.c -------------------------------------------------------------------------------- /dvb-frontends/cxd2820r_t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/cxd2820r_t2.c -------------------------------------------------------------------------------- /dvb-frontends/gx1133.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/gx1133.c -------------------------------------------------------------------------------- /dvb-frontends/gx1133.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/gx1133.h -------------------------------------------------------------------------------- /dvb-frontends/gx1133_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/gx1133_priv.h -------------------------------------------------------------------------------- /dvb-frontends/gx1503.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/gx1503.c -------------------------------------------------------------------------------- /dvb-frontends/gx1503.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/gx1503.h -------------------------------------------------------------------------------- /dvb-frontends/gx1503_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/gx1503_priv.h -------------------------------------------------------------------------------- /dvb-frontends/isl6422.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/isl6422.c -------------------------------------------------------------------------------- /dvb-frontends/isl6422.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/isl6422.h -------------------------------------------------------------------------------- /dvb-frontends/isl6423.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/isl6423.c -------------------------------------------------------------------------------- /dvb-frontends/isl6423.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/isl6423.h -------------------------------------------------------------------------------- /dvb-frontends/m88rs6060.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/m88rs6060.c -------------------------------------------------------------------------------- /dvb-frontends/m88rs6060.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/m88rs6060.h -------------------------------------------------------------------------------- /dvb-frontends/m88rs6060_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/m88rs6060_priv.h -------------------------------------------------------------------------------- /dvb-frontends/mb86a16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mb86a16.c -------------------------------------------------------------------------------- /dvb-frontends/mb86a16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mb86a16.h -------------------------------------------------------------------------------- /dvb-frontends/mb86a16_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mb86a16_priv.h -------------------------------------------------------------------------------- /dvb-frontends/mn88436.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mn88436.c -------------------------------------------------------------------------------- /dvb-frontends/mn88436.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mn88436.h -------------------------------------------------------------------------------- /dvb-frontends/mtv23x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mtv23x.c -------------------------------------------------------------------------------- /dvb-frontends/mtv23x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mtv23x.h -------------------------------------------------------------------------------- /dvb-frontends/mtv23x_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mtv23x_priv.h -------------------------------------------------------------------------------- /dvb-frontends/mxl58x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mxl58x.c -------------------------------------------------------------------------------- /dvb-frontends/mxl58x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mxl58x.h -------------------------------------------------------------------------------- /dvb-frontends/mxl58x_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mxl58x_defs.h -------------------------------------------------------------------------------- /dvb-frontends/mxl58x_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/mxl58x_regs.h -------------------------------------------------------------------------------- /dvb-frontends/si2168.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/si2168.c -------------------------------------------------------------------------------- /dvb-frontends/si2168.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/si2168.h -------------------------------------------------------------------------------- /dvb-frontends/si2168_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/si2168_priv.h -------------------------------------------------------------------------------- /dvb-frontends/si2183.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/si2183.c -------------------------------------------------------------------------------- /dvb-frontends/si2183.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/si2183.h -------------------------------------------------------------------------------- /dvb-frontends/stb6100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stb6100.c -------------------------------------------------------------------------------- /dvb-frontends/stb6100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stb6100.h -------------------------------------------------------------------------------- /dvb-frontends/stb6100_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stb6100_cfg.h -------------------------------------------------------------------------------- /dvb-frontends/stb6100_proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stb6100_proc.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/Kconfig -------------------------------------------------------------------------------- /dvb-frontends/stid135/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/LICENCE.txt -------------------------------------------------------------------------------- /dvb-frontends/stid135/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/Makefile -------------------------------------------------------------------------------- /dvb-frontends/stid135/afe_ctrl_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/afe_ctrl_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_addr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_addr_map.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_custom.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_dvbs2fec_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_dvbs2fec_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_path_ctrl_gen_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_path_ctrl_gen_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_path_ctrl_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_path_ctrl_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_rfmux_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_rfmux_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8codew_top_ctrl_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8codew_top_ctrl_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8irq_merger_top_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8irq_merger_top_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8sectp_fe_input_block_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8sectp_fe_input_block_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8sectp_fe_tag_counter_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8sectp_fe_tag_counter_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8sectp_fe_tsdma_top_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8sectp_fe_tsdma_top_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c8sectp_oxford_fe_top_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c8sectp_oxford_fe_top_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/c9ths_glue_top_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/c9ths_glue_top_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/chip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/chip.c -------------------------------------------------------------------------------- /dvb-frontends/stid135/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/chip.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_agcrf_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_agcrf_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_demod_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_demod_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_diseqc_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_diseqc_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_diseqctst_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_diseqctst_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_fecspy_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_fecspy_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_fsk_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_fsk_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_hware_gen_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_hware_gen_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_hware_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_hware_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_lnbctrl_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_lnbctrl_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_pktdelin_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_pktdelin_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_superfec_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_superfec_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/dvbsx_viterbi_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/dvbsx_viterbi_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/fesat_commlla_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/fesat_commlla_str.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/fesat_pro_advance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/fesat_pro_advance.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/gen_csts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/gen_csts.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/gen_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/gen_macros.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/gen_spcar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/gen_spcar.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/gen_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/gen_types.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/globaldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/globaldefs.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/i2c.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/north_sysconf_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/north_sysconf_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/oxford_anafe_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/oxford_anafe_func.c -------------------------------------------------------------------------------- /dvb-frontends/stid135/oxford_anafe_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/oxford_anafe_func.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/oxford_anafe_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/oxford_anafe_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/oxford_flexclkgen_a_reg_spirit_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/oxford_flexclkgen_a_reg_spirit_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/pio_reg_v1_4_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/pio_reg_v1_4_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/piomux_north_sysconf_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/piomux_north_sysconf_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/piomux_south_sysconf_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/piomux_south_sysconf_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/pwm_reg_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/pwm_reg_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/south_sysconf_reg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/south_sysconf_reg_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stddefs.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stfe_utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stfe_utilities.c -------------------------------------------------------------------------------- /dvb-frontends/stid135/stfe_utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stfe_utilities.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135-fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135-fe.c -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_addr_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_addr_map.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_custom.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_drv.c -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_drv.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_init.c -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_init.h -------------------------------------------------------------------------------- /dvb-frontends/stid135/stid135_initLLA_cut2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stid135/stid135_initLLA_cut2.h -------------------------------------------------------------------------------- /dvb-frontends/stv090x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv090x.c -------------------------------------------------------------------------------- /dvb-frontends/stv090x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv090x.h -------------------------------------------------------------------------------- /dvb-frontends/stv090x_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv090x_priv.h -------------------------------------------------------------------------------- /dvb-frontends/stv090x_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv090x_reg.h -------------------------------------------------------------------------------- /dvb-frontends/stv091x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv091x.c -------------------------------------------------------------------------------- /dvb-frontends/stv091x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv091x.h -------------------------------------------------------------------------------- /dvb-frontends/stv091x_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv091x_regs.h -------------------------------------------------------------------------------- /dvb-frontends/stv6110x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv6110x.c -------------------------------------------------------------------------------- /dvb-frontends/stv6110x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv6110x.h -------------------------------------------------------------------------------- /dvb-frontends/stv6110x_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv6110x_priv.h -------------------------------------------------------------------------------- /dvb-frontends/stv6110x_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/stv6110x_reg.h -------------------------------------------------------------------------------- /dvb-frontends/tas2101.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tas2101.c -------------------------------------------------------------------------------- /dvb-frontends/tas2101.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tas2101.h -------------------------------------------------------------------------------- /dvb-frontends/tas2101_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tas2101_priv.h -------------------------------------------------------------------------------- /dvb-frontends/tas2971.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tas2971.c -------------------------------------------------------------------------------- /dvb-frontends/tas2971.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tas2971.h -------------------------------------------------------------------------------- /dvb-frontends/tas2971_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tas2971_priv.h -------------------------------------------------------------------------------- /dvb-frontends/tda1004x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tda1004x.c -------------------------------------------------------------------------------- /dvb-frontends/tda1004x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/tda1004x.h -------------------------------------------------------------------------------- /dvb-frontends/zl10353.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/zl10353.c -------------------------------------------------------------------------------- /dvb-frontends/zl10353.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/zl10353.h -------------------------------------------------------------------------------- /dvb-frontends/zl10353_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/dvb-frontends/zl10353_priv.h -------------------------------------------------------------------------------- /saa716x/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/Kconfig -------------------------------------------------------------------------------- /saa716x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/Makefile -------------------------------------------------------------------------------- /saa716x/saa716x_adap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_adap.c -------------------------------------------------------------------------------- /saa716x/saa716x_adap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_adap.h -------------------------------------------------------------------------------- /saa716x/saa716x_aip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_aip.c -------------------------------------------------------------------------------- /saa716x/saa716x_aip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_aip.h -------------------------------------------------------------------------------- /saa716x/saa716x_aip_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_aip_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_boot.c -------------------------------------------------------------------------------- /saa716x/saa716x_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_boot.h -------------------------------------------------------------------------------- /saa716x/saa716x_budget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_budget.c -------------------------------------------------------------------------------- /saa716x/saa716x_budget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_budget.h -------------------------------------------------------------------------------- /saa716x/saa716x_cgu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_cgu.c -------------------------------------------------------------------------------- /saa716x/saa716x_cgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_cgu.h -------------------------------------------------------------------------------- /saa716x/saa716x_cgu_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_cgu_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_dcs_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_dcs_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_dma.c -------------------------------------------------------------------------------- /saa716x/saa716x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_dma.h -------------------------------------------------------------------------------- /saa716x/saa716x_dma_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_dma_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_ff.h -------------------------------------------------------------------------------- /saa716x/saa716x_ff_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_ff_cmd.c -------------------------------------------------------------------------------- /saa716x/saa716x_ff_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_ff_cmd.h -------------------------------------------------------------------------------- /saa716x/saa716x_ff_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_ff_ir.c -------------------------------------------------------------------------------- /saa716x/saa716x_ff_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_ff_main.c -------------------------------------------------------------------------------- /saa716x/saa716x_fgpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_fgpi.c -------------------------------------------------------------------------------- /saa716x/saa716x_fgpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_fgpi.h -------------------------------------------------------------------------------- /saa716x/saa716x_fgpi_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_fgpi_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_gpio.c -------------------------------------------------------------------------------- /saa716x/saa716x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_gpio.h -------------------------------------------------------------------------------- /saa716x/saa716x_gpio_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_gpio_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_greg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_greg.c -------------------------------------------------------------------------------- /saa716x/saa716x_greg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_greg.h -------------------------------------------------------------------------------- /saa716x/saa716x_greg_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_greg_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_hybrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_hybrid.c -------------------------------------------------------------------------------- /saa716x/saa716x_hybrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_hybrid.h -------------------------------------------------------------------------------- /saa716x/saa716x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_i2c.c -------------------------------------------------------------------------------- /saa716x/saa716x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_i2c.h -------------------------------------------------------------------------------- /saa716x/saa716x_i2c_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_i2c_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_mod.h -------------------------------------------------------------------------------- /saa716x/saa716x_msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_msi.c -------------------------------------------------------------------------------- /saa716x/saa716x_msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_msi.h -------------------------------------------------------------------------------- /saa716x/saa716x_msi_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_msi_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_pci.c -------------------------------------------------------------------------------- /saa716x/saa716x_phi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_phi.c -------------------------------------------------------------------------------- /saa716x/saa716x_phi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_phi.h -------------------------------------------------------------------------------- /saa716x/saa716x_phi_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_phi_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_priv.h -------------------------------------------------------------------------------- /saa716x/saa716x_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_rom.c -------------------------------------------------------------------------------- /saa716x/saa716x_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_rom.h -------------------------------------------------------------------------------- /saa716x/saa716x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_spi.c -------------------------------------------------------------------------------- /saa716x/saa716x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_spi.h -------------------------------------------------------------------------------- /saa716x/saa716x_spi_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_spi_reg.h -------------------------------------------------------------------------------- /saa716x/saa716x_vip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_vip.c -------------------------------------------------------------------------------- /saa716x/saa716x_vip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_vip.h -------------------------------------------------------------------------------- /saa716x/saa716x_vip_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/saa716x_vip_reg.h -------------------------------------------------------------------------------- /saa716x/tbs-ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/tbs-ci.c -------------------------------------------------------------------------------- /saa716x/tbs-ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/tbs-ci.h -------------------------------------------------------------------------------- /saa716x/tbsci-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/tbsci-i2c.c -------------------------------------------------------------------------------- /saa716x/tbsci-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/saa716x/tbsci-i2c.h -------------------------------------------------------------------------------- /tbsecp3/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/Kconfig -------------------------------------------------------------------------------- /tbsecp3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/Makefile -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-asi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-asi.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-ca.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-cards.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-cards.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-core.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-dma.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-dvb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-dvb.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-i2c.c -------------------------------------------------------------------------------- /tbsecp3/tbsecp3-regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3-regs.h -------------------------------------------------------------------------------- /tbsecp3/tbsecp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tbsecp3/tbsecp3.h -------------------------------------------------------------------------------- /tuners/av201x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/av201x.c -------------------------------------------------------------------------------- /tuners/av201x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/av201x.h -------------------------------------------------------------------------------- /tuners/av201x_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/av201x_priv.h -------------------------------------------------------------------------------- /tuners/mxl603.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/mxl603.c -------------------------------------------------------------------------------- /tuners/mxl603.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/mxl603.h -------------------------------------------------------------------------------- /tuners/mxl603_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/mxl603_priv.h -------------------------------------------------------------------------------- /tuners/rda5816.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/rda5816.c -------------------------------------------------------------------------------- /tuners/rda5816.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/rda5816.h -------------------------------------------------------------------------------- /tuners/si2157.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/si2157.c -------------------------------------------------------------------------------- /tuners/si2157.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/si2157.h -------------------------------------------------------------------------------- /tuners/si2157_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/si2157_priv.h -------------------------------------------------------------------------------- /tuners/stv6120.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/stv6120.c -------------------------------------------------------------------------------- /tuners/stv6120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/stv6120.h -------------------------------------------------------------------------------- /tuners/tda18212.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18212.c -------------------------------------------------------------------------------- /tuners/tda18212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18212.h -------------------------------------------------------------------------------- /tuners/tda18271-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18271-common.c -------------------------------------------------------------------------------- /tuners/tda18271-fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18271-fe.c -------------------------------------------------------------------------------- /tuners/tda18271-maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18271-maps.c -------------------------------------------------------------------------------- /tuners/tda18271-priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18271-priv.h -------------------------------------------------------------------------------- /tuners/tda18271.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda18271.h -------------------------------------------------------------------------------- /tuners/tda827x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda827x.c -------------------------------------------------------------------------------- /tuners/tda827x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda827x.h -------------------------------------------------------------------------------- /tuners/tda8290.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda8290.c -------------------------------------------------------------------------------- /tuners/tda8290.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tda8290.h -------------------------------------------------------------------------------- /tuners/tuner-i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexanderS/tbsecp3-driver/HEAD/tuners/tuner-i2c.h --------------------------------------------------------------------------------