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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/sound/dmasound/dmasound_awacs.c
  3.  *
  4.  *  PowerMac `AWACS' and `Burgundy' DMA Sound Driver
  5.  *  with some limited support for DACA & Tumbler
  6.  *
  7.  *  See linux/drivers/sound/dmasound/dmasound_core.c for copyright and
  8.  *  history prior to 2001/01/26.
  9.  *
  10.  * 26/01/2001 ed 0.1 Iain Sandoe
  11.  * - added version info.
  12.  * - moved dbdma command buffer allocation to PMacXXXSqSetup()
  13.  * - fixed up beep dbdma cmd buffers
  14.  *
  15.  * 08/02/2001 [0.2]
  16.  * - make SNDCTL_DSP_GETFMTS return the correct info for the h/w
  17.  * - move soft format translations to a separate file
  18.  * - [0.3] make SNDCTL_DSP_GETCAPS return correct info.
  19.  * - [0.4] more informative machine name strings.
  20.  * - [0.5]
  21.  * - record changes.
  22.  * - made the default_hard/soft entries.
  23.  * 04/04/2001 [0.6]
  24.  * - minor correction to bit assignments in awacs_defs.h
  25.  * - incorporate mixer changes from 2.2.x back-port.
  26.  * - take out passthru as a rec input (it isn't).
  27.  *              - make Input Gain slider work the 'right way up'.
  28.  *              - try to make the mixer sliders more logical - so now the
  29.  *                input selectors are just two-state (>50% == ON) and the
  30.  *                Input Gain slider handles the rest of the gain issues.
  31.  *              - try to pick slider representations that most closely match
  32.  *                the actual use - e.g. IGain for input gain... 
  33.  *              - first stab at over/under-run detection.
  34.  * - minor cosmetic changes to IRQ identification.
  35.  * - fix bug where rates > max would be reported as supported.
  36.  *              - first stab at over/under-run detection.
  37.  *              - make use of i2c for mixer settings conditional on perch
  38.  *                rather than cuda (some machines without perch have cuda).
  39.  *              - fix bug where TX stops when dbdma status comes up "DEAD"
  40.  *   so far only reported on PowerComputing clones ... but.
  41.  * - put in AWACS/Screamer register write timeouts.
  42.  * - part way to partitioning the init() stuff
  43.  * - first pass at 'tumbler' stuff (not support - just an attempt
  44.  *   to allow the driver to load on new G4s).
  45.  *      01/02/2002 [0.7] - BenH
  46.  *         - all sort of minor bits went in since the latest update, I
  47.  *           bumped the version number for that reason
  48. */
  49. /* GENERAL FIXME/TODO: check that the assumptions about what is written to
  50.    mac-io is valid for DACA & Tumbler.
  51.    This driver is in bad need of a rewrite. The dbdma code has to be split,
  52.    some proper device-tree parsing code has to be written, etc...
  53. */
  54. #include <linux/types.h>
  55. #include <linux/module.h>
  56. #include <linux/config.h>
  57. #include <linux/slab.h>
  58. #include <linux/init.h>
  59. #include <linux/delay.h>
  60. #include <linux/soundcard.h>
  61. #include <linux/adb.h>
  62. #include <linux/nvram.h>
  63. #include <linux/tty.h>
  64. #include <linux/vt_kern.h>
  65. #include <linux/irq.h>
  66. #include <linux/kmod.h>
  67. #include <asm/semaphore.h>
  68. #ifdef CONFIG_ADB_CUDA
  69. #include <linux/cuda.h>
  70. #endif
  71. #ifdef CONFIG_ADB_PMU
  72. #include <linux/pmu.h>
  73. #endif
  74. #include <linux/i2c-dev.h>
  75. #include <asm/uaccess.h>
  76. #include <asm/prom.h>
  77. #include <asm/machdep.h>
  78. #include <asm/io.h>
  79. #include <asm/dbdma.h>
  80. #include <asm/pmac_feature.h>
  81. #include <asm/irq.h>
  82. #include <asm/nvram.h>
  83. #include "awacs_defs.h"
  84. #include "dmasound.h"
  85. #define DMASOUND_AWACS_REVISION 0
  86. #define DMASOUND_AWACS_EDITION 7
  87. #define AWACS_BURGUNDY 100 /* fake revision # for burgundy */
  88. #define AWACS_TUMBLER    90 /* fake revision # for tumbler */
  89. #define AWACS_DACA  80 /* fake revision # for daca (ibook) */
  90. #define AWACS_AWACS       2     /* holding revision for AWACS */
  91. #define AWACS_SCREAMER    3     /* holding revision for Screamer */
  92. /*
  93.  * Interrupt numbers and addresses, & info obtained from the device tree.
  94.  */
  95. static int awacs_irq, awacs_tx_irq, awacs_rx_irq;
  96. static volatile struct awacs_regs *awacs;
  97. static volatile struct dbdma_regs *awacs_txdma, *awacs_rxdma;
  98. static int awacs_rate_index;
  99. static int awacs_subframe;
  100. static int awacs_spkr_vol;
  101. static struct device_node* awacs_node;
  102. static char awacs_name[64];
  103. static int awacs_revision;
  104. static int awacs_sleeping;
  105. static DECLARE_MUTEX(dmasound_sem);
  106. static int sound_device_id; /* exists after iMac revA */
  107. static int hw_can_byteswap = 1 ; /* most pmac sound h/w can */
  108. /* model info */
  109. /* To be replaced with better interaction with pmac_feature.c */
  110. static int is_pbook_3X00;
  111. static int is_pbook_g3;
  112. /* expansion info */
  113. static int has_perch;
  114. static int has_ziva;
  115. /* for earlier powerbooks which need fiddling with mac-io to enable
  116.  * cd etc.
  117. */
  118. static unsigned char *latch_base;
  119. static unsigned char *macio_base;
  120. /*
  121.  * Space for the DBDMA command blocks.
  122.  */
  123. static void *awacs_tx_cmd_space;
  124. static volatile struct dbdma_cmd *awacs_tx_cmds;
  125. static int number_of_tx_cmd_buffers = 0;
  126. static void *awacs_rx_cmd_space;
  127. static volatile struct dbdma_cmd *awacs_rx_cmds;
  128. static int number_of_rx_cmd_buffers = 0;
  129. /*
  130.  * Cached values of AWACS registers (we can't read them).
  131.  * Except on the burgundy (and screamer). XXX
  132.  */
  133. int awacs_reg[8];
  134. int awacs_reg1_save;
  135. /* tracking values for the mixer contents
  136. */
  137. static int spk_vol = 0 ;
  138. static int line_vol = 0 ;
  139. static int passthru_vol = 0 ;
  140. static int ip_gain = 0 ; /* mic preamp settings */
  141. static int rec_lev = 0x4545 ; /* default CD gain 69 % */
  142. static int mic_lev = 0 ;
  143. static int cd_lev = 0x6363 ; /* 99 % */
  144. static int line_lev = 0 ;
  145. /*
  146.  * Stuff for outputting a beep.  The values range from -327 to +327
  147.  * so we can multiply by an amplitude in the range 0..100 to get a
  148.  * signed short value to put in the output buffer.
  149.  */
  150. static short beep_wform[256] = {
  151. 0, 40, 79, 117, 153, 187, 218, 245,
  152. 269, 288, 304, 316, 323, 327, 327, 324,
  153. 318, 310, 299, 288, 275, 262, 249, 236,
  154. 224, 213, 204, 196, 190, 186, 183, 182,
  155. 182, 183, 186, 189, 192, 196, 200, 203,
  156. 206, 208, 209, 209, 209, 207, 204, 201,
  157. 197, 193, 188, 183, 179, 174, 170, 166,
  158. 163, 161, 160, 159, 159, 160, 161, 162,
  159. 164, 166, 168, 169, 171, 171, 171, 170,
  160. 169, 167, 163, 159, 155, 150, 144, 139,
  161. 133, 128, 122, 117, 113, 110, 107, 105,
  162. 103, 103, 103, 103, 104, 104, 105, 105,
  163. 105, 103, 101, 97, 92, 86, 78, 68,
  164. 58, 45, 32, 18, 3, -11, -26, -41,
  165. -55, -68, -79, -88, -95, -100, -102, -102,
  166. -99, -93, -85, -75, -62, -48, -33, -16,
  167. 0, 16, 33, 48, 62, 75, 85, 93,
  168. 99, 102, 102, 100, 95, 88, 79, 68,
  169. 55, 41, 26, 11, -3, -18, -32, -45,
  170. -58, -68, -78, -86, -92, -97, -101, -103,
  171. -105, -105, -105, -104, -104, -103, -103, -103,
  172. -103, -105, -107, -110, -113, -117, -122, -128,
  173. -133, -139, -144, -150, -155, -159, -163, -167,
  174. -169, -170, -171, -171, -171, -169, -168, -166,
  175. -164, -162, -161, -160, -159, -159, -160, -161,
  176. -163, -166, -170, -174, -179, -183, -188, -193,
  177. -197, -201, -204, -207, -209, -209, -209, -208,
  178. -206, -203, -200, -196, -192, -189, -186, -183,
  179. -182, -182, -183, -186, -190, -196, -204, -213,
  180. -224, -236, -249, -262, -275, -288, -299, -310,
  181. -318, -324, -327, -327, -323, -316, -304, -288,
  182. -269, -245, -218, -187, -153, -117, -79, -40,
  183. };
  184. /* beep support */
  185. #define BEEP_SRATE 22050 /* 22050 Hz sample rate */
  186. #define BEEP_BUFLEN 512
  187. #define BEEP_VOLUME 15 /* 0 - 100 */
  188. static int beep_vol = BEEP_VOLUME;
  189. static int beep_playing = 0;
  190. static int awacs_beep_state = 0;
  191. static short *beep_buf;
  192. static void *beep_dbdma_cmd_space;
  193. static volatile struct dbdma_cmd *beep_dbdma_cmd;
  194. static void (*orig_mksound)(unsigned int, unsigned int);
  195. /* Burgundy functions */
  196. static void awacs_burgundy_wcw(unsigned addr,unsigned newval);
  197. static unsigned awacs_burgundy_rcw(unsigned addr);
  198. static void awacs_burgundy_write_volume(unsigned address, int volume);
  199. static int awacs_burgundy_read_volume(unsigned address);
  200. static void awacs_burgundy_write_mvolume(unsigned address, int volume);
  201. static int awacs_burgundy_read_mvolume(unsigned address);
  202. /* we will allocate a single 'emergency' dbdma cmd block to use if the
  203.    tx status comes up "DEAD".  This happens on some PowerComputing Pmac
  204.    clones, either owing to a bug in dbdma or some interaction between
  205.    IDE and sound.  However, this measure would deal with DEAD status if
  206.    if appeared elsewhere.
  207.    for the sake of memory efficiency we'll allocate this cmd as part of
  208.    the beep cmd stuff.
  209. */
  210. static volatile struct dbdma_cmd *emergency_dbdma_cmd;
  211. #ifdef CONFIG_PMAC_PBOOK
  212. /*
  213.  * Stuff for restoring after a sleep.
  214.  */
  215. static int awacs_sleep_notify(struct pmu_sleep_notifier *self, int when);
  216. struct pmu_sleep_notifier awacs_sleep_notifier = {
  217. awacs_sleep_notify, SLEEP_LEVEL_SOUND,
  218. };
  219. #endif /* CONFIG_PMAC_PBOOK */
  220. /* for (soft) sample rate translations */
  221. int expand_bal; /* Balance factor for expanding (not volume!) */
  222. /*** Low level stuff *********************************************************/
  223. static void PMacOpen(void);
  224. static void PMacRelease(void);
  225. static void *PMacAlloc(unsigned int size, int flags);
  226. static void PMacFree(void *ptr, unsigned int size);
  227. static int PMacIrqInit(void);
  228. #ifdef MODULE
  229. static void PMacIrqCleanup(void);
  230. #endif
  231. static void PMacSilence(void);
  232. static void PMacInit(void);
  233. static int PMacSetFormat(int format);
  234. static int PMacSetVolume(int volume);
  235. static void PMacPlay(void);
  236. static void PMacRecord(void);
  237. static void pmac_awacs_tx_intr(int irq, void *devid, struct pt_regs *regs);
  238. static void pmac_awacs_rx_intr(int irq, void *devid, struct pt_regs *regs);
  239. static void pmac_awacs_intr(int irq, void *devid, struct pt_regs *regs);
  240. static void awacs_write(int val);
  241. static int awacs_get_volume(int reg, int lshift);
  242. static int awacs_volume_setter(int volume, int n, int mute, int lshift);
  243. static void awacs_mksound(unsigned int hz, unsigned int ticks);
  244. static void awacs_nosound(unsigned long xx);
  245. /*** Mid level stuff **********************************************************/
  246. static int PMacMixerIoctl(u_int cmd, u_long arg);
  247. static int PMacWriteSqSetup(void);
  248. static int PMacReadSqSetup(void);
  249. static void PMacAbortRead(void);
  250. extern TRANS transAwacsNormal ;
  251. extern TRANS transAwacsExpand ;
  252. extern TRANS transAwacsNormalRead ;
  253. extern int daca_init(void);
  254. extern int daca_cleanup(void);
  255. extern int daca_set_volume(uint left_vol, uint right_vol);
  256. extern void daca_get_volume(uint * left_vol, uint  *right_vol);
  257. extern int daca_enter_sleep(void);
  258. extern int daca_leave_sleep(void);
  259. extern int tas_init(void);
  260. extern int tas_cleanup(void);
  261. extern int tumbler_set_volume(uint left_vol, uint right_vol);
  262. extern void tumbler_get_volume(uint * left_vol, uint  *right_vol);
  263. extern void tumbler_set_treble(int treble);
  264. extern void tumbler_get_treble(int *treble);
  265. extern void tumbler_set_bass(int bass);
  266. extern void tumbler_get_bass(int *bass);
  267. extern void tumbler_set_pcm_lvl(int pcm_lvl);
  268. extern void tumbler_get_pcm_lvl(int *pcm_lvl);
  269. extern int tumbler_enter_sleep(void);
  270. extern int tumbler_leave_sleep(void);
  271. #define TRY_LOCK()
  272. if ((rc = down_interruptible(&dmasound_sem)) != 0)
  273. return rc;
  274. #define LOCK() down(&dmasound_sem);
  275. #define UNLOCK() up(&dmasound_sem);
  276. /* We use different versions that the ones provided in dmasound.h
  277.  * 
  278.  * FIXME: Use different names ;)
  279.  */
  280. #undef IOCTL_IN
  281. #undef IOCTL_OUT
  282. #define IOCTL_IN(arg, ret)
  283. rc = get_user(ret, (int *)(arg)); 
  284. if (rc) break;
  285. #define IOCTL_OUT(arg, ret)
  286. ioctl_return2((int *)(arg), ret)
  287. static inline int ioctl_return2(int *addr, int value)
  288. {
  289. return value < 0 ? value : put_user(value, addr);
  290. }
  291. /*** AE - TUMBLER START *********************************************************/
  292. int gpio_audio_reset, gpio_audio_reset_pol;
  293. int gpio_amp_mute, gpio_amp_mute_pol;
  294. int gpio_headphone_mute, gpio_headphone_mute_pol;
  295. int gpio_headphone_detect, gpio_headphone_detect_pol;
  296. int gpio_headphone_irq;
  297. int
  298. setup_audio_gpio(const char *name, const char* compatible, int *gpio_addr, int* gpio_pol)
  299. {
  300. struct device_node *np;
  301. u32* pp;
  302. np = find_devices("gpio");
  303. if (!np)
  304. return -ENODEV;
  305. np = np->child;
  306. while(np != 0) {
  307. if (name) {
  308. char *property = get_property(np,"audio-gpio",NULL);
  309. if (property != 0 && strcmp(property,name) == 0)
  310. break;
  311. } else if (compatible && device_is_compatible(np, compatible))
  312. break;
  313. np = np->sibling;
  314. }
  315. if (!np)
  316. return -ENODEV;
  317. pp = (u32 *)get_property(np, "AAPL,address", NULL);
  318. if (!pp)
  319. return -ENODEV;
  320. *gpio_addr = (*pp) & 0x0000ffff;
  321. pp = (u32 *)get_property(np, "audio-gpio-active-state", NULL);
  322. if (pp)
  323. *gpio_pol = *pp;
  324. else
  325. *gpio_pol = 1;
  326. if (np->n_intrs > 0)
  327. return np->intrs[0].line;
  328. return 0;
  329. }
  330. static inline void
  331. write_audio_gpio(int gpio_addr, int data)
  332. {
  333. if (!gpio_addr)
  334. return;
  335. pmac_call_feature(PMAC_FTR_WRITE_GPIO, NULL, gpio_addr, data ? 0x05 : 0x04);
  336. }
  337. static inline int
  338. read_audio_gpio(int gpio_addr)
  339. {
  340. if (!gpio_addr)
  341. return 0;
  342. return ((pmac_call_feature(PMAC_FTR_READ_GPIO, NULL, gpio_addr, 0) & 0x02) !=0);
  343. }
  344. static void
  345. headphone_intr(int irq, void *devid, struct pt_regs *regs)
  346. {
  347. if (read_audio_gpio(gpio_headphone_detect) == gpio_headphone_detect_pol) {
  348. printk(KERN_INFO "Audio jack plugged, muting speakers.n");
  349. write_audio_gpio(gpio_amp_mute, gpio_amp_mute_pol);
  350. write_audio_gpio(gpio_headphone_mute, !gpio_headphone_mute_pol);
  351. } else {
  352. printk(KERN_INFO "Audio jack unplugged, enabling speakers.n");
  353. write_audio_gpio(gpio_amp_mute, !gpio_amp_mute_pol);
  354. write_audio_gpio(gpio_headphone_mute, gpio_headphone_mute_pol);
  355. }
  356. }
  357. /* Initialize tumbler */
  358. static int
  359. awacs_tumbler_init(void)
  360. {
  361. setup_audio_gpio(
  362. "audio-hw-reset",
  363. NULL,
  364. &gpio_audio_reset,
  365. &gpio_audio_reset_pol);
  366. setup_audio_gpio(
  367. "amp-mute",
  368. NULL,
  369. &gpio_amp_mute,
  370. &gpio_amp_mute_pol);
  371. setup_audio_gpio("headphone-mute",
  372. NULL,
  373. &gpio_headphone_mute,
  374. &gpio_headphone_mute_pol);
  375. gpio_headphone_irq = setup_audio_gpio(
  376. "headphone-detect",
  377. NULL,
  378. &gpio_headphone_detect,
  379. &gpio_headphone_detect_pol);
  380. /* Fix some broken OF entries in desktop machines */
  381. if (!gpio_headphone_irq)
  382. gpio_headphone_irq = setup_audio_gpio(
  383. NULL,
  384. "keywest-gpio15",
  385. &gpio_headphone_detect,
  386. &gpio_headphone_detect_pol);
  387. write_audio_gpio(gpio_audio_reset, gpio_audio_reset_pol);
  388. wait_ms(100);
  389. write_audio_gpio(gpio_audio_reset, !gpio_audio_reset_pol);
  390. wait_ms(100);
  391.    if (gpio_headphone_irq) {
  392. if (request_irq(gpio_headphone_irq,headphone_intr,0,"Headphone detect",0) < 0) {
  393.      printk(KERN_ERR "tumbler: Can't request headphone interruptn");
  394.      gpio_headphone_irq = 0;
  395.      } else {
  396. u8 val;
  397. /* Activate headphone status interrupts */
  398. val = pmac_call_feature(PMAC_FTR_READ_GPIO, NULL, gpio_headphone_detect, 0);
  399. pmac_call_feature(PMAC_FTR_WRITE_GPIO, NULL, gpio_headphone_detect, val | 0x80);
  400. /* Trigger it */
  401.    headphone_intr(0,0,0);
  402.    }
  403.    }
  404.    if (!gpio_headphone_irq) {
  405.    /* Some machine enter this case ? */
  406.    printk(KERN_WARNING "tumbler: Headphone detect IRQ not found, enabling all outputs !n");
  407.    write_audio_gpio(gpio_amp_mute, !gpio_amp_mute_pol);
  408.    write_audio_gpio(gpio_headphone_mute, !gpio_headphone_mute_pol);
  409.    }
  410. return 0;
  411. }
  412. static int
  413. awacs_tumbler_cleanup(void)
  414. {
  415. if (gpio_headphone_irq)
  416. free_irq(gpio_headphone_irq, 0);
  417. return 0;
  418. }
  419. /*** AE - TUMBLER END *********************************************************/
  420. /*** Low level stuff *********************************************************/
  421. /*
  422.  * PCI PowerMac, with AWACS, Screamer, Burgundy, DACA or Tumbler and DBDMA.
  423.  */
  424. static void PMacOpen(void)
  425. {
  426. MOD_INC_USE_COUNT;
  427. }
  428. static void PMacRelease(void)
  429. {
  430. MOD_DEC_USE_COUNT;
  431. }
  432. static void *PMacAlloc(unsigned int size, int flags)
  433. {
  434. return kmalloc(size, flags);
  435. }
  436. static void PMacFree(void *ptr, unsigned int size)
  437. {
  438. kfree(ptr);
  439. }
  440. static int __init PMacIrqInit(void)
  441. {
  442. if (request_irq(awacs_irq, pmac_awacs_intr, 0, "Built-in Sound misc", 0)
  443.     || request_irq(awacs_tx_irq, pmac_awacs_tx_intr, 0, "Built-in Sound out", 0)
  444.     || request_irq(awacs_rx_irq, pmac_awacs_rx_intr, 0, "Built-in Sound in", 0))
  445. return 0;
  446. return 1;
  447. }
  448. #ifdef MODULE
  449. static void PMacIrqCleanup(void)
  450. {
  451. /* turn off input & output dma */
  452. DBDMA_DO_STOP(awacs_txdma);
  453. DBDMA_DO_STOP(awacs_rxdma);
  454. /* disable interrupts from awacs interface */
  455. out_le32(&awacs->control, in_le32(&awacs->control) & 0xfff);
  456. /* Switch off the sound clock */
  457. pmac_call_feature(PMAC_FTR_SOUND_CHIP_ENABLE, awacs_node, 0, 0);
  458. /* Make sure proper bits are set on pismo & tipb */
  459. if (machine_is_compatible("PowerBook3,1") ||
  460.     machine_is_compatible("PowerBook3,2")) {
  461. awacs_reg[1] |= MASK_PAROUT0 | MASK_PAROUT1;
  462. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  463. wait_ms(200);
  464. }
  465. free_irq(awacs_irq, 0);
  466. free_irq(awacs_tx_irq, 0);
  467. free_irq(awacs_rx_irq, 0);
  468. /* all OF versions I've seen use this value */
  469. iounmap((void *)awacs);
  470. iounmap((void *)awacs_txdma);
  471. iounmap((void *)awacs_rxdma);
  472. release_OF_resource(awacs_node, 0);
  473. release_OF_resource(awacs_node, 1);
  474. release_OF_resource(awacs_node, 2);
  475. if (awacs_tx_cmd_space)
  476. kfree(awacs_tx_cmd_space);
  477. if (awacs_rx_cmd_space)
  478. kfree(awacs_rx_cmd_space);
  479. if (beep_dbdma_cmd_space)
  480. kfree(beep_dbdma_cmd_space);
  481. if (beep_buf) {
  482. kfree(beep_buf);
  483. kd_mksound = orig_mksound;
  484. }
  485. #ifdef CONFIG_PMAC_PBOOK
  486. pmu_unregister_sleep_notifier(&awacs_sleep_notifier);
  487. #endif
  488. }
  489. #endif /* MODULE */
  490. static void PMacSilence(void)
  491. {
  492. /* turn off output dma */
  493. DBDMA_DO_STOP(awacs_txdma);
  494. }
  495. static int tumbler_freqs[2] = { 48000, 44100 } ;
  496. static int tumbler_freqs_ok[2] = { 1, 1 } ;
  497. /* don't know what to do really - just have to leave it where
  498.  * OF left things
  499. */
  500. static int tumbler_set_frame_rate(void)
  501. {
  502. dmasound.hard.speed = 44100 ;
  503. awacs_rate_index = 0 ;
  504. return 44100 ;
  505. }
  506. /* don't know what to do really - just have to leave it where
  507.  * OF left things
  508. */
  509. static int daca_set_frame_rate(void)
  510. {
  511. dmasound.hard.speed = 44100 ;
  512. awacs_rate_index = 0 ;
  513. return 44100 ;
  514. }
  515. static int awacs_freqs[8] = {
  516. 44100, 29400, 22050, 17640, 14700, 11025, 8820, 7350
  517. };
  518. static int awacs_freqs_ok[8] = { 1, 1, 1, 1, 1, 1, 1, 1 };
  519. static int awacs_set_frame_rate(int desired, int catch_r)
  520. {
  521. int tolerance, i = 8 ;
  522. /*
  523.  * If we have a sample rate which is within catchRadius percent
  524.  * of the requested value, we don't have to expand the samples.
  525.  * Otherwise choose the next higher rate.
  526.  * N.B.: burgundy awacs only works at 44100 Hz.
  527.  */
  528. do {
  529. tolerance = catch_r * awacs_freqs[--i] / 100;
  530. if (awacs_freqs_ok[i]
  531.     && dmasound.soft.speed <= awacs_freqs[i] + tolerance)
  532. break;
  533. } while (i > 0);
  534. dmasound.hard.speed = awacs_freqs[i];
  535. awacs_rate_index = i;
  536. out_le32(&awacs->control, MASK_IEPC | (i << 8) | 0x11 );
  537. awacs_reg[1] = (awacs_reg[1] & ~MASK_SAMPLERATE) | (i << 3);
  538. awacs_write(awacs_reg[1] | MASK_ADDR1);
  539. return dmasound.hard.speed;
  540. }
  541. static int burgundy_frame_rates = 1 ;
  542. static int burgundy_set_frame_rate(void)
  543. {
  544. #ifdef DEBUG_DMASOUND
  545. if (burgundy_frame_rates > 1)
  546. printk("dmasound_pmac: warning Burgundy had more than one frame raten");
  547. #endif
  548. awacs_rate_index = 0 ;
  549. awacs_reg[1] = (awacs_reg[1] & ~MASK_SAMPLERATE) ;
  550. /* XXX disable error interrupt on burgundy for now */
  551. out_le32(&awacs->control, MASK_IEPC | 0 | 0x11 | MASK_IEE);
  552. return 44100 ;
  553. }
  554. static int set_frame_rate(int desired, int catch_r)
  555. {
  556. switch (awacs_revision) {
  557. case AWACS_BURGUNDY:
  558. dmasound.hard.speed =
  559.   burgundy_set_frame_rate();
  560. break ;
  561. case AWACS_TUMBLER:
  562. dmasound.hard.speed =
  563.   tumbler_set_frame_rate();
  564. break ;
  565. case AWACS_DACA:
  566. dmasound.hard.speed =
  567.   daca_set_frame_rate();
  568. break ;
  569. default:
  570. dmasound.hard.speed =
  571.   awacs_set_frame_rate(desired, catch_r);
  572. break ;
  573. }
  574. return dmasound.hard.speed ;
  575. }
  576. static void
  577. awacs_recalibrate(void)
  578. {
  579. /* Sorry for the horrible delays... I hope to get that improved
  580.  * by making the whole PM process asynchronous in a future version
  581.  */
  582. wait_ms(750);
  583. awacs_reg[1] |= MASK_CMUTE | MASK_AMUTE;
  584. awacs_write(awacs_reg[1] | MASK_RECALIBRATE | MASK_ADDR1);
  585. wait_ms(1000);
  586. awacs_write(awacs_reg[1] | MASK_ADDR1);
  587. }
  588. static void PMacInit(void)
  589. {
  590. int tolerance;
  591. switch (dmasound.soft.format) {
  592.     case AFMT_S16_LE:
  593.     case AFMT_U16_LE:
  594. if (hw_can_byteswap)
  595. dmasound.hard.format = AFMT_S16_LE;
  596. else
  597. dmasound.hard.format = AFMT_S16_BE;
  598. break;
  599. default:
  600. dmasound.hard.format = AFMT_S16_BE;
  601. break;
  602. }
  603. dmasound.hard.stereo = 1;
  604. dmasound.hard.size = 16;
  605. /* set dmasound.hard.speed - on the basis of what we want (soft)
  606.  * and the tolerance we'll allow.
  607. */
  608. set_frame_rate(dmasound.soft.speed, catchRadius) ;
  609. tolerance = (catchRadius * dmasound.hard.speed) / 100;
  610. if (dmasound.soft.speed >= dmasound.hard.speed - tolerance)
  611. dmasound.trans_write = &transAwacsNormal;
  612. else
  613. dmasound.trans_write = &transAwacsExpand;
  614. dmasound.trans_read = &transAwacsNormalRead;
  615. if (hw_can_byteswap && (dmasound.hard.format == AFMT_S16_LE))
  616. out_le32(&awacs->byteswap, BS_VAL);
  617. else
  618. out_le32(&awacs->byteswap, 0);
  619. expand_bal = -dmasound.soft.speed;
  620. }
  621. static int PMacSetFormat(int format)
  622. {
  623. int size;
  624. int req_format = format;
  625. switch (format) {
  626. case AFMT_QUERY:
  627. return dmasound.soft.format;
  628. case AFMT_MU_LAW:
  629. case AFMT_A_LAW:
  630. case AFMT_U8:
  631. case AFMT_S8:
  632. size = 8;
  633. break;
  634. case AFMT_S16_LE:
  635. if(!hw_can_byteswap)
  636. format = AFMT_S16_BE;
  637. case AFMT_S16_BE:
  638. size = 16;
  639. break;
  640. case AFMT_U16_LE:
  641. if(!hw_can_byteswap)
  642. format = AFMT_U16_BE;
  643. case AFMT_U16_BE:
  644. size = 16;
  645. break;
  646. default: /* :-) */
  647. printk(KERN_ERR "dmasound: unknown format 0x%x, using AFMT_U8n",
  648.        format);
  649. size = 8;
  650. format = AFMT_U8;
  651. }
  652. if (req_format == format) {
  653. dmasound.soft.format = format;
  654. dmasound.soft.size = size;
  655. if (dmasound.minDev == SND_DEV_DSP) {
  656. dmasound.dsp.format = format;
  657. dmasound.dsp.size = size;
  658. }
  659. }
  660. return format;
  661. }
  662. #define AWACS_VOLUME_TO_MASK(x) (15 - ((((x) - 1) * 15) / 99))
  663. #define AWACS_MASK_TO_VOLUME(y) (100 - ((y) * 99 / 15))
  664. static int awacs_get_volume(int reg, int lshift)
  665. {
  666. int volume;
  667. volume = AWACS_MASK_TO_VOLUME((reg >> lshift) & 0xf);
  668. volume |= AWACS_MASK_TO_VOLUME(reg & 0xf) << 8;
  669. return volume;
  670. }
  671. static int awacs_volume_setter(int volume, int n, int mute, int lshift)
  672. {
  673. int r1, rn;
  674. if (mute && volume == 0) {
  675. r1 = awacs_reg[1] | mute;
  676. } else {
  677. r1 = awacs_reg[1] & ~mute;
  678. rn = awacs_reg[n] & ~(0xf | (0xf << lshift));
  679. rn |= ((AWACS_VOLUME_TO_MASK(volume & 0xff) & 0xf) << lshift);
  680. rn |= AWACS_VOLUME_TO_MASK((volume >> 8) & 0xff) & 0xf;
  681. awacs_reg[n] = rn;
  682. awacs_write((n << 12) | rn);
  683. volume = awacs_get_volume(rn, lshift);
  684. }
  685. if (r1 != awacs_reg[1]) {
  686. awacs_reg[1] = r1;
  687. awacs_write(r1 | MASK_ADDR1);
  688. }
  689. return volume;
  690. }
  691. static int PMacSetVolume(int volume)
  692. {
  693. return awacs_volume_setter(volume, 2, MASK_AMUTE, 6);
  694. }
  695. static void __PMacPlay(void)
  696. {
  697. volatile struct dbdma_cmd *cp;
  698. int next_frg, count;
  699. unsigned long flags;
  700. /* CHECK: how much of this *really* needs IRQs masked? */
  701. save_flags(flags); cli();
  702. count = 300 ; /* > two cycles at the lowest sample rate */
  703. /* what we want to send next */
  704. next_frg = (write_sq.front + write_sq.active) % write_sq.max_count;
  705. if (awacs_beep_state) {
  706. /* sound takes precedence over beeps */
  707. /* stop the dma channel */
  708. out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  709. while ( (in_le32(&awacs_txdma->status) & RUN) && count--)
  710. udelay(1);
  711. /* FIXME: check that this is OK for other chip sets */
  712. out_le32(&awacs->control,
  713.  (in_le32(&awacs->control) & ~0x1f00)
  714.  | (awacs_rate_index << 8));
  715. if (hw_can_byteswap && (dmasound.hard.format == AFMT_S16_LE))
  716. out_le32(&awacs->byteswap, BS_VAL);
  717. else
  718. out_le32(&awacs->byteswap, 0);
  719. out_le32(&awacs_txdma->cmdptr,
  720.  virt_to_bus(&(awacs_tx_cmds[next_frg])));
  721. beep_playing = 0;
  722. awacs_beep_state = 0;
  723. }
  724. /* this won't allow more than two frags to be in the output queue at
  725.    once. (or one, if the max frags is 2 - because count can't exceed
  726.    2 in that case)
  727. */
  728. while (write_sq.active < 2 && write_sq.active < write_sq.count) {
  729. count = (write_sq.count == write_sq.active + 1) ?
  730. write_sq.rear_size:write_sq.block_size ;
  731. if (count < write_sq.block_size) {
  732. if (!write_sq.syncing) /* last block not yet filled,*/
  733. break;  /* and we're not syncing or POST-ed */
  734. else {
  735. /* pretend the block is full to force a new
  736.    block to be started on the next write */
  737. write_sq.rear_size = write_sq.block_size ;
  738. write_sq.syncing &= ~2 ; /* clear POST */
  739. }
  740. }
  741. cp = &awacs_tx_cmds[next_frg];
  742. st_le16(&cp->req_count, count);
  743. st_le16(&cp->xfer_status, 0);
  744. st_le16(&cp->command, OUTPUT_MORE + INTR_ALWAYS);
  745. /* put a STOP at the end of the queue - but only if we have
  746.    space for it.  This means that, if we under-run and we only
  747.    have two fragments, we might re-play sound from an existing
  748.    queued frag.  I guess the solution to that is not to set two
  749.    frags if you are likely to under-run...
  750. */
  751. if (write_sq.count < write_sq.max_count) {
  752. if (++next_frg >= write_sq.max_count)
  753. next_frg = 0 ; /* wrap */
  754. /* if we get here then we've underrun so we will stop*/
  755. st_le16(&awacs_tx_cmds[next_frg].command, DBDMA_STOP);
  756. }
  757. /* set the dbdma controller going, if it is not already */
  758. if (write_sq.active == 0)
  759. out_le32(&awacs_txdma->cmdptr, virt_to_bus(cp));
  760. (void)in_le32(&awacs_txdma->status);
  761. out_le32(&awacs_txdma->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
  762. ++write_sq.active;
  763. }
  764. restore_flags(flags);
  765. }
  766. static void PMacPlay(void)
  767. {
  768. LOCK();
  769. if (!awacs_sleeping)
  770. __PMacPlay();
  771. UNLOCK();
  772. }
  773. static void PMacRecord(void)
  774. {
  775. unsigned long flags;
  776. if (read_sq.active)
  777. return;
  778. save_flags(flags); cli();
  779. /* This is all we have to do......Just start it up.
  780. */
  781. out_le32(&awacs_rxdma->control, ((RUN|WAKE) << 16) + (RUN|WAKE));
  782. read_sq.active = 1;
  783. restore_flags(flags);
  784. }
  785. /* if the TX status comes up "DEAD" - reported on some Power Computing machines
  786.    we need to re-start the dbdma - but from a different physical start address
  787.    and with a different transfer length.  It would get very messy to do this
  788.    with the normal dbdma_cmd blocks - we would have to re-write the buffer start
  789.    addresses each time.  So, we will keep a single dbdma_cmd block which can be
  790.    fiddled with.
  791.    When DEAD status is first reported the content of the faulted dbdma block is
  792.    copied into the emergency buffer and we note that the buffer is in use.
  793.    we then bump the start physical address by the amount that was successfully
  794.    output before it died.
  795.    On any subsequent DEAD result we just do the bump-ups (we know that we are
  796.    already using the emergency dbdma_cmd).
  797.    CHECK: this just tries to "do it".  It is possible that we should abandon
  798.    xfers when the number of residual bytes gets below a certain value - I can
  799.    see that this might cause a loop-forever if too small a transfer causes
  800.    DEAD status.  However this is a TODO for now - we'll see what gets reported.
  801.    When we get a successful transfer result with the emergency buffer we just
  802.    pretend that it completed using the original dmdma_cmd and carry on.  The
  803.    'next_cmd' field will already point back to the original loop of blocks.
  804. */
  805. static void
  806. pmac_awacs_tx_intr(int irq, void *devid, struct pt_regs *regs)
  807. {
  808. int i = write_sq.front;
  809. int stat;
  810. volatile struct dbdma_cmd *cp;
  811. /* != 0 when we are dealing with a DEAD xfer */
  812. static int emergency_in_use = 0 ;
  813. while (write_sq.active > 0) { /* we expect to have done something*/
  814. if (emergency_in_use) /* we are dealing with DEAD xfer */
  815. cp = emergency_dbdma_cmd ;
  816. else
  817. cp = &awacs_tx_cmds[i];
  818. stat = ld_le16(&cp->xfer_status);
  819. if (stat & DEAD) {
  820. unsigned short req, res ;
  821. unsigned int phy ;
  822. #ifdef DEBUG_DMASOUND
  823. printk("dmasound_pmac: tx-irq: xfer died - patching it up...n") ;
  824. #endif
  825. /* to clear DEAD status we must first clear RUN
  826.    set it to quiescent to be on the safe side */
  827. (void)in_le32(&awacs_txdma->status);
  828. out_le32(&awacs_txdma->control,
  829. (RUN|PAUSE|FLUSH|WAKE) << 16);
  830. write_sq.died++ ;
  831. if (!emergency_in_use) { /* new problem */
  832. memcpy((void *)emergency_dbdma_cmd, (void *)cp,
  833. sizeof(struct dbdma_cmd));
  834. emergency_in_use = 1;
  835. cp = emergency_dbdma_cmd;
  836. }
  837. /* now bump the values to reflect the amount
  838.    we haven't yet shifted */
  839. req = ld_le16(&cp->req_count);
  840. res = ld_le16(&cp->res_count);
  841. phy = ld_le32(&cp->phy_addr);
  842. phy += (req - res);
  843. st_le16(&cp->req_count, res);
  844. st_le16(&cp->res_count, 0);
  845. st_le16(&cp->xfer_status, 0);
  846. st_le32(&cp->phy_addr, phy);
  847. st_le16(&cp->command, OUTPUT_MORE + INTR_ALWAYS);
  848. /* point at our patched up command block */
  849. out_le32(&awacs_txdma->cmdptr, virt_to_bus(cp));
  850. /* we must re-start the controller */
  851. (void)in_le32(&awacs_txdma->status);
  852. /* should complete clearing the DEAD status */
  853. out_le32(&awacs_txdma->control,
  854. ((RUN|WAKE) << 16) + (RUN|WAKE));
  855. break; /* this block is still going */
  856. }
  857. if ((stat & ACTIVE) == 0)
  858. break; /* this frame is still going */
  859. if (emergency_in_use)
  860. emergency_in_use = 0 ; /* done that */
  861. --write_sq.count;
  862. --write_sq.active;
  863. if (++i >= write_sq.max_count)
  864. i = 0;
  865. }
  866. /* if we stopped and we were not sync-ing - then we under-ran */
  867. if( write_sq.syncing == 0 ){
  868. stat = in_le32(&awacs_txdma->status) ;
  869. /* we hit the dbdma_stop */
  870. if( (stat & ACTIVE) == 0 ) write_sq.xruns++ ;
  871. }
  872. /* if we used some data up then wake the writer to supply some more*/
  873. if (i != write_sq.front)
  874. WAKE_UP(write_sq.action_queue);
  875. write_sq.front = i;
  876. /* but make sure we funnel what we've already got */
  877.  if (!awacs_sleeping)
  878. __PMacPlay();
  879. /* make the wake-on-empty conditional on syncing */
  880. if (!write_sq.active && (write_sq.syncing & 1))
  881. WAKE_UP(write_sq.sync_queue); /* any time we're empty */
  882. }
  883. static void
  884. pmac_awacs_rx_intr(int irq, void *devid, struct pt_regs *regs)
  885. {
  886. int stat ;
  887. /* For some reason on my PowerBook G3, I get one interrupt
  888.  * when the interrupt vector is installed (like something is
  889.  * pending).  This happens before the dbdma is initialized by
  890.  * us, so I just check the command pointer and if it is zero,
  891.  * just blow it off.
  892.  */
  893. if (in_le32(&awacs_rxdma->cmdptr) == 0)
  894. return;
  895. /* We also want to blow 'em off when shutting down.
  896. */
  897. if (read_sq.active == 0)
  898. return;
  899. /* Check multiple buffers in case we were held off from
  900.  * interrupt processing for a long time.  Geeze, I really hope
  901.  * this doesn't happen.
  902.  */
  903. while ((stat=awacs_rx_cmds[read_sq.rear].xfer_status)) {
  904. /* if we got a "DEAD" status then just log it for now.
  905.    and try to restart dma.
  906.    TODO: figure out how best to fix it up
  907. */
  908. if (stat & DEAD){
  909. #ifdef DEBUG_DMASOUND
  910. printk("dmasound_pmac: rx-irq: DIED - attempting resurectionn");
  911. #endif
  912. /* to clear DEAD status we must first clear RUN
  913.    set it to quiescent to be on the safe side */
  914. (void)in_le32(&awacs_txdma->status);
  915. out_le32(&awacs_txdma->control,
  916. (RUN|PAUSE|FLUSH|WAKE) << 16);
  917. awacs_rx_cmds[read_sq.rear].xfer_status = 0;
  918. awacs_rx_cmds[read_sq.rear].res_count = 0;
  919. read_sq.died++ ;
  920. (void)in_le32(&awacs_txdma->status);
  921. /* re-start the same block */
  922. out_le32(&awacs_rxdma->cmdptr,
  923. virt_to_bus(&awacs_rx_cmds[read_sq.rear]));
  924. /* we must re-start the controller */
  925. (void)in_le32(&awacs_rxdma->status);
  926. /* should complete clearing the DEAD status */
  927. out_le32(&awacs_rxdma->control,
  928. ((RUN|WAKE) << 16) + (RUN|WAKE));
  929. return; /* try this block again */
  930. }
  931. /* Clear status and move on to next buffer.
  932. */
  933. awacs_rx_cmds[read_sq.rear].xfer_status = 0;
  934. read_sq.rear++;
  935. /* Wrap the buffer ring.
  936. */
  937. if (read_sq.rear >= read_sq.max_active)
  938. read_sq.rear = 0;
  939. /* If we have caught up to the front buffer, bump it.
  940.  * This will cause weird (but not fatal) results if the
  941.  * read loop is currently using this buffer.  The user is
  942.  * behind in this case anyway, so weird things are going
  943.  * to happen.
  944.  */
  945. if (read_sq.rear == read_sq.front) {
  946. read_sq.front++;
  947. read_sq.xruns++ ; /* we overan */
  948. if (read_sq.front >= read_sq.max_active)
  949. read_sq.front = 0;
  950. }
  951. }
  952. WAKE_UP(read_sq.action_queue);
  953. }
  954. static void
  955. pmac_awacs_intr(int irq, void *devid, struct pt_regs *regs)
  956. {
  957. int ctrl = in_le32(&awacs->control);
  958. if (ctrl & MASK_PORTCHG) {
  959. /* do something when headphone is plugged/unplugged? */
  960. }
  961. if (ctrl & MASK_CNTLERR) {
  962. int err = (in_le32(&awacs->codec_stat) & MASK_ERRCODE) >> 16;
  963. /* CHECK: we just swallow burgundy errors at the moment..*/
  964. if (err != 0 && awacs_revision != AWACS_BURGUNDY)
  965. printk(KERN_ERR "dmasound_pmac: error %xn", err);
  966. }
  967. /* Writing 1s to the CNTLERR and PORTCHG bits clears them... */
  968. out_le32(&awacs->control, ctrl);
  969. }
  970. static void
  971. awacs_write(int val)
  972. {
  973. int count = 300 ;
  974. if (awacs_revision >= AWACS_DACA)
  975. return ;
  976. while ((in_le32(&awacs->codec_ctrl) & MASK_NEWECMD) && count--)
  977. udelay(1) ; /* timeout is > 2 samples at lowest rate */
  978. out_le32(&awacs->codec_ctrl, val | (awacs_subframe << 22));
  979. (void)in_le32(&awacs->byteswap);
  980. }
  981. /* this is called when the beep timer expires... it will be called even
  982.    if the beep has been overidden by other sound output.
  983. */
  984. static void awacs_nosound(unsigned long xx)
  985. {
  986. unsigned long flags;
  987. int count = 600 ; /* > four samples at lowest rate */
  988. save_flags(flags); cli();
  989. if (beep_playing) {
  990. st_le16(&beep_dbdma_cmd->command, DBDMA_STOP);
  991. out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  992. while ((in_le32(&awacs_txdma->status) & RUN) && count--)
  993. udelay(1);
  994. /* FIXME: check this is OK for DACA, Tumbler */
  995. out_le32(&awacs->control,
  996.  (in_le32(&awacs->control) & ~0x1f00)
  997.  | (awacs_rate_index << 8));
  998. if (hw_can_byteswap && (dmasound.hard.format == AFMT_S16_LE))
  999. out_le32(&awacs->byteswap, BS_VAL);
  1000. else
  1001. out_le32(&awacs->byteswap, 0);
  1002. beep_playing = 0;
  1003. }
  1004. restore_flags(flags);
  1005. }
  1006. static struct timer_list beep_timer = {
  1007. function: awacs_nosound
  1008. };
  1009. /* we generate the beep with a single dbdma command that loops a buffer
  1010.    forever - without generating interrupts.
  1011.    So, to stop it you have to stop dma output as per awacs_nosound.
  1012. */
  1013. static void awacs_mksound(unsigned int hz, unsigned int ticks)
  1014. {
  1015. unsigned long flags;
  1016. int beep_speed = 0;
  1017. int srate;
  1018. int period, ncycles, nsamples;
  1019. int i, j, f;
  1020. short *p;
  1021. static int beep_hz_cache;
  1022. static int beep_nsamples_cache;
  1023. static int beep_volume_cache;
  1024. if (beep_buf == NULL)
  1025. return;
  1026. /* quick-hack fix for DACA, Burgundy & Tumbler */
  1027. if (awacs_revision >= AWACS_DACA){
  1028. srate = 44100 ;
  1029. } else {
  1030. for (i = 0; i < 8 && awacs_freqs[i] >= BEEP_SRATE; ++i)
  1031. if (awacs_freqs_ok[i])
  1032. beep_speed = i;
  1033. srate = awacs_freqs[beep_speed];
  1034. }
  1035. if (hz <= srate / BEEP_BUFLEN || hz > srate / 2) {
  1036. #if 1
  1037. /* this is a hack for broken X server code */
  1038. hz = 750;
  1039. ticks = 12;
  1040. #else
  1041. /* cancel beep currently playing */
  1042. awacs_nosound(0);
  1043. return;
  1044. #endif
  1045. }
  1046. save_flags(flags); cli();
  1047. del_timer(&beep_timer);
  1048. if (ticks) {
  1049. beep_timer.expires = jiffies + ticks;
  1050. add_timer(&beep_timer);
  1051. }
  1052. if (beep_playing || write_sq.active || beep_buf == NULL) {
  1053. restore_flags(flags);
  1054. return; /* too hard, sorry :-( */
  1055. }
  1056. beep_playing = 1;
  1057. st_le16(&beep_dbdma_cmd->command, OUTPUT_MORE + BR_ALWAYS);
  1058. restore_flags(flags);
  1059. if (hz == beep_hz_cache && beep_vol == beep_volume_cache) {
  1060. nsamples = beep_nsamples_cache;
  1061. } else {
  1062. period = srate * 256 / hz; /* fixed point */
  1063. ncycles = BEEP_BUFLEN * 256 / period;
  1064. nsamples = (period * ncycles) >> 8;
  1065. f = ncycles * 65536 / nsamples;
  1066. j = 0;
  1067. p = beep_buf;
  1068. for (i = 0; i < nsamples; ++i, p += 2) {
  1069. p[0] = p[1] = beep_wform[j >> 8] * beep_vol;
  1070. j = (j + f) & 0xffff;
  1071. }
  1072. beep_hz_cache = hz;
  1073. beep_volume_cache = beep_vol;
  1074. beep_nsamples_cache = nsamples;
  1075. }
  1076. st_le16(&beep_dbdma_cmd->req_count, nsamples*4);
  1077. st_le16(&beep_dbdma_cmd->xfer_status, 0);
  1078. st_le32(&beep_dbdma_cmd->cmd_dep, virt_to_bus(beep_dbdma_cmd));
  1079. st_le32(&beep_dbdma_cmd->phy_addr, virt_to_bus(beep_buf));
  1080. awacs_beep_state = 1;
  1081. save_flags(flags); cli();
  1082. if (beep_playing) { /* i.e. haven't been terminated already */
  1083. int count = 300 ;
  1084. out_le32(&awacs_txdma->control, (RUN|WAKE|FLUSH|PAUSE) << 16);
  1085. while ((in_le32(&awacs_txdma->status) & RUN) && count--)
  1086. udelay(1); /* timeout > 2 samples at lowest rate*/
  1087. /* FIXME: check this is OK on DACA, Tumbler */
  1088. out_le32(&awacs->control,
  1089.  (in_le32(&awacs->control) & ~0x1f00)
  1090.  | (beep_speed << 8));
  1091. out_le32(&awacs->byteswap, 0); /* force BE */
  1092. out_le32(&awacs_txdma->cmdptr, virt_to_bus(beep_dbdma_cmd));
  1093. (void)in_le32(&awacs_txdma->status);
  1094. out_le32(&awacs_txdma->control, RUN | (RUN << 16));
  1095. }
  1096. restore_flags(flags);
  1097. }
  1098. /* used in init and for wake-up */
  1099. static void
  1100. load_awacs(void)
  1101. {
  1102. awacs_write(awacs_reg[0] + MASK_ADDR0);
  1103. awacs_write(awacs_reg[1] + MASK_ADDR1);
  1104. awacs_write(awacs_reg[2] + MASK_ADDR2);
  1105. awacs_write(awacs_reg[4] + MASK_ADDR4);
  1106. if (awacs_revision == AWACS_SCREAMER) {
  1107. awacs_write(awacs_reg[5] + MASK_ADDR5);
  1108. wait_ms(100);
  1109. awacs_write(awacs_reg[6] + MASK_ADDR6);
  1110. wait_ms(2);
  1111. awacs_write(awacs_reg[1] + MASK_ADDR1);
  1112. awacs_write(awacs_reg[7] + MASK_ADDR7);
  1113. }
  1114. if (hw_can_byteswap && (dmasound.hard.format == AFMT_S16_LE))
  1115. out_le32(&awacs->byteswap, BS_VAL);
  1116. else
  1117. out_le32(&awacs->byteswap, 0);
  1118. }
  1119. #ifdef CONFIG_PMAC_PBOOK
  1120. /*
  1121.  * Save state when going to sleep, restore it afterwards.
  1122.  */
  1123. /* FIXME: sort out disabling/re-enabling of read stuff as well */
  1124. static int awacs_sleep_notify(struct pmu_sleep_notifier *self, int when)
  1125. {
  1126. switch (when) {
  1127. case PBOOK_SLEEP_NOW:
  1128. LOCK();
  1129. awacs_sleeping = 1;
  1130. /* Tell the rest of the driver we are now going to sleep */
  1131. mb();
  1132. if (awacs_revision == AWACS_SCREAMER ||
  1133.     awacs_revision == AWACS_AWACS) {
  1134. awacs_reg1_save = awacs_reg[1];
  1135. awacs_reg[1] |= MASK_AMUTE | MASK_CMUTE;
  1136. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  1137. }
  1138. PMacSilence();
  1139. /* stop rx - if going - a bit of a daft user... but */
  1140. out_le32(&awacs_rxdma->control, (RUN|WAKE|FLUSH << 16));
  1141. /* deny interrupts */
  1142. switch (awacs_revision) {
  1143. case AWACS_TUMBLER:
  1144. tumbler_enter_sleep(); /* Stub for now */
  1145. break ;
  1146. case AWACS_DACA:
  1147. daca_enter_sleep();
  1148. break ;
  1149. case AWACS_BURGUNDY:
  1150. break ;
  1151. case AWACS_SCREAMER:
  1152. case AWACS_AWACS:
  1153. default:
  1154. out_le32(&awacs->control, 0x11) ;
  1155. break ;
  1156. }
  1157. disable_irq(awacs_irq);
  1158. disable_irq(awacs_tx_irq);
  1159. disable_irq(awacs_rx_irq);
  1160. /* Disable sound clock */
  1161. pmac_call_feature(PMAC_FTR_SOUND_CHIP_ENABLE, awacs_node, 0, 0);
  1162. /* According to Darwin, we do that after turning off the sound
  1163.  * chip clock. All this will have to be cleaned up once we properly
  1164.  * parse the OF sound-objects
  1165.  */
  1166. if (machine_is_compatible("PowerBook3,1") ||
  1167.     machine_is_compatible("PowerBook3,2")) {
  1168. awacs_reg[1] |= MASK_PAROUT0 | MASK_PAROUT1;
  1169. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  1170. wait_ms(200);
  1171. }
  1172. break;
  1173. case PBOOK_WAKE:
  1174. /* Enable sound clock */
  1175. pmac_call_feature(PMAC_FTR_SOUND_CHIP_ENABLE, awacs_node, 0, 1);
  1176. if (machine_is_compatible("PowerBook3,1") ||
  1177.     machine_is_compatible("PowerBook3,2")) {
  1178. wait_ms(100);
  1179. awacs_reg[1] &= ~(MASK_PAROUT0 | MASK_PAROUT1);
  1180. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  1181. wait_ms(300);
  1182. } else
  1183. wait_ms(1000);
  1184.   /* restore settings */
  1185. switch (awacs_revision) {
  1186. case AWACS_TUMBLER:
  1187. headphone_intr(0,0,0);
  1188. tumbler_leave_sleep(); /* Stub for now */
  1189. break;
  1190. case AWACS_DACA:
  1191. wait_ms(10); /* Check this !!! */
  1192. daca_leave_sleep();
  1193. break ; /* dont know how yet */
  1194. case AWACS_BURGUNDY:
  1195. break ;
  1196. case AWACS_SCREAMER:
  1197. case AWACS_AWACS:
  1198. default:
  1199.   load_awacs() ;
  1200. break ;
  1201. }
  1202. /* Recalibrate chip */
  1203. if (awacs_revision == AWACS_SCREAMER)
  1204. awacs_recalibrate();
  1205. /* Make sure dma is stopped */
  1206. PMacSilence();
  1207. enable_irq(awacs_irq);
  1208. enable_irq(awacs_tx_irq);
  1209.   enable_irq(awacs_rx_irq);
  1210.   /* OK, allow ints back again */
  1211.   out_le32(&awacs->control, MASK_IEPC
  1212.     | (awacs_rate_index << 8) | 0x11
  1213.    | (awacs_revision < AWACS_DACA ? MASK_IEE: 0));
  1214.   if (macio_base && is_pbook_g3) {
  1215. /* FIXME: should restore the setup we had...*/
  1216. out_8(macio_base + 0x37, 3);
  1217.   } else if (is_pbook_3X00) {
  1218. in_8(latch_base + 0x190);
  1219. }
  1220. /* Remove mute */
  1221. if (awacs_revision == AWACS_SCREAMER ||
  1222.     awacs_revision == AWACS_AWACS) {
  1223. awacs_reg[1] = awacs_reg1_save;
  1224. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  1225. }
  1226.   awacs_sleeping = 0;
  1227. /* Resume pending sounds. */
  1228. /* we don't try to restart input... */
  1229. __PMacPlay();
  1230. UNLOCK();
  1231. }
  1232. return PBOOK_SLEEP_OK;
  1233. }
  1234. #endif /* CONFIG_PMAC_PBOOK */
  1235. /* All the burgundy functions: */
  1236. /* Waits for busy flag to clear */
  1237. inline static void
  1238. awacs_burgundy_busy_wait(void)
  1239. {
  1240. int count = 50; /* > 2 samples at 44k1 */
  1241. while ((in_le32(&awacs->codec_ctrl) & MASK_NEWECMD) && count--)
  1242. udelay(1) ;
  1243. }
  1244. inline static void
  1245. awacs_burgundy_extend_wait(void)
  1246. {
  1247. int count = 50 ; /* > 2 samples at 44k1 */
  1248. while ((!(in_le32(&awacs->codec_stat) & MASK_EXTEND)) && count--)
  1249. udelay(1) ;
  1250. count = 50;
  1251. while ((in_le32(&awacs->codec_stat) & MASK_EXTEND) && count--)
  1252. udelay(1);
  1253. }
  1254. static void
  1255. awacs_burgundy_wcw(unsigned addr, unsigned val)
  1256. {
  1257. out_le32(&awacs->codec_ctrl, addr + 0x200c00 + (val & 0xff));
  1258. awacs_burgundy_busy_wait();
  1259. out_le32(&awacs->codec_ctrl, addr + 0x200d00 +((val>>8) & 0xff));
  1260. awacs_burgundy_busy_wait();
  1261. out_le32(&awacs->codec_ctrl, addr + 0x200e00 +((val>>16) & 0xff));
  1262. awacs_burgundy_busy_wait();
  1263. out_le32(&awacs->codec_ctrl, addr + 0x200f00 +((val>>24) & 0xff));
  1264. awacs_burgundy_busy_wait();
  1265. }
  1266. static unsigned
  1267. awacs_burgundy_rcw(unsigned addr)
  1268. {
  1269. unsigned val = 0;
  1270. unsigned long flags;
  1271. /* should have timeouts here */
  1272. save_flags(flags); cli();
  1273. out_le32(&awacs->codec_ctrl, addr + 0x100000);
  1274. awacs_burgundy_busy_wait();
  1275. awacs_burgundy_extend_wait();
  1276. val += (in_le32(&awacs->codec_stat) >> 4) & 0xff;
  1277. out_le32(&awacs->codec_ctrl, addr + 0x100100);
  1278. awacs_burgundy_busy_wait();
  1279. awacs_burgundy_extend_wait();
  1280. val += ((in_le32(&awacs->codec_stat)>>4) & 0xff) <<8;
  1281. out_le32(&awacs->codec_ctrl, addr + 0x100200);
  1282. awacs_burgundy_busy_wait();
  1283. awacs_burgundy_extend_wait();
  1284. val += ((in_le32(&awacs->codec_stat)>>4) & 0xff) <<16;
  1285. out_le32(&awacs->codec_ctrl, addr + 0x100300);
  1286. awacs_burgundy_busy_wait();
  1287. awacs_burgundy_extend_wait();
  1288. val += ((in_le32(&awacs->codec_stat)>>4) & 0xff) <<24;
  1289. restore_flags(flags);
  1290. return val;
  1291. }
  1292. static void
  1293. awacs_burgundy_wcb(unsigned addr, unsigned val)
  1294. {
  1295. out_le32(&awacs->codec_ctrl, addr + 0x300000 + (val & 0xff));
  1296. awacs_burgundy_busy_wait();
  1297. }
  1298. static unsigned
  1299. awacs_burgundy_rcb(unsigned addr)
  1300. {
  1301. unsigned val = 0;
  1302. unsigned long flags;
  1303. /* should have timeouts here */
  1304. save_flags(flags); cli();
  1305. out_le32(&awacs->codec_ctrl, addr + 0x100000);
  1306. awacs_burgundy_busy_wait();
  1307. awacs_burgundy_extend_wait();
  1308. val += (in_le32(&awacs->codec_stat) >> 4) & 0xff;
  1309. restore_flags(flags);
  1310. return val;
  1311. }
  1312. static int
  1313. awacs_burgundy_check(void)
  1314. {
  1315. /* Checks to see the chip is alive and kicking */
  1316. int error = in_le32(&awacs->codec_ctrl) & MASK_ERRCODE;
  1317. return error == 0xf0000;
  1318. }
  1319. static int
  1320. awacs_burgundy_init(void)
  1321. {
  1322. if (awacs_burgundy_check()) {
  1323. printk(KERN_WARNING "dmasound_pmac: burgundy not working :-(n");
  1324. return 1;
  1325. }
  1326. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_OUTPUTENABLES,
  1327.    DEF_BURGUNDY_OUTPUTENABLES);
  1328. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
  1329.    DEF_BURGUNDY_MORE_OUTPUTENABLES);
  1330. awacs_burgundy_wcw(MASK_ADDR_BURGUNDY_OUTPUTSELECTS,
  1331.    DEF_BURGUNDY_OUTPUTSELECTS);
  1332. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_INPSEL21,
  1333.    DEF_BURGUNDY_INPSEL21);
  1334. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_INPSEL3,
  1335.    DEF_BURGUNDY_INPSEL3);
  1336. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_GAINCD,
  1337.    DEF_BURGUNDY_GAINCD);
  1338. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_GAINLINE,
  1339.    DEF_BURGUNDY_GAINLINE);
  1340. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_GAINMIC,
  1341.    DEF_BURGUNDY_GAINMIC);
  1342. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_GAINMODEM,
  1343.    DEF_BURGUNDY_GAINMODEM);
  1344. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_ATTENSPEAKER,
  1345.    DEF_BURGUNDY_ATTENSPEAKER);
  1346. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_ATTENLINEOUT,
  1347.    DEF_BURGUNDY_ATTENLINEOUT);
  1348. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_ATTENHP,
  1349.    DEF_BURGUNDY_ATTENHP);
  1350. awacs_burgundy_wcw(MASK_ADDR_BURGUNDY_MASTER_VOLUME,
  1351.    DEF_BURGUNDY_MASTER_VOLUME);
  1352. awacs_burgundy_wcw(MASK_ADDR_BURGUNDY_VOLCD,
  1353.    DEF_BURGUNDY_VOLCD);
  1354. awacs_burgundy_wcw(MASK_ADDR_BURGUNDY_VOLLINE,
  1355.    DEF_BURGUNDY_VOLLINE);
  1356. awacs_burgundy_wcw(MASK_ADDR_BURGUNDY_VOLMIC,
  1357.    DEF_BURGUNDY_VOLMIC);
  1358. return 0;
  1359. }
  1360. static void
  1361. awacs_burgundy_write_volume(unsigned address, int volume)
  1362. {
  1363. int hardvolume,lvolume,rvolume;
  1364. lvolume = (volume & 0xff) ? (volume & 0xff) + 155 : 0;
  1365. rvolume = ((volume >>8)&0xff) ? ((volume >> 8)&0xff ) + 155 : 0;
  1366. hardvolume = lvolume + (rvolume << 16);
  1367. awacs_burgundy_wcw(address, hardvolume);
  1368. }
  1369. static int
  1370. awacs_burgundy_read_volume(unsigned address)
  1371. {
  1372. int softvolume,wvolume;
  1373. wvolume = awacs_burgundy_rcw(address);
  1374. softvolume = (wvolume & 0xff) - 155;
  1375. softvolume += (((wvolume >> 16) & 0xff) - 155)<<8;
  1376. return softvolume > 0 ? softvolume : 0;
  1377. }
  1378. static int
  1379. awacs_burgundy_read_mvolume(unsigned address)
  1380. {
  1381. int lvolume,rvolume,wvolume;
  1382. wvolume = awacs_burgundy_rcw(address);
  1383. wvolume &= 0xffff;
  1384. rvolume = (wvolume & 0xff) - 155;
  1385. lvolume = ((wvolume & 0xff00)>>8) - 155;
  1386. return lvolume + (rvolume << 8);
  1387. }
  1388. static void
  1389. awacs_burgundy_write_mvolume(unsigned address, int volume)
  1390. {
  1391. int lvolume,rvolume,hardvolume;
  1392. lvolume = (volume &0xff) ? (volume & 0xff) + 155 :0;
  1393. rvolume = ((volume >>8) & 0xff) ? (volume >> 8) + 155 :0;
  1394. hardvolume = lvolume + (rvolume << 8);
  1395. hardvolume += (hardvolume << 16);
  1396. awacs_burgundy_wcw(address, hardvolume);
  1397. }
  1398. /* End burgundy functions */
  1399. /* Set up output volumes on machines with the 'perch/whisper' extension card.
  1400.  * this has an SGS i2c chip (7433) which is accessed using the cuda.
  1401.  *
  1402.  * TODO: split this out and make use of the other parts of the SGS chip to
  1403.  * do Bass, Treble etc.
  1404.  */
  1405. static void
  1406. awacs_enable_amp(int spkr_vol)
  1407. {
  1408. #ifdef CONFIG_ADB_CUDA
  1409. struct adb_request req;
  1410. awacs_spkr_vol = spkr_vol;
  1411. if (sys_ctrler != SYS_CTRLER_CUDA)
  1412. return;
  1413. /* turn on headphones */
  1414. cuda_request(&req, NULL, 5, CUDA_PACKET, CUDA_GET_SET_IIC,
  1415.      0x8a, 4, 0);
  1416. while (!req.complete) cuda_poll();
  1417. cuda_request(&req, NULL, 5, CUDA_PACKET, CUDA_GET_SET_IIC,
  1418.      0x8a, 6, 0);
  1419. while (!req.complete) cuda_poll();
  1420. /* turn on speaker */
  1421. cuda_request(&req, NULL, 5, CUDA_PACKET, CUDA_GET_SET_IIC,
  1422.      0x8a, 3, (100 - (spkr_vol & 0xff)) * 32 / 100);
  1423. while (!req.complete) cuda_poll();
  1424. cuda_request(&req, NULL, 5, CUDA_PACKET, CUDA_GET_SET_IIC,
  1425.      0x8a, 5, (100 - ((spkr_vol >> 8) & 0xff)) * 32 / 100);
  1426. while (!req.complete) cuda_poll();
  1427. cuda_request(&req, NULL, 5, CUDA_PACKET,
  1428.      CUDA_GET_SET_IIC, 0x8a, 1, 0x29);
  1429. while (!req.complete) cuda_poll();
  1430. #endif /* CONFIG_ADB_CUDA */
  1431. }
  1432. /*** Mid level stuff *********************************************************/
  1433. /*
  1434.  * /dev/mixer abstraction
  1435.  */
  1436. static void do_line_lev(int data)
  1437. {
  1438. line_lev = data ;
  1439. awacs_reg[0] &= ~MASK_MUX_AUDIN;
  1440. if ((data & 0xff) >= 50)
  1441. awacs_reg[0] |= MASK_MUX_AUDIN;
  1442. awacs_write(MASK_ADDR0 | awacs_reg[0]);
  1443. }
  1444. static void do_ip_gain(int data)
  1445. {
  1446. ip_gain = data ;
  1447. data &= 0xff;
  1448. awacs_reg[0] &= ~MASK_GAINLINE;
  1449. if (awacs_revision == AWACS_SCREAMER) {
  1450. awacs_reg[6] &= ~MASK_MIC_BOOST ;
  1451. if (data >= 33) {
  1452. awacs_reg[0] |= MASK_GAINLINE;
  1453. if( data >= 66)
  1454. awacs_reg[6] |= MASK_MIC_BOOST ;
  1455. }
  1456. awacs_write(MASK_ADDR6 | awacs_reg[6]) ;
  1457. } else {
  1458. if (data >= 50)
  1459. awacs_reg[0] |= MASK_GAINLINE;
  1460. }
  1461. awacs_write(MASK_ADDR0 | awacs_reg[0]);
  1462. }
  1463. static void do_mic_lev(int data)
  1464. {
  1465. mic_lev = data ;
  1466. data &= 0xff;
  1467. awacs_reg[0] &= ~MASK_MUX_MIC;
  1468. if (data >= 50)
  1469. awacs_reg[0] |= MASK_MUX_MIC;
  1470. awacs_write(MASK_ADDR0 | awacs_reg[0]);
  1471. }
  1472. static void do_cd_lev(int data)
  1473. {
  1474. cd_lev = data ;
  1475. awacs_reg[0] &= ~MASK_MUX_CD;
  1476. if ((data & 0xff) >= 50)
  1477. awacs_reg[0] |= MASK_MUX_CD;
  1478. awacs_write(MASK_ADDR0 | awacs_reg[0]);
  1479. }
  1480. static void do_rec_lev(int data)
  1481. {
  1482. int left, right ;
  1483. rec_lev = data ;
  1484. /* need to fudge this to use the volume setter routine */
  1485. left = 100 - (data & 0xff) ; if( left < 0 ) left = 0 ;
  1486. right = 100 - ((data >> 8) & 0xff) ; if( right < 0 ) right = 0 ;
  1487. left |= (right << 8 );
  1488. left = awacs_volume_setter(left, 0, 0, 4);
  1489. }
  1490. static void do_passthru_vol(int data)
  1491. {
  1492. passthru_vol = data ;
  1493. awacs_reg[1] &= ~MASK_LOOPTHRU;
  1494. if (awacs_revision == AWACS_SCREAMER) {
  1495. if( data ) { /* switch it on for non-zero */
  1496. awacs_reg[1] |= MASK_LOOPTHRU;
  1497. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  1498. }
  1499. data = awacs_volume_setter(data, 5, 0, 6) ;
  1500. } else {
  1501. if ((data & 0xff) >= 50)
  1502. awacs_reg[1] |= MASK_LOOPTHRU;
  1503. awacs_write(MASK_ADDR1 | awacs_reg[1]);
  1504. data = (awacs_reg[1] & MASK_LOOPTHRU)? 100: 0;
  1505. }
  1506. }
  1507. static int awacs_mixer_ioctl(u_int cmd, u_long arg)
  1508. {
  1509. int data;
  1510. int rc;
  1511. switch (cmd) {
  1512. case SOUND_MIXER_READ_CAPS:
  1513. /* say we will allow multiple inputs?  prob. wrong
  1514. so I'm switching it to single */
  1515. return IOCTL_OUT(arg, 1);
  1516. case SOUND_MIXER_READ_DEVMASK:
  1517. data  = SOUND_MASK_VOLUME | SOUND_MASK_SPEAKER
  1518. | SOUND_MASK_LINE | SOUND_MASK_MIC | SOUND_MASK_CD
  1519. | SOUND_MASK_IGAIN | SOUND_MASK_RECLEV
  1520. | SOUND_MASK_ALTPCM
  1521. | SOUND_MASK_MONITOR;
  1522. rc = IOCTL_OUT(arg, data);
  1523. break;
  1524. case SOUND_MIXER_READ_RECMASK:
  1525. data = SOUND_MASK_LINE | SOUND_MASK_MIC | SOUND_MASK_CD;
  1526. rc = IOCTL_OUT(arg, data);
  1527. break;
  1528. case SOUND_MIXER_READ_RECSRC:
  1529. data = 0;
  1530. if (awacs_reg[0] & MASK_MUX_AUDIN)
  1531. data |= SOUND_MASK_LINE;
  1532. if (awacs_reg[0] & MASK_MUX_MIC)
  1533. data |= SOUND_MASK_MIC;
  1534. if (awacs_reg[0] & MASK_MUX_CD)
  1535. data |= SOUND_MASK_CD;
  1536. rc = IOCTL_OUT(arg, data);
  1537. break;
  1538. case SOUND_MIXER_WRITE_RECSRC:
  1539. IOCTL_IN(arg, data);
  1540. data &= (SOUND_MASK_LINE | SOUND_MASK_MIC | SOUND_MASK_CD);
  1541. awacs_reg[0] &= ~(MASK_MUX_CD | MASK_MUX_MIC
  1542.   | MASK_MUX_AUDIN);
  1543. if (data & SOUND_MASK_LINE)
  1544. awacs_reg[0] |= MASK_MUX_AUDIN;
  1545. if (data & SOUND_MASK_MIC)
  1546. awacs_reg[0] |= MASK_MUX_MIC;
  1547. if (data & SOUND_MASK_CD)
  1548. awacs_reg[0] |= MASK_MUX_CD;
  1549. awacs_write(awacs_reg[0] | MASK_ADDR0);
  1550. rc = IOCTL_OUT(arg, data);
  1551. break;
  1552. case SOUND_MIXER_READ_STEREODEVS:
  1553. data = SOUND_MASK_VOLUME | SOUND_MASK_SPEAKER| SOUND_MASK_RECLEV  ;
  1554. if (awacs_revision == AWACS_SCREAMER)
  1555. data |= SOUND_MASK_MONITOR ;
  1556. rc = IOCTL_OUT(arg, data);
  1557. break;
  1558. case SOUND_MIXER_WRITE_VOLUME:
  1559. IOCTL_IN(arg, data);
  1560. line_vol = data ;
  1561. awacs_volume_setter(data, 2, 0, 6);
  1562. /* fall through */
  1563. case SOUND_MIXER_READ_VOLUME:
  1564. rc = IOCTL_OUT(arg, line_vol);
  1565. break;
  1566. case SOUND_MIXER_WRITE_SPEAKER:
  1567. IOCTL_IN(arg, data);
  1568. spk_vol = data ;
  1569. if (has_perch)
  1570. awacs_enable_amp(data);
  1571. else
  1572. (void)awacs_volume_setter(data, 4, MASK_CMUTE, 6);
  1573. /* fall though */
  1574. case SOUND_MIXER_READ_SPEAKER:
  1575. rc = IOCTL_OUT(arg, spk_vol);
  1576. break;
  1577. case SOUND_MIXER_WRITE_ALTPCM: /* really bell volume */
  1578. IOCTL_IN(arg, data);
  1579. beep_vol = data & 0xff;
  1580. /* fall through */
  1581. case SOUND_MIXER_READ_ALTPCM:
  1582. rc = IOCTL_OUT(arg, beep_vol);
  1583. break;
  1584. case SOUND_MIXER_WRITE_LINE:
  1585. IOCTL_IN(arg, data);
  1586. do_line_lev(data) ;
  1587. /* fall through */
  1588. case SOUND_MIXER_READ_LINE:
  1589. rc = IOCTL_OUT(arg, line_lev);
  1590. break;
  1591. case SOUND_MIXER_WRITE_IGAIN:
  1592. IOCTL_IN(arg, data);
  1593. do_ip_gain(data) ;
  1594. /* fall through */
  1595. case SOUND_MIXER_READ_IGAIN:
  1596. rc = IOCTL_OUT(arg, ip_gain);
  1597. break;
  1598. case SOUND_MIXER_WRITE_MIC:
  1599. IOCTL_IN(arg, data);
  1600. do_mic_lev(data);
  1601. /* fall through */
  1602. case SOUND_MIXER_READ_MIC:
  1603. rc = IOCTL_OUT(arg, mic_lev);
  1604. break;
  1605. case SOUND_MIXER_WRITE_CD:
  1606. IOCTL_IN(arg, data);
  1607. do_cd_lev(data);
  1608. /* fall through */
  1609. case SOUND_MIXER_READ_CD:
  1610. rc = IOCTL_OUT(arg, cd_lev);
  1611. break;
  1612. case SOUND_MIXER_WRITE_RECLEV:
  1613. IOCTL_IN(arg, data);
  1614. do_rec_lev(data) ;
  1615. /* fall through */
  1616. case SOUND_MIXER_READ_RECLEV:
  1617. rc = IOCTL_OUT(arg, rec_lev);
  1618. break;
  1619. case MIXER_WRITE(SOUND_MIXER_MONITOR):
  1620. IOCTL_IN(arg, data);
  1621. do_passthru_vol(data) ;
  1622. /* fall through */
  1623. case MIXER_READ(SOUND_MIXER_MONITOR):
  1624. rc = IOCTL_OUT(arg, passthru_vol);
  1625. break;
  1626. default:
  1627. rc = -EINVAL;
  1628. }
  1629. return rc;
  1630. }
  1631. static void awacs_mixer_init(void)
  1632. {
  1633. awacs_volume_setter(line_vol, 2, 0, 6);
  1634. if (has_perch)
  1635. awacs_enable_amp(spk_vol);
  1636. else
  1637. (void)awacs_volume_setter(spk_vol, 4, MASK_CMUTE, 6);
  1638. do_line_lev(line_lev) ;
  1639. do_ip_gain(ip_gain) ;
  1640. do_mic_lev(mic_lev) ;
  1641. do_cd_lev(cd_lev) ;
  1642. do_rec_lev(rec_lev) ;
  1643. do_passthru_vol(passthru_vol) ;
  1644. }
  1645. static int burgundy_mixer_ioctl(u_int cmd, u_long arg)
  1646. {
  1647. int data;
  1648. int rc;
  1649. /* We are, we are, we are... Burgundy or better */
  1650. switch(cmd) {
  1651. case SOUND_MIXER_READ_DEVMASK:
  1652. data = SOUND_MASK_VOLUME | SOUND_MASK_CD |
  1653. SOUND_MASK_LINE | SOUND_MASK_MIC |
  1654. SOUND_MASK_SPEAKER | SOUND_MASK_ALTPCM;
  1655. rc = IOCTL_OUT(arg, data);
  1656. break;
  1657. case SOUND_MIXER_READ_RECMASK:
  1658. data = SOUND_MASK_LINE | SOUND_MASK_MIC
  1659. | SOUND_MASK_CD;
  1660. rc = IOCTL_OUT(arg, data);
  1661. break;
  1662. case SOUND_MIXER_READ_RECSRC:
  1663. data = 0;
  1664. if (awacs_reg[0] & MASK_MUX_AUDIN)
  1665. data |= SOUND_MASK_LINE;
  1666. if (awacs_reg[0] & MASK_MUX_MIC)
  1667. data |= SOUND_MASK_MIC;
  1668. if (awacs_reg[0] & MASK_MUX_CD)
  1669. data |= SOUND_MASK_CD;
  1670. rc = IOCTL_OUT(arg, data);
  1671. break;
  1672. case SOUND_MIXER_WRITE_RECSRC:
  1673. IOCTL_IN(arg, data);
  1674. data &= (SOUND_MASK_LINE
  1675.  | SOUND_MASK_MIC | SOUND_MASK_CD);
  1676. awacs_reg[0] &= ~(MASK_MUX_CD | MASK_MUX_MIC
  1677.   | MASK_MUX_AUDIN);
  1678. if (data & SOUND_MASK_LINE)
  1679. awacs_reg[0] |= MASK_MUX_AUDIN;
  1680. if (data & SOUND_MASK_MIC)
  1681. awacs_reg[0] |= MASK_MUX_MIC;
  1682. if (data & SOUND_MASK_CD)
  1683. awacs_reg[0] |= MASK_MUX_CD;
  1684. awacs_write(awacs_reg[0] | MASK_ADDR0);
  1685. rc = IOCTL_OUT(arg, data);
  1686. break;
  1687. case SOUND_MIXER_READ_STEREODEVS:
  1688. data = SOUND_MASK_VOLUME | SOUND_MASK_SPEAKER
  1689. | SOUND_MASK_RECLEV | SOUND_MASK_CD
  1690. | SOUND_MASK_LINE;
  1691. rc = IOCTL_OUT(arg, data);
  1692. break;
  1693. case SOUND_MIXER_READ_CAPS:
  1694. rc = IOCTL_OUT(arg, 0);
  1695. break;
  1696. case SOUND_MIXER_WRITE_VOLUME:
  1697. IOCTL_IN(arg, data);
  1698. awacs_burgundy_write_mvolume(MASK_ADDR_BURGUNDY_MASTER_VOLUME, data);
  1699. /* Fall through */
  1700. case SOUND_MIXER_READ_VOLUME:
  1701. rc = IOCTL_OUT(arg, awacs_burgundy_read_mvolume(MASK_ADDR_BURGUNDY_MASTER_VOLUME));
  1702. break;
  1703. case SOUND_MIXER_WRITE_SPEAKER:
  1704. IOCTL_IN(arg, data);
  1705. if (!(data & 0xff)) {
  1706. /* Mute the left speaker */
  1707. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
  1708.    awacs_burgundy_rcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES) & ~0x2);
  1709. } else {
  1710. /* Unmute the left speaker */
  1711. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
  1712.    awacs_burgundy_rcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES) | 0x2);
  1713. }
  1714. if (!(data & 0xff00)) {
  1715. /* Mute the right speaker */
  1716. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
  1717.    awacs_burgundy_rcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES) & ~0x4);
  1718. } else {
  1719. /* Unmute the right speaker */
  1720. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES,
  1721.    awacs_burgundy_rcb(MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES) | 0x4);
  1722. }
  1723. data = (((data&0xff)*16)/100 > 0xf ? 0xf :
  1724. (((data&0xff)*16)/100)) +
  1725. ((((data>>8)*16)/100 > 0xf ? 0xf :
  1726.   ((((data>>8)*16)/100)))<<4);
  1727. awacs_burgundy_wcb(MASK_ADDR_BURGUNDY_ATTENSPEAKER, ~data);
  1728. /* Fall through */
  1729. case SOUND_MIXER_READ_SPEAKER:
  1730. data = awacs_burgundy_rcb(MASK_ADDR_BURGUNDY_ATTENSPEAKER);
  1731. data = (((data & 0xf)*100)/16) + ((((data>>4)*100)/16)<<8);
  1732. rc = IOCTL_OUT(arg, ~data);
  1733. break;
  1734. case SOUND_MIXER_WRITE_ALTPCM: /* really bell volume */
  1735. IOCTL_IN(arg, data);
  1736. beep_vol = data & 0xff;
  1737. /* fall through */
  1738. case SOUND_MIXER_READ_ALTPCM:
  1739. rc = IOCTL_OUT(arg, beep_vol);
  1740. break;
  1741. case SOUND_MIXER_WRITE_LINE:
  1742. IOCTL_IN(arg, data);
  1743. awacs_burgundy_write_volume(MASK_ADDR_BURGUNDY_VOLLINE, data);
  1744. /* fall through */
  1745. case SOUND_MIXER_READ_LINE:
  1746. data = awacs_burgundy_read_volume(MASK_ADDR_BURGUNDY_VOLLINE);
  1747. rc = IOCTL_OUT(arg, data);
  1748. break;
  1749. case SOUND_MIXER_WRITE_MIC:
  1750. IOCTL_IN(arg, data);
  1751. /* Mic is mono device */
  1752. data = (data << 8) + (data << 24);
  1753. awacs_burgundy_write_volume(MASK_ADDR_BURGUNDY_VOLMIC, data);
  1754. /* fall through */
  1755. case SOUND_MIXER_READ_MIC:
  1756. data = awacs_burgundy_read_volume(MASK_ADDR_BURGUNDY_VOLMIC);
  1757. data <<= 24;
  1758. rc = IOCTL_OUT(arg, data);
  1759. break;
  1760. case SOUND_MIXER_WRITE_CD:
  1761. IOCTL_IN(arg, data);
  1762. awacs_burgundy_write_volume(MASK_ADDR_BURGUNDY_VOLCD, data);
  1763. /* fall through */
  1764. case SOUND_MIXER_READ_CD:
  1765. data = awacs_burgundy_read_volume(MASK_ADDR_BURGUNDY_VOLCD);
  1766. rc = IOCTL_OUT(arg, data);
  1767. break;
  1768. case SOUND_MIXER_WRITE_RECLEV:
  1769. IOCTL_IN(arg, data);
  1770. data = awacs_volume_setter(data, 0, 0, 4);
  1771. rc = IOCTL_OUT(arg, data);
  1772. break;
  1773. case SOUND_MIXER_READ_RECLEV:
  1774. data = awacs_get_volume(awacs_reg[0], 4);
  1775. rc = IOCTL_OUT(arg, data);
  1776. break;
  1777. case SOUND_MIXER_OUTMASK:
  1778. case SOUND_MIXER_OUTSRC:
  1779. default:
  1780. rc = -EINVAL;
  1781. }
  1782. return rc;
  1783. }
  1784. static int tumbler_mixer_ioctl(u_int cmd, u_long arg)
  1785. {
  1786. int data;
  1787. int rc;
  1788. /* We are, we are, we are... Tumbler (and very dumb) */
  1789. /* Ok, we're not THAT dumb anymore, but still pretty dumb :-) */
  1790. switch(cmd) {
  1791. case SOUND_MIXER_READ_DEVMASK:
  1792. data =  SOUND_MASK_VOLUME | SOUND_MASK_ALTPCM |
  1793. SOUND_MASK_BASS | SOUND_MASK_TREBLE |
  1794. SOUND_MASK_PCM;
  1795. rc = IOCTL_OUT(arg, data);
  1796. break;
  1797. case SOUND_MIXER_READ_RECMASK:
  1798. data = 0;
  1799. rc = IOCTL_OUT(arg, data);
  1800. break;
  1801. case SOUND_MIXER_READ_RECSRC:
  1802. data = 0;
  1803. rc = IOCTL_OUT(arg, data);
  1804. break;
  1805. case SOUND_MIXER_WRITE_RECSRC:
  1806. IOCTL_IN(arg, data);
  1807. data =0;
  1808. rc = IOCTL_OUT(arg, data);
  1809. break;
  1810. case SOUND_MIXER_READ_STEREODEVS:
  1811. data = SOUND_MASK_VOLUME | SOUND_MASK_PCM;
  1812. rc = IOCTL_OUT(arg, data);
  1813. break;
  1814. case SOUND_MIXER_READ_CAPS:
  1815. rc = IOCTL_OUT(arg, 0);
  1816. break;
  1817. case SOUND_MIXER_WRITE_BASS:
  1818. IOCTL_IN(arg, data);
  1819. tumbler_set_bass(data);
  1820. /* Fall through */
  1821. case SOUND_MIXER_READ_BASS:
  1822. tumbler_get_bass(&data);
  1823. rc = IOCTL_OUT(arg, data);
  1824. break;
  1825. case SOUND_MIXER_WRITE_TREBLE:
  1826. IOCTL_IN(arg, data);
  1827. tumbler_set_treble(data);
  1828. /* Fall through */
  1829. case SOUND_MIXER_READ_TREBLE:
  1830. tumbler_get_treble(&data);
  1831. rc = IOCTL_OUT(arg, data);
  1832. break;
  1833. case SOUND_MIXER_WRITE_PCM:
  1834. IOCTL_IN(arg, data);
  1835. tumbler_set_pcm_lvl(data);
  1836. /* Fall through */
  1837. case SOUND_MIXER_READ_PCM:
  1838. tumbler_get_pcm_lvl(&data);
  1839. IOCTL_OUT(arg, data);
  1840. break;
  1841. case SOUND_MIXER_WRITE_VOLUME:
  1842. IOCTL_IN(arg, data);
  1843. tumbler_set_volume(data, data);
  1844. /* Fall through */
  1845. case SOUND_MIXER_READ_VOLUME:
  1846. tumbler_get_volume(& data, &data);
  1847. rc = IOCTL_OUT(arg, data);
  1848. break;
  1849. case SOUND_MIXER_WRITE_ALTPCM: /* really bell volume */
  1850. IOCTL_IN(arg, data);
  1851. beep_vol = data & 0xff;
  1852. /* fall through */
  1853. case SOUND_MIXER_READ_ALTPCM:
  1854. rc = IOCTL_OUT(arg, beep_vol);
  1855. break;
  1856. case SOUND_MIXER_OUTMASK:
  1857. case SOUND_MIXER_OUTSRC:
  1858. default:
  1859. rc = -EINVAL;
  1860. }
  1861. return rc;
  1862. }
  1863. static int daca_mixer_ioctl(u_int cmd, u_long arg)
  1864. {
  1865. int data;
  1866. int rc;
  1867. /* And the DACA's no genius either! */
  1868. switch(cmd) {
  1869. case SOUND_MIXER_READ_DEVMASK:
  1870. data = SOUND_MASK_VOLUME;
  1871. rc = IOCTL_OUT(arg, data);
  1872. break;
  1873. case SOUND_MIXER_READ_RECMASK:
  1874. data = 0;
  1875. rc = IOCTL_OUT(arg, data);
  1876. break;
  1877. case SOUND_MIXER_READ_RECSRC:
  1878. data = 0;
  1879. rc = IOCTL_OUT(arg, data);
  1880. break;
  1881. case SOUND_MIXER_WRITE_RECSRC:
  1882. IOCTL_IN(arg, data);
  1883. data =0;
  1884. rc = IOCTL_OUT(arg, data);
  1885. break;
  1886. case SOUND_MIXER_READ_STEREODEVS:
  1887. data = SOUND_MASK_VOLUME;
  1888. rc = IOCTL_OUT(arg, data);
  1889. break;
  1890. case SOUND_MIXER_READ_CAPS:
  1891. rc = IOCTL_OUT(arg, 0);
  1892. break;
  1893. case SOUND_MIXER_WRITE_VOLUME:
  1894. IOCTL_IN(arg, data);
  1895. daca_set_volume(data, data);
  1896. /* Fall through */
  1897. case SOUND_MIXER_READ_VOLUME:
  1898. daca_get_volume(& data, &data);
  1899. rc = IOCTL_OUT(arg, data);
  1900. break;
  1901. case SOUND_MIXER_OUTMASK:
  1902. case SOUND_MIXER_OUTSRC:
  1903. default:
  1904. rc = -EINVAL;
  1905. }
  1906. return rc;
  1907. }
  1908. static int PMacMixerIoctl(u_int cmd, u_long arg)
  1909. {
  1910. int rc;
  1911. /* Different IOCTLS for burgundy and, eventually, DACA & Tumbler */
  1912. TRY_LOCK();
  1913. switch (awacs_revision){
  1914. case AWACS_BURGUNDY:
  1915. rc = burgundy_mixer_ioctl(cmd, arg);
  1916. break ;
  1917. case AWACS_DACA:
  1918. rc = daca_mixer_ioctl(cmd, arg);
  1919. break;
  1920. case AWACS_TUMBLER:
  1921. rc = tumbler_mixer_ioctl(cmd, arg);
  1922. break ;
  1923. default: /* ;-)) */
  1924. rc = awacs_mixer_ioctl(cmd, arg);
  1925. }
  1926. UNLOCK();
  1927. return rc;
  1928. }
  1929. static void PMacMixerInit(void)
  1930. {
  1931. switch (awacs_revision) {
  1932. case AWACS_TUMBLER:
  1933.   printk("AE-Init tumbler mixern");
  1934.   break ;
  1935.   
  1936. case AWACS_DACA:
  1937. case AWACS_BURGUNDY:
  1938. break ; /* don't know yet */
  1939. case AWACS_AWACS:
  1940. case AWACS_SCREAMER:
  1941. default:
  1942. awacs_mixer_init() ;
  1943. break ;
  1944. }
  1945. }
  1946. /* Write/Read sq setup functions:
  1947.    Check to see if we have enough (or any) dbdma cmd buffers for the
  1948.    user's fragment settings.  If not, allocate some. If this fails we will
  1949.    point at the beep buffer - as an emergency provision - to stop dma tromping
  1950.    on some random bit of memory (if someone lets it go anyway).
  1951.    The command buffers are then set up to point to the fragment buffers
  1952.    (allocated elsewhere).  We need n+1 commands the last of which holds
  1953.    a NOP + loop to start.
  1954. */
  1955. static int PMacWriteSqSetup(void)
  1956. {
  1957. int i, count = 600 ;
  1958. volatile struct dbdma_cmd *cp;
  1959. LOCK();
  1960. /* stop the controller from doing any output - if it isn't already.
  1961.    it _should_ be before this is called anyway */
  1962. out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  1963. while ((in_le32(&awacs_txdma->status) & RUN) && count--)
  1964. udelay(1);
  1965. #ifdef DEBUG_DMASOUND
  1966. if (count <= 0)
  1967. printk("dmasound_pmac: write sq setup: timeout waiting for dma to stopn");
  1968. #endif
  1969. if ((write_sq.max_count + 1) > number_of_tx_cmd_buffers) {
  1970. if (awacs_tx_cmd_space)
  1971. kfree(awacs_tx_cmd_space);
  1972. number_of_tx_cmd_buffers = 0;
  1973. /* we need nbufs + 1 (for the loop) and we should request + 1
  1974.    again because the DBDMA_ALIGN might pull the start up by up
  1975.    to sizeof(struct dbdma_cmd) - 4.
  1976. */
  1977. awacs_tx_cmd_space = kmalloc
  1978. ((write_sq.max_count + 1 + 1) * sizeof(struct dbdma_cmd),
  1979.  GFP_KERNEL);
  1980. if (awacs_tx_cmd_space == NULL) {
  1981. /* don't leave it dangling - nasty but better than a
  1982.    random address */
  1983. out_le32(&awacs_txdma->cmdptr, virt_to_bus(beep_dbdma_cmd));
  1984. printk(KERN_ERR
  1985.    "dmasound_pmac: can't allocate dbdma cmd buffers"
  1986.    ", driver disabledn");
  1987. UNLOCK();
  1988. return -ENOMEM;
  1989. }
  1990. awacs_tx_cmds = (volatile struct dbdma_cmd *)
  1991. DBDMA_ALIGN(awacs_tx_cmd_space);
  1992. number_of_tx_cmd_buffers = write_sq.max_count + 1;
  1993. }
  1994. cp = awacs_tx_cmds;
  1995. memset((void *)cp, 0, (write_sq.max_count+1) * sizeof(struct dbdma_cmd));
  1996. for (i = 0; i < write_sq.max_count; ++i, ++cp) {
  1997. st_le32(&cp->phy_addr, virt_to_bus(write_sq.buffers[i]));
  1998. }
  1999. st_le16(&cp->command, DBDMA_NOP + BR_ALWAYS);
  2000. st_le32(&cp->cmd_dep, virt_to_bus(awacs_tx_cmds));
  2001. /* point the controller at the command stack - ready to go */
  2002. out_le32(&awacs_txdma->cmdptr, virt_to_bus(awacs_tx_cmds));
  2003. UNLOCK();
  2004. return 0;
  2005. }
  2006. static int PMacReadSqSetup(void)
  2007. {
  2008. int i, count = 600;
  2009. volatile struct dbdma_cmd *cp;
  2010. LOCK();
  2011. /* stop the controller from doing any input - if it isn't already.
  2012.    it _should_ be before this is called anyway */
  2013. out_le32(&awacs_rxdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  2014. while ((in_le32(&awacs_rxdma->status) & RUN) && count--)
  2015. udelay(1);
  2016. #ifdef DEBUG_DMASOUND
  2017. if (count <= 0)
  2018. printk("dmasound_pmac: read sq setup: timeout waiting for dma to stopn");
  2019. #endif
  2020. if ((read_sq.max_count+1) > number_of_rx_cmd_buffers ) {
  2021. if (awacs_rx_cmd_space)
  2022. kfree(awacs_rx_cmd_space);
  2023. number_of_rx_cmd_buffers = 0;
  2024. /* we need nbufs + 1 (for the loop) and we should request + 1 again
  2025.    because the DBDMA_ALIGN might pull the start up by up to
  2026.    sizeof(struct dbdma_cmd) - 4 (assuming kmalloc aligns 32 bits).
  2027. */
  2028. awacs_rx_cmd_space = kmalloc
  2029. ((read_sq.max_count + 1 + 1) * sizeof(struct dbdma_cmd),
  2030.  GFP_KERNEL);
  2031. if (awacs_rx_cmd_space == NULL) {
  2032. /* don't leave it dangling - nasty but better than a
  2033.    random address */
  2034. out_le32(&awacs_rxdma->cmdptr, virt_to_bus(beep_dbdma_cmd));
  2035. printk(KERN_ERR
  2036.    "dmasound_pmac: can't allocate dbdma cmd buffers"
  2037.    ", driver disabledn");
  2038. UNLOCK();
  2039. return -ENOMEM;
  2040. }
  2041. awacs_rx_cmds = (volatile struct dbdma_cmd *)
  2042. DBDMA_ALIGN(awacs_rx_cmd_space);
  2043. number_of_rx_cmd_buffers = read_sq.max_count + 1 ;
  2044. }
  2045. cp = awacs_rx_cmds;
  2046. memset((void *)cp, 0, (read_sq.max_count+1) * sizeof(struct dbdma_cmd));
  2047. /* Set dma buffers up in a loop */
  2048. for (i = 0; i < read_sq.max_count; i++,cp++) {
  2049. st_le32(&cp->phy_addr, virt_to_bus(read_sq.buffers[i]));
  2050. st_le16(&cp->command, INPUT_MORE + INTR_ALWAYS);
  2051. st_le16(&cp->req_count, read_sq.block_size);
  2052. st_le16(&cp->xfer_status, 0);
  2053. }
  2054. /* The next two lines make the thing loop around.
  2055. */
  2056. st_le16(&cp->command, DBDMA_NOP + BR_ALWAYS);
  2057. st_le32(&cp->cmd_dep, virt_to_bus(awacs_rx_cmds));
  2058. /* point the controller at the command stack - ready to go */
  2059. out_le32(&awacs_rxdma->cmdptr, virt_to_bus(awacs_rx_cmds));
  2060. UNLOCK();
  2061. return 0;
  2062. }
  2063. /* TODO: this needs work to guarantee that when it returns DMA has stopped
  2064.    but in a more elegant way than is done here....
  2065. */
  2066. static void PMacAbortRead(void)
  2067. {
  2068. int i;
  2069. volatile struct dbdma_cmd *cp;
  2070. LOCK();
  2071. /* give it a chance to update the output and provide the IRQ
  2072.    that is expected.
  2073. */
  2074. out_le32(&awacs_rxdma->control, ((FLUSH) << 16) + FLUSH );
  2075. cp = awacs_rx_cmds;
  2076. for (i = 0; i < read_sq.max_count; i++,cp++)
  2077. st_le16(&cp->command, DBDMA_STOP);
  2078. /*
  2079.  * We should probably wait for the thing to stop before we
  2080.  * release the memory.
  2081.  */
  2082. wait_ms(100) ; /* give it a (small) chance to act */
  2083. /* apply the sledgehammer approach - just stop it now */
  2084. out_le32(&awacs_rxdma->control, (RUN|PAUSE|FLUSH|WAKE) << 16);
  2085. UNLOCK();
  2086. }
  2087. extern char *get_afmt_string(int);
  2088. static int PMacStateInfo(char *b, size_t sp)
  2089. {
  2090. int i, len = 0;
  2091. len = sprintf(b,"HW rates: ");
  2092. switch (awacs_revision){
  2093. case AWACS_DACA:
  2094. case AWACS_BURGUNDY:
  2095. len += sprintf(b,"44100 ") ;
  2096. break ;
  2097. case AWACS_TUMBLER:
  2098. for (i=0; i<2; i++){
  2099. if (tumbler_freqs_ok[i])
  2100. len += sprintf(b+len,"%d ", tumbler_freqs[i]) ;
  2101. }
  2102. break ;
  2103. case AWACS_AWACS:
  2104. case AWACS_SCREAMER:
  2105. default:
  2106. for (i=0; i<8; i++){
  2107. if (awacs_freqs_ok[i])
  2108. len += sprintf(b+len,"%d ", awacs_freqs[i]) ;
  2109. }
  2110. break ;
  2111. }
  2112. len += sprintf(b+len,"s/secn") ;
  2113. if (len < sp) {
  2114. len += sprintf(b+len,"HW AFMTS: ");
  2115. i = AFMT_U16_BE ;
  2116. while (i) {
  2117. if (i & dmasound.mach.hardware_afmts)
  2118. len += sprintf(b+len,"%s ",
  2119. get_afmt_string(i & dmasound.mach.hardware_afmts));
  2120. i >>= 1 ;
  2121. }
  2122. len += sprintf(b+len,"n") ;
  2123. }
  2124. return len ;
  2125. }
  2126. /*** Machine definitions *****************************************************/
  2127. static SETTINGS def_hard = {
  2128. format: AFMT_S16_BE,
  2129. stereo: 1,
  2130. size: 16,
  2131. speed: 44100
  2132. } ;
  2133. static SETTINGS def_soft = {
  2134. format: AFMT_S16_BE,
  2135. stereo: 1,
  2136. size: 16,
  2137. speed: 44100
  2138. } ;
  2139. static MACHINE machPMac = {
  2140. name: awacs_name,
  2141. name2: "PowerMac Built-in Sound",
  2142. open: PMacOpen,
  2143. release: PMacRelease,
  2144. dma_alloc: PMacAlloc,
  2145. dma_free: PMacFree,
  2146. irqinit: PMacIrqInit,
  2147. #ifdef MODULE
  2148. irqcleanup: PMacIrqCleanup,
  2149. #endif /* MODULE */
  2150. init: PMacInit,
  2151. silence: PMacSilence,
  2152. setFormat: PMacSetFormat,
  2153. setVolume: PMacSetVolume,
  2154. play: PMacPlay,
  2155. record: NULL, /* default to no record */
  2156. mixer_init: PMacMixerInit,
  2157. mixer_ioctl: PMacMixerIoctl,
  2158. write_sq_setup: PMacWriteSqSetup,
  2159. read_sq_setup: PMacReadSqSetup,
  2160. state_info: PMacStateInfo,
  2161. abort_read: PMacAbortRead,
  2162. min_dsp_speed: 7350,
  2163. max_dsp_speed: 44100,
  2164. version: ((DMASOUND_AWACS_REVISION<<8) + DMASOUND_AWACS_EDITION)
  2165. };
  2166. /*** Config & Setup **********************************************************/
  2167. /* Check for pmac models that we care about in terms of special actions.
  2168. */
  2169. void __init
  2170. set_model(void)
  2171. {
  2172. /* portables/lap-tops */
  2173. if (machine_is_compatible("AAPL,3400/2400") ||
  2174.     machine_is_compatible("AAPL,3500")) {
  2175. is_pbook_3X00 = 1 ;
  2176. }
  2177. if (machine_is_compatible("PowerBook1,1")  || /* lombard */
  2178.     machine_is_compatible("AAPL,PowerBook1998")){ /* wallstreet */
  2179. is_pbook_g3 = 1 ;
  2180. return ;
  2181. }
  2182. }
  2183. /* Get the OF node that tells us about the registers, interrupts etc. to use
  2184.    for sound IO.
  2185.    On most machines the sound IO OF node is the 'davbus' node.  On newer pmacs
  2186.    with DACA (& Tumbler) the node to use is i2s-a.  On much older machines i.e.
  2187.    before 9500 there is no davbus node and we have to use the 'awacs' property.
  2188.   In the latter case we signal this by setting the codec value - so that the
  2189.   code that looks for chip properties knows how to go about it.
  2190. */
  2191. static struct device_node
  2192. __init *get_snd_io_node(void)
  2193. {
  2194. struct device_node *np = NULL;
  2195. /* set up awacs_node for early OF which doesn't have a full set of
  2196.  * properties on davbus
  2197. */
  2198. awacs_node = find_devices("awacs");
  2199. if (awacs_node)
  2200. awacs_revision = AWACS_AWACS;
  2201. /* powermac models after 9500 (other than those which use DACA or
  2202.  * Tumbler) have a node called "davbus".
  2203.  */
  2204. np = find_devices("davbus");
  2205. /*
  2206.  * if we didn't find a davbus device, try 'i2s-a' since
  2207.  * this seems to be what iBooks (& Tumbler) have.
  2208.  */
  2209. if (np == NULL)
  2210. np = find_devices("i2s-a");
  2211. /* if we didn't find this - perhaps we are on an early model
  2212.  * which _only_ has an 'awacs' node
  2213. */
  2214. if (np == NULL && awacs_node)
  2215. np = awacs_node ;
  2216. /* if we failed all these return null - this will cause the
  2217.  * driver to give up...
  2218. */
  2219. return np ;
  2220. }
  2221. /* Get the OF node that contains the info about the sound chip, inputs s-rates
  2222.    etc.
  2223.    This node does not exist (or contains much reduced info) on earlier machines
  2224.    we have to deduce the info other ways for these.
  2225. */
  2226. static struct device_node
  2227. __init *get_snd_info_node(struct device_node *io)
  2228. {
  2229. struct device_node *info;
  2230. info = find_devices("sound");
  2231. while (info != 0 && info->parent != io)
  2232. info = info->next;
  2233. return info ;
  2234. }
  2235. /* Find out what type of codec we have.
  2236. */
  2237. static int
  2238. __init get_codec_type(struct device_node *info)
  2239. {
  2240. /* already set if pre-davbus model and info will be NULL */
  2241. int codec = awacs_revision ;
  2242. if (info) {
  2243. /* must do awacs first to allow screamer to overide it */
  2244. if (device_is_compatible(info, "awacs"))
  2245. codec = AWACS_AWACS ;
  2246. if (device_is_compatible(info, "screamer"))
  2247. codec = AWACS_SCREAMER;
  2248. if (device_is_compatible(info, "burgundy"))
  2249. codec = AWACS_BURGUNDY ;
  2250. if (device_is_compatible(info, "daca"))
  2251. codec = AWACS_DACA;
  2252. if (device_is_compatible(info, "tumbler"))
  2253. codec = AWACS_TUMBLER;
  2254. }
  2255. return codec ;
  2256. }
  2257. /* find out what type, if any, of expansion card we have
  2258. */
  2259. static void
  2260. __init get_expansion_type(void)
  2261. {
  2262. if (find_devices("perch") != NULL)
  2263. has_perch = 1;
  2264. if (find_devices("pb-ziva-pc") != NULL)
  2265. has_ziva = 1;
  2266. /* need to work out how we deal with iMac SRS module */
  2267. }
  2268. /* set up frame rates.
  2269.  * I suspect that these routines don't quite go about it the right way:
  2270.  * - where there is more than one rate - I think that the first property
  2271.  * value is the number of rates.
  2272.  * TODO: check some more device trees and modify accordingly
  2273.  *       Set dmasound.mach.max_dsp_rate on the basis of these routines.
  2274. */
  2275. static void
  2276. __init init_awacs_frame_rates(unsigned int *prop, unsigned int l)
  2277. {
  2278. int i ;
  2279. if (prop) {
  2280. for (i=0; i<8; i++)
  2281. awacs_freqs_ok[i] = 0 ;
  2282. for (l /= sizeof(int); l > 0; --l) {
  2283. unsigned int r = *prop++;
  2284. /* Apple 'Fixed' format */
  2285. if (r >= 0x10000)
  2286. r >>= 16;
  2287. for (i = 0; i < 8; ++i) {
  2288. if (r == awacs_freqs[i]) {
  2289. awacs_freqs_ok[i] = 1;
  2290. break;
  2291. }
  2292. }
  2293. }
  2294. }
  2295. /* else we assume that all the rates are available */
  2296. }
  2297. static void
  2298. __init init_tumbler_frame_rates(unsigned int *prop, unsigned int l)
  2299. {
  2300. int i ;
  2301. if (prop) {
  2302. for (i=0; i<2; i++)
  2303. tumbler_freqs_ok[i] = 0;
  2304. for (l /= sizeof(int); l > 0; --l) {
  2305. unsigned int r = *prop++;
  2306. /* Apple 'Fixed' format */
  2307. if (r >= 0x10000)
  2308. r >>= 16;
  2309. for (i = 0; i < 2; ++i) {
  2310. if (r == tumbler_freqs[i]) {
  2311. tumbler_freqs_ok[i] = 1;
  2312. break;
  2313. }
  2314. }
  2315. }
  2316. }
  2317. /* else we assume that all the rates are available */
  2318. }
  2319. static void
  2320. __init init_burgundy_frame_rates(unsigned int *prop, unsigned int l)
  2321. {
  2322. int temp[9] ;
  2323. int i = 0 ;
  2324. if (prop) {
  2325. for (l /= sizeof(int); l > 0; --l) {
  2326. unsigned int r = *prop++;
  2327. /* Apple 'Fixed' format */
  2328. if (r >= 0x10000)
  2329. r >>= 16;
  2330. temp[i] = r ;
  2331. i++ ; if(i>=9) i=8;
  2332. }
  2333. }
  2334. #ifdef DEBUG_DMASOUND
  2335. if (i > 1){
  2336. int j;
  2337. printk("dmasound_pmac: burgundy with multiple frame ratesn");
  2338. for(j=0; j<i; j++)
  2339. printk("%d ", temp[j]) ;
  2340. printk("n") ;
  2341. }
  2342. #endif
  2343. }
  2344. static void
  2345. __init init_daca_frame_rates(unsigned int *prop, unsigned int l)
  2346. {
  2347. int temp[9] ;
  2348. int i = 0 ;
  2349. if (prop) {
  2350. for (l /= sizeof(int); l > 0; --l) {
  2351. unsigned int r = *prop++;
  2352. /* Apple 'Fixed' format */
  2353. if (r >= 0x10000)
  2354. r >>= 16;
  2355. temp[i] = r ;
  2356. i++ ; if(i>=9) i=8;
  2357. }
  2358. }
  2359. #ifdef DEBUG_DMASOUND
  2360. if (i > 1){
  2361. int j;
  2362. printk("dmasound_pmac: DACA with multiple frame ratesn");
  2363. for(j=0; j<i; j++)
  2364. printk("%d ", temp[j]) ;
  2365. printk("n") ;
  2366. }
  2367. #endif
  2368. }
  2369. static void
  2370. __init init_frame_rates(unsigned int *prop, unsigned int l)
  2371. {
  2372. switch (awacs_revision){
  2373. case AWACS_TUMBLER:
  2374. init_tumbler_frame_rates(prop, l);
  2375. break ;
  2376. case AWACS_DACA:
  2377. init_daca_frame_rates(prop, l);
  2378. break ;
  2379. case AWACS_BURGUNDY:
  2380. init_burgundy_frame_rates(prop, l);
  2381. break ;
  2382. default: /* ;-))) */
  2383. init_awacs_frame_rates(prop, l);
  2384. break ;
  2385. }
  2386. }
  2387. /* find things/machines that can't do mac-io byteswap
  2388. */
  2389. static void
  2390. __init set_hw_byteswap(struct device_node *io)
  2391. {
  2392. struct device_node *mio ;
  2393. unsigned int *p, kl = 0 ;
  2394. /* if seems that Keylargo can't byte-swap  */
  2395. for (mio = io->parent; mio ; mio = mio->parent) {
  2396. if (strcmp(mio->name, "mac-io") == 0) {
  2397. if (device_is_compatible(mio, "Keylargo"))
  2398. kl = 1;
  2399. break;
  2400. }
  2401. }
  2402. hw_can_byteswap = !kl;
  2403. }
  2404. /* Allocate the resources necessary for beep generation.  This cannot be (quite)
  2405.    done statically (yet) because we cannot do virt_to_bus() on static vars when
  2406.    the code is loaded as a module.
  2407.    for the sake of saving the possibility that two allocations will incur the
  2408.    overhead of two pull-ups in DBDMA_ALIGN() we allocate the 'emergency' dmdma
  2409.    command here as well... even tho' it is not part of the beep process.
  2410. */
  2411. int32_t
  2412. __init setup_beep(void)
  2413. {
  2414. /* Initialize beep stuff */
  2415. /* want one cmd buffer for beeps, and a second one for emergencies
  2416.    - i.e. dbdma error conditions.
  2417.    ask for three to allow for pull up in DBDMA_ALIGN().
  2418. */
  2419. beep_dbdma_cmd_space =
  2420. kmalloc((2 + 1) * sizeof(struct dbdma_cmd), GFP_KERNEL);
  2421. if(beep_dbdma_cmd_space == NULL) {
  2422. printk(KERN_ERR "dmasound_pmac: no beep dbdma cmd spacen") ;
  2423. return -ENOMEM ;
  2424. }
  2425. beep_dbdma_cmd = (volatile struct dbdma_cmd *)
  2426. DBDMA_ALIGN(beep_dbdma_cmd_space);
  2427. /* set up emergency dbdma cmd */
  2428. emergency_dbdma_cmd = beep_dbdma_cmd+1 ;
  2429. beep_buf = (short *) kmalloc(BEEP_BUFLEN * 4, GFP_KERNEL);
  2430. if (beep_buf == NULL) {
  2431. printk(KERN_ERR "dmasound_pmac: no memory for beep buffern");
  2432. if( beep_dbdma_cmd_space ) kfree(beep_dbdma_cmd_space) ;
  2433. return -ENOMEM ;
  2434. }
  2435. /* OK, we should be safe to claim the mksound vector now */
  2436. orig_mksound = kd_mksound;
  2437. kd_mksound = awacs_mksound;
  2438. return 0 ;
  2439. }
  2440. int __init dmasound_awacs_init(void)
  2441. {
  2442. struct device_node *io = NULL, *info = NULL;
  2443. int vol, res;
  2444. if (_machine != _MACH_Pmac)
  2445. return -ENODEV;
  2446. awacs_subframe = 0;
  2447. awacs_revision = 0;
  2448. hw_can_byteswap = 1 ; /* most can */
  2449. /* look for models we need to handle specially */
  2450. set_model() ;
  2451. /* find the OF node that tells us about the dbdma stuff
  2452. */
  2453. io = get_snd_io_node();
  2454. if (io == NULL) {
  2455. #ifdef DEBUG_DMASOUND
  2456. printk("dmasound_pmac: couldn't find sound io OF noden");
  2457. #endif
  2458. return -ENODEV ;
  2459. }
  2460. /* find the OF node that tells us about the sound sub-system
  2461.  * this doesn't exist on pre-davbus machines (earlier than 9500)
  2462. */
  2463. if (awacs_revision != AWACS_AWACS) { /* set for pre-davbus */
  2464. info = get_snd_info_node(io) ;
  2465. if (info == NULL){
  2466. #ifdef DEBUG_DMASOUND
  2467. printk("dmasound_pmac: couldn't find 'sound' OF noden");
  2468. #endif
  2469. return -ENODEV ;
  2470. }
  2471. }
  2472. awacs_revision = get_codec_type(info) ;
  2473. if (awacs_revision == 0) {
  2474. #ifdef DEBUG_DMASOUND
  2475. printk("dmasound_pmac: couldn't find a Codec we can handlen");
  2476. #endif
  2477. return -ENODEV ; /* we don't know this type of h/w */
  2478. }
  2479. /* set up perch, ziva, SRS or whatever else we have as sound
  2480.  *  expansion.
  2481. */
  2482. get_expansion_type();
  2483. /* we've now got enough information to make up the audio topology.
  2484.  * we will map the sound part of mac-io now so that we can probe for
  2485.  * other info if necessary (early AWACS we want to read chip ids)
  2486.  */
  2487. if (io->n_addrs < 3 || io->n_intrs < 3) {
  2488. /* OK - maybe we need to use the 'awacs' node (on earlier
  2489.  * machines).
  2490. */
  2491. if (awacs_node) {
  2492. io = awacs_node ;
  2493. if (io->n_addrs < 3 || io->n_intrs < 3) {
  2494. printk("dmasound_pmac: can't use %s"
  2495. " (%d addrs, %d intrs)n",
  2496.         io->full_name, io->n_addrs, io->n_intrs);
  2497. return -ENODEV;
  2498. }
  2499. } else {
  2500. printk("dmasound_pmac: can't use %s (%d addrs, %d intrs)n",
  2501.         io->full_name, io->n_addrs, io->n_intrs);
  2502. }
  2503. }
  2504. if (!request_OF_resource(io, 0, NULL)) {
  2505. printk(KERN_ERR "dmasound: can't request IO resource !n");
  2506. return -ENODEV;
  2507. }
  2508. if (!request_OF_resource(io, 1, " (tx dma)")) {
  2509. release_OF_resource(io, 0);
  2510. printk(KERN_ERR "dmasound: can't request TX DMA resource !n");
  2511. return -ENODEV;
  2512. }
  2513. if (!request_OF_resource(io, 2, " (rx dma)")) {
  2514. release_OF_resource(io, 0);
  2515. release_OF_resource(io, 1);
  2516. printk(KERN_ERR "dmasound: can't request RX DMA resource !n");
  2517. return -ENODEV;
  2518. }
  2519. /* all OF versions I've seen use this value */
  2520. awacs = (volatile struct awacs_regs *)
  2521. ioremap(io->addrs[0].address, 0x1000);
  2522. awacs_txdma = (volatile struct dbdma_regs *)
  2523. ioremap(io->addrs[1].address, 0x100);
  2524. awacs_rxdma = (volatile struct dbdma_regs *)
  2525. ioremap(io->addrs[2].address, 0x100);
  2526. #ifdef CONFIG_PMAC_PBOOK
  2527. /* first of all make sure that the chip is powered up....*/
  2528. pmac_call_feature(PMAC_FTR_SOUND_CHIP_ENABLE, io, 0, 1);
  2529. if (awacs_revision == AWACS_SCREAMER)
  2530. awacs_recalibrate();
  2531. #endif
  2532. awacs_irq = io->intrs[0].line;
  2533. awacs_tx_irq = io->intrs[1].line;
  2534. awacs_rx_irq = io->intrs[2].line;
  2535. awacs_node = io;
  2536. /* if we have an awacs or screamer - probe the chip to make
  2537.  * sure we have the right revision.
  2538. */
  2539. if (awacs_revision <= AWACS_SCREAMER){
  2540. uint32_t temp, rev, mfg ;
  2541. /* find out the awacs revision from the chip */
  2542. temp = in_le32(&awacs->codec_stat);
  2543. rev = (temp >> 12) & 0xf;
  2544. mfg = (temp >>  8) & 0xf;
  2545. #ifdef DEBUG_DMASOUND
  2546. printk("dmasound_pmac: Awacs/Screamer Codec Mfct: %d Rev %dn", mfg, rev);
  2547. #endif
  2548. if (rev >= AWACS_SCREAMER)
  2549. awacs_revision = AWACS_SCREAMER ;
  2550. else
  2551. awacs_revision = rev ;
  2552. }
  2553. dmasound.mach = machPMac;
  2554. /* find out other bits & pieces from OF, these may be present
  2555.    only on some models ... so be careful.
  2556. */
  2557. /* in the absence of a frame rates property we will use the defaults
  2558. */
  2559. if (info) {
  2560. unsigned int *prop, l;
  2561. sound_device_id = 0;
  2562. /* device ID appears post g3 b&w */
  2563. prop = (unsigned int *)get_property(info, "device-id", 0);
  2564. if (prop != 0)
  2565. sound_device_id = *prop;
  2566. /* look for a property saying what sample rates
  2567.    are available */
  2568. prop = (unsigned int *)get_property(info, "sample-rates", &l);
  2569. if (prop == 0)
  2570. prop = (unsigned int *) get_property
  2571. (info, "output-frame-rates", &l);
  2572. /* if it's there use it to set up frame rates */
  2573. init_frame_rates(prop, l) ;
  2574. }
  2575. out_le32(&awacs->control, 0x11); /* set everything quiesent */
  2576. set_hw_byteswap(io) ; /* figure out if the h/w can do it */
  2577. /* get default volume from nvram
  2578.  * vol = (~nvram_read_byte(0x1308) & 7) << 1;
  2579. */
  2580. vol = ((pmac_xpram_read( 8 ) & 7 ) << 1 );
  2581. /* set up tracking values */
  2582. spk_vol = vol * 100 ;
  2583. spk_vol /= 7 ; /* get set value to a percentage */
  2584. spk_vol |= (spk_vol << 8) ; /* equal left & right */
  2585.   line_vol = passthru_vol = spk_vol ;
  2586. /* fill regs that are shared between AWACS & Burgundy */
  2587. awacs_reg[2] = vol + (vol << 6);
  2588. awacs_reg[4] = vol + (vol << 6);
  2589. awacs_reg[5] = vol + (vol << 6); /* screamer has loopthru vol control */
  2590. awacs_reg[6] = 0; /* maybe should be vol << 3 for PCMCIA speaker */
  2591. awacs_reg[7] = 0;
  2592. awacs_reg[0] = MASK_MUX_CD;
  2593. awacs_reg[1] = MASK_LOOPTHRU;
  2594. /* FIXME: Only machines with external SRS module need MASK_PAROUT */
  2595. if (has_perch || sound_device_id == 0x5
  2596.     || /*sound_device_id == 0x8 ||*/ sound_device_id == 0xb)
  2597. awacs_reg[1] |= MASK_PAROUT0 | MASK_PAROUT1;
  2598. switch (awacs_revision) {
  2599. case AWACS_TUMBLER:
  2600. #ifdef CONFIG_KMOD
  2601. request_module("i2c-keywest");
  2602. #endif /* CONFIG_KMOD */
  2603. awacs_tumbler_init();
  2604. tas_init();
  2605. break ;
  2606. case AWACS_DACA:
  2607. #ifdef CONFIG_KMOD
  2608. request_module("i2c-keywest");
  2609. #endif /* CONFIG_KMOD */
  2610. daca_init();
  2611. break ; /* dont know how yet */
  2612. case AWACS_BURGUNDY:
  2613. awacs_burgundy_init();
  2614. break ;
  2615. case AWACS_SCREAMER:
  2616. case AWACS_AWACS:
  2617. default:
  2618. load_awacs() ;
  2619. break ;
  2620. }
  2621. /* enable/set-up external modules - when we know how */
  2622. if (has_perch)
  2623. awacs_enable_amp(100 * 0x101);
  2624. /* Reset dbdma channels */
  2625. out_le32(&awacs_txdma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
  2626. while (in_le32(&awacs_txdma->status) & RUN)
  2627. udelay(1);
  2628. out_le32(&awacs_rxdma->control, (RUN|PAUSE|FLUSH|WAKE|DEAD) << 16);
  2629. while (in_le32(&awacs_rxdma->status) & RUN)
  2630. udelay(1);
  2631. /* Initialize beep stuff */
  2632. if ((res=setup_beep()))
  2633. return res ;
  2634. #ifdef CONFIG_PMAC_PBOOK
  2635. pmu_register_sleep_notifier(&awacs_sleep_notifier);
  2636. #endif /* CONFIG_PMAC_PBOOK */
  2637. /* Powerbooks have odd ways of enabling inputs such as
  2638.    an expansion-bay CD or sound from an internal modem
  2639.    or a PC-card modem. */
  2640. if (is_pbook_3X00) {
  2641. /*
  2642.  * Enable CD and PC-card sound inputs.
  2643.  * This is done by reading from address
  2644.  * f301a000, + 0x10 to enable the expansion-bay
  2645.  * CD sound input, + 0x80 to enable the PC-card
  2646.  * sound input.  The 0x100 enables the SCSI bus
  2647.  * terminator power.
  2648.  */
  2649. latch_base = (unsigned char *) ioremap (0xf301a000, 0x1000);
  2650. in_8(latch_base + 0x190);
  2651. } else if (is_pbook_g3) {
  2652. struct device_node* mio;
  2653. macio_base = 0;
  2654. for (mio = io->parent; mio; mio = mio->parent) {
  2655. if (strcmp(mio->name, "mac-io") == 0
  2656.     && mio->n_addrs > 0) {
  2657. macio_base = (unsigned char *) ioremap
  2658. (mio->addrs[0].address, 0x40);
  2659. break;
  2660. }
  2661. }
  2662. /*
  2663.  * Enable CD sound input.
  2664.  * The relevant bits for writing to this byte are 0x8f.
  2665.  * I haven't found out what the 0x80 bit does.
  2666.  * For the 0xf bits, writing 3 or 7 enables the CD
  2667.  * input, any other value disables it.  Values
  2668.  * 1, 3, 5, 7 enable the microphone.  Values 0, 2,
  2669.  * 4, 6, 8 - f enable the input from the modem.
  2670.  *  -- paulus.
  2671.  */
  2672. if (macio_base)
  2673. out_8(macio_base + 0x37, 3);
  2674. }
  2675. if (hw_can_byteswap)
  2676.   dmasound.mach.hardware_afmts = (AFMT_S16_BE | AFMT_S16_LE) ;
  2677.   else
  2678. dmasound.mach.hardware_afmts = AFMT_S16_BE ;
  2679. /* shut out chips that do output only.
  2680.    may need to extend this to machines which have no inputs - even tho'
  2681.    they use screamer - IIRC one of the powerbooks is like this.
  2682. */
  2683. if (awacs_revision != AWACS_TUMBLER && awacs_revision != AWACS_DACA) {
  2684. dmasound.mach.capabilities = DSP_CAP_DUPLEX ;
  2685. dmasound.mach.record = PMacRecord ;
  2686. }
  2687. dmasound.mach.default_hard = def_hard ;
  2688. dmasound.mach.default_soft = def_soft ;
  2689. switch (awacs_revision) {
  2690. case AWACS_BURGUNDY:
  2691. sprintf(awacs_name, "PowerMac Burgundy ") ;
  2692. break ;
  2693. case AWACS_DACA:
  2694. sprintf(awacs_name, "PowerMac DACA ") ;
  2695. break ;
  2696. case AWACS_TUMBLER:
  2697. sprintf(awacs_name, "PowerMac Tumbler ") ;
  2698. break ;
  2699. case AWACS_SCREAMER:
  2700. sprintf(awacs_name, "PowerMac Screamer ") ;
  2701. break ;
  2702. case AWACS_AWACS:
  2703. default:
  2704. sprintf(awacs_name, "PowerMac AWACS rev %d ", awacs_revision) ;
  2705. break ;
  2706. }
  2707. return dmasound_init();
  2708. }
  2709. static void __exit dmasound_awacs_cleanup(void)
  2710. {
  2711. switch (awacs_revision) {
  2712. case AWACS_TUMBLER:
  2713. awacs_tumbler_cleanup();
  2714. tas_cleanup();
  2715. break ;
  2716. case AWACS_DACA:
  2717. daca_cleanup();
  2718. break;
  2719. }
  2720. dmasound_deinit();
  2721. }
  2722. MODULE_DESCRIPTION("PowerMac built-in audio driver.");
  2723. MODULE_LICENSE("GPL");
  2724. module_init(dmasound_awacs_init);
  2725. module_exit(dmasound_awacs_cleanup);