Commit a4f31d0d authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

V4L/DVB: af9013: add support for MaxLinear MxL5007T tuner

Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 76391a71
...@@ -1381,6 +1381,7 @@ static int af9013_init(struct dvb_frontend *fe) ...@@ -1381,6 +1381,7 @@ static int af9013_init(struct dvb_frontend *fe)
break; break;
case AF9013_TUNER_MXL5005D: case AF9013_TUNER_MXL5005D:
case AF9013_TUNER_MXL5005R: case AF9013_TUNER_MXL5005R:
case AF9013_TUNER_MXL5007T:
len = ARRAY_SIZE(tuner_init_mxl5005); len = ARRAY_SIZE(tuner_init_mxl5005);
init = tuner_init_mxl5005; init = tuner_init_mxl5005;
break; break;
......
...@@ -44,6 +44,7 @@ enum af9013_tuner { ...@@ -44,6 +44,7 @@ enum af9013_tuner {
AF9013_TUNER_MT2060_2 = 147, /* Microtune */ AF9013_TUNER_MT2060_2 = 147, /* Microtune */
AF9013_TUNER_TDA18271 = 156, /* NXP */ AF9013_TUNER_TDA18271 = 156, /* NXP */
AF9013_TUNER_QT1010A = 162, /* Quantek */ AF9013_TUNER_QT1010A = 162, /* Quantek */
AF9013_TUNER_MXL5007T = 177, /* MaxLinear */
AF9013_TUNER_TDA18218 = 179, /* NXP */ AF9013_TUNER_TDA18218 = 179, /* NXP */
}; };
......
...@@ -480,9 +480,10 @@ static struct regdesc tuner_init_mxl5003d[] = { ...@@ -480,9 +480,10 @@ static struct regdesc tuner_init_mxl5003d[] = {
{ 0x9bd9, 0, 8, 0x08 }, { 0x9bd9, 0, 8, 0x08 },
}; };
/* MaxLinear MXL5005 tuner init /* MaxLinear MXL5005S & MXL5007T tuner init
AF9013_TUNER_MXL5005D = 13 AF9013_TUNER_MXL5005D = 13
AF9013_TUNER_MXL5005R = 30 */ AF9013_TUNER_MXL5005R = 30
AF9013_TUNER_MXL5007T = 177 */
static struct regdesc tuner_init_mxl5005[] = { static struct regdesc tuner_init_mxl5005[] = {
{ 0x9bd5, 0, 8, 0x01 }, { 0x9bd5, 0, 8, 0x01 },
{ 0x9bd6, 0, 8, 0x07 }, { 0x9bd6, 0, 8, 0x07 },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment