blob: bf39c72a130c686c0466043ebb3e57d0eef9dddc [file] [log] [blame]
Clemens Ladischc6260262008-01-25 08:41:52 +01001/*
2 * C-Media CMI8788 driver for the MediaTek/TempoTec HiFier Fantasia
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
20#include <linux/pci.h>
21#include <sound/control.h>
22#include <sound/core.h>
23#include <sound/initval.h>
24#include <sound/pcm.h>
25#include <sound/tlv.h>
26#include "oxygen.h"
27#include "ak4396.h"
28
29MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
30MODULE_DESCRIPTION("TempoTec HiFier driver");
31MODULE_LICENSE("GPL");
32
33static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
34static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
35static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
36
37module_param_array(index, int, NULL, 0444);
38MODULE_PARM_DESC(index, "card index");
39module_param_array(id, charp, NULL, 0444);
40MODULE_PARM_DESC(id, "ID string");
41module_param_array(enable, bool, NULL, 0444);
42MODULE_PARM_DESC(enable, "enable card");
43
44static struct pci_device_id hifier_ids[] __devinitdata = {
45 { OXYGEN_PCI_SUBID(0x14c3, 0x1710) },
46 { OXYGEN_PCI_SUBID(0x14c3, 0x1711) },
47 { }
48};
49MODULE_DEVICE_TABLE(pci, hifier_ids);
50
51struct hifier_data {
52 u8 ak4396_ctl2;
53};
54
55static void ak4396_write(struct oxygen *chip, u8 reg, u8 value)
56{
57 oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER |
58 OXYGEN_SPI_DATA_LENGTH_2 |
Clemens Ladisch2ea85982008-01-30 08:38:30 +010059 OXYGEN_SPI_CLOCK_160 |
Clemens Ladischc6260262008-01-25 08:41:52 +010060 (0 << OXYGEN_SPI_CODEC_SHIFT) |
61 OXYGEN_SPI_CEN_LATCH_CLOCK_HI,
62 AK4396_WRITE | (reg << 8) | value);
63}
64
65static void hifier_init(struct oxygen *chip)
66{
67 struct hifier_data *data = chip->model_data;
68
69 data->ak4396_ctl2 = AK4396_DEM_OFF | AK4396_DFS_NORMAL;
70 ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN);
71 ak4396_write(chip, AK4396_CONTROL_2, data->ak4396_ctl2);
72 ak4396_write(chip, AK4396_CONTROL_3, AK4396_PCM);
73 ak4396_write(chip, AK4396_LCH_ATT, 0xff);
74 ak4396_write(chip, AK4396_RCH_ATT, 0xff);
75
76 snd_component_add(chip->card, "AK4396");
77 snd_component_add(chip->card, "CS5340");
78}
79
80static void hifier_cleanup(struct oxygen *chip)
81{
82}
83
84static void set_ak4396_params(struct oxygen *chip,
85 struct snd_pcm_hw_params *params)
86{
87 struct hifier_data *data = chip->model_data;
88 u8 value;
89
90 value = data->ak4396_ctl2 & ~AK4396_DFS_MASK;
91 if (params_rate(params) <= 54000)
92 value |= AK4396_DFS_NORMAL;
Clemens Ladisch236c4922008-01-28 08:32:58 +010093 else if (params_rate(params) <= 108000)
Clemens Ladischc6260262008-01-25 08:41:52 +010094 value |= AK4396_DFS_DOUBLE;
95 else
96 value |= AK4396_DFS_QUAD;
97 data->ak4396_ctl2 = value;
98 ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB);
99 ak4396_write(chip, AK4396_CONTROL_2, value);
100 ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN);
101}
102
103static void update_ak4396_volume(struct oxygen *chip)
104{
105 ak4396_write(chip, AK4396_LCH_ATT, chip->dac_volume[0]);
106 ak4396_write(chip, AK4396_RCH_ATT, chip->dac_volume[1]);
107}
108
109static void update_ak4396_mute(struct oxygen *chip)
110{
111 struct hifier_data *data = chip->model_data;
112 u8 value;
113
114 value = data->ak4396_ctl2 & ~AK4396_SMUTE;
115 if (chip->dac_mute)
116 value |= AK4396_SMUTE;
117 data->ak4396_ctl2 = value;
118 ak4396_write(chip, AK4396_CONTROL_2, value);
119}
120
121static void set_cs5340_params(struct oxygen *chip,
122 struct snd_pcm_hw_params *params)
123{
124}
125
126static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0);
127
128static int hifier_control_filter(struct snd_kcontrol_new *template)
129{
130 if (!strcmp(template->name, "Master Playback Volume")) {
131 template->access |= SNDRV_CTL_ELEM_ACCESS_TLV_READ;
132 template->tlv.p = ak4396_db_scale;
133 } else if (!strcmp(template->name, "Stereo Upmixing")) {
134 return 1; /* stereo only - we don't need upmixing */
Clemens Ladischc6260262008-01-25 08:41:52 +0100135 }
136 return 0;
137}
138
Clemens Ladischc6260262008-01-25 08:41:52 +0100139static const struct oxygen_model model_hifier = {
140 .shortname = "C-Media CMI8787",
141 .longname = "C-Media Oxygen HD Audio",
142 .chip = "CMI8788",
Clemens Ladischb930b9f2008-02-26 08:40:57 +0100143 .owner = THIS_MODULE,
Clemens Ladischc6260262008-01-25 08:41:52 +0100144 .init = hifier_init,
145 .control_filter = hifier_control_filter,
Clemens Ladischc6260262008-01-25 08:41:52 +0100146 .cleanup = hifier_cleanup,
147 .set_dac_params = set_ak4396_params,
148 .set_adc_params = set_cs5340_params,
149 .update_dac_volume = update_ak4396_volume,
150 .update_dac_mute = update_ak4396_mute,
151 .model_data_size = sizeof(struct hifier_data),
Clemens Ladischf009ad92008-03-19 08:19:41 +0100152 .pcm_dev_cfg = PLAYBACK_0_TO_I2S |
153 PLAYBACK_1_TO_SPDIF |
154 CAPTURE_0_FROM_I2S_1,
Clemens Ladischc6260262008-01-25 08:41:52 +0100155 .dac_channels = 2,
Clemens Ladisch193e8132008-04-16 09:13:36 +0200156 .dac_volume_min = 0,
157 .dac_volume_max = 255,
Clemens Ladisch87eedd22008-03-19 08:20:13 +0100158 .function_flags = OXYGEN_FUNCTION_SPI,
Clemens Ladischc6260262008-01-25 08:41:52 +0100159 .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
160 .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST,
161};
162
163static int __devinit hifier_probe(struct pci_dev *pci,
164 const struct pci_device_id *pci_id)
165{
166 static int dev;
167 int err;
168
169 if (dev >= SNDRV_CARDS)
170 return -ENODEV;
171 if (!enable[dev]) {
172 ++dev;
173 return -ENOENT;
174 }
Clemens Ladischdb12b8e2008-03-19 08:20:59 +0100175 err = oxygen_pci_probe(pci, index[dev], id[dev], &model_hifier);
Clemens Ladischc6260262008-01-25 08:41:52 +0100176 if (err >= 0)
177 ++dev;
178 return err;
179}
180
181static struct pci_driver hifier_driver = {
182 .name = "CMI8787HiFier",
183 .id_table = hifier_ids,
184 .probe = hifier_probe,
185 .remove = __devexit_p(oxygen_pci_remove),
186};
187
188static int __init alsa_card_hifier_init(void)
189{
190 return pci_register_driver(&hifier_driver);
191}
192
193static void __exit alsa_card_hifier_exit(void)
194{
195 pci_unregister_driver(&hifier_driver);
196}
197
198module_init(alsa_card_hifier_init)
199module_exit(alsa_card_hifier_exit)