awacs.c 30 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072
  1. /*
  2. * PMac AWACS lowlevel functions
  3. *
  4. * Copyright (c) by Takashi Iwai <tiwai@suse.de>
  5. * code based on dmasound.c.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. #include <asm/io.h>
  22. #include <asm/nvram.h>
  23. #include <linux/init.h>
  24. #include <linux/delay.h>
  25. #include <linux/slab.h>
  26. #include <sound/core.h>
  27. #include "pmac.h"
  28. #ifdef CONFIG_ADB_CUDA
  29. #define PMAC_AMP_AVAIL
  30. #endif
  31. #ifdef PMAC_AMP_AVAIL
  32. struct awacs_amp {
  33. unsigned char amp_master;
  34. unsigned char amp_vol[2][2];
  35. unsigned char amp_tone[2];
  36. };
  37. #define CHECK_CUDA_AMP() (sys_ctrler == SYS_CTRLER_CUDA)
  38. #endif /* PMAC_AMP_AVAIL */
  39. static void snd_pmac_screamer_wait(struct snd_pmac *chip)
  40. {
  41. long timeout = 2000;
  42. while (!(in_le32(&chip->awacs->codec_stat) & MASK_VALID)) {
  43. mdelay(1);
  44. if (! --timeout) {
  45. snd_printd("snd_pmac_screamer_wait timeout\n");
  46. break;
  47. }
  48. }
  49. }
  50. /*
  51. * write AWACS register
  52. */
  53. static void
  54. snd_pmac_awacs_write(struct snd_pmac *chip, int val)
  55. {
  56. long timeout = 5000000;
  57. if (chip->model == PMAC_SCREAMER)
  58. snd_pmac_screamer_wait(chip);
  59. out_le32(&chip->awacs->codec_ctrl, val | (chip->subframe << 22));
  60. while (in_le32(&chip->awacs->codec_ctrl) & MASK_NEWECMD) {
  61. if (! --timeout) {
  62. snd_printd("snd_pmac_awacs_write timeout\n");
  63. break;
  64. }
  65. }
  66. }
  67. static void
  68. snd_pmac_awacs_write_reg(struct snd_pmac *chip, int reg, int val)
  69. {
  70. snd_pmac_awacs_write(chip, val | (reg << 12));
  71. chip->awacs_reg[reg] = val;
  72. }
  73. static void
  74. snd_pmac_awacs_write_noreg(struct snd_pmac *chip, int reg, int val)
  75. {
  76. snd_pmac_awacs_write(chip, val | (reg << 12));
  77. }
  78. #ifdef CONFIG_PM
  79. /* Recalibrate chip */
  80. static void screamer_recalibrate(struct snd_pmac *chip)
  81. {
  82. if (chip->model != PMAC_SCREAMER)
  83. return;
  84. /* Sorry for the horrible delays... I hope to get that improved
  85. * by making the whole PM process asynchronous in a future version
  86. */
  87. snd_pmac_awacs_write_noreg(chip, 1, chip->awacs_reg[1]);
  88. if (chip->manufacturer == 0x1)
  89. /* delay for broken crystal part */
  90. msleep(750);
  91. snd_pmac_awacs_write_noreg(chip, 1,
  92. chip->awacs_reg[1] | MASK_RECALIBRATE |
  93. MASK_CMUTE | MASK_AMUTE);
  94. snd_pmac_awacs_write_noreg(chip, 1, chip->awacs_reg[1]);
  95. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  96. }
  97. #else
  98. #define screamer_recalibrate(chip) /* NOP */
  99. #endif
  100. /*
  101. * additional callback to set the pcm format
  102. */
  103. static void snd_pmac_awacs_set_format(struct snd_pmac *chip)
  104. {
  105. chip->awacs_reg[1] &= ~MASK_SAMPLERATE;
  106. chip->awacs_reg[1] |= chip->rate_index << 3;
  107. snd_pmac_awacs_write_reg(chip, 1, chip->awacs_reg[1]);
  108. }
  109. /*
  110. * AWACS volume callbacks
  111. */
  112. /*
  113. * volumes: 0-15 stereo
  114. */
  115. static int snd_pmac_awacs_info_volume(struct snd_kcontrol *kcontrol,
  116. struct snd_ctl_elem_info *uinfo)
  117. {
  118. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  119. uinfo->count = 2;
  120. uinfo->value.integer.min = 0;
  121. uinfo->value.integer.max = 15;
  122. return 0;
  123. }
  124. static int snd_pmac_awacs_get_volume(struct snd_kcontrol *kcontrol,
  125. struct snd_ctl_elem_value *ucontrol)
  126. {
  127. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  128. int reg = kcontrol->private_value & 0xff;
  129. int lshift = (kcontrol->private_value >> 8) & 0xff;
  130. int inverted = (kcontrol->private_value >> 16) & 1;
  131. unsigned long flags;
  132. int vol[2];
  133. spin_lock_irqsave(&chip->reg_lock, flags);
  134. vol[0] = (chip->awacs_reg[reg] >> lshift) & 0xf;
  135. vol[1] = chip->awacs_reg[reg] & 0xf;
  136. spin_unlock_irqrestore(&chip->reg_lock, flags);
  137. if (inverted) {
  138. vol[0] = 0x0f - vol[0];
  139. vol[1] = 0x0f - vol[1];
  140. }
  141. ucontrol->value.integer.value[0] = vol[0];
  142. ucontrol->value.integer.value[1] = vol[1];
  143. return 0;
  144. }
  145. static int snd_pmac_awacs_put_volume(struct snd_kcontrol *kcontrol,
  146. struct snd_ctl_elem_value *ucontrol)
  147. {
  148. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  149. int reg = kcontrol->private_value & 0xff;
  150. int lshift = (kcontrol->private_value >> 8) & 0xff;
  151. int inverted = (kcontrol->private_value >> 16) & 1;
  152. int val, oldval;
  153. unsigned long flags;
  154. unsigned int vol[2];
  155. vol[0] = ucontrol->value.integer.value[0];
  156. vol[1] = ucontrol->value.integer.value[1];
  157. if (vol[0] > 0x0f || vol[1] > 0x0f)
  158. return -EINVAL;
  159. if (inverted) {
  160. vol[0] = 0x0f - vol[0];
  161. vol[1] = 0x0f - vol[1];
  162. }
  163. vol[0] &= 0x0f;
  164. vol[1] &= 0x0f;
  165. spin_lock_irqsave(&chip->reg_lock, flags);
  166. oldval = chip->awacs_reg[reg];
  167. val = oldval & ~(0xf | (0xf << lshift));
  168. val |= vol[0] << lshift;
  169. val |= vol[1];
  170. if (oldval != val)
  171. snd_pmac_awacs_write_reg(chip, reg, val);
  172. spin_unlock_irqrestore(&chip->reg_lock, flags);
  173. return oldval != reg;
  174. }
  175. #define AWACS_VOLUME(xname, xreg, xshift, xinverted) \
  176. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
  177. .info = snd_pmac_awacs_info_volume, \
  178. .get = snd_pmac_awacs_get_volume, \
  179. .put = snd_pmac_awacs_put_volume, \
  180. .private_value = (xreg) | ((xshift) << 8) | ((xinverted) << 16) }
  181. /*
  182. * mute master/ogain for AWACS: mono
  183. */
  184. static int snd_pmac_awacs_get_switch(struct snd_kcontrol *kcontrol,
  185. struct snd_ctl_elem_value *ucontrol)
  186. {
  187. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  188. int reg = kcontrol->private_value & 0xff;
  189. int shift = (kcontrol->private_value >> 8) & 0xff;
  190. int invert = (kcontrol->private_value >> 16) & 1;
  191. int val;
  192. unsigned long flags;
  193. spin_lock_irqsave(&chip->reg_lock, flags);
  194. val = (chip->awacs_reg[reg] >> shift) & 1;
  195. spin_unlock_irqrestore(&chip->reg_lock, flags);
  196. if (invert)
  197. val = 1 - val;
  198. ucontrol->value.integer.value[0] = val;
  199. return 0;
  200. }
  201. static int snd_pmac_awacs_put_switch(struct snd_kcontrol *kcontrol,
  202. struct snd_ctl_elem_value *ucontrol)
  203. {
  204. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  205. int reg = kcontrol->private_value & 0xff;
  206. int shift = (kcontrol->private_value >> 8) & 0xff;
  207. int invert = (kcontrol->private_value >> 16) & 1;
  208. int mask = 1 << shift;
  209. int val, changed;
  210. unsigned long flags;
  211. spin_lock_irqsave(&chip->reg_lock, flags);
  212. val = chip->awacs_reg[reg] & ~mask;
  213. if (ucontrol->value.integer.value[0] != invert)
  214. val |= mask;
  215. changed = chip->awacs_reg[reg] != val;
  216. if (changed)
  217. snd_pmac_awacs_write_reg(chip, reg, val);
  218. spin_unlock_irqrestore(&chip->reg_lock, flags);
  219. return changed;
  220. }
  221. #define AWACS_SWITCH(xname, xreg, xshift, xinvert) \
  222. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
  223. .info = snd_pmac_boolean_mono_info, \
  224. .get = snd_pmac_awacs_get_switch, \
  225. .put = snd_pmac_awacs_put_switch, \
  226. .private_value = (xreg) | ((xshift) << 8) | ((xinvert) << 16) }
  227. #ifdef PMAC_AMP_AVAIL
  228. /*
  229. * controls for perch/whisper extension cards, e.g. G3 desktop
  230. *
  231. * TDA7433 connected via i2c address 0x45 (= 0x8a),
  232. * accessed through cuda
  233. */
  234. static void awacs_set_cuda(int reg, int val)
  235. {
  236. struct adb_request req;
  237. cuda_request(&req, NULL, 5, CUDA_PACKET, CUDA_GET_SET_IIC, 0x8a,
  238. reg, val);
  239. while (! req.complete)
  240. cuda_poll();
  241. }
  242. /*
  243. * level = 0 - 14, 7 = 0 dB
  244. */
  245. static void awacs_amp_set_tone(struct awacs_amp *amp, int bass, int treble)
  246. {
  247. amp->amp_tone[0] = bass;
  248. amp->amp_tone[1] = treble;
  249. if (bass > 7)
  250. bass = (14 - bass) + 8;
  251. if (treble > 7)
  252. treble = (14 - treble) + 8;
  253. awacs_set_cuda(2, (bass << 4) | treble);
  254. }
  255. /*
  256. * vol = 0 - 31 (attenuation), 32 = mute bit, stereo
  257. */
  258. static int awacs_amp_set_vol(struct awacs_amp *amp, int index,
  259. int lvol, int rvol, int do_check)
  260. {
  261. if (do_check && amp->amp_vol[index][0] == lvol &&
  262. amp->amp_vol[index][1] == rvol)
  263. return 0;
  264. awacs_set_cuda(3 + index, lvol);
  265. awacs_set_cuda(5 + index, rvol);
  266. amp->amp_vol[index][0] = lvol;
  267. amp->amp_vol[index][1] = rvol;
  268. return 1;
  269. }
  270. /*
  271. * 0 = -79 dB, 79 = 0 dB, 99 = +20 dB
  272. */
  273. static void awacs_amp_set_master(struct awacs_amp *amp, int vol)
  274. {
  275. amp->amp_master = vol;
  276. if (vol <= 79)
  277. vol = 32 + (79 - vol);
  278. else
  279. vol = 32 - (vol - 79);
  280. awacs_set_cuda(1, vol);
  281. }
  282. static void awacs_amp_free(struct snd_pmac *chip)
  283. {
  284. struct awacs_amp *amp = chip->mixer_data;
  285. snd_assert(amp, return);
  286. kfree(amp);
  287. chip->mixer_data = NULL;
  288. chip->mixer_free = NULL;
  289. }
  290. /*
  291. * mixer controls
  292. */
  293. static int snd_pmac_awacs_info_volume_amp(struct snd_kcontrol *kcontrol,
  294. struct snd_ctl_elem_info *uinfo)
  295. {
  296. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  297. uinfo->count = 2;
  298. uinfo->value.integer.min = 0;
  299. uinfo->value.integer.max = 31;
  300. return 0;
  301. }
  302. static int snd_pmac_awacs_get_volume_amp(struct snd_kcontrol *kcontrol,
  303. struct snd_ctl_elem_value *ucontrol)
  304. {
  305. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  306. int index = kcontrol->private_value;
  307. struct awacs_amp *amp = chip->mixer_data;
  308. snd_assert(amp, return -EINVAL);
  309. snd_assert(index >= 0 && index <= 1, return -EINVAL);
  310. ucontrol->value.integer.value[0] = 31 - (amp->amp_vol[index][0] & 31);
  311. ucontrol->value.integer.value[1] = 31 - (amp->amp_vol[index][1] & 31);
  312. return 0;
  313. }
  314. static int snd_pmac_awacs_put_volume_amp(struct snd_kcontrol *kcontrol,
  315. struct snd_ctl_elem_value *ucontrol)
  316. {
  317. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  318. int index = kcontrol->private_value;
  319. int vol[2];
  320. struct awacs_amp *amp = chip->mixer_data;
  321. snd_assert(amp, return -EINVAL);
  322. snd_assert(index >= 0 && index <= 1, return -EINVAL);
  323. vol[0] = (31 - (ucontrol->value.integer.value[0] & 31))
  324. | (amp->amp_vol[index][0] & 32);
  325. vol[1] = (31 - (ucontrol->value.integer.value[1] & 31))
  326. | (amp->amp_vol[index][1] & 32);
  327. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  328. }
  329. static int snd_pmac_awacs_get_switch_amp(struct snd_kcontrol *kcontrol,
  330. struct snd_ctl_elem_value *ucontrol)
  331. {
  332. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  333. int index = kcontrol->private_value;
  334. struct awacs_amp *amp = chip->mixer_data;
  335. snd_assert(amp, return -EINVAL);
  336. snd_assert(index >= 0 && index <= 1, return -EINVAL);
  337. ucontrol->value.integer.value[0] = (amp->amp_vol[index][0] & 32)
  338. ? 0 : 1;
  339. ucontrol->value.integer.value[1] = (amp->amp_vol[index][1] & 32)
  340. ? 0 : 1;
  341. return 0;
  342. }
  343. static int snd_pmac_awacs_put_switch_amp(struct snd_kcontrol *kcontrol,
  344. struct snd_ctl_elem_value *ucontrol)
  345. {
  346. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  347. int index = kcontrol->private_value;
  348. int vol[2];
  349. struct awacs_amp *amp = chip->mixer_data;
  350. snd_assert(amp, return -EINVAL);
  351. snd_assert(index >= 0 && index <= 1, return -EINVAL);
  352. vol[0] = (ucontrol->value.integer.value[0] ? 0 : 32)
  353. | (amp->amp_vol[index][0] & 31);
  354. vol[1] = (ucontrol->value.integer.value[1] ? 0 : 32)
  355. | (amp->amp_vol[index][1] & 31);
  356. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  357. }
  358. static int snd_pmac_awacs_info_tone_amp(struct snd_kcontrol *kcontrol,
  359. struct snd_ctl_elem_info *uinfo)
  360. {
  361. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  362. uinfo->count = 1;
  363. uinfo->value.integer.min = 0;
  364. uinfo->value.integer.max = 14;
  365. return 0;
  366. }
  367. static int snd_pmac_awacs_get_tone_amp(struct snd_kcontrol *kcontrol,
  368. struct snd_ctl_elem_value *ucontrol)
  369. {
  370. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  371. int index = kcontrol->private_value;
  372. struct awacs_amp *amp = chip->mixer_data;
  373. snd_assert(amp, return -EINVAL);
  374. snd_assert(index >= 0 && index <= 1, return -EINVAL);
  375. ucontrol->value.integer.value[0] = amp->amp_tone[index];
  376. return 0;
  377. }
  378. static int snd_pmac_awacs_put_tone_amp(struct snd_kcontrol *kcontrol,
  379. struct snd_ctl_elem_value *ucontrol)
  380. {
  381. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  382. int index = kcontrol->private_value;
  383. struct awacs_amp *amp = chip->mixer_data;
  384. unsigned int val;
  385. snd_assert(amp, return -EINVAL);
  386. snd_assert(index >= 0 && index <= 1, return -EINVAL);
  387. val = ucontrol->value.integer.value[0];
  388. if (val > 14)
  389. return -EINVAL;
  390. if (val != amp->amp_tone[index]) {
  391. amp->amp_tone[index] = val;
  392. awacs_amp_set_tone(amp, amp->amp_tone[0], amp->amp_tone[1]);
  393. return 1;
  394. }
  395. return 0;
  396. }
  397. static int snd_pmac_awacs_info_master_amp(struct snd_kcontrol *kcontrol,
  398. struct snd_ctl_elem_info *uinfo)
  399. {
  400. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  401. uinfo->count = 1;
  402. uinfo->value.integer.min = 0;
  403. uinfo->value.integer.max = 99;
  404. return 0;
  405. }
  406. static int snd_pmac_awacs_get_master_amp(struct snd_kcontrol *kcontrol,
  407. struct snd_ctl_elem_value *ucontrol)
  408. {
  409. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  410. struct awacs_amp *amp = chip->mixer_data;
  411. snd_assert(amp, return -EINVAL);
  412. ucontrol->value.integer.value[0] = amp->amp_master;
  413. return 0;
  414. }
  415. static int snd_pmac_awacs_put_master_amp(struct snd_kcontrol *kcontrol,
  416. struct snd_ctl_elem_value *ucontrol)
  417. {
  418. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  419. struct awacs_amp *amp = chip->mixer_data;
  420. unsigned int val;
  421. snd_assert(amp, return -EINVAL);
  422. val = ucontrol->value.integer.value[0];
  423. if (val > 99)
  424. return -EINVAL;
  425. if (val != amp->amp_master) {
  426. amp->amp_master = val;
  427. awacs_amp_set_master(amp, amp->amp_master);
  428. return 1;
  429. }
  430. return 0;
  431. }
  432. #define AMP_CH_SPK 0
  433. #define AMP_CH_HD 1
  434. static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __initdata = {
  435. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  436. .name = "PC Speaker Playback Volume",
  437. .info = snd_pmac_awacs_info_volume_amp,
  438. .get = snd_pmac_awacs_get_volume_amp,
  439. .put = snd_pmac_awacs_put_volume_amp,
  440. .private_value = AMP_CH_SPK,
  441. },
  442. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  443. .name = "Headphone Playback Volume",
  444. .info = snd_pmac_awacs_info_volume_amp,
  445. .get = snd_pmac_awacs_get_volume_amp,
  446. .put = snd_pmac_awacs_put_volume_amp,
  447. .private_value = AMP_CH_HD,
  448. },
  449. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  450. .name = "Tone Control - Bass",
  451. .info = snd_pmac_awacs_info_tone_amp,
  452. .get = snd_pmac_awacs_get_tone_amp,
  453. .put = snd_pmac_awacs_put_tone_amp,
  454. .private_value = 0,
  455. },
  456. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  457. .name = "Tone Control - Treble",
  458. .info = snd_pmac_awacs_info_tone_amp,
  459. .get = snd_pmac_awacs_get_tone_amp,
  460. .put = snd_pmac_awacs_put_tone_amp,
  461. .private_value = 1,
  462. },
  463. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  464. .name = "Amp Master Playback Volume",
  465. .info = snd_pmac_awacs_info_master_amp,
  466. .get = snd_pmac_awacs_get_master_amp,
  467. .put = snd_pmac_awacs_put_master_amp,
  468. },
  469. };
  470. static struct snd_kcontrol_new snd_pmac_awacs_amp_hp_sw __initdata = {
  471. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  472. .name = "Headphone Playback Switch",
  473. .info = snd_pmac_boolean_stereo_info,
  474. .get = snd_pmac_awacs_get_switch_amp,
  475. .put = snd_pmac_awacs_put_switch_amp,
  476. .private_value = AMP_CH_HD,
  477. };
  478. static struct snd_kcontrol_new snd_pmac_awacs_amp_spk_sw __initdata = {
  479. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  480. .name = "PC Speaker Playback Switch",
  481. .info = snd_pmac_boolean_stereo_info,
  482. .get = snd_pmac_awacs_get_switch_amp,
  483. .put = snd_pmac_awacs_put_switch_amp,
  484. .private_value = AMP_CH_SPK,
  485. };
  486. #endif /* PMAC_AMP_AVAIL */
  487. /*
  488. * mic boost for screamer
  489. */
  490. static int snd_pmac_screamer_mic_boost_info(struct snd_kcontrol *kcontrol,
  491. struct snd_ctl_elem_info *uinfo)
  492. {
  493. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  494. uinfo->count = 1;
  495. uinfo->value.integer.min = 0;
  496. uinfo->value.integer.max = 3;
  497. return 0;
  498. }
  499. static int snd_pmac_screamer_mic_boost_get(struct snd_kcontrol *kcontrol,
  500. struct snd_ctl_elem_value *ucontrol)
  501. {
  502. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  503. int val = 0;
  504. unsigned long flags;
  505. spin_lock_irqsave(&chip->reg_lock, flags);
  506. if (chip->awacs_reg[6] & MASK_MIC_BOOST)
  507. val |= 2;
  508. if (chip->awacs_reg[0] & MASK_GAINLINE)
  509. val |= 1;
  510. spin_unlock_irqrestore(&chip->reg_lock, flags);
  511. ucontrol->value.integer.value[0] = val;
  512. return 0;
  513. }
  514. static int snd_pmac_screamer_mic_boost_put(struct snd_kcontrol *kcontrol,
  515. struct snd_ctl_elem_value *ucontrol)
  516. {
  517. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  518. int changed = 0;
  519. int val0, val6;
  520. unsigned long flags;
  521. spin_lock_irqsave(&chip->reg_lock, flags);
  522. val0 = chip->awacs_reg[0] & ~MASK_GAINLINE;
  523. val6 = chip->awacs_reg[6] & ~MASK_MIC_BOOST;
  524. if (ucontrol->value.integer.value[0] & 1)
  525. val0 |= MASK_GAINLINE;
  526. if (ucontrol->value.integer.value[0] & 2)
  527. val6 |= MASK_MIC_BOOST;
  528. if (val0 != chip->awacs_reg[0]) {
  529. snd_pmac_awacs_write_reg(chip, 0, val0);
  530. changed = 1;
  531. }
  532. if (val6 != chip->awacs_reg[6]) {
  533. snd_pmac_awacs_write_reg(chip, 6, val6);
  534. changed = 1;
  535. }
  536. spin_unlock_irqrestore(&chip->reg_lock, flags);
  537. return changed;
  538. }
  539. /*
  540. * lists of mixer elements
  541. */
  542. static struct snd_kcontrol_new snd_pmac_awacs_mixers[] __initdata = {
  543. AWACS_SWITCH("Master Capture Switch", 1, SHIFT_LOOPTHRU, 0),
  544. AWACS_VOLUME("Master Capture Volume", 0, 4, 0),
  545. /* AWACS_SWITCH("Unknown Playback Switch", 6, SHIFT_PAROUT0, 0), */
  546. };
  547. static struct snd_kcontrol_new snd_pmac_screamer_mixers_beige[] __initdata = {
  548. AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
  549. AWACS_VOLUME("Play-through Playback Volume", 5, 6, 1),
  550. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  551. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_LINE, 0),
  552. };
  553. static struct snd_kcontrol_new snd_pmac_screamer_mixers_imac[] __initdata = {
  554. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  555. AWACS_VOLUME("Master Playback Volume", 5, 6, 1),
  556. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  557. };
  558. static struct snd_kcontrol_new snd_pmac_screamer_mixers_g4agp[] __initdata = {
  559. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  560. AWACS_VOLUME("Master Playback Volume", 5, 6, 1),
  561. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  562. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  563. };
  564. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac7500[] __initdata = {
  565. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  566. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  567. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  568. };
  569. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac[] __initdata = {
  570. AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
  571. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  572. };
  573. /* FIXME: is this correct order?
  574. * screamer (powerbook G3 pismo) seems to have different bits...
  575. */
  576. static struct snd_kcontrol_new snd_pmac_awacs_mixers2[] __initdata = {
  577. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_LINE, 0),
  578. AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_MIC, 0),
  579. };
  580. static struct snd_kcontrol_new snd_pmac_screamer_mixers2[] __initdata = {
  581. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  582. AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_LINE, 0),
  583. };
  584. static struct snd_kcontrol_new snd_pmac_awacs_master_sw __initdata =
  585. AWACS_SWITCH("Master Playback Switch", 1, SHIFT_HDMUTE, 1);
  586. static struct snd_kcontrol_new snd_pmac_awacs_master_sw_imac __initdata =
  587. AWACS_SWITCH("Line out Playback Switch", 1, SHIFT_HDMUTE, 1);
  588. static struct snd_kcontrol_new snd_pmac_awacs_mic_boost[] __initdata = {
  589. AWACS_SWITCH("Mic Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  590. };
  591. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost[] __initdata = {
  592. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  593. .name = "Mic Boost Capture Volume",
  594. .info = snd_pmac_screamer_mic_boost_info,
  595. .get = snd_pmac_screamer_mic_boost_get,
  596. .put = snd_pmac_screamer_mic_boost_put,
  597. },
  598. };
  599. static struct snd_kcontrol_new snd_pmac_awacs_mic_boost_pmac7500[] __initdata =
  600. {
  601. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  602. };
  603. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_beige[] __initdata =
  604. {
  605. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  606. AWACS_SWITCH("CD Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
  607. };
  608. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_imac[] __initdata =
  609. {
  610. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  611. AWACS_SWITCH("Mic Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
  612. };
  613. static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] __initdata = {
  614. AWACS_VOLUME("PC Speaker Playback Volume", 4, 6, 1),
  615. };
  616. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw __initdata =
  617. AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_SPKMUTE, 1);
  618. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac __initdata =
  619. AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 0);
  620. /*
  621. * add new mixer elements to the card
  622. */
  623. static int build_mixers(struct snd_pmac *chip, int nums,
  624. struct snd_kcontrol_new *mixers)
  625. {
  626. int i, err;
  627. for (i = 0; i < nums; i++) {
  628. err = snd_ctl_add(chip->card, snd_ctl_new1(&mixers[i], chip));
  629. if (err < 0)
  630. return err;
  631. }
  632. return 0;
  633. }
  634. /*
  635. * restore all registers
  636. */
  637. static void awacs_restore_all_regs(struct snd_pmac *chip)
  638. {
  639. snd_pmac_awacs_write_noreg(chip, 0, chip->awacs_reg[0]);
  640. snd_pmac_awacs_write_noreg(chip, 1, chip->awacs_reg[1]);
  641. snd_pmac_awacs_write_noreg(chip, 2, chip->awacs_reg[2]);
  642. snd_pmac_awacs_write_noreg(chip, 4, chip->awacs_reg[4]);
  643. if (chip->model == PMAC_SCREAMER) {
  644. snd_pmac_awacs_write_noreg(chip, 5, chip->awacs_reg[5]);
  645. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  646. snd_pmac_awacs_write_noreg(chip, 7, chip->awacs_reg[7]);
  647. }
  648. }
  649. #ifdef CONFIG_PM
  650. static void snd_pmac_awacs_suspend(struct snd_pmac *chip)
  651. {
  652. snd_pmac_awacs_write_noreg(chip, 1, (chip->awacs_reg[1]
  653. | MASK_AMUTE | MASK_CMUTE));
  654. }
  655. static void snd_pmac_awacs_resume(struct snd_pmac *chip)
  656. {
  657. if (machine_is_compatible("PowerBook3,1")
  658. || machine_is_compatible("PowerBook3,2")) {
  659. msleep(100);
  660. snd_pmac_awacs_write_reg(chip, 1,
  661. chip->awacs_reg[1] & ~MASK_PAROUT);
  662. msleep(300);
  663. }
  664. awacs_restore_all_regs(chip);
  665. if (chip->model == PMAC_SCREAMER) {
  666. /* reset power bits in reg 6 */
  667. mdelay(5);
  668. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  669. }
  670. screamer_recalibrate(chip);
  671. #ifdef PMAC_AMP_AVAIL
  672. if (chip->mixer_data) {
  673. struct awacs_amp *amp = chip->mixer_data;
  674. awacs_amp_set_vol(amp, 0,
  675. amp->amp_vol[0][0], amp->amp_vol[0][1], 0);
  676. awacs_amp_set_vol(amp, 1,
  677. amp->amp_vol[1][0], amp->amp_vol[1][1], 0);
  678. awacs_amp_set_tone(amp, amp->amp_tone[0], amp->amp_tone[1]);
  679. awacs_amp_set_master(amp, amp->amp_master);
  680. }
  681. #endif
  682. }
  683. #endif /* CONFIG_PM */
  684. #define IS_PM7500 (machine_is_compatible("AAPL,7500"))
  685. #define IS_BEIGE (machine_is_compatible("AAPL,Gossamer"))
  686. #define IS_IMAC (machine_is_compatible("PowerMac2,1") \
  687. || machine_is_compatible("PowerMac2,2") \
  688. || machine_is_compatible("PowerMac4,1"))
  689. #define IS_G4AGP (machine_is_compatible("PowerMac3,1"))
  690. static int imac;
  691. #ifdef PMAC_SUPPORT_AUTOMUTE
  692. /*
  693. * auto-mute stuffs
  694. */
  695. static int snd_pmac_awacs_detect_headphone(struct snd_pmac *chip)
  696. {
  697. return (in_le32(&chip->awacs->codec_stat) & chip->hp_stat_mask) ? 1 : 0;
  698. }
  699. #ifdef PMAC_AMP_AVAIL
  700. static int toggle_amp_mute(struct awacs_amp *amp, int index, int mute)
  701. {
  702. int vol[2];
  703. vol[0] = amp->amp_vol[index][0] & 31;
  704. vol[1] = amp->amp_vol[index][1] & 31;
  705. if (mute) {
  706. vol[0] |= 32;
  707. vol[1] |= 32;
  708. }
  709. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  710. }
  711. #endif
  712. static void snd_pmac_awacs_update_automute(struct snd_pmac *chip, int do_notify)
  713. {
  714. if (chip->auto_mute) {
  715. #ifdef PMAC_AMP_AVAIL
  716. if (chip->mixer_data) {
  717. struct awacs_amp *amp = chip->mixer_data;
  718. int changed;
  719. if (snd_pmac_awacs_detect_headphone(chip)) {
  720. changed = toggle_amp_mute(amp, AMP_CH_HD, 0);
  721. changed |= toggle_amp_mute(amp, AMP_CH_SPK, 1);
  722. } else {
  723. changed = toggle_amp_mute(amp, AMP_CH_HD, 1);
  724. changed |= toggle_amp_mute(amp, AMP_CH_SPK, 0);
  725. }
  726. if (do_notify && ! changed)
  727. return;
  728. } else
  729. #endif
  730. {
  731. int reg = chip->awacs_reg[1]
  732. | (MASK_HDMUTE | MASK_SPKMUTE);
  733. if (imac) {
  734. reg &= ~MASK_SPKMUTE;
  735. reg &= ~MASK_PAROUT1;
  736. }
  737. if (snd_pmac_awacs_detect_headphone(chip))
  738. reg &= ~MASK_HDMUTE;
  739. else if (imac)
  740. reg |= MASK_PAROUT1;
  741. else
  742. reg &= ~MASK_SPKMUTE;
  743. if (do_notify && reg == chip->awacs_reg[1])
  744. return;
  745. snd_pmac_awacs_write_reg(chip, 1, reg);
  746. }
  747. if (do_notify) {
  748. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  749. &chip->master_sw_ctl->id);
  750. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  751. &chip->speaker_sw_ctl->id);
  752. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  753. &chip->hp_detect_ctl->id);
  754. }
  755. }
  756. }
  757. #endif /* PMAC_SUPPORT_AUTOMUTE */
  758. /*
  759. * initialize chip
  760. */
  761. int __init
  762. snd_pmac_awacs_init(struct snd_pmac *chip)
  763. {
  764. int pm7500 = IS_PM7500;
  765. int beige = IS_BEIGE;
  766. int g4agp = IS_G4AGP;
  767. int err, vol;
  768. imac = IS_IMAC;
  769. /* looks like MASK_GAINLINE triggers something, so we set here
  770. * as start-up
  771. */
  772. chip->awacs_reg[0] = MASK_MUX_CD | 0xff | MASK_GAINLINE;
  773. chip->awacs_reg[1] = MASK_CMUTE | MASK_AMUTE;
  774. /* FIXME: Only machines with external SRS module need MASK_PAROUT */
  775. if (chip->has_iic || chip->device_id == 0x5 ||
  776. /* chip->_device_id == 0x8 || */
  777. chip->device_id == 0xb)
  778. chip->awacs_reg[1] |= MASK_PAROUT;
  779. /* get default volume from nvram */
  780. // vol = (~nvram_read_byte(0x1308) & 7) << 1;
  781. // vol = ((pmac_xpram_read( 8 ) & 7 ) << 1 );
  782. vol = 0x0f; /* no, on alsa, muted as default */
  783. vol = vol + (vol << 6);
  784. chip->awacs_reg[2] = vol;
  785. chip->awacs_reg[4] = vol;
  786. if (chip->model == PMAC_SCREAMER) {
  787. /* FIXME: screamer has loopthru vol control */
  788. chip->awacs_reg[5] = vol;
  789. /* FIXME: maybe should be vol << 3 for PCMCIA speaker */
  790. chip->awacs_reg[6] = MASK_MIC_BOOST;
  791. chip->awacs_reg[7] = 0;
  792. }
  793. awacs_restore_all_regs(chip);
  794. chip->manufacturer = (in_le32(&chip->awacs->codec_stat) >> 8) & 0xf;
  795. screamer_recalibrate(chip);
  796. chip->revision = (in_le32(&chip->awacs->codec_stat) >> 12) & 0xf;
  797. #ifdef PMAC_AMP_AVAIL
  798. if (chip->revision == 3 && chip->has_iic && CHECK_CUDA_AMP()) {
  799. struct awacs_amp *amp = kzalloc(sizeof(*amp), GFP_KERNEL);
  800. if (! amp)
  801. return -ENOMEM;
  802. chip->mixer_data = amp;
  803. chip->mixer_free = awacs_amp_free;
  804. /* mute and zero vol */
  805. awacs_amp_set_vol(amp, 0, 63, 63, 0);
  806. awacs_amp_set_vol(amp, 1, 63, 63, 0);
  807. awacs_amp_set_tone(amp, 7, 7); /* 0 dB */
  808. awacs_amp_set_master(amp, 79); /* 0 dB */
  809. }
  810. #endif /* PMAC_AMP_AVAIL */
  811. if (chip->hp_stat_mask == 0) {
  812. /* set headphone-jack detection bit */
  813. switch (chip->model) {
  814. case PMAC_AWACS:
  815. chip->hp_stat_mask = pm7500 ? MASK_HDPCONN
  816. : MASK_LOCONN;
  817. break;
  818. case PMAC_SCREAMER:
  819. switch (chip->device_id) {
  820. case 0x08:
  821. case 0x0B:
  822. chip->hp_stat_mask = imac
  823. ? MASK_LOCONN_IMAC |
  824. MASK_HDPLCONN_IMAC |
  825. MASK_HDPRCONN_IMAC
  826. : MASK_HDPCONN;
  827. break;
  828. case 0x00:
  829. case 0x05:
  830. chip->hp_stat_mask = MASK_LOCONN;
  831. break;
  832. default:
  833. chip->hp_stat_mask = MASK_HDPCONN;
  834. break;
  835. }
  836. break;
  837. default:
  838. snd_BUG();
  839. break;
  840. }
  841. }
  842. /*
  843. * build mixers
  844. */
  845. strcpy(chip->card->mixername, "PowerMac AWACS");
  846. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mixers),
  847. snd_pmac_awacs_mixers);
  848. if (err < 0)
  849. return err;
  850. if (beige || g4agp)
  851. ;
  852. else if (chip->model == PMAC_SCREAMER)
  853. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_screamer_mixers2),
  854. snd_pmac_screamer_mixers2);
  855. else if (!pm7500)
  856. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mixers2),
  857. snd_pmac_awacs_mixers2);
  858. if (err < 0)
  859. return err;
  860. if (pm7500)
  861. err = build_mixers(chip,
  862. ARRAY_SIZE(snd_pmac_awacs_mixers_pmac7500),
  863. snd_pmac_awacs_mixers_pmac7500);
  864. else if (beige)
  865. err = build_mixers(chip,
  866. ARRAY_SIZE(snd_pmac_screamer_mixers_beige),
  867. snd_pmac_screamer_mixers_beige);
  868. else if (imac)
  869. err = build_mixers(chip,
  870. ARRAY_SIZE(snd_pmac_screamer_mixers_imac),
  871. snd_pmac_screamer_mixers_imac);
  872. else if (g4agp)
  873. err = build_mixers(chip,
  874. ARRAY_SIZE(snd_pmac_screamer_mixers_g4agp),
  875. snd_pmac_screamer_mixers_g4agp);
  876. else
  877. err = build_mixers(chip,
  878. ARRAY_SIZE(snd_pmac_awacs_mixers_pmac),
  879. snd_pmac_awacs_mixers_pmac);
  880. if (err < 0)
  881. return err;
  882. chip->master_sw_ctl = snd_ctl_new1((pm7500 || imac || g4agp)
  883. ? &snd_pmac_awacs_master_sw_imac
  884. : &snd_pmac_awacs_master_sw, chip);
  885. err = snd_ctl_add(chip->card, chip->master_sw_ctl);
  886. if (err < 0)
  887. return err;
  888. #ifdef PMAC_AMP_AVAIL
  889. if (chip->mixer_data) {
  890. /* use amplifier. the signal is connected from route A
  891. * to the amp. the amp has its headphone and speaker
  892. * volumes and mute switches, so we use them instead of
  893. * screamer registers.
  894. * in this case, it seems the route C is not used.
  895. */
  896. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_amp_vol),
  897. snd_pmac_awacs_amp_vol);
  898. if (err < 0)
  899. return err;
  900. /* overwrite */
  901. chip->master_sw_ctl = snd_ctl_new1(&snd_pmac_awacs_amp_hp_sw,
  902. chip);
  903. err = snd_ctl_add(chip->card, chip->master_sw_ctl);
  904. if (err < 0)
  905. return err;
  906. chip->speaker_sw_ctl = snd_ctl_new1(&snd_pmac_awacs_amp_spk_sw,
  907. chip);
  908. err = snd_ctl_add(chip->card, chip->speaker_sw_ctl);
  909. if (err < 0)
  910. return err;
  911. } else
  912. #endif /* PMAC_AMP_AVAIL */
  913. {
  914. /* route A = headphone, route C = speaker */
  915. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_speaker_vol),
  916. snd_pmac_awacs_speaker_vol);
  917. if (err < 0)
  918. return err;
  919. chip->speaker_sw_ctl = snd_ctl_new1(imac
  920. ? &snd_pmac_awacs_speaker_sw_imac
  921. : &snd_pmac_awacs_speaker_sw, chip);
  922. err = snd_ctl_add(chip->card, chip->speaker_sw_ctl);
  923. if (err < 0)
  924. return err;
  925. }
  926. if (beige || g4agp)
  927. err = build_mixers(chip,
  928. ARRAY_SIZE(snd_pmac_screamer_mic_boost_beige),
  929. snd_pmac_screamer_mic_boost_beige);
  930. else if (imac)
  931. err = build_mixers(chip,
  932. ARRAY_SIZE(snd_pmac_screamer_mic_boost_imac),
  933. snd_pmac_screamer_mic_boost_imac);
  934. else if (chip->model == PMAC_SCREAMER)
  935. err = build_mixers(chip,
  936. ARRAY_SIZE(snd_pmac_screamer_mic_boost),
  937. snd_pmac_screamer_mic_boost);
  938. else if (pm7500)
  939. err = build_mixers(chip,
  940. ARRAY_SIZE(snd_pmac_awacs_mic_boost_pmac7500),
  941. snd_pmac_awacs_mic_boost_pmac7500);
  942. else
  943. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mic_boost),
  944. snd_pmac_awacs_mic_boost);
  945. if (err < 0)
  946. return err;
  947. /*
  948. * set lowlevel callbacks
  949. */
  950. chip->set_format = snd_pmac_awacs_set_format;
  951. #ifdef CONFIG_PM
  952. chip->suspend = snd_pmac_awacs_suspend;
  953. chip->resume = snd_pmac_awacs_resume;
  954. #endif
  955. #ifdef PMAC_SUPPORT_AUTOMUTE
  956. err = snd_pmac_add_automute(chip);
  957. if (err < 0)
  958. return err;
  959. chip->detect_headphone = snd_pmac_awacs_detect_headphone;
  960. chip->update_automute = snd_pmac_awacs_update_automute;
  961. snd_pmac_awacs_update_automute(chip, 0); /* update the status only */
  962. #endif
  963. if (chip->model == PMAC_SCREAMER) {
  964. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  965. snd_pmac_awacs_write_noreg(chip, 0, chip->awacs_reg[0]);
  966. }
  967. return 0;
  968. }