summaryrefslogtreecommitdiff
path: root/linux
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2008-11-20 13:49:33 -0200
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-11-20 13:49:33 -0200
commit9c67fb052ee5c718868e6b9b422cdaf4e001dec4 (patch)
tree87aab932c8aa90ad57bfc85bae9a9cf279e4515a /linux
parent0ca43157210b3c9c92e6dbaa545f69f4e1ebbc9e (diff)
downloadmediapointer-dvb-s2-9c67fb052ee5c718868e6b9b422cdaf4e001dec4.tar.gz
mediapointer-dvb-s2-9c67fb052ee5c718868e6b9b422cdaf4e001dec4.tar.bz2
em28xx: Add detection of Sigmatel Stac97xx series of AC97 devices
From: Mauro Carvalho Chehab <mchehab@redhat.com> Priority: normal Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux')
-rw-r--r--linux/drivers/media/video/em28xx/em28xx-core.c6
-rw-r--r--linux/drivers/media/video/em28xx/em28xx.h1
2 files changed, 7 insertions, 0 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-core.c b/linux/drivers/media/video/em28xx/em28xx-core.c
index bc40f2e33..711584515 100644
--- a/linux/drivers/media/video/em28xx/em28xx-core.c
+++ b/linux/drivers/media/video/em28xx/em28xx-core.c
@@ -520,6 +520,8 @@ int em28xx_audio_setup(struct em28xx *dev)
/* Try to identify what audio processor we have */
if ((vid == 0xffffffff) && (feat == 0x6a90))
dev->audio_mode.ac97 = EM28XX_AC97_EM202;
+ else if ((vid >> 8) == 0x838476)
+ dev->audio_mode.ac97 = EM28XX_AC97_SIGMATEL;
init_audio:
/* Reports detected AC97 processor */
@@ -530,6 +532,10 @@ init_audio:
case EM28XX_AC97_EM202:
em28xx_info("Empia 202 AC97 audio processor detected\n");
break;
+ case EM28XX_AC97_SIGMATEL:
+ em28xx_info("Sigmatel audio processor detected(stac 97%02x)\n",
+ dev->audio_mode.ac97_vendor_id & 0xff);
+ break;
case EM28XX_AC97_OTHER:
em28xx_warn("Unknown AC97 audio processor detected!\n");
break;
diff --git a/linux/drivers/media/video/em28xx/em28xx.h b/linux/drivers/media/video/em28xx/em28xx.h
index 2d74b5c5c..7de9afb0e 100644
--- a/linux/drivers/media/video/em28xx/em28xx.h
+++ b/linux/drivers/media/video/em28xx/em28xx.h
@@ -260,6 +260,7 @@ enum enum28xx_itype {
enum em28xx_ac97_mode {
EM28XX_NO_AC97 = 0,
EM28XX_AC97_EM202,
+ EM28XX_AC97_SIGMATEL,
EM28XX_AC97_OTHER,
};