{-1,                             -1,   -1,     -1},
 };
 
+static struct em28xx_reg_seq terratec_t2_stick_hd[] = {
+       {EM2874_R80_GPIO_P0_CTRL,       0xff,   0xff,   0},
+       {0x0d,                          0xff,   0xff,   600},
+       {EM2874_R80_GPIO_P0_CTRL,       0xfc,   0xff,   10},
+       {EM2874_R80_GPIO_P0_CTRL,       0xbc,   0xff,   100},
+       {EM2874_R80_GPIO_P0_CTRL,       0xfc,   0xff,   100},
+       {EM2874_R80_GPIO_P0_CTRL,       0x00,   0xff,   300},
+       {EM2874_R80_GPIO_P0_CTRL,       0xf8,   0xff,   100},
+       {EM2874_R80_GPIO_P0_CTRL,       0xfc,   0xff,   300},
+       {0x0d,                          0x42,   0xff,   1000},
+       {EM2874_R5F_TS_ENABLE,          0x85,   0xff,   0},
+       {-1,                             -1,   -1,     -1},
+};
+
 /*
  *  Button definitions
  */
                        .amux     = EM28XX_AMUX_LINE_IN,
                } },
        },
+       /* eb1a:8179 Terratec Cinergy T2 Stick HD.
+        * Empia EM28178, Silicon Labs Si2168, Silicon Labs Si2146 */
+       [EM28178_BOARD_TERRATEC_T2_STICK_HD] = {
+               .name          = "Terratec Cinergy T2 Stick HD",
+               .def_i2c_bus   = 1,
+               .i2c_speed     = EM28XX_I2C_CLK_WAIT_ENABLE | EM28XX_I2C_FREQ_400_KHZ,
+               .tuner_type    = TUNER_ABSENT,
+               .tuner_gpio    = terratec_t2_stick_hd,
+               .has_dvb       = 1,
+               .ir_codes      = RC_MAP_TERRATEC_SLIM_2,
+       },
 };
 EXPORT_SYMBOL_GPL(em28xx_boards);
 
                        .driver_info = EM28178_BOARD_PCTV_292E },
        { USB_DEVICE(0x0413, 0x6f07),
                        .driver_info = EM2861_BOARD_LEADTEK_VC100 },
+       { USB_DEVICE(0xeb1a, 0x8179),
+                       .driver_info = EM28178_BOARD_TERRATEC_T2_STICK_HD },
        { },
 };
 MODULE_DEVICE_TABLE(usb, em28xx_id_table);
 
                        dvb->fe[0]->ops.set_lna = em28xx_pctv_292e_set_lna;
                }
                break;
+       case EM28178_BOARD_TERRATEC_T2_STICK_HD:
+               {
+                       struct i2c_adapter *adapter;
+                       struct i2c_client *client;
+                       struct i2c_board_info info;
+                       struct si2168_config si2168_config;
+                       struct si2157_config si2157_config;
+
+                       /* attach demod */
+                       memset(&si2168_config, 0, sizeof(si2168_config));
+                       si2168_config.i2c_adapter = &adapter;
+                       si2168_config.fe = &dvb->fe[0];
+                       si2168_config.ts_mode = SI2168_TS_PARALLEL;
+                       memset(&info, 0, sizeof(struct i2c_board_info));
+                       strlcpy(info.type, "si2168", I2C_NAME_SIZE);
+                       info.addr = 0x64;
+                       info.platform_data = &si2168_config;
+                       request_module(info.type);
+                       client = i2c_new_device(&dev->i2c_adap[dev->def_i2c_bus], &info);
+                       if (client == NULL || client->dev.driver == NULL) {
+                               result = -ENODEV;
+                               goto out_free;
+                       }
+
+                       if (!try_module_get(client->dev.driver->owner)) {
+                               i2c_unregister_device(client);
+                               result = -ENODEV;
+                               goto out_free;
+                       }
+
+                       dvb->i2c_client_demod = client;
+
+                       /* attach tuner */
+                       memset(&si2157_config, 0, sizeof(si2157_config));
+                       si2157_config.fe = dvb->fe[0];
+                       memset(&info, 0, sizeof(struct i2c_board_info));
+                       strlcpy(info.type, "si2146", I2C_NAME_SIZE);
+                       info.addr = 0x60;
+                       info.platform_data = &si2157_config;
+                       request_module("si2157");
+                       client = i2c_new_device(adapter, &info);
+                       if (client == NULL || client->dev.driver == NULL) {
+                               module_put(dvb->i2c_client_demod->dev.driver->owner);
+                               i2c_unregister_device(dvb->i2c_client_demod);
+                               result = -ENODEV;
+                               goto out_free;
+                       }
+
+                       if (!try_module_get(client->dev.driver->owner)) {
+                               i2c_unregister_device(client);
+                               module_put(dvb->i2c_client_demod->dev.driver->owner);
+                               i2c_unregister_device(dvb->i2c_client_demod);
+                               result = -ENODEV;
+                               goto out_free;
+                       }
+
+                       dvb->i2c_client_tuner = client;
+               }
+               break;
        default:
                em28xx_errdev("/2: The frontend of your DVB/ATSC card"
                                " isn't supported yet\n");