awacs.c 32 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148
  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 <linux/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[] = {
  422. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  423. .name = "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 = {
  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 = {
  466. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  467. .name = "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[] = {
  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[] = {
  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_lo[] = {
  541. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  542. };
  543. static struct snd_kcontrol_new snd_pmac_screamer_mixers_imac[] = {
  544. AWACS_VOLUME("Play-through Playback Volume", 5, 6, 1),
  545. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  546. };
  547. static struct snd_kcontrol_new snd_pmac_screamer_mixers_g4agp[] = {
  548. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  549. AWACS_VOLUME("Master Playback Volume", 5, 6, 1),
  550. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  551. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  552. };
  553. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac7500[] = {
  554. AWACS_VOLUME("Line out Playback Volume", 2, 6, 1),
  555. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  556. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  557. };
  558. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac5500[] = {
  559. AWACS_VOLUME("Headphone Playback Volume", 2, 6, 1),
  560. };
  561. static struct snd_kcontrol_new snd_pmac_awacs_mixers_pmac[] = {
  562. AWACS_VOLUME("Master Playback Volume", 2, 6, 1),
  563. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  564. };
  565. /* FIXME: is this correct order?
  566. * screamer (powerbook G3 pismo) seems to have different bits...
  567. */
  568. static struct snd_kcontrol_new snd_pmac_awacs_mixers2[] = {
  569. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_LINE, 0),
  570. AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_MIC, 0),
  571. };
  572. static struct snd_kcontrol_new snd_pmac_screamer_mixers2[] = {
  573. AWACS_SWITCH("Line Capture Switch", 0, SHIFT_MUX_MIC, 0),
  574. AWACS_SWITCH("Mic Capture Switch", 0, SHIFT_MUX_LINE, 0),
  575. };
  576. static struct snd_kcontrol_new snd_pmac_awacs_mixers2_pmac5500[] = {
  577. AWACS_SWITCH("CD Capture Switch", 0, SHIFT_MUX_CD, 0),
  578. };
  579. static struct snd_kcontrol_new snd_pmac_awacs_master_sw =
  580. AWACS_SWITCH("Master Playback Switch", 1, SHIFT_HDMUTE, 1);
  581. static struct snd_kcontrol_new snd_pmac_awacs_master_sw_imac =
  582. AWACS_SWITCH("Line out Playback Switch", 1, SHIFT_HDMUTE, 1);
  583. static struct snd_kcontrol_new snd_pmac_awacs_master_sw_pmac5500 =
  584. AWACS_SWITCH("Headphone Playback Switch", 1, SHIFT_HDMUTE, 1);
  585. static struct snd_kcontrol_new snd_pmac_awacs_mic_boost[] = {
  586. AWACS_SWITCH("Mic Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  587. };
  588. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost[] = {
  589. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  590. .name = "Mic Boost Capture Volume",
  591. .info = snd_pmac_screamer_mic_boost_info,
  592. .get = snd_pmac_screamer_mic_boost_get,
  593. .put = snd_pmac_screamer_mic_boost_put,
  594. },
  595. };
  596. static struct snd_kcontrol_new snd_pmac_awacs_mic_boost_pmac7500[] =
  597. {
  598. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  599. };
  600. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_beige[] =
  601. {
  602. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  603. AWACS_SWITCH("CD Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
  604. };
  605. static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_imac[] =
  606. {
  607. AWACS_SWITCH("Line Boost Capture Switch", 0, SHIFT_GAINLINE, 0),
  608. AWACS_SWITCH("Mic Boost Capture Switch", 6, SHIFT_MIC_BOOST, 0),
  609. };
  610. static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] = {
  611. AWACS_VOLUME("Speaker Playback Volume", 4, 6, 1),
  612. };
  613. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw =
  614. AWACS_SWITCH("Speaker Playback Switch", 1, SHIFT_SPKMUTE, 1);
  615. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac1 =
  616. AWACS_SWITCH("Speaker Playback Switch", 1, SHIFT_PAROUT1, 1);
  617. static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac2 =
  618. AWACS_SWITCH("Speaker Playback Switch", 1, SHIFT_PAROUT1, 0);
  619. /*
  620. * add new mixer elements to the card
  621. */
  622. static int build_mixers(struct snd_pmac *chip, int nums,
  623. struct snd_kcontrol_new *mixers)
  624. {
  625. int i, err;
  626. for (i = 0; i < nums; i++) {
  627. err = snd_ctl_add(chip->card, snd_ctl_new1(&mixers[i], chip));
  628. if (err < 0)
  629. return err;
  630. }
  631. return 0;
  632. }
  633. /*
  634. * restore all registers
  635. */
  636. static void awacs_restore_all_regs(struct snd_pmac *chip)
  637. {
  638. snd_pmac_awacs_write_noreg(chip, 0, chip->awacs_reg[0]);
  639. snd_pmac_awacs_write_noreg(chip, 1, chip->awacs_reg[1]);
  640. snd_pmac_awacs_write_noreg(chip, 2, chip->awacs_reg[2]);
  641. snd_pmac_awacs_write_noreg(chip, 4, chip->awacs_reg[4]);
  642. if (chip->model == PMAC_SCREAMER) {
  643. snd_pmac_awacs_write_noreg(chip, 5, chip->awacs_reg[5]);
  644. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  645. snd_pmac_awacs_write_noreg(chip, 7, chip->awacs_reg[7]);
  646. }
  647. }
  648. #ifdef CONFIG_PM
  649. static void snd_pmac_awacs_suspend(struct snd_pmac *chip)
  650. {
  651. snd_pmac_awacs_write_noreg(chip, 1, (chip->awacs_reg[1]
  652. | MASK_AMUTE | MASK_CMUTE));
  653. }
  654. static void snd_pmac_awacs_resume(struct snd_pmac *chip)
  655. {
  656. if (of_machine_is_compatible("PowerBook3,1")
  657. || of_machine_is_compatible("PowerBook3,2")) {
  658. msleep(100);
  659. snd_pmac_awacs_write_reg(chip, 1,
  660. chip->awacs_reg[1] & ~MASK_PAROUT);
  661. msleep(300);
  662. }
  663. awacs_restore_all_regs(chip);
  664. if (chip->model == PMAC_SCREAMER) {
  665. /* reset power bits in reg 6 */
  666. mdelay(5);
  667. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  668. }
  669. screamer_recalibrate(chip);
  670. #ifdef PMAC_AMP_AVAIL
  671. if (chip->mixer_data) {
  672. struct awacs_amp *amp = chip->mixer_data;
  673. awacs_amp_set_vol(amp, 0,
  674. amp->amp_vol[0][0], amp->amp_vol[0][1], 0);
  675. awacs_amp_set_vol(amp, 1,
  676. amp->amp_vol[1][0], amp->amp_vol[1][1], 0);
  677. awacs_amp_set_tone(amp, amp->amp_tone[0], amp->amp_tone[1]);
  678. awacs_amp_set_master(amp, amp->amp_master);
  679. }
  680. #endif
  681. }
  682. #endif /* CONFIG_PM */
  683. #define IS_PM7500 (of_machine_is_compatible("AAPL,7500") \
  684. || of_machine_is_compatible("AAPL,8500") \
  685. || of_machine_is_compatible("AAPL,9500"))
  686. #define IS_PM5500 (of_machine_is_compatible("AAPL,e411"))
  687. #define IS_BEIGE (of_machine_is_compatible("AAPL,Gossamer"))
  688. #define IS_IMAC1 (of_machine_is_compatible("PowerMac2,1"))
  689. #define IS_IMAC2 (of_machine_is_compatible("PowerMac2,2") \
  690. || of_machine_is_compatible("PowerMac4,1"))
  691. #define IS_G4AGP (of_machine_is_compatible("PowerMac3,1"))
  692. #define IS_LOMBARD (of_machine_is_compatible("PowerBook1,1"))
  693. static int imac1, imac2;
  694. #ifdef PMAC_SUPPORT_AUTOMUTE
  695. /*
  696. * auto-mute stuffs
  697. */
  698. static int snd_pmac_awacs_detect_headphone(struct snd_pmac *chip)
  699. {
  700. return (in_le32(&chip->awacs->codec_stat) & chip->hp_stat_mask) ? 1 : 0;
  701. }
  702. #ifdef PMAC_AMP_AVAIL
  703. static int toggle_amp_mute(struct awacs_amp *amp, int index, int mute)
  704. {
  705. int vol[2];
  706. vol[0] = amp->amp_vol[index][0] & 31;
  707. vol[1] = amp->amp_vol[index][1] & 31;
  708. if (mute) {
  709. vol[0] |= 32;
  710. vol[1] |= 32;
  711. }
  712. return awacs_amp_set_vol(amp, index, vol[0], vol[1], 1);
  713. }
  714. #endif
  715. static void snd_pmac_awacs_update_automute(struct snd_pmac *chip, int do_notify)
  716. {
  717. if (chip->auto_mute) {
  718. #ifdef PMAC_AMP_AVAIL
  719. if (chip->mixer_data) {
  720. struct awacs_amp *amp = chip->mixer_data;
  721. int changed;
  722. if (snd_pmac_awacs_detect_headphone(chip)) {
  723. changed = toggle_amp_mute(amp, AMP_CH_HD, 0);
  724. changed |= toggle_amp_mute(amp, AMP_CH_SPK, 1);
  725. } else {
  726. changed = toggle_amp_mute(amp, AMP_CH_HD, 1);
  727. changed |= toggle_amp_mute(amp, AMP_CH_SPK, 0);
  728. }
  729. if (do_notify && ! changed)
  730. return;
  731. } else
  732. #endif
  733. {
  734. int reg = chip->awacs_reg[1]
  735. | (MASK_HDMUTE | MASK_SPKMUTE);
  736. if (imac1) {
  737. reg &= ~MASK_SPKMUTE;
  738. reg |= MASK_PAROUT1;
  739. } else if (imac2) {
  740. reg &= ~MASK_SPKMUTE;
  741. reg &= ~MASK_PAROUT1;
  742. }
  743. if (snd_pmac_awacs_detect_headphone(chip))
  744. reg &= ~MASK_HDMUTE;
  745. else if (imac1)
  746. reg &= ~MASK_PAROUT1;
  747. else if (imac2)
  748. reg |= MASK_PAROUT1;
  749. else
  750. reg &= ~MASK_SPKMUTE;
  751. if (do_notify && reg == chip->awacs_reg[1])
  752. return;
  753. snd_pmac_awacs_write_reg(chip, 1, reg);
  754. }
  755. if (do_notify) {
  756. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  757. &chip->master_sw_ctl->id);
  758. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  759. &chip->speaker_sw_ctl->id);
  760. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  761. &chip->hp_detect_ctl->id);
  762. }
  763. }
  764. }
  765. #endif /* PMAC_SUPPORT_AUTOMUTE */
  766. /*
  767. * initialize chip
  768. */
  769. int
  770. snd_pmac_awacs_init(struct snd_pmac *chip)
  771. {
  772. int pm7500 = IS_PM7500;
  773. int pm5500 = IS_PM5500;
  774. int beige = IS_BEIGE;
  775. int g4agp = IS_G4AGP;
  776. int lombard = IS_LOMBARD;
  777. int imac;
  778. int err, vol;
  779. struct snd_kcontrol *vmaster_sw, *vmaster_vol;
  780. struct snd_kcontrol *master_vol, *speaker_vol;
  781. imac1 = IS_IMAC1;
  782. imac2 = IS_IMAC2;
  783. imac = imac1 || imac2;
  784. /* looks like MASK_GAINLINE triggers something, so we set here
  785. * as start-up
  786. */
  787. chip->awacs_reg[0] = MASK_MUX_CD | 0xff | MASK_GAINLINE;
  788. chip->awacs_reg[1] = MASK_CMUTE | MASK_AMUTE;
  789. /* FIXME: Only machines with external SRS module need MASK_PAROUT */
  790. if (chip->has_iic || chip->device_id == 0x5 ||
  791. /* chip->_device_id == 0x8 || */
  792. chip->device_id == 0xb)
  793. chip->awacs_reg[1] |= MASK_PAROUT;
  794. /* get default volume from nvram */
  795. // vol = (~nvram_read_byte(0x1308) & 7) << 1;
  796. // vol = ((pmac_xpram_read( 8 ) & 7 ) << 1 );
  797. vol = 0x0f; /* no, on alsa, muted as default */
  798. vol = vol + (vol << 6);
  799. chip->awacs_reg[2] = vol;
  800. chip->awacs_reg[4] = vol;
  801. if (chip->model == PMAC_SCREAMER) {
  802. /* FIXME: screamer has loopthru vol control */
  803. chip->awacs_reg[5] = vol;
  804. /* FIXME: maybe should be vol << 3 for PCMCIA speaker */
  805. chip->awacs_reg[6] = MASK_MIC_BOOST;
  806. chip->awacs_reg[7] = 0;
  807. }
  808. awacs_restore_all_regs(chip);
  809. chip->manufacturer = (in_le32(&chip->awacs->codec_stat) >> 8) & 0xf;
  810. screamer_recalibrate(chip);
  811. chip->revision = (in_le32(&chip->awacs->codec_stat) >> 12) & 0xf;
  812. #ifdef PMAC_AMP_AVAIL
  813. if (chip->revision == 3 && chip->has_iic && CHECK_CUDA_AMP()) {
  814. struct awacs_amp *amp = kzalloc(sizeof(*amp), GFP_KERNEL);
  815. if (! amp)
  816. return -ENOMEM;
  817. chip->mixer_data = amp;
  818. chip->mixer_free = awacs_amp_free;
  819. /* mute and zero vol */
  820. awacs_amp_set_vol(amp, 0, 63, 63, 0);
  821. awacs_amp_set_vol(amp, 1, 63, 63, 0);
  822. awacs_amp_set_tone(amp, 7, 7); /* 0 dB */
  823. awacs_amp_set_master(amp, 79); /* 0 dB */
  824. }
  825. #endif /* PMAC_AMP_AVAIL */
  826. if (chip->hp_stat_mask == 0) {
  827. /* set headphone-jack detection bit */
  828. switch (chip->model) {
  829. case PMAC_AWACS:
  830. chip->hp_stat_mask = pm7500 || pm5500 ? MASK_HDPCONN
  831. : MASK_LOCONN;
  832. break;
  833. case PMAC_SCREAMER:
  834. switch (chip->device_id) {
  835. case 0x08:
  836. case 0x0B:
  837. chip->hp_stat_mask = imac
  838. ? MASK_LOCONN_IMAC |
  839. MASK_HDPLCONN_IMAC |
  840. MASK_HDPRCONN_IMAC
  841. : MASK_HDPCONN;
  842. break;
  843. case 0x00:
  844. case 0x05:
  845. chip->hp_stat_mask = MASK_LOCONN;
  846. break;
  847. default:
  848. chip->hp_stat_mask = MASK_HDPCONN;
  849. break;
  850. }
  851. break;
  852. default:
  853. snd_BUG();
  854. break;
  855. }
  856. }
  857. /*
  858. * build mixers
  859. */
  860. strcpy(chip->card->mixername, "PowerMac AWACS");
  861. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mixers),
  862. snd_pmac_awacs_mixers);
  863. if (err < 0)
  864. return err;
  865. if (beige || g4agp)
  866. ;
  867. else if (chip->model == PMAC_SCREAMER || pm5500)
  868. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_screamer_mixers2),
  869. snd_pmac_screamer_mixers2);
  870. else if (!pm7500)
  871. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mixers2),
  872. snd_pmac_awacs_mixers2);
  873. if (err < 0)
  874. return err;
  875. if (pm5500) {
  876. err = build_mixers(chip,
  877. ARRAY_SIZE(snd_pmac_awacs_mixers2_pmac5500),
  878. snd_pmac_awacs_mixers2_pmac5500);
  879. if (err < 0)
  880. return err;
  881. }
  882. master_vol = NULL;
  883. if (pm7500)
  884. err = build_mixers(chip,
  885. ARRAY_SIZE(snd_pmac_awacs_mixers_pmac7500),
  886. snd_pmac_awacs_mixers_pmac7500);
  887. else if (pm5500)
  888. err = snd_ctl_add(chip->card,
  889. (master_vol = snd_ctl_new1(snd_pmac_awacs_mixers_pmac5500,
  890. chip)));
  891. else if (beige)
  892. err = build_mixers(chip,
  893. ARRAY_SIZE(snd_pmac_screamer_mixers_beige),
  894. snd_pmac_screamer_mixers_beige);
  895. else if (imac || lombard) {
  896. err = snd_ctl_add(chip->card,
  897. (master_vol = snd_ctl_new1(snd_pmac_screamer_mixers_lo,
  898. chip)));
  899. if (err < 0)
  900. return err;
  901. err = build_mixers(chip,
  902. ARRAY_SIZE(snd_pmac_screamer_mixers_imac),
  903. snd_pmac_screamer_mixers_imac);
  904. } else if (g4agp)
  905. err = build_mixers(chip,
  906. ARRAY_SIZE(snd_pmac_screamer_mixers_g4agp),
  907. snd_pmac_screamer_mixers_g4agp);
  908. else
  909. err = build_mixers(chip,
  910. ARRAY_SIZE(snd_pmac_awacs_mixers_pmac),
  911. snd_pmac_awacs_mixers_pmac);
  912. if (err < 0)
  913. return err;
  914. chip->master_sw_ctl = snd_ctl_new1((pm7500 || imac || g4agp || lombard)
  915. ? &snd_pmac_awacs_master_sw_imac
  916. : pm5500
  917. ? &snd_pmac_awacs_master_sw_pmac5500
  918. : &snd_pmac_awacs_master_sw, chip);
  919. err = snd_ctl_add(chip->card, chip->master_sw_ctl);
  920. if (err < 0)
  921. return err;
  922. #ifdef PMAC_AMP_AVAIL
  923. if (chip->mixer_data) {
  924. /* use amplifier. the signal is connected from route A
  925. * to the amp. the amp has its headphone and speaker
  926. * volumes and mute switches, so we use them instead of
  927. * screamer registers.
  928. * in this case, it seems the route C is not used.
  929. */
  930. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_amp_vol),
  931. snd_pmac_awacs_amp_vol);
  932. if (err < 0)
  933. return err;
  934. /* overwrite */
  935. chip->master_sw_ctl = snd_ctl_new1(&snd_pmac_awacs_amp_hp_sw,
  936. chip);
  937. err = snd_ctl_add(chip->card, chip->master_sw_ctl);
  938. if (err < 0)
  939. return err;
  940. chip->speaker_sw_ctl = snd_ctl_new1(&snd_pmac_awacs_amp_spk_sw,
  941. chip);
  942. err = snd_ctl_add(chip->card, chip->speaker_sw_ctl);
  943. if (err < 0)
  944. return err;
  945. } else
  946. #endif /* PMAC_AMP_AVAIL */
  947. {
  948. /* route A = headphone, route C = speaker */
  949. err = snd_ctl_add(chip->card,
  950. (speaker_vol = snd_ctl_new1(snd_pmac_awacs_speaker_vol,
  951. chip)));
  952. if (err < 0)
  953. return err;
  954. chip->speaker_sw_ctl = snd_ctl_new1(imac1
  955. ? &snd_pmac_awacs_speaker_sw_imac1
  956. : imac2
  957. ? &snd_pmac_awacs_speaker_sw_imac2
  958. : &snd_pmac_awacs_speaker_sw, chip);
  959. err = snd_ctl_add(chip->card, chip->speaker_sw_ctl);
  960. if (err < 0)
  961. return err;
  962. }
  963. if (pm5500 || imac || lombard) {
  964. vmaster_sw = snd_ctl_make_virtual_master(
  965. "Master Playback Switch", (unsigned int *) NULL);
  966. err = snd_ctl_add_slave_uncached(vmaster_sw,
  967. chip->master_sw_ctl);
  968. if (err < 0)
  969. return err;
  970. err = snd_ctl_add_slave_uncached(vmaster_sw,
  971. chip->speaker_sw_ctl);
  972. if (err < 0)
  973. return err;
  974. err = snd_ctl_add(chip->card, vmaster_sw);
  975. if (err < 0)
  976. return err;
  977. vmaster_vol = snd_ctl_make_virtual_master(
  978. "Master Playback Volume", (unsigned int *) NULL);
  979. err = snd_ctl_add_slave(vmaster_vol, master_vol);
  980. if (err < 0)
  981. return err;
  982. err = snd_ctl_add_slave(vmaster_vol, speaker_vol);
  983. if (err < 0)
  984. return err;
  985. err = snd_ctl_add(chip->card, vmaster_vol);
  986. if (err < 0)
  987. return err;
  988. }
  989. if (beige || g4agp)
  990. err = build_mixers(chip,
  991. ARRAY_SIZE(snd_pmac_screamer_mic_boost_beige),
  992. snd_pmac_screamer_mic_boost_beige);
  993. else if (imac)
  994. err = build_mixers(chip,
  995. ARRAY_SIZE(snd_pmac_screamer_mic_boost_imac),
  996. snd_pmac_screamer_mic_boost_imac);
  997. else if (chip->model == PMAC_SCREAMER)
  998. err = build_mixers(chip,
  999. ARRAY_SIZE(snd_pmac_screamer_mic_boost),
  1000. snd_pmac_screamer_mic_boost);
  1001. else if (pm7500)
  1002. err = build_mixers(chip,
  1003. ARRAY_SIZE(snd_pmac_awacs_mic_boost_pmac7500),
  1004. snd_pmac_awacs_mic_boost_pmac7500);
  1005. else
  1006. err = build_mixers(chip, ARRAY_SIZE(snd_pmac_awacs_mic_boost),
  1007. snd_pmac_awacs_mic_boost);
  1008. if (err < 0)
  1009. return err;
  1010. /*
  1011. * set lowlevel callbacks
  1012. */
  1013. chip->set_format = snd_pmac_awacs_set_format;
  1014. #ifdef CONFIG_PM
  1015. chip->suspend = snd_pmac_awacs_suspend;
  1016. chip->resume = snd_pmac_awacs_resume;
  1017. #endif
  1018. #ifdef PMAC_SUPPORT_AUTOMUTE
  1019. err = snd_pmac_add_automute(chip);
  1020. if (err < 0)
  1021. return err;
  1022. chip->detect_headphone = snd_pmac_awacs_detect_headphone;
  1023. chip->update_automute = snd_pmac_awacs_update_automute;
  1024. snd_pmac_awacs_update_automute(chip, 0); /* update the status only */
  1025. #endif
  1026. if (chip->model == PMAC_SCREAMER) {
  1027. snd_pmac_awacs_write_noreg(chip, 6, chip->awacs_reg[6]);
  1028. snd_pmac_awacs_write_noreg(chip, 0, chip->awacs_reg[0]);
  1029. }
  1030. return 0;
  1031. }