awacs.c 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082
  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. if (!amp)
  286. return;
  287. kfree(amp);
  288. chip->mixer_data = NULL;
  289. chip->mixer_free = NULL;
  290. }
  291. /*
  292. * mixer controls
  293. */
  294. static int snd_pmac_awacs_info_volume_amp(struct snd_kcontrol *kcontrol,
  295. struct snd_ctl_elem_info *uinfo)
  296. {
  297. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  298. uinfo->count = 2;
  299. uinfo->value.integer.min = 0;
  300. uinfo->value.integer.max = 31;
  301. return 0;
  302. }
  303. static int snd_pmac_awacs_get_volume_amp(struct snd_kcontrol *kcontrol,
  304. struct snd_ctl_elem_value *ucontrol)
  305. {
  306. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  307. int index = kcontrol->private_value;
  308. struct awacs_amp *amp = chip->mixer_data;
  309. ucontrol->value.integer.value[0] = 31 - (amp->amp_vol[index][0] & 31);
  310. ucontrol->value.integer.value[1] = 31 - (amp->amp_vol[index][1] & 31);
  311. return 0;
  312. }
  313. static int snd_pmac_awacs_put_volume_amp(struct snd_kcontrol *kcontrol,
  314. struct snd_ctl_elem_value *ucontrol)
  315. {
  316. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  317. int index = kcontrol->private_value;
  318. int vol[2];
  319. struct awacs_amp *amp = chip->mixer_data;
  320. vol[0] = (31 - (ucontrol->value.integer.value[0] & 31))
  321. | (amp->amp_vol[index][0] & 32);
  322. vol[1] = (31 - (ucontrol->value.integer.value[1] & 31))
  323. | (amp->amp_vol[index][1] & 32);
  324. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  325. }
  326. static int snd_pmac_awacs_get_switch_amp(struct snd_kcontrol *kcontrol,
  327. struct snd_ctl_elem_value *ucontrol)
  328. {
  329. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  330. int index = kcontrol->private_value;
  331. struct awacs_amp *amp = chip->mixer_data;
  332. ucontrol->value.integer.value[0] = (amp->amp_vol[index][0] & 32)
  333. ? 0 : 1;
  334. ucontrol->value.integer.value[1] = (amp->amp_vol[index][1] & 32)
  335. ? 0 : 1;
  336. return 0;
  337. }
  338. static int snd_pmac_awacs_put_switch_amp(struct snd_kcontrol *kcontrol,
  339. struct snd_ctl_elem_value *ucontrol)
  340. {
  341. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  342. int index = kcontrol->private_value;
  343. int vol[2];
  344. struct awacs_amp *amp = chip->mixer_data;
  345. vol[0] = (ucontrol->value.integer.value[0] ? 0 : 32)
  346. | (amp->amp_vol[index][0] & 31);
  347. vol[1] = (ucontrol->value.integer.value[1] ? 0 : 32)
  348. | (amp->amp_vol[index][1] & 31);
  349. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  350. }
  351. static int snd_pmac_awacs_info_tone_amp(struct snd_kcontrol *kcontrol,
  352. struct snd_ctl_elem_info *uinfo)
  353. {
  354. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  355. uinfo->count = 1;
  356. uinfo->value.integer.min = 0;
  357. uinfo->value.integer.max = 14;
  358. return 0;
  359. }
  360. static int snd_pmac_awacs_get_tone_amp(struct snd_kcontrol *kcontrol,
  361. struct snd_ctl_elem_value *ucontrol)
  362. {
  363. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  364. int index = kcontrol->private_value;
  365. struct awacs_amp *amp = chip->mixer_data;
  366. ucontrol->value.integer.value[0] = amp->amp_tone[index];
  367. return 0;
  368. }
  369. static int snd_pmac_awacs_put_tone_amp(struct snd_kcontrol *kcontrol,
  370. struct snd_ctl_elem_value *ucontrol)
  371. {
  372. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  373. int index = kcontrol->private_value;
  374. struct awacs_amp *amp = chip->mixer_data;
  375. unsigned int val;
  376. val = ucontrol->value.integer.value[0];
  377. if (val > 14)
  378. return -EINVAL;
  379. if (val != amp->amp_tone[index]) {
  380. amp->amp_tone[index] = val;
  381. awacs_amp_set_tone(amp, amp->amp_tone[0], amp->amp_tone[1]);
  382. return 1;
  383. }
  384. return 0;
  385. }
  386. static int snd_pmac_awacs_info_master_amp(struct snd_kcontrol *kcontrol,
  387. struct snd_ctl_elem_info *uinfo)
  388. {
  389. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  390. uinfo->count = 1;
  391. uinfo->value.integer.min = 0;
  392. uinfo->value.integer.max = 99;
  393. return 0;
  394. }
  395. static int snd_pmac_awacs_get_master_amp(struct snd_kcontrol *kcontrol,
  396. struct snd_ctl_elem_value *ucontrol)
  397. {
  398. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  399. struct awacs_amp *amp = chip->mixer_data;
  400. ucontrol->value.integer.value[0] = amp->amp_master;
  401. return 0;
  402. }
  403. static int snd_pmac_awacs_put_master_amp(struct snd_kcontrol *kcontrol,
  404. struct snd_ctl_elem_value *ucontrol)
  405. {
  406. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  407. struct awacs_amp *amp = chip->mixer_data;
  408. unsigned int val;
  409. val = ucontrol->value.integer.value[0];
  410. if (val > 99)
  411. return -EINVAL;
  412. if (val != amp->amp_master) {
  413. amp->amp_master = val;
  414. awacs_amp_set_master(amp, amp->amp_master);
  415. return 1;
  416. }
  417. return 0;
  418. }
  419. #define AMP_CH_SPK 0
  420. #define AMP_CH_HD 1
  421. static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __initdata = {
  422. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  423. .name = "PC Speaker Playback Volume",
  424. .info = snd_pmac_awacs_info_volume_amp,
  425. .get = snd_pmac_awacs_get_volume_amp,
  426. .put = snd_pmac_awacs_put_volume_amp,
  427. .private_value = AMP_CH_SPK,
  428. },
  429. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  430. .name = "Headphone Playback Volume",
  431. .info = snd_pmac_awacs_info_volume_amp,
  432. .get = snd_pmac_awacs_get_volume_amp,
  433. .put = snd_pmac_awacs_put_volume_amp,
  434. .private_value = AMP_CH_HD,
  435. },
  436. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  437. .name = "Tone Control - Bass",
  438. .info = snd_pmac_awacs_info_tone_amp,
  439. .get = snd_pmac_awacs_get_tone_amp,
  440. .put = snd_pmac_awacs_put_tone_amp,
  441. .private_value = 0,
  442. },
  443. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  444. .name = "Tone Control - Treble",
  445. .info = snd_pmac_awacs_info_tone_amp,
  446. .get = snd_pmac_awacs_get_tone_amp,
  447. .put = snd_pmac_awacs_put_tone_amp,
  448. .private_value = 1,
  449. },
  450. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  451. .name = "Amp Master Playback Volume",
  452. .info = snd_pmac_awacs_info_master_amp,
  453. .get = snd_pmac_awacs_get_master_amp,
  454. .put = snd_pmac_awacs_put_master_amp,
  455. },
  456. };
  457. static struct snd_kcontrol_new snd_pmac_awacs_amp_hp_sw __initdata = {
  458. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  459. .name = "Headphone Playback Switch",
  460. .info = snd_pmac_boolean_stereo_info,
  461. .get = snd_pmac_awacs_get_switch_amp,
  462. .put = snd_pmac_awacs_put_switch_amp,
  463. .private_value = AMP_CH_HD,
  464. };
  465. static struct snd_kcontrol_new snd_pmac_awacs_amp_spk_sw __initdata = {
  466. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  467. .name = "PC Speaker Playback Switch",
  468. .info = snd_pmac_boolean_stereo_info,
  469. .get = snd_pmac_awacs_get_switch_amp,
  470. .put = snd_pmac_awacs_put_switch_amp,
  471. .private_value = AMP_CH_SPK,
  472. };
  473. #endif /* PMAC_AMP_AVAIL */
  474. /*
  475. * mic boost for screamer
  476. */
  477. static int snd_pmac_screamer_mic_boost_info(struct snd_kcontrol *kcontrol,
  478. struct snd_ctl_elem_info *uinfo)
  479. {
  480. uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
  481. uinfo->count = 1;
  482. uinfo->value.integer.min = 0;
  483. uinfo->value.integer.max = 3;
  484. return 0;
  485. }
  486. static int snd_pmac_screamer_mic_boost_get(struct snd_kcontrol *kcontrol,
  487. struct snd_ctl_elem_value *ucontrol)
  488. {
  489. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  490. int val = 0;
  491. unsigned long flags;
  492. spin_lock_irqsave(&chip->reg_lock, flags);
  493. if (chip->awacs_reg[6] & MASK_MIC_BOOST)
  494. val |= 2;
  495. if (chip->awacs_reg[0] & MASK_GAINLINE)
  496. val |= 1;
  497. spin_unlock_irqrestore(&chip->reg_lock, flags);
  498. ucontrol->value.integer.value[0] = val;
  499. return 0;
  500. }
  501. static int snd_pmac_screamer_mic_boost_put(struct snd_kcontrol *kcontrol,
  502. struct snd_ctl_elem_value *ucontrol)
  503. {
  504. struct snd_pmac *chip = snd_kcontrol_chip(kcontrol);
  505. int changed = 0;
  506. int val0, val6;
  507. unsigned long flags;
  508. spin_lock_irqsave(&chip->reg_lock, flags);
  509. val0 = chip->awacs_reg[0] & ~MASK_GAINLINE;
  510. val6 = chip->awacs_reg[6] & ~MASK_MIC_BOOST;
  511. if (ucontrol->value.integer.value[0] & 1)
  512. val0 |= MASK_GAINLINE;
  513. if (ucontrol->value.integer.value[0] & 2)
  514. val6 |= MASK_MIC_BOOST;
  515. if (val0 != chip->awacs_reg[0]) {
  516. snd_pmac_awacs_write_reg(chip, 0, val0);
  517. changed = 1;
  518. }
  519. if (val6 != chip->awacs_reg[6]) {
  520. snd_pmac_awacs_write_reg(chip, 6, val6);
  521. changed = 1;
  522. }
  523. spin_unlock_irqrestore(&chip->reg_lock, flags);
  524. return changed;
  525. }
  526. /*
  527. * lists of mixer elements
  528. */
  529. static struct snd_kcontrol_new snd_pmac_awacs_mixers[] __initdata = {
  530. AWACS_SWITCH("Master Capture Switch", 1, SHIFT_LOOPTHRU, 0),
  531. AWACS_VOLUME("Master Capture Volume", 0, 4, 0),
  532. /* AWACS_SWITCH("Unknown Playback Switch", 6, SHIFT_PAROUT0, 0), */
  533. };
  534. static struct snd_kcontrol_new snd_pmac_screamer_mixers_beige[] __initdata = {
  535. AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
  536. AWACS_VOLUME("Play-through Playback Volume", 5, 6, 1),
  537. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  538. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_LINE, 0),
  539. };
  540. static struct snd_kcontrol_new snd_pmac_screamer_mixers_imac[] __initdata = {
  541. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  542. AWACS_VOLUME("Master Playback Volume", 5, 6, 1),
  543. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  544. };
  545. static struct snd_kcontrol_new snd_pmac_screamer_mixers_g4agp[] __initdata = {
  546. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  547. AWACS_VOLUME("Master Playback Volume", 5, 6, 1),
  548. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  549. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  550. };
  551. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac7500[] __initdata = {
  552. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  553. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  554. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  555. };
  556. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac[] __initdata = {
  557. AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
  558. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  559. };
  560. /* FIXME: is this correct order?
  561. * screamer (powerbook G3 pismo) seems to have different bits...
  562. */
  563. static struct snd_kcontrol_new snd_pmac_awacs_mixers2[] __initdata = {
  564. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_LINE, 0),
  565. AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_MIC, 0),
  566. };
  567. static struct snd_kcontrol_new snd_pmac_screamer_mixers2[] __initdata = {
  568. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  569. AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_LINE, 0),
  570. };
  571. static struct snd_kcontrol_new snd_pmac_awacs_master_sw __initdata =
  572. AWACS_SWITCH("Master Playback Switch", 1, SHIFT_HDMUTE, 1);
  573. static struct snd_kcontrol_new snd_pmac_awacs_master_sw_imac __initdata =
  574. AWACS_SWITCH("Line out Playback Switch", 1, SHIFT_HDMUTE, 1);
  575. static struct snd_kcontrol_new snd_pmac_awacs_mic_boost[] __initdata = {
  576. AWACS_SWITCH("Mic Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  577. };
  578. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost[] __initdata = {
  579. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  580. .name = "Mic Boost Capture Volume",
  581. .info = snd_pmac_screamer_mic_boost_info,
  582. .get = snd_pmac_screamer_mic_boost_get,
  583. .put = snd_pmac_screamer_mic_boost_put,
  584. },
  585. };
  586. static struct snd_kcontrol_new snd_pmac_awacs_mic_boost_pmac7500[] __initdata =
  587. {
  588. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  589. };
  590. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_beige[] __initdata =
  591. {
  592. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  593. AWACS_SWITCH("CD Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
  594. };
  595. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_imac[] __initdata =
  596. {
  597. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  598. AWACS_SWITCH("Mic Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
  599. };
  600. static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] __initdata = {
  601. AWACS_VOLUME("PC Speaker Playback Volume", 4, 6, 1),
  602. };
  603. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw __initdata =
  604. AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_SPKMUTE, 1);
  605. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac1 __initdata =
  606. AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 1);
  607. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac2 __initdata =
  608. AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 0);
  609. /*
  610. * add new mixer elements to the card
  611. */
  612. static int build_mixers(struct snd_pmac *chip, int nums,
  613. struct snd_kcontrol_new *mixers)
  614. {
  615. int i, err;
  616. for (i = 0; i < nums; i++) {
  617. err = snd_ctl_add(chip->card, snd_ctl_new1(&mixers[i], chip));
  618. if (err < 0)
  619. return err;
  620. }
  621. return 0;
  622. }
  623. /*
  624. * restore all registers
  625. */
  626. static void awacs_restore_all_regs(struct snd_pmac *chip)
  627. {
  628. snd_pmac_awacs_write_noreg(chip, 0, chip->awacs_reg[0]);
  629. snd_pmac_awacs_write_noreg(chip, 1, chip->awacs_reg[1]);
  630. snd_pmac_awacs_write_noreg(chip, 2, chip->awacs_reg[2]);
  631. snd_pmac_awacs_write_noreg(chip, 4, chip->awacs_reg[4]);
  632. if (chip->model == PMAC_SCREAMER) {
  633. snd_pmac_awacs_write_noreg(chip, 5, chip->awacs_reg[5]);
  634. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  635. snd_pmac_awacs_write_noreg(chip, 7, chip->awacs_reg[7]);
  636. }
  637. }
  638. #ifdef CONFIG_PM
  639. static void snd_pmac_awacs_suspend(struct snd_pmac *chip)
  640. {
  641. snd_pmac_awacs_write_noreg(chip, 1, (chip->awacs_reg[1]
  642. | MASK_AMUTE | MASK_CMUTE));
  643. }
  644. static void snd_pmac_awacs_resume(struct snd_pmac *chip)
  645. {
  646. if (machine_is_compatible("PowerBook3,1")
  647. || machine_is_compatible("PowerBook3,2")) {
  648. msleep(100);
  649. snd_pmac_awacs_write_reg(chip, 1,
  650. chip->awacs_reg[1] & ~MASK_PAROUT);
  651. msleep(300);
  652. }
  653. awacs_restore_all_regs(chip);
  654. if (chip->model == PMAC_SCREAMER) {
  655. /* reset power bits in reg 6 */
  656. mdelay(5);
  657. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  658. }
  659. screamer_recalibrate(chip);
  660. #ifdef PMAC_AMP_AVAIL
  661. if (chip->mixer_data) {
  662. struct awacs_amp *amp = chip->mixer_data;
  663. awacs_amp_set_vol(amp, 0,
  664. amp->amp_vol[0][0], amp->amp_vol[0][1], 0);
  665. awacs_amp_set_vol(amp, 1,
  666. amp->amp_vol[1][0], amp->amp_vol[1][1], 0);
  667. awacs_amp_set_tone(amp, amp->amp_tone[0], amp->amp_tone[1]);
  668. awacs_amp_set_master(amp, amp->amp_master);
  669. }
  670. #endif
  671. }
  672. #endif /* CONFIG_PM */
  673. #define IS_PM7500 (machine_is_compatible("AAPL,7500"))
  674. #define IS_PM5500 (machine_is_compatible("AAPL,e411"))
  675. #define IS_BEIGE (machine_is_compatible("AAPL,Gossamer"))
  676. #define IS_IMAC1 (machine_is_compatible("PowerMac2,1"))
  677. #define IS_IMAC2 (machine_is_compatible("PowerMac2,2") \
  678. || machine_is_compatible("PowerMac4,1"))
  679. #define IS_G4AGP (machine_is_compatible("PowerMac3,1"))
  680. #define IS_LOMBARD (machine_is_compatible("PowerBook1,1"))
  681. static int imac1, imac2;
  682. #ifdef PMAC_SUPPORT_AUTOMUTE
  683. /*
  684. * auto-mute stuffs
  685. */
  686. static int snd_pmac_awacs_detect_headphone(struct snd_pmac *chip)
  687. {
  688. return (in_le32(&chip->awacs->codec_stat) & chip->hp_stat_mask) ? 1 : 0;
  689. }
  690. #ifdef PMAC_AMP_AVAIL
  691. static int toggle_amp_mute(struct awacs_amp *amp, int index, int mute)
  692. {
  693. int vol[2];
  694. vol[0] = amp->amp_vol[index][0] & 31;
  695. vol[1] = amp->amp_vol[index][1] & 31;
  696. if (mute) {
  697. vol[0] |= 32;
  698. vol[1] |= 32;
  699. }
  700. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  701. }
  702. #endif
  703. static void snd_pmac_awacs_update_automute(struct snd_pmac *chip, int do_notify)
  704. {
  705. if (chip->auto_mute) {
  706. #ifdef PMAC_AMP_AVAIL
  707. if (chip->mixer_data) {
  708. struct awacs_amp *amp = chip->mixer_data;
  709. int changed;
  710. if (snd_pmac_awacs_detect_headphone(chip)) {
  711. changed = toggle_amp_mute(amp, AMP_CH_HD, 0);
  712. changed |= toggle_amp_mute(amp, AMP_CH_SPK, 1);
  713. } else {
  714. changed = toggle_amp_mute(amp, AMP_CH_HD, 1);
  715. changed |= toggle_amp_mute(amp, AMP_CH_SPK, 0);
  716. }
  717. if (do_notify && ! changed)
  718. return;
  719. } else
  720. #endif
  721. {
  722. int reg = chip->awacs_reg[1]
  723. | (MASK_HDMUTE | MASK_SPKMUTE);
  724. if (imac1) {
  725. reg &= ~MASK_SPKMUTE;
  726. reg |= MASK_PAROUT1;
  727. } else if (imac2) {
  728. reg &= ~MASK_SPKMUTE;
  729. reg &= ~MASK_PAROUT1;
  730. }
  731. if (snd_pmac_awacs_detect_headphone(chip))
  732. reg &= ~MASK_HDMUTE;
  733. else if (imac1)
  734. reg &= ~MASK_PAROUT1;
  735. else if (imac2)
  736. reg |= MASK_PAROUT1;
  737. else
  738. reg &= ~MASK_SPKMUTE;
  739. if (do_notify && reg == chip->awacs_reg[1])
  740. return;
  741. snd_pmac_awacs_write_reg(chip, 1, reg);
  742. }
  743. if (do_notify) {
  744. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  745. &chip->master_sw_ctl->id);
  746. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  747. &chip->speaker_sw_ctl->id);
  748. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  749. &chip->hp_detect_ctl->id);
  750. }
  751. }
  752. }
  753. #endif /* PMAC_SUPPORT_AUTOMUTE */
  754. /*
  755. * initialize chip
  756. */
  757. int __init
  758. snd_pmac_awacs_init(struct snd_pmac *chip)
  759. {
  760. int pm7500 = IS_PM7500;
  761. int pm5500 = IS_PM5500;
  762. int beige = IS_BEIGE;
  763. int g4agp = IS_G4AGP;
  764. int lombard = IS_LOMBARD;
  765. int imac;
  766. int err, vol;
  767. imac1 = IS_IMAC1;
  768. imac2 = IS_IMAC2;
  769. imac = imac1 || imac2;
  770. /* looks like MASK_GAINLINE triggers something, so we set here
  771. * as start-up
  772. */
  773. chip->awacs_reg[0] = MASK_MUX_CD | 0xff | MASK_GAINLINE;
  774. chip->awacs_reg[1] = MASK_CMUTE | MASK_AMUTE;
  775. /* FIXME: Only machines with external SRS module need MASK_PAROUT */
  776. if (chip->has_iic || chip->device_id == 0x5 ||
  777. /* chip->_device_id == 0x8 || */
  778. chip->device_id == 0xb)
  779. chip->awacs_reg[1] |= MASK_PAROUT;
  780. /* get default volume from nvram */
  781. // vol = (~nvram_read_byte(0x1308) & 7) << 1;
  782. // vol = ((pmac_xpram_read( 8 ) & 7 ) << 1 );
  783. vol = 0x0f; /* no, on alsa, muted as default */
  784. vol = vol + (vol << 6);
  785. chip->awacs_reg[2] = vol;
  786. chip->awacs_reg[4] = vol;
  787. if (chip->model == PMAC_SCREAMER) {
  788. /* FIXME: screamer has loopthru vol control */
  789. chip->awacs_reg[5] = vol;
  790. /* FIXME: maybe should be vol << 3 for PCMCIA speaker */
  791. chip->awacs_reg[6] = MASK_MIC_BOOST;
  792. chip->awacs_reg[7] = 0;
  793. }
  794. awacs_restore_all_regs(chip);
  795. chip->manufacturer = (in_le32(&chip->awacs->codec_stat) >> 8) & 0xf;
  796. screamer_recalibrate(chip);
  797. chip->revision = (in_le32(&chip->awacs->codec_stat) >> 12) & 0xf;
  798. #ifdef PMAC_AMP_AVAIL
  799. if (chip->revision == 3 && chip->has_iic && CHECK_CUDA_AMP()) {
  800. struct awacs_amp *amp = kzalloc(sizeof(*amp), GFP_KERNEL);
  801. if (! amp)
  802. return -ENOMEM;
  803. chip->mixer_data = amp;
  804. chip->mixer_free = awacs_amp_free;
  805. /* mute and zero vol */
  806. awacs_amp_set_vol(amp, 0, 63, 63, 0);
  807. awacs_amp_set_vol(amp, 1, 63, 63, 0);
  808. awacs_amp_set_tone(amp, 7, 7); /* 0 dB */
  809. awacs_amp_set_master(amp, 79); /* 0 dB */
  810. }
  811. #endif /* PMAC_AMP_AVAIL */
  812. if (chip->hp_stat_mask == 0) {
  813. /* set headphone-jack detection bit */
  814. switch (chip->model) {
  815. case PMAC_AWACS:
  816. chip->hp_stat_mask = pm7500 || pm5500 ? MASK_HDPCONN
  817. : MASK_LOCONN;
  818. break;
  819. case PMAC_SCREAMER:
  820. switch (chip->device_id) {
  821. case 0x08:
  822. case 0x0B:
  823. chip->hp_stat_mask = imac
  824. ? MASK_LOCONN_IMAC |
  825. MASK_HDPLCONN_IMAC |
  826. MASK_HDPRCONN_IMAC
  827. : MASK_HDPCONN;
  828. break;
  829. case 0x00:
  830. case 0x05:
  831. chip->hp_stat_mask = MASK_LOCONN;
  832. break;
  833. default:
  834. chip->hp_stat_mask = MASK_HDPCONN;
  835. break;
  836. }
  837. break;
  838. default:
  839. snd_BUG();
  840. break;
  841. }
  842. }
  843. /*
  844. * build mixers
  845. */
  846. strcpy(chip->card->mixername, "PowerMac AWACS");
  847. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mixers),
  848. snd_pmac_awacs_mixers);
  849. if (err < 0)
  850. return err;
  851. if (beige || g4agp)
  852. ;
  853. else if (chip->model == PMAC_SCREAMER || pm5500)
  854. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_screamer_mixers2),
  855. snd_pmac_screamer_mixers2);
  856. else if (!pm7500)
  857. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mixers2),
  858. snd_pmac_awacs_mixers2);
  859. if (err < 0)
  860. return err;
  861. if (pm7500)
  862. err = build_mixers(chip,
  863. ARRAY_SIZE(snd_pmac_awacs_mixers_pmac7500),
  864. snd_pmac_awacs_mixers_pmac7500);
  865. else if (beige)
  866. err = build_mixers(chip,
  867. ARRAY_SIZE(snd_pmac_screamer_mixers_beige),
  868. snd_pmac_screamer_mixers_beige);
  869. else if (imac || lombard)
  870. err = build_mixers(chip,
  871. ARRAY_SIZE(snd_pmac_screamer_mixers_imac),
  872. snd_pmac_screamer_mixers_imac);
  873. else if (g4agp)
  874. err = build_mixers(chip,
  875. ARRAY_SIZE(snd_pmac_screamer_mixers_g4agp),
  876. snd_pmac_screamer_mixers_g4agp);
  877. else
  878. err = build_mixers(chip,
  879. ARRAY_SIZE(snd_pmac_awacs_mixers_pmac),
  880. snd_pmac_awacs_mixers_pmac);
  881. if (err < 0)
  882. return err;
  883. chip->master_sw_ctl = snd_ctl_new1((pm7500 || imac || g4agp || lombard)
  884. ? &snd_pmac_awacs_master_sw_imac
  885. : &snd_pmac_awacs_master_sw, chip);
  886. err = snd_ctl_add(chip->card, chip->master_sw_ctl);
  887. if (err < 0)
  888. return err;
  889. #ifdef PMAC_AMP_AVAIL
  890. if (chip->mixer_data) {
  891. /* use amplifier. the signal is connected from route A
  892. * to the amp. the amp has its headphone and speaker
  893. * volumes and mute switches, so we use them instead of
  894. * screamer registers.
  895. * in this case, it seems the route C is not used.
  896. */
  897. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_amp_vol),
  898. snd_pmac_awacs_amp_vol);
  899. if (err < 0)
  900. return err;
  901. /* overwrite */
  902. chip->master_sw_ctl = snd_ctl_new1(&snd_pmac_awacs_amp_hp_sw,
  903. chip);
  904. err = snd_ctl_add(chip->card, chip->master_sw_ctl);
  905. if (err < 0)
  906. return err;
  907. chip->speaker_sw_ctl = snd_ctl_new1(&snd_pmac_awacs_amp_spk_sw,
  908. chip);
  909. err = snd_ctl_add(chip->card, chip->speaker_sw_ctl);
  910. if (err < 0)
  911. return err;
  912. } else
  913. #endif /* PMAC_AMP_AVAIL */
  914. {
  915. /* route A = headphone, route C = speaker */
  916. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_speaker_vol),
  917. snd_pmac_awacs_speaker_vol);
  918. if (err < 0)
  919. return err;
  920. chip->speaker_sw_ctl = snd_ctl_new1(imac1
  921. ? &snd_pmac_awacs_speaker_sw_imac1
  922. : imac2
  923. ? &snd_pmac_awacs_speaker_sw_imac2
  924. : &snd_pmac_awacs_speaker_sw, chip);
  925. err = snd_ctl_add(chip->card, chip->speaker_sw_ctl);
  926. if (err < 0)
  927. return err;
  928. }
  929. if (beige || g4agp)
  930. err = build_mixers(chip,
  931. ARRAY_SIZE(snd_pmac_screamer_mic_boost_beige),
  932. snd_pmac_screamer_mic_boost_beige);
  933. else if (imac)
  934. err = build_mixers(chip,
  935. ARRAY_SIZE(snd_pmac_screamer_mic_boost_imac),
  936. snd_pmac_screamer_mic_boost_imac);
  937. else if (chip->model == PMAC_SCREAMER)
  938. err = build_mixers(chip,
  939. ARRAY_SIZE(snd_pmac_screamer_mic_boost),
  940. snd_pmac_screamer_mic_boost);
  941. else if (pm7500)
  942. err = build_mixers(chip,
  943. ARRAY_SIZE(snd_pmac_awacs_mic_boost_pmac7500),
  944. snd_pmac_awacs_mic_boost_pmac7500);
  945. else
  946. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mic_boost),
  947. snd_pmac_awacs_mic_boost);
  948. if (err < 0)
  949. return err;
  950. /*
  951. * set lowlevel callbacks
  952. */
  953. chip->set_format = snd_pmac_awacs_set_format;
  954. #ifdef CONFIG_PM
  955. chip->suspend = snd_pmac_awacs_suspend;
  956. chip->resume = snd_pmac_awacs_resume;
  957. #endif
  958. #ifdef PMAC_SUPPORT_AUTOMUTE
  959. err = snd_pmac_add_automute(chip);
  960. if (err < 0)
  961. return err;
  962. chip->detect_headphone = snd_pmac_awacs_detect_headphone;
  963. chip->update_automute = snd_pmac_awacs_update_automute;
  964. snd_pmac_awacs_update_automute(chip, 0); /* update the status only */
  965. #endif
  966. if (chip->model == PMAC_SCREAMER) {
  967. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  968. snd_pmac_awacs_write_noreg(chip, 0, chip->awacs_reg[0]);
  969. }
  970. return 0;
  971. }