📄 msp3400.c
字号:
/* * programming the msp34* sound processor family * * (c) 1997,1998 Gerd Knorr <kraxel@goldbach.in-berlin.de> * * what works and what doesn't: * * AM-Mono * probably doesn't (untested) * * FM-Mono * should work. The stereo modes are backward compatible to FM-mono, * therefore FM-Mono should be allways available. * * FM-Stereo (B/G, used in germany) * should work, with autodetect * * FM-Stereo (satellite) * should work, no autodetect (i.e. default is mono, but you can * switch to stereo -- untested) * * NICAM (B/G, used in UK, Scandinavia and Spain) * should work, with autodetect. Support for NICAM was added by * Pekka Pietikainen <pp@netppl.fi> * * * TODO: * - better SAT support * * * 980623 Thomas Sailer (sailer@ife.ee.ethz.ch) * using soundcore instead of OSS * */#include <linux/module.h>#include <linux/version.h>#include <linux/kernel.h>#include <linux/sched.h>#include <linux/string.h>#include <linux/timer.h>#include <linux/delay.h>#include <linux/errno.h>#include <linux/malloc.h>#ifdef __SMP__#include <asm/pgtable.h>#include <linux/smp_lock.h>#endif/* kernel_thread */#define __KERNEL_SYSCALLS__#include <linux/unistd.h>#include <linux/i2c.h>#include <linux/videodev.h>#include "msp3400.h"/* sound mixer stuff */ #include <linux/config.h>#if LINUX_VERSION_CODE > 0x020140 /* need modular sound driver */# if defined(CONFIG_SOUND) || defined(CONFIG_SOUND_MODULE)# define REGISTER_MIXER 1# endif#endifstatic int debug = 0; /* insmod parameter */struct msp3400c { struct i2c_bus *bus; int nicam; int mode; int norm; int stereo; int main, second; /* sound carrier */ int left, right; /* volume */ int bass, treble; /* thread */ struct task_struct *thread; struct wait_queue *wq; struct semaphore *notify; int active,restart,rmmod; int watch_stereo; struct timer_list wake_stereo;};#define VIDEO_MODE_RADIO 16 /* norm magic for radio mode *//* ---------------------------------------------------------------------- */#define dprintk if (debug) printk#if LINUX_VERSION_CODE < 0x020100/* 2.0.x */#define signal_pending(current) (current->signal & ~current->blocked)#define sigfillset(set)#define mdelay(x) udelay(1000*x)#elseMODULE_PARM(debug,"i");#endif#if LINUX_VERSION_CODE < 0x02017fvoid schedule_timeout(int j){ current->timeout = jiffies + j; schedule();}#endif/* ---------------------------------------------------------------------- */#define I2C_MSP3400C 0x80#define I2C_MSP3400C_DEM 0x10#define I2C_MSP3400C_DFP 0x12/* ----------------------------------------------------------------------- *//* functions for talking to the MSP3400C Sound processor */static int msp3400c_reset(struct i2c_bus *bus){ int ret = 0; mdelay(2); i2c_start(bus); i2c_sendbyte(bus, I2C_MSP3400C,2000); i2c_sendbyte(bus, 0x00,0); i2c_sendbyte(bus, 0x80,0); i2c_sendbyte(bus, 0x00,0); i2c_stop(bus); mdelay(2); i2c_start(bus); if (0 != i2c_sendbyte(bus, I2C_MSP3400C,2000) || 0 != i2c_sendbyte(bus, 0x00,0) || 0 != i2c_sendbyte(bus, 0x00,0) || 0 != i2c_sendbyte(bus, 0x00,0)) { ret = -1; printk(KERN_ERR "msp3400: chip reset failed, penguin on i2c bus?\n"); } i2c_stop(bus); mdelay(2); return ret;}static intmsp3400c_read(struct i2c_bus *bus, int dev, int addr){ int ret=0; short val = 0; i2c_start(bus); if (0 != i2c_sendbyte(bus, I2C_MSP3400C,2000) || 0 != i2c_sendbyte(bus, dev+1, 0) || 0 != i2c_sendbyte(bus, addr >> 8, 0) || 0 != i2c_sendbyte(bus, addr & 0xff, 0)) { ret = -1; } else { i2c_start(bus); if (0 != i2c_sendbyte(bus, I2C_MSP3400C+1,2000)) { ret = -1; } else { val |= (int)i2c_readbyte(bus,0) << 8; val |= (int)i2c_readbyte(bus,1); } } i2c_stop(bus); if (-1 == ret) { printk(KERN_WARNING "msp3400: I/O error, trying reset (read %s 0x%x)\n", (dev == I2C_MSP3400C_DEM) ? "Demod" : "Audio", addr); msp3400c_reset(bus); } return val;}static intmsp3400c_write(struct i2c_bus *bus, int dev, int addr, int val){ int ret = 0; i2c_start(bus); if (0 != i2c_sendbyte(bus, I2C_MSP3400C,2000) || 0 != i2c_sendbyte(bus, dev, 0) || 0 != i2c_sendbyte(bus, addr >> 8, 0) || 0 != i2c_sendbyte(bus, addr & 0xff, 0) || 0 != i2c_sendbyte(bus, val >> 8, 0) || 0 != i2c_sendbyte(bus, val & 0xff, 0)) ret = -1; i2c_stop(bus); if (-1 == ret) { printk(KERN_WARNING "msp3400: I/O error, trying reset (write %s 0x%x)\n", (dev == I2C_MSP3400C_DEM) ? "Demod" : "Audio", addr); msp3400c_reset(bus); } return ret;}/* ------------------------------------------------------------------------ *//* This macro is allowed for *constants* only, gcc must calculate it at compile time. Remember -- no floats in kernel mode */#define MSP_CARRIER(freq) ((int)((float)(freq/18.432)*(1<<24)))#define MSP_MODE_AM_DETECT 0#define MSP_MODE_FM_RADIO 2#define MSP_MODE_FM_TERRA 3#define MSP_MODE_FM_SAT 4#define MSP_MODE_FM_NICAM1 5#define MSP_MODE_FM_NICAM2 6static struct MSP_INIT_DATA_DEM { int fir1[6]; int fir2[6]; int cdo1; int cdo2; int ad_cv; int mode_reg; int dfp_src; int dfp_matrix;} msp_init_data[] = { /* AM (for carrier detect / msp3400) */ { { 75, 19, 36, 35, 39, 40 }, { 75, 19, 36, 35, 39, 40 }, MSP_CARRIER(5.5), MSP_CARRIER(5.5), 0x00d0, 0x0500, 0x0020, 0x3000}, /* AM (for carrier detect / msp3410) */ { { -1, -1, -8, 2, 59, 126 }, { -1, -1, -8, 2, 59, 126 }, MSP_CARRIER(5.5), MSP_CARRIER(5.5), 0x00d0, 0x0100, 0x0020, 0x3000}, /* FM Radio */ { { -8, -8, 4, 6, 78, 107 }, { -8, -8, 4, 6, 78, 107 }, MSP_CARRIER(10.7), MSP_CARRIER(10.7), 0x00d0, 0x0480, 0x0020, 0x3000 }, /* Terrestial FM-mono + FM-stereo */ { { 3, 18, 27, 48, 66, 72 }, { 3, 18, 27, 48, 66, 72 }, MSP_CARRIER(5.5), MSP_CARRIER(5.5), 0x00d0, 0x0480, 0x0030, 0x3000}, /* Sat FM-mono */ { { 1, 9, 14, 24, 33, 37 }, { 3, 18, 27, 48, 66, 72 }, MSP_CARRIER(6.5), MSP_CARRIER(6.5), 0x00c6, 0x0480, 0x0000, 0x3000}, /* NICAM B/G, D/K */ { { -2, -8, -10, 10, 50, 86 }, { 3, 18, 27, 48, 66, 72 }, MSP_CARRIER(5.5), MSP_CARRIER(5.5), 0x00d0, 0x0040, 0x0120, 0x3000}, /* NICAM I */ { { 2, 4, -6, -4, 40, 94 }, { 3, 18, 27, 48, 66, 72 }, MSP_CARRIER(6.0), MSP_CARRIER(6.0), 0x00d0, 0x0040, 0x0120, 0x3000},};struct CARRIER_DETECT { int cdo; char *name;};static struct CARRIER_DETECT carrier_detect_main[] = { /* main carrier */ { MSP_CARRIER(4.5), "4.5 NTSC" }, { MSP_CARRIER(5.5), "5.5 PAL B/G" }, { MSP_CARRIER(6.0), "6.0 PAL I" }, { MSP_CARRIER(6.5), "6.5 PAL D/K + SAT + SECAM" }};static struct CARRIER_DETECT carrier_detect_55[] = { /* PAL B/G */ { MSP_CARRIER(5.7421875), "5.742 PAL B/G FM-stereo" }, { MSP_CARRIER(5.85), "5.85 PAL B/G NICAM" }};static struct CARRIER_DETECT carrier_detect_65[] = { /* PAL SAT / SECAM */ { MSP_CARRIER(5.85), "5.85 PAL D/K NICAM" }, { MSP_CARRIER(6.2578125), "6.25 PAL D/K1 FM-stereo" }, { MSP_CARRIER(6.7421875), "6.74 PAL D/K2 FM-stereo" }, { MSP_CARRIER(7.02), "7.02 PAL SAT FM-stereo s/b" }, { MSP_CARRIER(7.20), "7.20 PAL SAT FM-stereo s" }, { MSP_CARRIER(7.38), "7.38 PAL SAT FM-stereo b" },};#define CARRIER_COUNT(x) (sizeof(x)/sizeof(struct CARRIER_DETECT))/* ------------------------------------------------------------------------ */static void msp3400c_setcarrier(struct i2c_bus *bus, int cdo1, int cdo2){ msp3400c_write(bus,I2C_MSP3400C_DEM, 0x0093, cdo1 & 0xfff); msp3400c_write(bus,I2C_MSP3400C_DEM, 0x009b, cdo1 >> 12); msp3400c_write(bus,I2C_MSP3400C_DEM, 0x00a3, cdo2 & 0xfff); msp3400c_write(bus,I2C_MSP3400C_DEM, 0x00ab, cdo2 >> 12); msp3400c_write(bus,I2C_MSP3400C_DEM, 0x0056, 0); /*LOAD_REG_1/2*/}static void msp3400c_setvolume(struct i2c_bus *bus, int left, int right){ int vol,val,balance; vol = (left > right) ? left : right; val = (vol * 0x73 / 65535) << 8; balance = 0; if (vol > 0) balance = ((right-left) * 127) / vol; dprintk("msp3400: setvolume: %d:%d 0x%02x 0x%02x\n", left,right,val>>8,balance); msp3400c_write(bus,I2C_MSP3400C_DFP, 0x0000, val); /* loudspeaker */ msp3400c_write(bus,I2C_MSP3400C_DFP, 0x0006, val); /* headphones */ /* scart - on/off only */ msp3400c_write(bus,I2C_MSP3400C_DFP, 0x0007, val ? 0x4000 : 0); msp3400c_write(bus,I2C_MSP3400C_DFP, 0x0001, balance << 8);}static void msp3400c_setbass(struct i2c_bus *bus, int bass){ int val = ((bass-32768) * 0x60 / 65535) << 8; dprintk("msp3400: setbass: %d 0x%02x\n",bass, val>>8); msp3400c_write(bus,I2C_MSP3400C_DFP, 0x0002, val); /* loudspeaker */}static void msp3400c_settreble(struct i2c_bus *bus, int treble){ int val = ((treble-32768) * 0x60 / 65535) << 8; dprintk("msp3400: settreble: %d 0x%02x\n",treble, val>>8); msp3400c_write(bus,I2C_MSP3400C_DFP, 0x0003, val); /* loudspeaker */}static void msp3400c_setmode(struct msp3400c *msp, int type){ int i; dprintk("msp3400: setmode: %d\n",type); msp->mode = type; msp->stereo = VIDEO_SOUND_MONO; msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x00bb, /* ad_cv */ msp_init_data[type].ad_cv); for (i = 5; i >= 0; i--) /* fir 1 */ msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0001, msp_init_data[type].fir1[i]); msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0005, 0x0004); /* fir 2 */ msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0005, 0x0040); msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0005, 0x0000); for (i = 5; i >= 0; i--) msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0005, msp_init_data[type].fir2[i]); msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0083, /* MODE_REG */ msp_init_data[type].mode_reg); msp3400c_setcarrier(msp->bus, msp_init_data[type].cdo1, msp_init_data[type].cdo2); msp3400c_write(msp->bus,I2C_MSP3400C_DEM, 0x0056, 0); /*LOAD_REG_1/2*/ msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x0008, msp_init_data[type].dfp_src); msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x0009, msp_init_data[type].dfp_src); msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x000a, msp_init_data[type].dfp_src); msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x000e, msp_init_data[type].dfp_matrix); if (msp->nicam) { /* msp3410 needs some more initialization */ msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x0010, 0x3000); }}static void msp3400c_setstereo(struct msp3400c *msp, int mode){ int nicam=0; /* channel source: FM/AM or nicam */ /* switch demodulator */ switch (msp->mode) { case MSP_MODE_FM_TERRA: dprintk("msp3400: FM setstereo: %d\n",mode); msp->stereo = mode; msp3400c_setcarrier(msp->bus,msp->second,msp->main); switch (mode) { case VIDEO_SOUND_STEREO: msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x000e, 0x3001); break; case VIDEO_SOUND_MONO: case VIDEO_SOUND_LANG1: case VIDEO_SOUND_LANG2: msp3400c_write(msp->bus,I2C_MSP3400C_DFP, 0x000e, 0x3000); break; } break; case MSP_MODE_FM_SAT: dprintk("msp3400: SAT setstereo: %d\n",mode); msp->stereo = mode; switch (mode) { case VIDEO_SOUND_MONO: msp3400c_setcarrier(msp->bus, MSP_CARRIER(6.5), MSP_CARRIER(6.5)); break; case VIDEO_SOUND_STEREO: msp3400c_setcarrier(msp->bus, MSP_CARRIER(7.2), MSP_CARRIER(7.02)); break; case VIDEO_SOUND_LANG1: msp3400c_setcarrier(msp->bus, MSP_CARRIER(7.38), MSP_CARRIER(7.02)); break; case VIDEO_SOUND_LANG2: msp3400c_setcarrier(msp->bus, MSP_CARRIER(7.38), MSP_CARRIER(7.02)); break; } break;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -