oxygen_lib.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835
  1. /*
  2. * C-Media CMI8788 driver - main driver module
  3. *
  4. * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
  5. *
  6. *
  7. * This driver is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License, version 2.
  9. *
  10. * This driver is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this driver; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <linux/delay.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/mutex.h>
  22. #include <linux/pci.h>
  23. #include <linux/slab.h>
  24. #include <linux/module.h>
  25. #include <sound/ac97_codec.h>
  26. #include <sound/asoundef.h>
  27. #include <sound/core.h>
  28. #include <sound/info.h>
  29. #include <sound/mpu401.h>
  30. #include <sound/pcm.h>
  31. #include "oxygen.h"
  32. #include "cm9780.h"
  33. MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
  34. MODULE_DESCRIPTION("C-Media CMI8788 helper library");
  35. MODULE_LICENSE("GPL v2");
  36. #define DRIVER "oxygen"
  37. static inline int oxygen_uart_input_ready(struct oxygen *chip)
  38. {
  39. return !(oxygen_read8(chip, OXYGEN_MPU401 + 1) & MPU401_RX_EMPTY);
  40. }
  41. static void oxygen_read_uart(struct oxygen *chip)
  42. {
  43. if (unlikely(!oxygen_uart_input_ready(chip))) {
  44. /* no data, but read it anyway to clear the interrupt */
  45. oxygen_read8(chip, OXYGEN_MPU401);
  46. return;
  47. }
  48. do {
  49. u8 data = oxygen_read8(chip, OXYGEN_MPU401);
  50. if (data == MPU401_ACK)
  51. continue;
  52. if (chip->uart_input_count >= ARRAY_SIZE(chip->uart_input))
  53. chip->uart_input_count = 0;
  54. chip->uart_input[chip->uart_input_count++] = data;
  55. } while (oxygen_uart_input_ready(chip));
  56. if (chip->model.uart_input)
  57. chip->model.uart_input(chip);
  58. }
  59. static irqreturn_t oxygen_interrupt(int dummy, void *dev_id)
  60. {
  61. struct oxygen *chip = dev_id;
  62. unsigned int status, clear, elapsed_streams, i;
  63. status = oxygen_read16(chip, OXYGEN_INTERRUPT_STATUS);
  64. if (!status)
  65. return IRQ_NONE;
  66. spin_lock(&chip->reg_lock);
  67. clear = status & (OXYGEN_CHANNEL_A |
  68. OXYGEN_CHANNEL_B |
  69. OXYGEN_CHANNEL_C |
  70. OXYGEN_CHANNEL_SPDIF |
  71. OXYGEN_CHANNEL_MULTICH |
  72. OXYGEN_CHANNEL_AC97 |
  73. OXYGEN_INT_SPDIF_IN_DETECT |
  74. OXYGEN_INT_GPIO |
  75. OXYGEN_INT_AC97);
  76. if (clear) {
  77. if (clear & OXYGEN_INT_SPDIF_IN_DETECT)
  78. chip->interrupt_mask &= ~OXYGEN_INT_SPDIF_IN_DETECT;
  79. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK,
  80. chip->interrupt_mask & ~clear);
  81. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK,
  82. chip->interrupt_mask);
  83. }
  84. elapsed_streams = status & chip->pcm_running;
  85. spin_unlock(&chip->reg_lock);
  86. for (i = 0; i < PCM_COUNT; ++i)
  87. if ((elapsed_streams & (1 << i)) && chip->streams[i])
  88. snd_pcm_period_elapsed(chip->streams[i]);
  89. if (status & OXYGEN_INT_SPDIF_IN_DETECT) {
  90. spin_lock(&chip->reg_lock);
  91. i = oxygen_read32(chip, OXYGEN_SPDIF_CONTROL);
  92. if (i & (OXYGEN_SPDIF_SENSE_INT | OXYGEN_SPDIF_LOCK_INT |
  93. OXYGEN_SPDIF_RATE_INT)) {
  94. /* write the interrupt bit(s) to clear */
  95. oxygen_write32(chip, OXYGEN_SPDIF_CONTROL, i);
  96. schedule_work(&chip->spdif_input_bits_work);
  97. }
  98. spin_unlock(&chip->reg_lock);
  99. }
  100. if (status & OXYGEN_INT_GPIO)
  101. schedule_work(&chip->gpio_work);
  102. if (status & OXYGEN_INT_MIDI) {
  103. if (chip->midi)
  104. snd_mpu401_uart_interrupt(0, chip->midi->private_data);
  105. else
  106. oxygen_read_uart(chip);
  107. }
  108. if (status & OXYGEN_INT_AC97)
  109. wake_up(&chip->ac97_waitqueue);
  110. return IRQ_HANDLED;
  111. }
  112. static void oxygen_spdif_input_bits_changed(struct work_struct *work)
  113. {
  114. struct oxygen *chip = container_of(work, struct oxygen,
  115. spdif_input_bits_work);
  116. u32 reg;
  117. /*
  118. * This function gets called when there is new activity on the SPDIF
  119. * input, or when we lose lock on the input signal, or when the rate
  120. * changes.
  121. */
  122. msleep(1);
  123. spin_lock_irq(&chip->reg_lock);
  124. reg = oxygen_read32(chip, OXYGEN_SPDIF_CONTROL);
  125. if ((reg & (OXYGEN_SPDIF_SENSE_STATUS |
  126. OXYGEN_SPDIF_LOCK_STATUS))
  127. == OXYGEN_SPDIF_SENSE_STATUS) {
  128. /*
  129. * If we detect activity on the SPDIF input but cannot lock to
  130. * a signal, the clock bit is likely to be wrong.
  131. */
  132. reg ^= OXYGEN_SPDIF_IN_CLOCK_MASK;
  133. oxygen_write32(chip, OXYGEN_SPDIF_CONTROL, reg);
  134. spin_unlock_irq(&chip->reg_lock);
  135. msleep(1);
  136. spin_lock_irq(&chip->reg_lock);
  137. reg = oxygen_read32(chip, OXYGEN_SPDIF_CONTROL);
  138. if ((reg & (OXYGEN_SPDIF_SENSE_STATUS |
  139. OXYGEN_SPDIF_LOCK_STATUS))
  140. == OXYGEN_SPDIF_SENSE_STATUS) {
  141. /* nothing detected with either clock; give up */
  142. if ((reg & OXYGEN_SPDIF_IN_CLOCK_MASK)
  143. == OXYGEN_SPDIF_IN_CLOCK_192) {
  144. /*
  145. * Reset clock to <= 96 kHz because this is
  146. * more likely to be received next time.
  147. */
  148. reg &= ~OXYGEN_SPDIF_IN_CLOCK_MASK;
  149. reg |= OXYGEN_SPDIF_IN_CLOCK_96;
  150. oxygen_write32(chip, OXYGEN_SPDIF_CONTROL, reg);
  151. }
  152. }
  153. }
  154. spin_unlock_irq(&chip->reg_lock);
  155. if (chip->controls[CONTROL_SPDIF_INPUT_BITS]) {
  156. spin_lock_irq(&chip->reg_lock);
  157. chip->interrupt_mask |= OXYGEN_INT_SPDIF_IN_DETECT;
  158. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK,
  159. chip->interrupt_mask);
  160. spin_unlock_irq(&chip->reg_lock);
  161. /*
  162. * We don't actually know that any channel status bits have
  163. * changed, but let's send a notification just to be sure.
  164. */
  165. snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE,
  166. &chip->controls[CONTROL_SPDIF_INPUT_BITS]->id);
  167. }
  168. }
  169. static void oxygen_gpio_changed(struct work_struct *work)
  170. {
  171. struct oxygen *chip = container_of(work, struct oxygen, gpio_work);
  172. if (chip->model.gpio_changed)
  173. chip->model.gpio_changed(chip);
  174. }
  175. #ifdef CONFIG_PROC_FS
  176. static void oxygen_proc_read(struct snd_info_entry *entry,
  177. struct snd_info_buffer *buffer)
  178. {
  179. struct oxygen *chip = entry->private_data;
  180. int i, j;
  181. switch (oxygen_read8(chip, OXYGEN_REVISION) & OXYGEN_PACKAGE_ID_MASK) {
  182. case OXYGEN_PACKAGE_ID_8786: i = '6'; break;
  183. case OXYGEN_PACKAGE_ID_8787: i = '7'; break;
  184. case OXYGEN_PACKAGE_ID_8788: i = '8'; break;
  185. default: i = '?'; break;
  186. }
  187. snd_iprintf(buffer, "CMI878%c:\n", i);
  188. for (i = 0; i < OXYGEN_IO_SIZE; i += 0x10) {
  189. snd_iprintf(buffer, "%02x:", i);
  190. for (j = 0; j < 0x10; ++j)
  191. snd_iprintf(buffer, " %02x", oxygen_read8(chip, i + j));
  192. snd_iprintf(buffer, "\n");
  193. }
  194. if (mutex_lock_interruptible(&chip->mutex) < 0)
  195. return;
  196. if (chip->has_ac97_0) {
  197. snd_iprintf(buffer, "\nAC97:\n");
  198. for (i = 0; i < 0x80; i += 0x10) {
  199. snd_iprintf(buffer, "%02x:", i);
  200. for (j = 0; j < 0x10; j += 2)
  201. snd_iprintf(buffer, " %04x",
  202. oxygen_read_ac97(chip, 0, i + j));
  203. snd_iprintf(buffer, "\n");
  204. }
  205. }
  206. if (chip->has_ac97_1) {
  207. snd_iprintf(buffer, "\nAC97 2:\n");
  208. for (i = 0; i < 0x80; i += 0x10) {
  209. snd_iprintf(buffer, "%02x:", i);
  210. for (j = 0; j < 0x10; j += 2)
  211. snd_iprintf(buffer, " %04x",
  212. oxygen_read_ac97(chip, 1, i + j));
  213. snd_iprintf(buffer, "\n");
  214. }
  215. }
  216. mutex_unlock(&chip->mutex);
  217. if (chip->model.dump_registers)
  218. chip->model.dump_registers(chip, buffer);
  219. }
  220. static void oxygen_proc_init(struct oxygen *chip)
  221. {
  222. struct snd_info_entry *entry;
  223. if (!snd_card_proc_new(chip->card, "oxygen", &entry))
  224. snd_info_set_text_ops(entry, chip, oxygen_proc_read);
  225. }
  226. #else
  227. #define oxygen_proc_init(chip)
  228. #endif
  229. static const struct pci_device_id *
  230. oxygen_search_pci_id(struct oxygen *chip, const struct pci_device_id ids[])
  231. {
  232. u16 subdevice;
  233. /*
  234. * Make sure the EEPROM pins are available, i.e., not used for SPI.
  235. * (This function is called before we initialize or use SPI.)
  236. */
  237. oxygen_clear_bits8(chip, OXYGEN_FUNCTION,
  238. OXYGEN_FUNCTION_ENABLE_SPI_4_5);
  239. /*
  240. * Read the subsystem device ID directly from the EEPROM, because the
  241. * chip didn't if the first EEPROM word was overwritten.
  242. */
  243. subdevice = oxygen_read_eeprom(chip, 2);
  244. /* use default ID if EEPROM is missing */
  245. if (subdevice == 0xffff && oxygen_read_eeprom(chip, 1) == 0xffff)
  246. subdevice = 0x8788;
  247. /*
  248. * We use only the subsystem device ID for searching because it is
  249. * unique even without the subsystem vendor ID, which may have been
  250. * overwritten in the EEPROM.
  251. */
  252. for (; ids->vendor; ++ids)
  253. if (ids->subdevice == subdevice &&
  254. ids->driver_data != BROKEN_EEPROM_DRIVER_DATA)
  255. return ids;
  256. return NULL;
  257. }
  258. static void oxygen_restore_eeprom(struct oxygen *chip,
  259. const struct pci_device_id *id)
  260. {
  261. u16 eeprom_id;
  262. eeprom_id = oxygen_read_eeprom(chip, 0);
  263. if (eeprom_id != OXYGEN_EEPROM_ID &&
  264. (eeprom_id != 0xffff || id->subdevice != 0x8788)) {
  265. /*
  266. * This function gets called only when a known card model has
  267. * been detected, i.e., we know there is a valid subsystem
  268. * product ID at index 2 in the EEPROM. Therefore, we have
  269. * been able to deduce the correct subsystem vendor ID, and
  270. * this is enough information to restore the original EEPROM
  271. * contents.
  272. */
  273. oxygen_write_eeprom(chip, 1, id->subvendor);
  274. oxygen_write_eeprom(chip, 0, OXYGEN_EEPROM_ID);
  275. oxygen_set_bits8(chip, OXYGEN_MISC,
  276. OXYGEN_MISC_WRITE_PCI_SUBID);
  277. pci_write_config_word(chip->pci, PCI_SUBSYSTEM_VENDOR_ID,
  278. id->subvendor);
  279. pci_write_config_word(chip->pci, PCI_SUBSYSTEM_ID,
  280. id->subdevice);
  281. oxygen_clear_bits8(chip, OXYGEN_MISC,
  282. OXYGEN_MISC_WRITE_PCI_SUBID);
  283. snd_printk(KERN_INFO "EEPROM ID restored\n");
  284. }
  285. }
  286. static void configure_pcie_bridge(struct pci_dev *pci)
  287. {
  288. enum { PEX811X, PI7C9X110 };
  289. static const struct pci_device_id bridge_ids[] = {
  290. { PCI_VDEVICE(PLX, 0x8111), .driver_data = PEX811X },
  291. { PCI_VDEVICE(PLX, 0x8112), .driver_data = PEX811X },
  292. { PCI_DEVICE(0x12d8, 0xe110), .driver_data = PI7C9X110 },
  293. { }
  294. };
  295. struct pci_dev *bridge;
  296. const struct pci_device_id *id;
  297. u32 tmp;
  298. if (!pci->bus || !pci->bus->self)
  299. return;
  300. bridge = pci->bus->self;
  301. id = pci_match_id(bridge_ids, bridge);
  302. if (!id)
  303. return;
  304. switch (id->driver_data) {
  305. case PEX811X: /* PLX PEX8111/PEX8112 PCIe/PCI bridge */
  306. pci_read_config_dword(bridge, 0x48, &tmp);
  307. tmp |= 1; /* enable blind prefetching */
  308. tmp |= 1 << 11; /* enable beacon generation */
  309. pci_write_config_dword(bridge, 0x48, tmp);
  310. pci_write_config_dword(bridge, 0x84, 0x0c);
  311. pci_read_config_dword(bridge, 0x88, &tmp);
  312. tmp &= ~(7 << 27);
  313. tmp |= 2 << 27; /* set prefetch size to 128 bytes */
  314. pci_write_config_dword(bridge, 0x88, tmp);
  315. break;
  316. case PI7C9X110: /* Pericom PI7C9X110 PCIe/PCI bridge */
  317. pci_read_config_dword(bridge, 0x40, &tmp);
  318. tmp |= 1; /* park the PCI arbiter to the sound chip */
  319. pci_write_config_dword(bridge, 0x40, tmp);
  320. break;
  321. }
  322. }
  323. static void oxygen_init(struct oxygen *chip)
  324. {
  325. unsigned int i;
  326. chip->dac_routing = 1;
  327. for (i = 0; i < 8; ++i)
  328. chip->dac_volume[i] = chip->model.dac_volume_min;
  329. chip->dac_mute = 1;
  330. chip->spdif_playback_enable = 1;
  331. chip->spdif_bits = OXYGEN_SPDIF_C | OXYGEN_SPDIF_ORIGINAL |
  332. (IEC958_AES1_CON_PCM_CODER << OXYGEN_SPDIF_CATEGORY_SHIFT);
  333. chip->spdif_pcm_bits = chip->spdif_bits;
  334. if (!(oxygen_read8(chip, OXYGEN_REVISION) & OXYGEN_REVISION_2))
  335. oxygen_set_bits8(chip, OXYGEN_MISC,
  336. OXYGEN_MISC_PCI_MEM_W_1_CLOCK);
  337. i = oxygen_read16(chip, OXYGEN_AC97_CONTROL);
  338. chip->has_ac97_0 = (i & OXYGEN_AC97_CODEC_0) != 0;
  339. chip->has_ac97_1 = (i & OXYGEN_AC97_CODEC_1) != 0;
  340. oxygen_write8_masked(chip, OXYGEN_FUNCTION,
  341. OXYGEN_FUNCTION_RESET_CODEC |
  342. chip->model.function_flags,
  343. OXYGEN_FUNCTION_RESET_CODEC |
  344. OXYGEN_FUNCTION_2WIRE_SPI_MASK |
  345. OXYGEN_FUNCTION_ENABLE_SPI_4_5);
  346. oxygen_write8(chip, OXYGEN_DMA_STATUS, 0);
  347. oxygen_write8(chip, OXYGEN_DMA_PAUSE, 0);
  348. oxygen_write8(chip, OXYGEN_PLAY_CHANNELS,
  349. OXYGEN_PLAY_CHANNELS_2 |
  350. OXYGEN_DMA_A_BURST_8 |
  351. OXYGEN_DMA_MULTICH_BURST_8);
  352. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, 0);
  353. oxygen_write8_masked(chip, OXYGEN_MISC,
  354. chip->model.misc_flags,
  355. OXYGEN_MISC_WRITE_PCI_SUBID |
  356. OXYGEN_MISC_REC_C_FROM_SPDIF |
  357. OXYGEN_MISC_REC_B_FROM_AC97 |
  358. OXYGEN_MISC_REC_A_FROM_MULTICH |
  359. OXYGEN_MISC_MIDI);
  360. oxygen_write8(chip, OXYGEN_REC_FORMAT,
  361. (OXYGEN_FORMAT_16 << OXYGEN_REC_FORMAT_A_SHIFT) |
  362. (OXYGEN_FORMAT_16 << OXYGEN_REC_FORMAT_B_SHIFT) |
  363. (OXYGEN_FORMAT_16 << OXYGEN_REC_FORMAT_C_SHIFT));
  364. oxygen_write8(chip, OXYGEN_PLAY_FORMAT,
  365. (OXYGEN_FORMAT_16 << OXYGEN_SPDIF_FORMAT_SHIFT) |
  366. (OXYGEN_FORMAT_16 << OXYGEN_MULTICH_FORMAT_SHIFT));
  367. oxygen_write8(chip, OXYGEN_REC_CHANNELS, OXYGEN_REC_CHANNELS_2_2_2);
  368. oxygen_write16(chip, OXYGEN_I2S_MULTICH_FORMAT,
  369. OXYGEN_RATE_48000 |
  370. chip->model.dac_i2s_format |
  371. OXYGEN_I2S_MCLK(chip->model.dac_mclks) |
  372. OXYGEN_I2S_BITS_16 |
  373. OXYGEN_I2S_MASTER |
  374. OXYGEN_I2S_BCLK_64);
  375. if (chip->model.device_config & CAPTURE_0_FROM_I2S_1)
  376. oxygen_write16(chip, OXYGEN_I2S_A_FORMAT,
  377. OXYGEN_RATE_48000 |
  378. chip->model.adc_i2s_format |
  379. OXYGEN_I2S_MCLK(chip->model.adc_mclks) |
  380. OXYGEN_I2S_BITS_16 |
  381. OXYGEN_I2S_MASTER |
  382. OXYGEN_I2S_BCLK_64);
  383. else
  384. oxygen_write16(chip, OXYGEN_I2S_A_FORMAT,
  385. OXYGEN_I2S_MASTER |
  386. OXYGEN_I2S_MUTE_MCLK);
  387. if (chip->model.device_config & (CAPTURE_0_FROM_I2S_2 |
  388. CAPTURE_2_FROM_I2S_2))
  389. oxygen_write16(chip, OXYGEN_I2S_B_FORMAT,
  390. OXYGEN_RATE_48000 |
  391. chip->model.adc_i2s_format |
  392. OXYGEN_I2S_MCLK(chip->model.adc_mclks) |
  393. OXYGEN_I2S_BITS_16 |
  394. OXYGEN_I2S_MASTER |
  395. OXYGEN_I2S_BCLK_64);
  396. else
  397. oxygen_write16(chip, OXYGEN_I2S_B_FORMAT,
  398. OXYGEN_I2S_MASTER |
  399. OXYGEN_I2S_MUTE_MCLK);
  400. oxygen_write16(chip, OXYGEN_I2S_C_FORMAT,
  401. OXYGEN_I2S_MASTER |
  402. OXYGEN_I2S_MUTE_MCLK);
  403. oxygen_clear_bits32(chip, OXYGEN_SPDIF_CONTROL,
  404. OXYGEN_SPDIF_OUT_ENABLE |
  405. OXYGEN_SPDIF_LOOPBACK);
  406. if (chip->model.device_config & CAPTURE_1_FROM_SPDIF)
  407. oxygen_write32_masked(chip, OXYGEN_SPDIF_CONTROL,
  408. OXYGEN_SPDIF_SENSE_MASK |
  409. OXYGEN_SPDIF_LOCK_MASK |
  410. OXYGEN_SPDIF_RATE_MASK |
  411. OXYGEN_SPDIF_LOCK_PAR |
  412. OXYGEN_SPDIF_IN_CLOCK_96,
  413. OXYGEN_SPDIF_SENSE_MASK |
  414. OXYGEN_SPDIF_LOCK_MASK |
  415. OXYGEN_SPDIF_RATE_MASK |
  416. OXYGEN_SPDIF_SENSE_PAR |
  417. OXYGEN_SPDIF_LOCK_PAR |
  418. OXYGEN_SPDIF_IN_CLOCK_MASK);
  419. else
  420. oxygen_clear_bits32(chip, OXYGEN_SPDIF_CONTROL,
  421. OXYGEN_SPDIF_SENSE_MASK |
  422. OXYGEN_SPDIF_LOCK_MASK |
  423. OXYGEN_SPDIF_RATE_MASK);
  424. oxygen_write32(chip, OXYGEN_SPDIF_OUTPUT_BITS, chip->spdif_bits);
  425. oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS,
  426. OXYGEN_2WIRE_LENGTH_8 |
  427. OXYGEN_2WIRE_INTERRUPT_MASK |
  428. OXYGEN_2WIRE_SPEED_STANDARD);
  429. oxygen_clear_bits8(chip, OXYGEN_MPU401_CONTROL, OXYGEN_MPU401_LOOPBACK);
  430. oxygen_write8(chip, OXYGEN_GPI_INTERRUPT_MASK, 0);
  431. oxygen_write16(chip, OXYGEN_GPIO_INTERRUPT_MASK, 0);
  432. oxygen_write16(chip, OXYGEN_PLAY_ROUTING,
  433. OXYGEN_PLAY_MULTICH_I2S_DAC |
  434. OXYGEN_PLAY_SPDIF_SPDIF |
  435. (0 << OXYGEN_PLAY_DAC0_SOURCE_SHIFT) |
  436. (1 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) |
  437. (2 << OXYGEN_PLAY_DAC2_SOURCE_SHIFT) |
  438. (3 << OXYGEN_PLAY_DAC3_SOURCE_SHIFT));
  439. oxygen_write8(chip, OXYGEN_REC_ROUTING,
  440. OXYGEN_REC_A_ROUTE_I2S_ADC_1 |
  441. OXYGEN_REC_B_ROUTE_I2S_ADC_2 |
  442. OXYGEN_REC_C_ROUTE_SPDIF);
  443. oxygen_write8(chip, OXYGEN_ADC_MONITOR, 0);
  444. oxygen_write8(chip, OXYGEN_A_MONITOR_ROUTING,
  445. (0 << OXYGEN_A_MONITOR_ROUTE_0_SHIFT) |
  446. (1 << OXYGEN_A_MONITOR_ROUTE_1_SHIFT) |
  447. (2 << OXYGEN_A_MONITOR_ROUTE_2_SHIFT) |
  448. (3 << OXYGEN_A_MONITOR_ROUTE_3_SHIFT));
  449. if (chip->has_ac97_0 | chip->has_ac97_1)
  450. oxygen_write8(chip, OXYGEN_AC97_INTERRUPT_MASK,
  451. OXYGEN_AC97_INT_READ_DONE |
  452. OXYGEN_AC97_INT_WRITE_DONE);
  453. else
  454. oxygen_write8(chip, OXYGEN_AC97_INTERRUPT_MASK, 0);
  455. oxygen_write32(chip, OXYGEN_AC97_OUT_CONFIG, 0);
  456. oxygen_write32(chip, OXYGEN_AC97_IN_CONFIG, 0);
  457. if (!(chip->has_ac97_0 | chip->has_ac97_1))
  458. oxygen_set_bits16(chip, OXYGEN_AC97_CONTROL,
  459. OXYGEN_AC97_CLOCK_DISABLE);
  460. if (!chip->has_ac97_0) {
  461. oxygen_set_bits16(chip, OXYGEN_AC97_CONTROL,
  462. OXYGEN_AC97_NO_CODEC_0);
  463. } else {
  464. oxygen_write_ac97(chip, 0, AC97_RESET, 0);
  465. msleep(1);
  466. oxygen_ac97_set_bits(chip, 0, CM9780_GPIO_SETUP,
  467. CM9780_GPIO0IO | CM9780_GPIO1IO);
  468. oxygen_ac97_set_bits(chip, 0, CM9780_MIXER,
  469. CM9780_BSTSEL | CM9780_STRO_MIC |
  470. CM9780_MIX2FR | CM9780_PCBSW);
  471. oxygen_ac97_set_bits(chip, 0, CM9780_JACK,
  472. CM9780_RSOE | CM9780_CBOE |
  473. CM9780_SSOE | CM9780_FROE |
  474. CM9780_MIC2MIC | CM9780_LI2LI);
  475. oxygen_write_ac97(chip, 0, AC97_MASTER, 0x0000);
  476. oxygen_write_ac97(chip, 0, AC97_PC_BEEP, 0x8000);
  477. oxygen_write_ac97(chip, 0, AC97_MIC, 0x8808);
  478. oxygen_write_ac97(chip, 0, AC97_LINE, 0x0808);
  479. oxygen_write_ac97(chip, 0, AC97_CD, 0x8808);
  480. oxygen_write_ac97(chip, 0, AC97_VIDEO, 0x8808);
  481. oxygen_write_ac97(chip, 0, AC97_AUX, 0x8808);
  482. oxygen_write_ac97(chip, 0, AC97_REC_GAIN, 0x8000);
  483. oxygen_write_ac97(chip, 0, AC97_CENTER_LFE_MASTER, 0x8080);
  484. oxygen_write_ac97(chip, 0, AC97_SURROUND_MASTER, 0x8080);
  485. oxygen_ac97_clear_bits(chip, 0, CM9780_GPIO_STATUS,
  486. CM9780_GPO0);
  487. /* power down unused ADCs and DACs */
  488. oxygen_ac97_set_bits(chip, 0, AC97_POWERDOWN,
  489. AC97_PD_PR0 | AC97_PD_PR1);
  490. oxygen_ac97_set_bits(chip, 0, AC97_EXTENDED_STATUS,
  491. AC97_EA_PRI | AC97_EA_PRJ | AC97_EA_PRK);
  492. }
  493. if (chip->has_ac97_1) {
  494. oxygen_set_bits32(chip, OXYGEN_AC97_OUT_CONFIG,
  495. OXYGEN_AC97_CODEC1_SLOT3 |
  496. OXYGEN_AC97_CODEC1_SLOT4);
  497. oxygen_write_ac97(chip, 1, AC97_RESET, 0);
  498. msleep(1);
  499. oxygen_write_ac97(chip, 1, AC97_MASTER, 0x0000);
  500. oxygen_write_ac97(chip, 1, AC97_HEADPHONE, 0x8000);
  501. oxygen_write_ac97(chip, 1, AC97_PC_BEEP, 0x8000);
  502. oxygen_write_ac97(chip, 1, AC97_MIC, 0x8808);
  503. oxygen_write_ac97(chip, 1, AC97_LINE, 0x8808);
  504. oxygen_write_ac97(chip, 1, AC97_CD, 0x8808);
  505. oxygen_write_ac97(chip, 1, AC97_VIDEO, 0x8808);
  506. oxygen_write_ac97(chip, 1, AC97_AUX, 0x8808);
  507. oxygen_write_ac97(chip, 1, AC97_PCM, 0x0808);
  508. oxygen_write_ac97(chip, 1, AC97_REC_SEL, 0x0000);
  509. oxygen_write_ac97(chip, 1, AC97_REC_GAIN, 0x0000);
  510. oxygen_ac97_set_bits(chip, 1, 0x6a, 0x0040);
  511. }
  512. }
  513. static void oxygen_shutdown(struct oxygen *chip)
  514. {
  515. spin_lock_irq(&chip->reg_lock);
  516. chip->interrupt_mask = 0;
  517. chip->pcm_running = 0;
  518. oxygen_write16(chip, OXYGEN_DMA_STATUS, 0);
  519. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, 0);
  520. spin_unlock_irq(&chip->reg_lock);
  521. }
  522. static void oxygen_card_free(struct snd_card *card)
  523. {
  524. struct oxygen *chip = card->private_data;
  525. oxygen_shutdown(chip);
  526. if (chip->irq >= 0)
  527. free_irq(chip->irq, chip);
  528. flush_work_sync(&chip->spdif_input_bits_work);
  529. flush_work_sync(&chip->gpio_work);
  530. chip->model.cleanup(chip);
  531. kfree(chip->model_data);
  532. mutex_destroy(&chip->mutex);
  533. pci_release_regions(chip->pci);
  534. pci_disable_device(chip->pci);
  535. }
  536. int oxygen_pci_probe(struct pci_dev *pci, int index, char *id,
  537. struct module *owner,
  538. const struct pci_device_id *ids,
  539. int (*get_model)(struct oxygen *chip,
  540. const struct pci_device_id *id
  541. )
  542. )
  543. {
  544. struct snd_card *card;
  545. struct oxygen *chip;
  546. const struct pci_device_id *pci_id;
  547. int err;
  548. err = snd_card_create(index, id, owner, sizeof(*chip), &card);
  549. if (err < 0)
  550. return err;
  551. chip = card->private_data;
  552. chip->card = card;
  553. chip->pci = pci;
  554. chip->irq = -1;
  555. spin_lock_init(&chip->reg_lock);
  556. mutex_init(&chip->mutex);
  557. INIT_WORK(&chip->spdif_input_bits_work,
  558. oxygen_spdif_input_bits_changed);
  559. INIT_WORK(&chip->gpio_work, oxygen_gpio_changed);
  560. init_waitqueue_head(&chip->ac97_waitqueue);
  561. err = pci_enable_device(pci);
  562. if (err < 0)
  563. goto err_card;
  564. err = pci_request_regions(pci, DRIVER);
  565. if (err < 0) {
  566. snd_printk(KERN_ERR "cannot reserve PCI resources\n");
  567. goto err_pci_enable;
  568. }
  569. if (!(pci_resource_flags(pci, 0) & IORESOURCE_IO) ||
  570. pci_resource_len(pci, 0) < OXYGEN_IO_SIZE) {
  571. snd_printk(KERN_ERR "invalid PCI I/O range\n");
  572. err = -ENXIO;
  573. goto err_pci_regions;
  574. }
  575. chip->addr = pci_resource_start(pci, 0);
  576. pci_id = oxygen_search_pci_id(chip, ids);
  577. if (!pci_id) {
  578. err = -ENODEV;
  579. goto err_pci_regions;
  580. }
  581. oxygen_restore_eeprom(chip, pci_id);
  582. err = get_model(chip, pci_id);
  583. if (err < 0)
  584. goto err_pci_regions;
  585. if (chip->model.model_data_size) {
  586. chip->model_data = kzalloc(chip->model.model_data_size,
  587. GFP_KERNEL);
  588. if (!chip->model_data) {
  589. err = -ENOMEM;
  590. goto err_pci_regions;
  591. }
  592. }
  593. pci_set_master(pci);
  594. snd_card_set_dev(card, &pci->dev);
  595. card->private_free = oxygen_card_free;
  596. configure_pcie_bridge(pci);
  597. oxygen_init(chip);
  598. chip->model.init(chip);
  599. err = request_irq(pci->irq, oxygen_interrupt, IRQF_SHARED,
  600. KBUILD_MODNAME, chip);
  601. if (err < 0) {
  602. snd_printk(KERN_ERR "cannot grab interrupt %d\n", pci->irq);
  603. goto err_card;
  604. }
  605. chip->irq = pci->irq;
  606. strcpy(card->driver, chip->model.chip);
  607. strcpy(card->shortname, chip->model.shortname);
  608. sprintf(card->longname, "%s at %#lx, irq %i",
  609. chip->model.longname, chip->addr, chip->irq);
  610. strcpy(card->mixername, chip->model.chip);
  611. snd_component_add(card, chip->model.chip);
  612. err = oxygen_pcm_init(chip);
  613. if (err < 0)
  614. goto err_card;
  615. err = oxygen_mixer_init(chip);
  616. if (err < 0)
  617. goto err_card;
  618. if (chip->model.device_config & (MIDI_OUTPUT | MIDI_INPUT)) {
  619. unsigned int info_flags =
  620. MPU401_INFO_INTEGRATED | MPU401_INFO_IRQ_HOOK;
  621. if (chip->model.device_config & MIDI_OUTPUT)
  622. info_flags |= MPU401_INFO_OUTPUT;
  623. if (chip->model.device_config & MIDI_INPUT)
  624. info_flags |= MPU401_INFO_INPUT;
  625. err = snd_mpu401_uart_new(card, 0, MPU401_HW_CMIPCI,
  626. chip->addr + OXYGEN_MPU401,
  627. info_flags, -1, &chip->midi);
  628. if (err < 0)
  629. goto err_card;
  630. }
  631. oxygen_proc_init(chip);
  632. spin_lock_irq(&chip->reg_lock);
  633. if (chip->model.device_config & CAPTURE_1_FROM_SPDIF)
  634. chip->interrupt_mask |= OXYGEN_INT_SPDIF_IN_DETECT;
  635. if (chip->has_ac97_0 | chip->has_ac97_1)
  636. chip->interrupt_mask |= OXYGEN_INT_AC97;
  637. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, chip->interrupt_mask);
  638. spin_unlock_irq(&chip->reg_lock);
  639. err = snd_card_register(card);
  640. if (err < 0)
  641. goto err_card;
  642. pci_set_drvdata(pci, card);
  643. return 0;
  644. err_pci_regions:
  645. pci_release_regions(pci);
  646. err_pci_enable:
  647. pci_disable_device(pci);
  648. err_card:
  649. snd_card_free(card);
  650. return err;
  651. }
  652. EXPORT_SYMBOL(oxygen_pci_probe);
  653. void oxygen_pci_remove(struct pci_dev *pci)
  654. {
  655. snd_card_free(pci_get_drvdata(pci));
  656. pci_set_drvdata(pci, NULL);
  657. }
  658. EXPORT_SYMBOL(oxygen_pci_remove);
  659. #ifdef CONFIG_PM
  660. int oxygen_pci_suspend(struct pci_dev *pci, pm_message_t state)
  661. {
  662. struct snd_card *card = pci_get_drvdata(pci);
  663. struct oxygen *chip = card->private_data;
  664. unsigned int i, saved_interrupt_mask;
  665. snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
  666. for (i = 0; i < PCM_COUNT; ++i)
  667. if (chip->streams[i])
  668. snd_pcm_suspend(chip->streams[i]);
  669. if (chip->model.suspend)
  670. chip->model.suspend(chip);
  671. spin_lock_irq(&chip->reg_lock);
  672. saved_interrupt_mask = chip->interrupt_mask;
  673. chip->interrupt_mask = 0;
  674. oxygen_write16(chip, OXYGEN_DMA_STATUS, 0);
  675. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, 0);
  676. spin_unlock_irq(&chip->reg_lock);
  677. synchronize_irq(chip->irq);
  678. flush_work_sync(&chip->spdif_input_bits_work);
  679. flush_work_sync(&chip->gpio_work);
  680. chip->interrupt_mask = saved_interrupt_mask;
  681. pci_disable_device(pci);
  682. pci_save_state(pci);
  683. pci_set_power_state(pci, pci_choose_state(pci, state));
  684. return 0;
  685. }
  686. EXPORT_SYMBOL(oxygen_pci_suspend);
  687. static const u32 registers_to_restore[OXYGEN_IO_SIZE / 32] = {
  688. 0xffffffff, 0x00ff077f, 0x00011d08, 0x007f00ff,
  689. 0x00300000, 0x00000fe4, 0x0ff7001f, 0x00000000
  690. };
  691. static const u32 ac97_registers_to_restore[2][0x40 / 32] = {
  692. { 0x18284fa2, 0x03060000 },
  693. { 0x00007fa6, 0x00200000 }
  694. };
  695. static inline int is_bit_set(const u32 *bitmap, unsigned int bit)
  696. {
  697. return bitmap[bit / 32] & (1 << (bit & 31));
  698. }
  699. static void oxygen_restore_ac97(struct oxygen *chip, unsigned int codec)
  700. {
  701. unsigned int i;
  702. oxygen_write_ac97(chip, codec, AC97_RESET, 0);
  703. msleep(1);
  704. for (i = 1; i < 0x40; ++i)
  705. if (is_bit_set(ac97_registers_to_restore[codec], i))
  706. oxygen_write_ac97(chip, codec, i * 2,
  707. chip->saved_ac97_registers[codec][i]);
  708. }
  709. int oxygen_pci_resume(struct pci_dev *pci)
  710. {
  711. struct snd_card *card = pci_get_drvdata(pci);
  712. struct oxygen *chip = card->private_data;
  713. unsigned int i;
  714. pci_set_power_state(pci, PCI_D0);
  715. pci_restore_state(pci);
  716. if (pci_enable_device(pci) < 0) {
  717. snd_printk(KERN_ERR "cannot reenable device");
  718. snd_card_disconnect(card);
  719. return -EIO;
  720. }
  721. pci_set_master(pci);
  722. oxygen_write16(chip, OXYGEN_DMA_STATUS, 0);
  723. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, 0);
  724. for (i = 0; i < OXYGEN_IO_SIZE; ++i)
  725. if (is_bit_set(registers_to_restore, i))
  726. oxygen_write8(chip, i, chip->saved_registers._8[i]);
  727. if (chip->has_ac97_0)
  728. oxygen_restore_ac97(chip, 0);
  729. if (chip->has_ac97_1)
  730. oxygen_restore_ac97(chip, 1);
  731. if (chip->model.resume)
  732. chip->model.resume(chip);
  733. oxygen_write16(chip, OXYGEN_INTERRUPT_MASK, chip->interrupt_mask);
  734. snd_power_change_state(card, SNDRV_CTL_POWER_D0);
  735. return 0;
  736. }
  737. EXPORT_SYMBOL(oxygen_pci_resume);
  738. #endif /* CONFIG_PM */
  739. void oxygen_pci_shutdown(struct pci_dev *pci)
  740. {
  741. struct snd_card *card = pci_get_drvdata(pci);
  742. struct oxygen *chip = card->private_data;
  743. oxygen_shutdown(chip);
  744. chip->model.cleanup(chip);
  745. }
  746. EXPORT_SYMBOL(oxygen_pci_shutdown);