ac97_codec.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:33k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ac97_codec.c: Generic AC97 mixer/modem module
  3.  *
  4.  * Derived from ac97 mixer in maestro and trident driver.
  5.  *
  6.  * Copyright 2000 Silicon Integrated System Corporation
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  **************************************************************************
  23.  *
  24.  * The Intel Audio Codec '97 specification is available at the Intel
  25.  * audio homepage: http://developer.intel.com/ial/scalableplatforms/audio/
  26.  *
  27.  * The specification itself is currently available at:
  28.  * ftp://download.intel.com/ial/scalableplatforms/ac97r22.pdf
  29.  *
  30.  **************************************************************************
  31.  *
  32.  * History
  33.  * v0.4 Mar 15 2000 Ollie Lho
  34.  * dual codecs support verified with 4 channels output
  35.  * v0.3 Feb 22 2000 Ollie Lho
  36.  * bug fix for record mask setting
  37.  * v0.2 Feb 10 2000 Ollie Lho
  38.  * add ac97_read_proc for /proc/driver/{vendor}/ac97
  39.  * v0.1 Jan 14 2000 Ollie Lho <ollie@sis.com.tw> 
  40.  * Isolated from trident.c to support multiple ac97 codec
  41.  */
  42. #include <linux/module.h>
  43. #include <linux/version.h>
  44. #include <linux/kernel.h>
  45. #include <linux/string.h>
  46. #include <linux/errno.h>
  47. #include <linux/bitops.h>
  48. #include <linux/delay.h>
  49. #include <linux/ac97_codec.h>
  50. #include <asm/uaccess.h>
  51. static int ac97_read_mixer(struct ac97_codec *codec, int oss_channel);
  52. static void ac97_write_mixer(struct ac97_codec *codec, int oss_channel, 
  53.      unsigned int left, unsigned int right);
  54. static void ac97_set_mixer(struct ac97_codec *codec, unsigned int oss_mixer, unsigned int val );
  55. static int ac97_recmask_io(struct ac97_codec *codec, int rw, int mask);
  56. static int ac97_mixer_ioctl(struct ac97_codec *codec, unsigned int cmd, unsigned long arg);
  57. static int ac97_init_mixer(struct ac97_codec *codec);
  58. static int wolfson_init(struct ac97_codec * codec);
  59. static int tritech_init(struct ac97_codec * codec);
  60. static int tritech_maestro_init(struct ac97_codec * codec);
  61. static int sigmatel_9708_init(struct ac97_codec *codec);
  62. static int sigmatel_9721_init(struct ac97_codec *codec);
  63. static int sigmatel_9744_init(struct ac97_codec *codec);
  64. static int eapd_control(struct ac97_codec *codec, int);
  65. static int crystal_digital_control(struct ac97_codec *codec, int mode);
  66. /*
  67.  * AC97 operations.
  68.  *
  69.  * If you are adding a codec then you should be able to use
  70.  * eapd_ops - any codec that supports EAPD amp control (most)
  71.  * null_ops - any ancient codec that supports nothing
  72.  *
  73.  * The three functions are
  74.  * init - used for non AC97 standard initialisation
  75.  * amplifier - used to do amplifier control (1=on 0=off)
  76.  * digital - switch to digital modes (0 = analog)
  77.  *
  78.  * Not all codecs support all features, not all drivers use all the
  79.  * operations yet
  80.  */
  81.  
  82. static struct ac97_ops null_ops = { NULL, NULL, NULL };
  83. static struct ac97_ops default_ops = { NULL, eapd_control, NULL };
  84. static struct ac97_ops wolfson_ops = { wolfson_init, NULL, NULL };
  85. static struct ac97_ops tritech_ops = { tritech_init, NULL, NULL };
  86. static struct ac97_ops tritech_m_ops = { tritech_maestro_init, NULL, NULL };
  87. static struct ac97_ops sigmatel_9708_ops = { sigmatel_9708_init, NULL, NULL };
  88. static struct ac97_ops sigmatel_9721_ops = { sigmatel_9721_init, NULL, NULL };
  89. static struct ac97_ops sigmatel_9744_ops = { sigmatel_9744_init, NULL, NULL };
  90. static struct ac97_ops crystal_digital_ops = { NULL, eapd_control, crystal_digital_control };
  91. /* sorted by vendor/device id */
  92. static const struct {
  93. u32 id;
  94. char *name;
  95. struct ac97_ops *ops;
  96. } ac97_codec_ids[] = {
  97. {0x41445303, "Analog Devices AD1819", &null_ops},
  98. {0x41445340, "Analog Devices AD1881", &null_ops},
  99. {0x41445348, "Analog Devices AD1881A", &null_ops},
  100. {0x41445360, "Analog Devices AD1885", &default_ops},
  101. {0x41445460, "Analog Devices AD1885", &default_ops},
  102. {0x414B4D00, "Asahi Kasei AK4540", &null_ops},
  103. {0x414B4D01, "Asahi Kasei AK4542", &null_ops},
  104. {0x414B4D02, "Asahi Kasei AK4543", &null_ops},
  105. {0x414C4710, "ALC200/200P", &null_ops},
  106. {0x43525900, "Cirrus Logic CS4297", &default_ops},
  107. {0x43525903, "Cirrus Logic CS4297", &default_ops},
  108. {0x43525913, "Cirrus Logic CS4297A rev A", &default_ops},
  109. {0x43525914, "Cirrus Logic CS4297A rev B", &default_ops},
  110. {0x43525923, "Cirrus Logic CS4298", &null_ops},
  111. {0x4352592B, "Cirrus Logic CS4294", &null_ops},
  112. {0x4352592D, "Cirrus Logic CS4294", &null_ops},
  113. {0x43525931, "Cirrus Logic CS4299 rev A", &crystal_digital_ops},
  114. {0x43525933, "Cirrus Logic CS4299 rev C", &crystal_digital_ops},
  115. {0x43525934, "Cirrus Logic CS4299 rev D", &crystal_digital_ops},
  116. {0x4352594d, "Cirrus Logic CS4201" , &null_ops},
  117. {0x45838308, "ESS Allegro ES1988", &null_ops},
  118. {0x49434511, "ICE1232", &null_ops}, /* I hope --jk */
  119. {0x4e534331, "National Semiconductor LM4549", &null_ops},
  120. {0x50534304, "Philips UCB1400", &default_ops},
  121. {0x53494c22, "Silicon Laboratory Si3036", &null_ops},
  122. {0x53494c23, "Silicon Laboratory Si3038", &null_ops},
  123. {0x545200FF, "TriTech TR?????", &tritech_m_ops},
  124. {0x54524102, "TriTech TR28022", &null_ops},
  125. {0x54524103, "TriTech TR28023", &null_ops},
  126. {0x54524106, "TriTech TR28026", &null_ops},
  127. {0x54524108, "TriTech TR28028", &tritech_ops},
  128. {0x54524123, "TriTech TR A5", &null_ops},
  129. {0x574D4C00, "Wolfson WM9704", &wolfson_ops},
  130. {0x574D4C03, "Wolfson WM9703/9704", &wolfson_ops},
  131. {0x574D4C04, "Wolfson WM9704 (quad)", &wolfson_ops},
  132. {0x83847600, "SigmaTel STAC????", &null_ops},
  133. {0x83847604, "SigmaTel STAC9701/3/4/5", &null_ops},
  134. {0x83847605, "SigmaTel STAC9704", &null_ops},
  135. {0x83847608, "SigmaTel STAC9708", &sigmatel_9708_ops},
  136. {0x83847609, "SigmaTel STAC9721/23", &sigmatel_9721_ops},
  137. {0x83847644, "SigmaTel STAC9744/45", &sigmatel_9744_ops},
  138. {0x83847656, "SigmaTel STAC9756/57", &sigmatel_9744_ops},
  139. {0x83847684, "SigmaTel STAC9783/84?", &null_ops},
  140. {0x57454301, "Winbond 83971D", &null_ops},
  141. };
  142. static const char *ac97_stereo_enhancements[] =
  143. {
  144. /*   0 */ "No 3D Stereo Enhancement",
  145. /*   1 */ "Analog Devices Phat Stereo",
  146. /*   2 */ "Creative Stereo Enhancement",
  147. /*   3 */ "National Semi 3D Stereo Enhancement",
  148. /*   4 */ "YAMAHA Ymersion",
  149. /*   5 */ "BBE 3D Stereo Enhancement",
  150. /*   6 */ "Crystal Semi 3D Stereo Enhancement",
  151. /*   7 */ "Qsound QXpander",
  152. /*   8 */ "Spatializer 3D Stereo Enhancement",
  153. /*   9 */ "SRS 3D Stereo Enhancement",
  154. /*  10 */ "Platform Tech 3D Stereo Enhancement",
  155. /*  11 */ "AKM 3D Audio",
  156. /*  12 */ "Aureal Stereo Enhancement",
  157. /*  13 */ "Aztech 3D Enhancement",
  158. /*  14 */ "Binaura 3D Audio Enhancement",
  159. /*  15 */ "ESS Technology Stereo Enhancement",
  160. /*  16 */ "Harman International VMAx",
  161. /*  17 */ "Nvidea 3D Stereo Enhancement",
  162. /*  18 */ "Philips Incredible Sound",
  163. /*  19 */ "Texas Instruments 3D Stereo Enhancement",
  164. /*  20 */ "VLSI Technology 3D Stereo Enhancement",
  165. /*  21 */ "TriTech 3D Stereo Enhancement",
  166. /*  22 */ "Realtek 3D Stereo Enhancement",
  167. /*  23 */ "Samsung 3D Stereo Enhancement",
  168. /*  24 */ "Wolfson Microelectronics 3D Enhancement",
  169. /*  25 */ "Delta Integration 3D Enhancement",
  170. /*  26 */ "SigmaTel 3D Enhancement",
  171. /*  27 */ "Winbond 3D Stereo Enhancement",
  172. /*  28 */ "Rockwell 3D Stereo Enhancement",
  173. /*  29 */ "Reserved 29",
  174. /*  30 */ "Reserved 30",
  175. /*  31 */ "Reserved 31"
  176. };
  177. /* this table has default mixer values for all OSS mixers. */
  178. static struct mixer_defaults {
  179. int mixer;
  180. unsigned int value;
  181. } mixer_defaults[SOUND_MIXER_NRDEVICES] = {
  182. /* all values 0 -> 100 in bytes */
  183. {SOUND_MIXER_VOLUME, 0x4343},
  184. {SOUND_MIXER_BASS, 0x4343},
  185. {SOUND_MIXER_TREBLE, 0x4343},
  186. {SOUND_MIXER_PCM, 0x4343},
  187. {SOUND_MIXER_SPEAKER, 0x4343},
  188. {SOUND_MIXER_LINE, 0x4343},
  189. {SOUND_MIXER_MIC, 0x0000},
  190. {SOUND_MIXER_CD, 0x4343},
  191. {SOUND_MIXER_ALTPCM, 0x4343},
  192. {SOUND_MIXER_IGAIN, 0x4343},
  193. {SOUND_MIXER_LINE1, 0x4343},
  194. {SOUND_MIXER_PHONEIN, 0x4343},
  195. {SOUND_MIXER_PHONEOUT, 0x4343},
  196. {SOUND_MIXER_VIDEO, 0x4343},
  197. {-1,0}
  198. };
  199. /* table to scale scale from OSS mixer value to AC97 mixer register value */
  200. static struct ac97_mixer_hw {
  201. unsigned char offset;
  202. int scale;
  203. } ac97_hw[SOUND_MIXER_NRDEVICES]= {
  204. [SOUND_MIXER_VOLUME] = {AC97_MASTER_VOL_STEREO,64},
  205. [SOUND_MIXER_BASS] = {AC97_MASTER_TONE, 16},
  206. [SOUND_MIXER_TREBLE] = {AC97_MASTER_TONE, 16},
  207. [SOUND_MIXER_PCM] = {AC97_PCMOUT_VOL, 32},
  208. [SOUND_MIXER_SPEAKER] = {AC97_PCBEEP_VOL, 16},
  209. [SOUND_MIXER_LINE] = {AC97_LINEIN_VOL, 32},
  210. [SOUND_MIXER_MIC] = {AC97_MIC_VOL, 32},
  211. [SOUND_MIXER_CD] = {AC97_CD_VOL, 32},
  212. [SOUND_MIXER_ALTPCM] = {AC97_HEADPHONE_VOL, 64},
  213. [SOUND_MIXER_IGAIN] = {AC97_RECORD_GAIN, 16},
  214. [SOUND_MIXER_LINE1] = {AC97_AUX_VOL, 32},
  215. [SOUND_MIXER_PHONEIN] =  {AC97_PHONE_VOL, 32},
  216. [SOUND_MIXER_PHONEOUT] =  {AC97_MASTER_VOL_MONO, 64},
  217. [SOUND_MIXER_VIDEO] = {AC97_VIDEO_VOL, 32},
  218. };
  219. /* the following tables allow us to go from OSS <-> ac97 quickly. */
  220. enum ac97_recsettings {
  221. AC97_REC_MIC=0,
  222. AC97_REC_CD,
  223. AC97_REC_VIDEO,
  224. AC97_REC_AUX,
  225. AC97_REC_LINE,
  226. AC97_REC_STEREO, /* combination of all enabled outputs..  */
  227. AC97_REC_MONO,       /*.. or the mono equivalent */
  228. AC97_REC_PHONE
  229. };
  230. static const unsigned int ac97_rm2oss[] = {
  231. [AC97_REC_MIC]   = SOUND_MIXER_MIC,
  232. [AC97_REC_CD]   = SOUND_MIXER_CD,
  233. [AC97_REC_VIDEO] = SOUND_MIXER_VIDEO,
  234. [AC97_REC_AUX]   = SOUND_MIXER_LINE1,
  235. [AC97_REC_LINE]  = SOUND_MIXER_LINE,
  236. [AC97_REC_STEREO]= SOUND_MIXER_IGAIN,
  237. [AC97_REC_PHONE] = SOUND_MIXER_PHONEIN
  238. };
  239. /* indexed by bit position */
  240. static const unsigned int ac97_oss_rm[] = {
  241. [SOUND_MIXER_MIC]  = AC97_REC_MIC,
  242. [SOUND_MIXER_CD]  = AC97_REC_CD,
  243. [SOUND_MIXER_VIDEO]  = AC97_REC_VIDEO,
  244. [SOUND_MIXER_LINE1]  = AC97_REC_AUX,
  245. [SOUND_MIXER_LINE]  = AC97_REC_LINE,
  246. [SOUND_MIXER_IGAIN] = AC97_REC_STEREO,
  247. [SOUND_MIXER_PHONEIN]  = AC97_REC_PHONE
  248. };
  249. /* reads the given OSS mixer from the ac97 the caller must have insured that the ac97 knows
  250.    about that given mixer, and should be holding a spinlock for the card */
  251. static int ac97_read_mixer(struct ac97_codec *codec, int oss_channel) 
  252. {
  253. u16 val;
  254. int ret = 0;
  255. int scale;
  256. struct ac97_mixer_hw *mh = &ac97_hw[oss_channel];
  257. val = codec->codec_read(codec , mh->offset);
  258. if (val & AC97_MUTE) {
  259. ret = 0;
  260. } else if (AC97_STEREO_MASK & (1 << oss_channel)) {
  261. /* nice stereo mixers .. */
  262. int left,right;
  263. left = (val >> 8)  & 0x7f;
  264. right = val  & 0x7f;
  265. if (oss_channel == SOUND_MIXER_IGAIN) {
  266. right = (right * 100) / mh->scale;
  267. left = (left * 100) / mh->scale;
  268. } else {
  269. /* these may have 5 or 6 bit resolution */
  270. if(oss_channel == SOUND_MIXER_VOLUME || oss_channel == SOUND_MIXER_ALTPCM)
  271. scale = (1 << codec->bit_resolution);
  272. else
  273. scale = mh->scale;
  274. right = 100 - ((right * 100) / scale);
  275. left = 100 - ((left * 100) / scale);
  276. }
  277. ret = left | (right << 8);
  278. } else if (oss_channel == SOUND_MIXER_SPEAKER) {
  279. ret = 100 - ((((val & 0x1e)>>1) * 100) / mh->scale);
  280. } else if (oss_channel == SOUND_MIXER_PHONEIN) {
  281. ret = 100 - (((val & 0x1f) * 100) / mh->scale);
  282. } else if (oss_channel == SOUND_MIXER_PHONEOUT) {
  283. scale = (1 << codec->bit_resolution);
  284. ret = 100 - (((val & 0x1f) * 100) / scale);
  285. } else if (oss_channel == SOUND_MIXER_MIC) {
  286. ret = 100 - (((val & 0x1f) * 100) / mh->scale);
  287. /*  the low bit is optional in the tone sliders and masking
  288.     it lets us avoid the 0xf 'bypass'.. */
  289. } else if (oss_channel == SOUND_MIXER_BASS) {
  290. ret = 100 - ((((val >> 8) & 0xe) * 100) / mh->scale);
  291. } else if (oss_channel == SOUND_MIXER_TREBLE) {
  292. ret = 100 - (((val & 0xe) * 100) / mh->scale);
  293. }
  294. #ifdef DEBUG
  295. printk("ac97_codec: read OSS mixer %2d (%s ac97 register 0x%02x), "
  296.        "0x%04x -> 0x%04xn",
  297.        oss_channel, codec->id ? "Secondary" : "Primary",
  298.        mh->offset, val, ret);
  299. #endif
  300. return ret;
  301. }
  302. /* write the OSS encoded volume to the given OSS encoded mixer, again caller's job to
  303.    make sure all is well in arg land, call with spinlock held */
  304. static void ac97_write_mixer(struct ac97_codec *codec, int oss_channel,
  305.       unsigned int left, unsigned int right)
  306. {
  307. u16 val = 0;
  308. int scale;
  309. struct ac97_mixer_hw *mh = &ac97_hw[oss_channel];
  310. #ifdef DEBUG
  311. printk("ac97_codec: wrote OSS mixer %2d (%s ac97 register 0x%02x), "
  312.        "left vol:%2d, right vol:%2d:",
  313.        oss_channel, codec->id ? "Secondary" : "Primary",
  314.        mh->offset, left, right);
  315. #endif
  316. if (AC97_STEREO_MASK & (1 << oss_channel)) {
  317. /* stereo mixers */
  318. if (left == 0 && right == 0) {
  319. val = AC97_MUTE;
  320. } else {
  321. if (oss_channel == SOUND_MIXER_IGAIN) {
  322. right = (right * mh->scale) / 100;
  323. left = (left * mh->scale) / 100;
  324. if (right >= mh->scale)
  325. right = mh->scale-1;
  326. if (left >= mh->scale)
  327. left = mh->scale-1;
  328. } else {
  329. /* these may have 5 or 6 bit resolution */
  330. if (oss_channel == SOUND_MIXER_VOLUME ||
  331.     oss_channel == SOUND_MIXER_ALTPCM)
  332. scale = (1 << codec->bit_resolution);
  333. else
  334. scale = mh->scale;
  335. right = ((100 - right) * scale) / 100;
  336. left = ((100 - left) * scale) / 100;
  337. if (right >= scale)
  338. right = scale-1;
  339. if (left >= scale)
  340. left = scale-1;
  341. }
  342. val = (left << 8) | right;
  343. }
  344. } else if (oss_channel == SOUND_MIXER_BASS) {
  345. val = codec->codec_read(codec , mh->offset) & ~0x0f00;
  346. left = ((100 - left) * mh->scale) / 100;
  347. if (left >= mh->scale)
  348. left = mh->scale-1;
  349. val |= (left << 8) & 0x0e00;
  350. } else if (oss_channel == SOUND_MIXER_TREBLE) {
  351. val = codec->codec_read(codec , mh->offset) & ~0x000f;
  352. left = ((100 - left) * mh->scale) / 100;
  353. if (left >= mh->scale)
  354. left = mh->scale-1;
  355. val |= left & 0x000e;
  356. } else if(left == 0) {
  357. val = AC97_MUTE;
  358. } else if (oss_channel == SOUND_MIXER_SPEAKER) {
  359. left = ((100 - left) * mh->scale) / 100;
  360. if (left >= mh->scale)
  361. left = mh->scale-1;
  362. val = left << 1;
  363. } else if (oss_channel == SOUND_MIXER_PHONEIN) {
  364. left = ((100 - left) * mh->scale) / 100;
  365. if (left >= mh->scale)
  366. left = mh->scale-1;
  367. val = left;
  368. } else if (oss_channel == SOUND_MIXER_PHONEOUT) {
  369. scale = (1 << codec->bit_resolution);
  370. left = ((100 - left) * scale) / 100;
  371. if (left >= mh->scale)
  372. left = mh->scale-1;
  373. val = left;
  374. } else if (oss_channel == SOUND_MIXER_MIC) {
  375. val = codec->codec_read(codec , mh->offset) & ~0x801f;
  376. left = ((100 - left) * mh->scale) / 100;
  377. if (left >= mh->scale)
  378. left = mh->scale-1;
  379. val |= left;
  380. /*  the low bit is optional in the tone sliders and masking
  381.     it lets us avoid the 0xf 'bypass'.. */
  382. }
  383. #ifdef DEBUG
  384. printk(" 0x%04x", val);
  385. #endif
  386. codec->codec_write(codec, mh->offset, val);
  387. #ifdef DEBUG
  388. val = codec->codec_read(codec, mh->offset);
  389. printk(" -> 0x%04xn", val);
  390. #endif
  391. }
  392. /* a thin wrapper for write_mixer */
  393. static void ac97_set_mixer(struct ac97_codec *codec, unsigned int oss_mixer, unsigned int val ) 
  394. {
  395. unsigned int left,right;
  396. /* cleanse input a little */
  397. right = ((val >> 8)  & 0xff) ;
  398. left = (val  & 0xff) ;
  399. if (right > 100) right = 100;
  400. if (left > 100) left = 100;
  401. codec->mixer_state[oss_mixer] = (right << 8) | left;
  402. codec->write_mixer(codec, oss_mixer, left, right);
  403. }
  404. /* read or write the recmask, the ac97 can really have left and right recording
  405.    inputs independantly set, but OSS doesn't seem to want us to express that to
  406.    the user. the caller guarantees that we have a supported bit set, and they
  407.    must be holding the card's spinlock */
  408. static int ac97_recmask_io(struct ac97_codec *codec, int rw, int mask) 
  409. {
  410. unsigned int val;
  411. if (rw) {
  412. /* read it from the card */
  413. val = codec->codec_read(codec, AC97_RECORD_SELECT);
  414. #ifdef DEBUG
  415. printk("ac97_codec: ac97 recmask to set to 0x%04xn", val);
  416. #endif
  417. return (1 << ac97_rm2oss[val & 0x07]);
  418. }
  419. /* else, write the first set in the mask as the
  420.    output */
  421. /* clear out current set value first (AC97 supports only 1 input!) */
  422. val = (1 << ac97_rm2oss[codec->codec_read(codec, AC97_RECORD_SELECT) & 0x07]);
  423. if (mask != val)
  424.     mask &= ~val;
  425.        
  426. val = ffs(mask); 
  427. val = ac97_oss_rm[val-1];
  428. val |= val << 8;  /* set both channels */
  429. #ifdef DEBUG
  430. printk("ac97_codec: setting ac97 recmask to 0x%04xn", val);
  431. #endif
  432. codec->codec_write(codec, AC97_RECORD_SELECT, val);
  433. return 0;
  434. };
  435. static int ac97_mixer_ioctl(struct ac97_codec *codec, unsigned int cmd, unsigned long arg)
  436. {
  437. int i, val = 0;
  438. if (cmd == SOUND_MIXER_INFO) {
  439. mixer_info info;
  440. strncpy(info.id, codec->name, sizeof(info.id));
  441. strncpy(info.name, codec->name, sizeof(info.name));
  442. info.modify_counter = codec->modcnt;
  443. if (copy_to_user((void *)arg, &info, sizeof(info)))
  444. return -EFAULT;
  445. return 0;
  446. }
  447. if (cmd == SOUND_OLD_MIXER_INFO) {
  448. _old_mixer_info info;
  449. strncpy(info.id, codec->name, sizeof(info.id));
  450. strncpy(info.name, codec->name, sizeof(info.name));
  451. if (copy_to_user((void *)arg, &info, sizeof(info)))
  452. return -EFAULT;
  453. return 0;
  454. }
  455. if (_IOC_TYPE(cmd) != 'M' || _SIOC_SIZE(cmd) != sizeof(int))
  456. return -EINVAL;
  457. if (cmd == OSS_GETVERSION)
  458. return put_user(SOUND_VERSION, (int *)arg);
  459. if (_SIOC_DIR(cmd) == _SIOC_READ) {
  460. switch (_IOC_NR(cmd)) {
  461. case SOUND_MIXER_RECSRC: /* give them the current record source */
  462. if (!codec->recmask_io) {
  463. val = 0;
  464. } else {
  465. val = codec->recmask_io(codec, 1, 0);
  466. }
  467. break;
  468. case SOUND_MIXER_DEVMASK: /* give them the supported mixers */
  469. val = codec->supported_mixers;
  470. break;
  471. case SOUND_MIXER_RECMASK: /* Arg contains a bit for each supported recording source */
  472. val = codec->record_sources;
  473. break;
  474. case SOUND_MIXER_STEREODEVS: /* Mixer channels supporting stereo */
  475. val = codec->stereo_mixers;
  476. break;
  477. case SOUND_MIXER_CAPS:
  478. val = SOUND_CAP_EXCL_INPUT;
  479. break;
  480. default: /* read a specific mixer */
  481. i = _IOC_NR(cmd);
  482. if (!supported_mixer(codec, i)) 
  483. return -EINVAL;
  484. /* do we ever want to touch the hardware? */
  485.         /* val = codec->read_mixer(codec, i); */
  486. val = codec->mixer_state[i];
  487.   break;
  488. }
  489. return put_user(val, (int *)arg);
  490. }
  491. if (_SIOC_DIR(cmd) == (_SIOC_WRITE|_SIOC_READ)) {
  492. codec->modcnt++;
  493. if (get_user(val, (int *)arg))
  494. return -EFAULT;
  495. switch (_IOC_NR(cmd)) {
  496. case SOUND_MIXER_RECSRC: /* Arg contains a bit for each recording source */
  497. if (!codec->recmask_io) return -EINVAL;
  498. if (!val) return 0;
  499. if (!(val &= codec->record_sources)) return -EINVAL;
  500. codec->recmask_io(codec, 0, val);
  501. return 0;
  502. default: /* write a specific mixer */
  503. i = _IOC_NR(cmd);
  504. if (!supported_mixer(codec, i)) 
  505. return -EINVAL;
  506. ac97_set_mixer(codec, i, val);
  507. return 0;
  508. }
  509. }
  510. return -EINVAL;
  511. }
  512. /* entry point for /proc/driver/controller_vendor/ac97/%d */
  513. int ac97_read_proc (char *page, char **start, off_t off,
  514.     int count, int *eof, void *data)
  515. {
  516. int len = 0, cap, extid, val, id1, id2;
  517. struct ac97_codec *codec;
  518. int is_ac97_20 = 0;
  519. if ((codec = data) == NULL)
  520. return -ENODEV;
  521. id1 = codec->codec_read(codec, AC97_VENDOR_ID1);
  522. id2 = codec->codec_read(codec, AC97_VENDOR_ID2);
  523. len += sprintf (page+len, "Vendor name      : %sn", codec->name);
  524. len += sprintf (page+len, "Vendor id        : %04X %04Xn", id1, id2);
  525. extid = codec->codec_read(codec, AC97_EXTENDED_ID);
  526. extid &= ~((1<<2)|(1<<4)|(1<<5)|(1<<10)|(1<<11)|(1<<12)|(1<<13));
  527. len += sprintf (page+len, "AC97 Version     : %sn",
  528. extid ? "2.0 or later" : "1.0");
  529. if (extid) is_ac97_20 = 1;
  530. cap = codec->codec_read(codec, AC97_RESET);
  531. len += sprintf (page+len, "Capabilities     :%s%s%s%s%s%sn",
  532. cap & 0x0001 ? " -dedicated MIC PCM IN channel-" : "",
  533. cap & 0x0002 ? " -reserved1-" : "",
  534. cap & 0x0004 ? " -bass & treble-" : "",
  535. cap & 0x0008 ? " -simulated stereo-" : "",
  536. cap & 0x0010 ? " -headphone out-" : "",
  537. cap & 0x0020 ? " -loudness-" : "");
  538. val = cap & 0x00c0;
  539. len += sprintf (page+len, "DAC resolutions  :%s%s%sn",
  540. " -16-bit-",
  541. val & 0x0040 ? " -18-bit-" : "",
  542. val & 0x0080 ? " -20-bit-" : "");
  543. val = cap & 0x0300;
  544. len += sprintf (page+len, "ADC resolutions  :%s%s%sn",
  545. " -16-bit-",
  546. val & 0x0100 ? " -18-bit-" : "",
  547. val & 0x0200 ? " -20-bit-" : "");
  548. len += sprintf (page+len, "3D enhancement   : %sn",
  549. ac97_stereo_enhancements[(cap >> 10) & 0x1f]);
  550. val = codec->codec_read(codec, AC97_GENERAL_PURPOSE);
  551. len += sprintf (page+len, "POP path         : %s 3Dn"
  552. "Sim. stereo      : %sn"
  553. "3D enhancement   : %sn"
  554. "Loudness         : %sn"
  555. "Mono output      : %sn"
  556. "MIC select       : %sn"
  557. "ADC/DAC loopback : %sn",
  558. val & 0x8000 ? "post" : "pre",
  559. val & 0x4000 ? "on" : "off",
  560. val & 0x2000 ? "on" : "off",
  561. val & 0x1000 ? "on" : "off",
  562. val & 0x0200 ? "MIC" : "MIX",
  563. val & 0x0100 ? "MIC2" : "MIC1",
  564. val & 0x0080 ? "on" : "off");
  565. extid = codec->codec_read(codec, AC97_EXTENDED_ID);
  566. cap = extid;
  567. len += sprintf (page+len, "Ext Capabilities :%s%s%s%s%s%s%sn",
  568. cap & 0x0001 ? " -var rate PCM audio-" : "",
  569. cap & 0x0002 ? " -2x PCM audio out-" : "",
  570. cap & 0x0008 ? " -var rate MIC in-" : "",
  571. cap & 0x0040 ? " -PCM center DAC-" : "",
  572. cap & 0x0080 ? " -PCM surround DAC-" : "",
  573. cap & 0x0100 ? " -PCM LFE DAC-" : "",
  574. cap & 0x0200 ? " -slot/DAC mappings-" : "");
  575. if (is_ac97_20) {
  576. len += sprintf (page+len, "Front DAC rate   : %dn",
  577. codec->codec_read(codec, AC97_PCM_FRONT_DAC_RATE));
  578. }
  579. return len;
  580. }
  581. /**
  582.  * ac97_probe_codec - Initialize and setup AC97-compatible codec
  583.  * @codec: (in/out) Kernel info for a single AC97 codec
  584.  *
  585.  * Reset the AC97 codec, then initialize the mixer and
  586.  * the rest of the @codec structure.
  587.  *
  588.  * The codec_read and codec_write fields of @codec are
  589.  * required to be setup and working when this function
  590.  * is called.  All other fields are set by this function.
  591.  *
  592.  * codec_wait field of @codec can optionally be provided
  593.  * when calling this function.  If codec_wait is not %NULL,
  594.  * this function will call codec_wait any time it is
  595.  * necessary to wait for the audio chip to reach the
  596.  * codec-ready state.  If codec_wait is %NULL, then
  597.  * the default behavior is to call schedule_timeout.
  598.  * Currently codec_wait is used to wait for AC97 codec
  599.  * reset to complete. 
  600.  *
  601.  * Returns 1 (true) on success, or 0 (false) on failure.
  602.  */
  603.  
  604. int ac97_probe_codec(struct ac97_codec *codec)
  605. {
  606. u16 id1, id2;
  607. u16 audio, modem;
  608. int i;
  609. /* probing AC97 codec, AC97 2.0 says that bit 15 of register 0x00 (reset) should 
  610.  * be read zero.
  611.  *
  612.  * FIXME: is the following comment outdated?  -jgarzik 
  613.  * Probing of AC97 in this way is not reliable, it is not even SAFE !!
  614.  */
  615. codec->codec_write(codec, AC97_RESET, 0L);
  616. /* also according to spec, we wait for codec-ready state */
  617. if (codec->codec_wait)
  618. codec->codec_wait(codec);
  619. else
  620. udelay(10);
  621. if ((audio = codec->codec_read(codec, AC97_RESET)) & 0x8000) {
  622. printk(KERN_ERR "ac97_codec: %s ac97 codec not presentn",
  623.        codec->id ? "Secondary" : "Primary");
  624. return 0;
  625. }
  626. /* probe for Modem Codec */
  627. codec->codec_write(codec, AC97_EXTENDED_MODEM_ID, 0L);
  628. modem = codec->codec_read(codec, AC97_EXTENDED_MODEM_ID);
  629. codec->name = NULL;
  630. codec->codec_ops = &null_ops;
  631. id1 = codec->codec_read(codec, AC97_VENDOR_ID1);
  632. id2 = codec->codec_read(codec, AC97_VENDOR_ID2);
  633. for (i = 0; i < ARRAY_SIZE(ac97_codec_ids); i++) {
  634. if (ac97_codec_ids[i].id == ((id1 << 16) | id2)) {
  635. codec->type = ac97_codec_ids[i].id;
  636. codec->name = ac97_codec_ids[i].name;
  637. codec->codec_ops = ac97_codec_ids[i].ops;
  638. break;
  639. }
  640. }
  641. if (codec->name == NULL)
  642. codec->name = "Unknown";
  643. printk(KERN_INFO "ac97_codec: AC97 %s codec, id: 0x%04x:"
  644.        "0x%04x (%s)n", audio ? "Audio" : (modem ? "Modem" : ""),
  645.        id1, id2, codec->name);
  646. return ac97_init_mixer(codec);
  647. }
  648. static int ac97_init_mixer(struct ac97_codec *codec)
  649. {
  650. u16 cap;
  651. int i;
  652. cap = codec->codec_read(codec, AC97_RESET);
  653. /* mixer masks */
  654. codec->supported_mixers = AC97_SUPPORTED_MASK;
  655. codec->stereo_mixers = AC97_STEREO_MASK;
  656. codec->record_sources = AC97_RECORD_MASK;
  657. if (!(cap & 0x04))
  658. codec->supported_mixers &= ~(SOUND_MASK_BASS|SOUND_MASK_TREBLE);
  659. if (!(cap & 0x10))
  660. codec->supported_mixers &= ~SOUND_MASK_ALTPCM;
  661. /* detect bit resolution */
  662. codec->codec_write(codec, AC97_MASTER_VOL_STEREO, 0x2020);
  663. if(codec->codec_read(codec, AC97_MASTER_VOL_STEREO) == 0x1f1f)
  664. codec->bit_resolution = 5;
  665. else
  666. codec->bit_resolution = 6;
  667. /* generic OSS to AC97 wrapper */
  668. codec->read_mixer = ac97_read_mixer;
  669. codec->write_mixer = ac97_write_mixer;
  670. codec->recmask_io = ac97_recmask_io;
  671. codec->mixer_ioctl = ac97_mixer_ioctl;
  672. /* codec specific initialization for 4-6 channel output or secondary codec stuff */
  673. if (codec->codec_ops->init != NULL) {
  674. codec->codec_ops->init(codec);
  675. }
  676. /* initialize mixer channel volumes */
  677. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) {
  678. struct mixer_defaults *md = &mixer_defaults[i];
  679. if (md->mixer == -1) 
  680. break;
  681. if (!supported_mixer(codec, md->mixer)) 
  682. continue;
  683. ac97_set_mixer(codec, md->mixer, md->value);
  684. }
  685. return 1;
  686. }
  687. #define AC97_SIGMATEL_ANALOG    0x6c /* Analog Special */
  688. #define AC97_SIGMATEL_DAC2INVERT 0x6e
  689. #define AC97_SIGMATEL_BIAS1     0x70
  690. #define AC97_SIGMATEL_BIAS2     0x72
  691. #define AC97_SIGMATEL_MULTICHN  0x74 /* Multi-Channel programming */
  692. #define AC97_SIGMATEL_CIC1      0x76
  693. #define AC97_SIGMATEL_CIC2      0x78
  694. static int sigmatel_9708_init(struct ac97_codec * codec)
  695. {
  696. u16 codec72, codec6c;
  697. codec72 = codec->codec_read(codec, AC97_SIGMATEL_BIAS2) & 0x8000;
  698. codec6c = codec->codec_read(codec, AC97_SIGMATEL_ANALOG);
  699. if ((codec72==0) && (codec6c==0)) {
  700. codec->codec_write(codec, AC97_SIGMATEL_CIC1, 0xabba);
  701. codec->codec_write(codec, AC97_SIGMATEL_CIC2, 0x1000);
  702. codec->codec_write(codec, AC97_SIGMATEL_BIAS1, 0xabba);
  703. codec->codec_write(codec, AC97_SIGMATEL_BIAS2, 0x0007);
  704. } else if ((codec72==0x8000) && (codec6c==0)) {
  705. codec->codec_write(codec, AC97_SIGMATEL_CIC1, 0xabba);
  706. codec->codec_write(codec, AC97_SIGMATEL_CIC2, 0x1001);
  707. codec->codec_write(codec, AC97_SIGMATEL_DAC2INVERT, 0x0008);
  708. } else if ((codec72==0x8000) && (codec6c==0x0080)) {
  709. /* nothing */
  710. }
  711. codec->codec_write(codec, AC97_SIGMATEL_MULTICHN, 0x0000);
  712. return 0;
  713. }
  714. static int sigmatel_9721_init(struct ac97_codec * codec)
  715. {
  716. /* Only set up secondary codec */
  717. if (codec->id == 0)
  718. return 0;
  719. codec->codec_write(codec, AC97_SURROUND_MASTER, 0L);
  720. /* initialize SigmaTel STAC9721/23 as secondary codec, decoding AC link
  721.    sloc 3,4 = 0x01, slot 7,8 = 0x00, */
  722. codec->codec_write(codec, AC97_SIGMATEL_MULTICHN, 0x00);
  723. /* we don't have the crystal when we are on an AMR card, so use
  724.    BIT_CLK as our clock source. Write the magic word ABBA and read
  725.    back to enable register 0x78 */
  726. codec->codec_write(codec, AC97_SIGMATEL_CIC1, 0xabba);
  727. codec->codec_read(codec, AC97_SIGMATEL_CIC1);
  728. /* sync all the clocks*/
  729. codec->codec_write(codec, AC97_SIGMATEL_CIC2, 0x3802);
  730. return 0;
  731. }
  732. static int sigmatel_9744_init(struct ac97_codec * codec)
  733. {
  734. // patch for SigmaTel
  735. codec->codec_write(codec, AC97_SIGMATEL_CIC1, 0xabba);
  736. codec->codec_write(codec, AC97_SIGMATEL_CIC2, 0x0000); // is this correct? --jk
  737. codec->codec_write(codec, AC97_SIGMATEL_BIAS1, 0xabba);
  738. codec->codec_write(codec, AC97_SIGMATEL_BIAS2, 0x0002);
  739. codec->codec_write(codec, AC97_SIGMATEL_MULTICHN, 0x0000);
  740. return 0;
  741. }
  742. static int wolfson_init(struct ac97_codec * codec)
  743. {
  744. codec->codec_write(codec, 0x72, 0x0808);
  745. codec->codec_write(codec, 0x74, 0x0808);
  746. // patch for DVD noise
  747. codec->codec_write(codec, 0x5a, 0x0200);
  748. // init vol as PCM vol
  749. codec->codec_write(codec, 0x70,
  750. codec->codec_read(codec, AC97_PCMOUT_VOL));
  751. codec->codec_write(codec, AC97_SURROUND_MASTER, 0x0000);
  752. return 0;
  753. }
  754. static int tritech_init(struct ac97_codec * codec)
  755. {
  756. codec->codec_write(codec, 0x26, 0x0300);
  757. codec->codec_write(codec, 0x26, 0x0000);
  758. codec->codec_write(codec, AC97_SURROUND_MASTER, 0x0000);
  759. codec->codec_write(codec, AC97_RESERVED_3A, 0x0000);
  760. return 0;
  761. }
  762. /* copied from drivers/sound/maestro.c */
  763. static int tritech_maestro_init(struct ac97_codec * codec)
  764. {
  765. /* no idea what this does */
  766. codec->codec_write(codec, 0x2A, 0x0001);
  767. codec->codec_write(codec, 0x2C, 0x0000);
  768. codec->codec_write(codec, 0x2C, 0XFFFF);
  769. return 0;
  770. }
  771. /*
  772.  * This is basically standard AC97. It should work as a default for
  773.  * almost all modern codecs. Note that some cards wire EAPD *backwards*
  774.  * That side of it is up to the card driver not us to cope with.
  775.  *
  776.  */
  777. static int eapd_control(struct ac97_codec * codec, int on)
  778. {
  779. if(on)
  780. codec->codec_write(codec, AC97_POWER_CONTROL,
  781. codec->codec_read(codec, AC97_POWER_CONTROL)|0x8000);
  782. else
  783. codec->codec_write(codec, AC97_POWER_CONTROL,
  784. codec->codec_read(codec, AC97_POWER_CONTROL)&~0x8000);
  785. return 0;
  786. }
  787. /*
  788.  * Crystal digital audio control (CS4299
  789.  */
  790.  
  791. static int crystal_digital_control(struct ac97_codec *codec, int mode)
  792. {
  793. u16 cv;
  794. switch(mode)
  795. {
  796. case 0: cv = 0x0; break; /* SPEN off */
  797. case 1: cv = 0x8004; break; /* 48KHz digital */
  798. case 2: cv = 0x8104; break; /* 44.1KHz digital */
  799. default:
  800. return -1; /* Not supported yet(eg AC3) */
  801. }
  802. codec->codec_write(codec, 0x68, cv);
  803. return 0;
  804. }
  805. /* copied from drivers/sound/maestro.c */
  806. #if 0  /* there has been 1 person on the planet with a pt101 that we
  807.         know of.  If they care, they can put this back in :) */
  808. static int pt101_init(struct ac97_codec * codec)
  809. {
  810. printk(KERN_INFO "ac97_codec: PT101 Codec detected, initializing but _not_ installing mixer device.n");
  811. /* who knows.. */
  812. codec->codec_write(codec, 0x2A, 0x0001);
  813. codec->codec_write(codec, 0x2C, 0x0000);
  814. codec->codec_write(codec, 0x2C, 0xFFFF);
  815. codec->codec_write(codec, 0x10, 0x9F1F);
  816. codec->codec_write(codec, 0x12, 0x0808);
  817. codec->codec_write(codec, 0x14, 0x9F1F);
  818. codec->codec_write(codec, 0x16, 0x9F1F);
  819. codec->codec_write(codec, 0x18, 0x0404);
  820. codec->codec_write(codec, 0x1A, 0x0000);
  821. codec->codec_write(codec, 0x1C, 0x0000);
  822. codec->codec_write(codec, 0x02, 0x0404);
  823. codec->codec_write(codec, 0x04, 0x0808);
  824. codec->codec_write(codec, 0x0C, 0x801F);
  825. codec->codec_write(codec, 0x0E, 0x801F);
  826. return 0;
  827. }
  828. #endif
  829. EXPORT_SYMBOL(ac97_read_proc);
  830. EXPORT_SYMBOL(ac97_probe_codec);
  831. /*
  832.  * AC97 library support routines
  833.  */
  834.  
  835. /**
  836.  * ac97_set_dac_rate - set codec rate adaption
  837.  * @codec: ac97 code
  838.  * @rate: rate in hertz
  839.  *
  840.  * Set the DAC rate. Assumes the codec supports VRA. The caller is
  841.  * expected to have checked this little detail.
  842.  */
  843.  
  844. unsigned int ac97_set_dac_rate(struct ac97_codec *codec, unsigned int rate)
  845. {
  846. unsigned int new_rate = rate;
  847. u32 dacp;
  848. u32 mast_vol, phone_vol, mono_vol, pcm_vol;
  849. u32 mute_vol = 0x8000; /* The mute volume? */
  850. if(rate != codec->codec_read(codec, AC97_PCM_FRONT_DAC_RATE))
  851. {
  852. /* Mute several registers */
  853. mast_vol = codec->codec_read(codec, AC97_MASTER_VOL_STEREO);
  854. mono_vol = codec->codec_read(codec, AC97_MASTER_VOL_MONO);
  855. phone_vol = codec->codec_read(codec, AC97_HEADPHONE_VOL);
  856. pcm_vol = codec->codec_read(codec, AC97_PCMOUT_VOL);
  857. codec->codec_write(codec, AC97_MASTER_VOL_STEREO, mute_vol);
  858. codec->codec_write(codec, AC97_MASTER_VOL_MONO, mute_vol);
  859. codec->codec_write(codec, AC97_HEADPHONE_VOL, mute_vol);
  860. codec->codec_write(codec, AC97_PCMOUT_VOL, mute_vol);
  861. /* Power down the DAC */
  862. dacp=codec->codec_read(codec, AC97_POWER_CONTROL);
  863. codec->codec_write(codec, AC97_POWER_CONTROL, dacp|0x0200);
  864. /* Load the rate and read the effective rate */
  865. codec->codec_write(codec, AC97_PCM_FRONT_DAC_RATE, rate);
  866. new_rate=codec->codec_read(codec, AC97_PCM_FRONT_DAC_RATE);
  867. /* Power it back up */
  868. codec->codec_write(codec, AC97_POWER_CONTROL, dacp);
  869. /* Restore volumes */
  870. codec->codec_write(codec, AC97_MASTER_VOL_STEREO, mast_vol);
  871. codec->codec_write(codec, AC97_MASTER_VOL_MONO, mono_vol);
  872. codec->codec_write(codec, AC97_HEADPHONE_VOL, phone_vol);
  873. codec->codec_write(codec, AC97_PCMOUT_VOL, pcm_vol);
  874. }
  875. return new_rate;
  876. }
  877. EXPORT_SYMBOL(ac97_set_dac_rate);
  878. /**
  879.  * ac97_set_adc_rate - set codec rate adaption
  880.  * @codec: ac97 code
  881.  * @rate: rate in hertz
  882.  *
  883.  * Set the ADC rate. Assumes the codec supports VRA. The caller is
  884.  * expected to have checked this little detail.
  885.  */
  886. unsigned int ac97_set_adc_rate(struct ac97_codec *codec, unsigned int rate)
  887. {
  888. unsigned int new_rate = rate;
  889. u32 dacp;
  890. if(rate != codec->codec_read(codec, AC97_PCM_LR_ADC_RATE))
  891. {
  892. /* Power down the ADC */
  893. dacp=codec->codec_read(codec, AC97_POWER_CONTROL);
  894. codec->codec_write(codec, AC97_POWER_CONTROL, dacp|0x0100);
  895. /* Load the rate and read the effective rate */
  896. codec->codec_write(codec, AC97_PCM_LR_ADC_RATE, rate);
  897. new_rate=codec->codec_read(codec, AC97_PCM_LR_ADC_RATE);
  898. /* Power it back up */
  899. codec->codec_write(codec, AC97_POWER_CONTROL, dacp);
  900. }
  901. return new_rate;
  902. }
  903. EXPORT_SYMBOL(ac97_set_adc_rate);
  904. int ac97_save_state(struct ac97_codec *codec)
  905. {
  906. return 0;
  907. }
  908. EXPORT_SYMBOL(ac97_save_state);
  909. int ac97_restore_state(struct ac97_codec *codec)
  910. {
  911. int i;
  912. unsigned int left, right, val;
  913. for (i = 0; i < SOUND_MIXER_NRDEVICES; i++) {
  914. if (!supported_mixer(codec, i)) 
  915. continue;
  916. val = codec->mixer_state[i];
  917. right = val >> 8;
  918. left = val  & 0xff;
  919. codec->write_mixer(codec, i, left, right);
  920. }
  921. return 0;
  922. }
  923. EXPORT_SYMBOL(ac97_restore_state);
  924. MODULE_LICENSE("GPL");