vt1720_mobo.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * ALSA driver for VT1720/VT1724 (Envy24PT/Envy24HT)
  3. *
  4. * Lowlevel functions for VT1720-based motherboards
  5. *
  6. * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. #include <sound/driver.h>
  24. #include <asm/io.h>
  25. #include <linux/delay.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/init.h>
  28. #include <linux/slab.h>
  29. #include <sound/core.h>
  30. #include "ice1712.h"
  31. #include "envy24ht.h"
  32. #include "vt1720_mobo.h"
  33. static int __devinit k8x800_init(struct snd_ice1712 *ice)
  34. {
  35. ice->vt1720 = 1;
  36. /* VT1616 codec */
  37. ice->num_total_dacs = 6;
  38. ice->num_total_adcs = 2;
  39. /* WM8728 codec */
  40. /* FIXME: TODO */
  41. return 0;
  42. }
  43. static int __devinit k8x800_add_controls(struct snd_ice1712 *ice)
  44. {
  45. /* FIXME: needs some quirks for VT1616? */
  46. return 0;
  47. }
  48. /* EEPROM image */
  49. static const unsigned char k8x800_eeprom[] __devinitdata = {
  50. [ICE_EEP2_SYSCONF] = 0x01, /* clock 256, 1ADC, 2DACs */
  51. [ICE_EEP2_ACLINK] = 0x02, /* ACLINK, packed */
  52. [ICE_EEP2_I2S] = 0x00, /* - */
  53. [ICE_EEP2_SPDIF] = 0x00, /* - */
  54. [ICE_EEP2_GPIO_DIR] = 0xff,
  55. [ICE_EEP2_GPIO_DIR1] = 0xff,
  56. [ICE_EEP2_GPIO_DIR2] = 0x00, /* - */
  57. [ICE_EEP2_GPIO_MASK] = 0xff,
  58. [ICE_EEP2_GPIO_MASK1] = 0xff,
  59. [ICE_EEP2_GPIO_MASK2] = 0x00, /* - */
  60. [ICE_EEP2_GPIO_STATE] = 0x00,
  61. [ICE_EEP2_GPIO_STATE1] = 0x00,
  62. [ICE_EEP2_GPIO_STATE2] = 0x00, /* - */
  63. };
  64. static const unsigned char sn25p_eeprom[] __devinitdata = {
  65. [ICE_EEP2_SYSCONF] = 0x01, /* clock 256, 1ADC, 2DACs */
  66. [ICE_EEP2_ACLINK] = 0x02, /* ACLINK, packed */
  67. [ICE_EEP2_I2S] = 0x00, /* - */
  68. [ICE_EEP2_SPDIF] = 0x41, /* - */
  69. [ICE_EEP2_GPIO_DIR] = 0xff,
  70. [ICE_EEP2_GPIO_DIR1] = 0xff,
  71. [ICE_EEP2_GPIO_DIR2] = 0x00, /* - */
  72. [ICE_EEP2_GPIO_MASK] = 0xff,
  73. [ICE_EEP2_GPIO_MASK1] = 0xff,
  74. [ICE_EEP2_GPIO_MASK2] = 0x00, /* - */
  75. [ICE_EEP2_GPIO_STATE] = 0x00,
  76. [ICE_EEP2_GPIO_STATE1] = 0x00,
  77. [ICE_EEP2_GPIO_STATE2] = 0x00, /* - */
  78. };
  79. /* entry point */
  80. const struct snd_ice1712_card_info snd_vt1720_mobo_cards[] __devinitdata = {
  81. {
  82. .subvendor = VT1720_SUBDEVICE_K8X800,
  83. .name = "Albatron K8X800 Pro II",
  84. .model = "k8x800",
  85. .chip_init = k8x800_init,
  86. .build_controls = k8x800_add_controls,
  87. .eeprom_size = sizeof(k8x800_eeprom),
  88. .eeprom_data = k8x800_eeprom,
  89. },
  90. {
  91. .subvendor = VT1720_SUBDEVICE_ZNF3_150,
  92. .name = "Chaintech ZNF3-150",
  93. /* identical with k8x800 */
  94. .chip_init = k8x800_init,
  95. .build_controls = k8x800_add_controls,
  96. .eeprom_size = sizeof(k8x800_eeprom),
  97. .eeprom_data = k8x800_eeprom,
  98. },
  99. {
  100. .subvendor = VT1720_SUBDEVICE_ZNF3_250,
  101. .name = "Chaintech ZNF3-250",
  102. /* identical with k8x800 */
  103. .chip_init = k8x800_init,
  104. .build_controls = k8x800_add_controls,
  105. .eeprom_size = sizeof(k8x800_eeprom),
  106. .eeprom_data = k8x800_eeprom,
  107. },
  108. {
  109. .subvendor = VT1720_SUBDEVICE_9CJS,
  110. .name = "Chaintech 9CJS",
  111. /* identical with k8x800 */
  112. .chip_init = k8x800_init,
  113. .build_controls = k8x800_add_controls,
  114. .eeprom_size = sizeof(k8x800_eeprom),
  115. .eeprom_data = k8x800_eeprom,
  116. },
  117. {
  118. .subvendor = VT1720_SUBDEVICE_SN25P,
  119. .name = "Shuttle SN25P",
  120. .model = "sn25p",
  121. .chip_init = k8x800_init,
  122. .build_controls = k8x800_add_controls,
  123. .eeprom_size = sizeof(k8x800_eeprom),
  124. .eeprom_data = sn25p_eeprom,
  125. },
  126. { } /* terminator */
  127. };