Merge branch 'latest' of github.com:tbsdtv/linux_media into tbsdtv_linux_media/latest

This commit is contained in:
CrazyCat
2024-10-03 23:07:44 +03:00
4 changed files with 29 additions and 1 deletions

View File

@@ -1070,6 +1070,31 @@ struct tbsecp3_board tbsecp3_boards[] = {
},
}
},
[TBSECP3_BOARD_TBS6324] = {
.board_id = TBSECP3_BOARD_TBS6324,
.name = "TurboSight TBS 6324 SDI Capture ",
.adapters = 4,
.i2c_speed = 39,
.eeprom_i2c = 1,
.adap_config = {
{
.ts_in = 0,
.i2c_bus_nr = 3,
},
{
.ts_in = 1,
.i2c_bus_nr = 2,
},
{
.ts_in = 2,
.i2c_bus_nr = 1,
},
{
.ts_in = 3,
.i2c_bus_nr = 0,
},
}
},
[TBSECP3_BOARD_TBS690a] = {
.board_id = TBSECP3_BOARD_TBS690a,
.name = "TurboSight TBS 690a ASI Capture ",

View File

@@ -399,7 +399,8 @@ static const struct pci_device_id tbsecp3_id_table[] = {
TBSECP3_ID(TBSECP3_BOARD_TBS6522H,0x6522,0x0004),
TBSECP3_ID(TBSECP3_BOARD_TBS6504H,0x6504,0x0008),
TBSECP3_ID(TBSECP3_BOARD_TBS6590SE,0x6590,0x0002),
TBSECP3_ID(TBSECP3_BOARD_TBS6916,0x6916,0x0001),
TBSECP3_ID(TBSECP3_BOARD_TBS6916,0x6916,0x0001),
TBSECP3_ID(TBSECP3_BOARD_TBS6324,0x6324,0x0010),
{0}
};
MODULE_DEVICE_TABLE(pci, tbsecp3_id_table);

View File

@@ -1915,6 +1915,7 @@ static int tbsecp3_frontend_attach(struct tbsecp3_adapter *adapter)
break;
case TBSECP3_BOARD_TBS6304X:
case TBSECP3_BOARD_TBS6304T:
case TBSECP3_BOARD_TBS6324:
adapter->fe = dvb_attach(tas2971_attach, &tbs6304x_demod_cfg, i2c);
if (adapter->fe == NULL)
goto frontend_atach_fail;

View File

@@ -90,6 +90,7 @@
#define TBSECP3_BOARD_TBS6308X 46
#define TBSECP3_BOARD_TBS6916 47
#define TBSECP3_BOARD_TBS6312X 48
#define TBSECP3_BOARD_TBS6324 49
#define TBSECP3_MAX_ADAPTERS (16)