1 /****************************************************************************
3 Copyright Echo Digital Audio Corporation (c) 1998 - 2004
7 This file is part of Echo Digital Audio's generic driver library.
9 Echo Digital Audio's generic driver library is free software;
10 you can redistribute it and/or modify it under the terms of
11 the GNU General Public License as published by the Free Software Foundation.
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.
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,
23 *************************************************************************
25 Translation from C++ and adaptation for use in ALSA-Driver
26 were made by Giuliano Pochini <pochini@shiny.it>
28 ****************************************************************************/
31 static int write_control_reg(struct echoaudio
*chip
, u32 value
, char force
);
32 static int set_input_clock(struct echoaudio
*chip
, u16 clock
);
33 static int set_professional_spdif(struct echoaudio
*chip
, char prof
);
34 static int set_digital_mode(struct echoaudio
*chip
, u8 mode
);
35 static int load_asic_generic(struct echoaudio
*chip
, u32 cmd
,
36 const struct firmware
*asic
);
37 static int check_asic_status(struct echoaudio
*chip
);
40 static int init_hw(struct echoaudio
*chip
, u16 device_id
, u16 subdevice_id
)
44 DE_INIT(("init_hw() - Layla24\n"));
45 snd_assert((subdevice_id
& 0xfff0) == LAYLA24
, return -ENODEV
);
47 if ((err
= init_dsp_comm_page(chip
))) {
48 DE_INIT(("init_hw - could not initialize DSP comm page\n"));
52 chip
->device_id
= device_id
;
53 chip
->subdevice_id
= subdevice_id
;
54 chip
->bad_board
= TRUE
;
55 chip
->has_midi
= TRUE
;
56 chip
->dsp_code_to_load
= &card_fw
[FW_LAYLA24_DSP
];
57 chip
->input_clock_types
=
58 ECHO_CLOCK_BIT_INTERNAL
| ECHO_CLOCK_BIT_SPDIF
|
59 ECHO_CLOCK_BIT_WORD
| ECHO_CLOCK_BIT_ADAT
;
61 ECHOCAPS_HAS_DIGITAL_MODE_SPDIF_RCA
|
62 ECHOCAPS_HAS_DIGITAL_MODE_SPDIF_OPTICAL
|
63 ECHOCAPS_HAS_DIGITAL_MODE_ADAT
;
64 chip
->digital_mode
= DIGITAL_MODE_SPDIF_RCA
;
65 chip
->professional_spdif
= FALSE
;
66 chip
->digital_in_automute
= TRUE
;
68 if ((err
= load_firmware(chip
)) < 0)
70 chip
->bad_board
= FALSE
;
72 if ((err
= init_line_levels(chip
)) < 0)
75 err
= set_digital_mode(chip
, DIGITAL_MODE_SPDIF_RCA
);
76 snd_assert(err
>= 0, return err
);
77 err
= set_professional_spdif(chip
, TRUE
);
79 DE_INIT(("init_hw done\n"));
85 static u32
detect_input_clocks(const struct echoaudio
*chip
)
87 u32 clocks_from_dsp
, clock_bits
;
89 /* Map the DSP clock detect bits to the generic driver clock detect bits */
90 clocks_from_dsp
= le32_to_cpu(chip
->comm_page
->status_clocks
);
92 clock_bits
= ECHO_CLOCK_BIT_INTERNAL
;
94 if (clocks_from_dsp
& GML_CLOCK_DETECT_BIT_SPDIF
)
95 clock_bits
|= ECHO_CLOCK_BIT_SPDIF
;
97 if (clocks_from_dsp
& GML_CLOCK_DETECT_BIT_ADAT
)
98 clock_bits
|= ECHO_CLOCK_BIT_ADAT
;
100 if (clocks_from_dsp
& GML_CLOCK_DETECT_BIT_WORD
)
101 clock_bits
|= ECHO_CLOCK_BIT_WORD
;
108 /* Layla24 has an ASIC on the PCI card and another ASIC in the external box;
109 both need to be loaded. */
110 static int load_asic(struct echoaudio
*chip
)
114 if (chip
->asic_loaded
)
117 DE_INIT(("load_asic\n"));
119 /* Give the DSP a few milliseconds to settle down */
122 /* Load the ASIC for the PCI card */
123 err
= load_asic_generic(chip
, DSP_FNC_LOAD_LAYLA24_PCI_CARD_ASIC
,
124 &card_fw
[FW_LAYLA24_1_ASIC
]);
128 chip
->asic_code
= &card_fw
[FW_LAYLA24_2S_ASIC
];
130 /* Now give the new ASIC a little time to set up */
133 /* Do the external one */
134 err
= load_asic_generic(chip
, DSP_FNC_LOAD_LAYLA24_EXTERNAL_ASIC
,
135 &card_fw
[FW_LAYLA24_2S_ASIC
]);
139 /* Now give the external ASIC a little time to set up */
142 /* See if it worked */
143 err
= check_asic_status(chip
);
145 /* Set up the control register if the load succeeded -
146 48 kHz, internal clock, S/PDIF RCA mode */
148 err
= write_control_reg(chip
, GML_CONVERTER_ENABLE
| GML_48KHZ
,
151 DE_INIT(("load_asic() done\n"));
157 static int set_sample_rate(struct echoaudio
*chip
, u32 rate
)
159 u32 control_reg
, clock
, base_rate
;
161 snd_assert(rate
< 50000 || chip
->digital_mode
!= DIGITAL_MODE_ADAT
,
164 /* Only set the clock for internal mode. */
165 if (chip
->input_clock
!= ECHO_CLOCK_INTERNAL
) {
166 DE_ACT(("set_sample_rate: Cannot set sample rate - "
167 "clock not set to CLK_CLOCKININTERNAL\n"));
168 /* Save the rate anyhow */
169 chip
->comm_page
->sample_rate
= cpu_to_le32(rate
);
170 chip
->sample_rate
= rate
;
174 /* Get the control register & clear the appropriate bits */
175 control_reg
= le32_to_cpu(chip
->comm_page
->control_register
);
176 control_reg
&= GML_CLOCK_CLEAR_MASK
& GML_SPDIF_RATE_CLEAR_MASK
;
188 clock
= GML_48KHZ
| GML_SPDIF_SAMPLE_RATE1
;
192 /* Professional mode */
193 if (control_reg
& GML_SPDIF_PRO_MODE
)
194 clock
|= GML_SPDIF_SAMPLE_RATE0
;
197 clock
= GML_32KHZ
| GML_SPDIF_SAMPLE_RATE0
|
198 GML_SPDIF_SAMPLE_RATE1
;
213 /* If this is a non-standard rate, then the driver needs to
214 use Layla24's special "continuous frequency" mode */
215 clock
= LAYLA24_CONTINUOUS_CLOCK
;
217 base_rate
= rate
>> 1;
218 control_reg
|= GML_DOUBLE_SPEED_MODE
;
223 if (base_rate
< 25000)
226 if (wait_handshake(chip
))
229 chip
->comm_page
->sample_rate
=
230 cpu_to_le32(LAYLA24_MAGIC_NUMBER
/ base_rate
- 2);
232 clear_handshake(chip
);
233 send_vector(chip
, DSP_VC_SET_LAYLA24_FREQUENCY_REG
);
236 control_reg
|= clock
;
238 chip
->comm_page
->sample_rate
= cpu_to_le32(rate
); /* ignored by the DSP ? */
239 chip
->sample_rate
= rate
;
240 DE_ACT(("set_sample_rate: %d clock %d\n", rate
, control_reg
));
242 return write_control_reg(chip
, control_reg
, FALSE
);
247 static int set_input_clock(struct echoaudio
*chip
, u16 clock
)
249 u32 control_reg
, clocks_from_dsp
;
251 /* Mask off the clock select bits */
252 control_reg
= le32_to_cpu(chip
->comm_page
->control_register
) &
253 GML_CLOCK_CLEAR_MASK
;
254 clocks_from_dsp
= le32_to_cpu(chip
->comm_page
->status_clocks
);
256 /* Pick the new clock */
258 case ECHO_CLOCK_INTERNAL
:
259 DE_ACT(("Set Layla24 clock to INTERNAL\n"));
260 chip
->input_clock
= ECHO_CLOCK_INTERNAL
;
261 return set_sample_rate(chip
, chip
->sample_rate
);
262 case ECHO_CLOCK_SPDIF
:
263 if (chip
->digital_mode
== DIGITAL_MODE_ADAT
)
265 control_reg
|= GML_SPDIF_CLOCK
;
266 /* Layla24 doesn't support 96KHz S/PDIF */
267 control_reg
&= ~GML_DOUBLE_SPEED_MODE
;
268 DE_ACT(("Set Layla24 clock to SPDIF\n"));
270 case ECHO_CLOCK_WORD
:
271 control_reg
|= GML_WORD_CLOCK
;
272 if (clocks_from_dsp
& GML_CLOCK_DETECT_BIT_WORD96
)
273 control_reg
|= GML_DOUBLE_SPEED_MODE
;
275 control_reg
&= ~GML_DOUBLE_SPEED_MODE
;
276 DE_ACT(("Set Layla24 clock to WORD\n"));
278 case ECHO_CLOCK_ADAT
:
279 if (chip
->digital_mode
!= DIGITAL_MODE_ADAT
)
281 control_reg
|= GML_ADAT_CLOCK
;
282 control_reg
&= ~GML_DOUBLE_SPEED_MODE
;
283 DE_ACT(("Set Layla24 clock to ADAT\n"));
286 DE_ACT(("Input clock 0x%x not supported for Layla24\n", clock
));
290 chip
->input_clock
= clock
;
291 return write_control_reg(chip
, control_reg
, TRUE
);
296 /* Depending on what digital mode you want, Layla24 needs different ASICs
297 loaded. This function checks the ASIC needed for the new mode and sees
298 if it matches the one already loaded. */
299 static int switch_asic(struct echoaudio
*chip
, const struct firmware
*asic
)
303 /* Check to see if this is already loaded */
304 if (asic
!= chip
->asic_code
) {
305 monitors
= kmemdup(chip
->comm_page
->monitors
,
306 MONITOR_ARRAY_SIZE
, GFP_KERNEL
);
310 memset(chip
->comm_page
->monitors
, ECHOGAIN_MUTED
,
313 /* Load the desired ASIC */
314 if (load_asic_generic(chip
, DSP_FNC_LOAD_LAYLA24_EXTERNAL_ASIC
,
316 memcpy(chip
->comm_page
->monitors
, monitors
,
321 chip
->asic_code
= asic
;
322 memcpy(chip
->comm_page
->monitors
, monitors
, MONITOR_ARRAY_SIZE
);
331 static int dsp_set_digital_mode(struct echoaudio
*chip
, u8 mode
)
334 int err
, incompatible_clock
;
335 const struct firmware
*asic
;
337 /* Set clock to "internal" if it's not compatible with the new mode */
338 incompatible_clock
= FALSE
;
340 case DIGITAL_MODE_SPDIF_OPTICAL
:
341 case DIGITAL_MODE_SPDIF_RCA
:
342 if (chip
->input_clock
== ECHO_CLOCK_ADAT
)
343 incompatible_clock
= TRUE
;
344 asic
= &card_fw
[FW_LAYLA24_2S_ASIC
];
346 case DIGITAL_MODE_ADAT
:
347 if (chip
->input_clock
== ECHO_CLOCK_SPDIF
)
348 incompatible_clock
= TRUE
;
349 asic
= &card_fw
[FW_LAYLA24_2A_ASIC
];
352 DE_ACT(("Digital mode not supported: %d\n", mode
));
356 if (incompatible_clock
) { /* Switch to 48KHz, internal */
357 chip
->sample_rate
= 48000;
358 spin_lock_irq(&chip
->lock
);
359 set_input_clock(chip
, ECHO_CLOCK_INTERNAL
);
360 spin_unlock_irq(&chip
->lock
);
363 /* switch_asic() can sleep */
364 if (switch_asic(chip
, asic
) < 0)
367 spin_lock_irq(&chip
->lock
);
369 /* Tweak the control register */
370 control_reg
= le32_to_cpu(chip
->comm_page
->control_register
);
371 control_reg
&= GML_DIGITAL_MODE_CLEAR_MASK
;
374 case DIGITAL_MODE_SPDIF_OPTICAL
:
375 control_reg
|= GML_SPDIF_OPTICAL_MODE
;
377 case DIGITAL_MODE_SPDIF_RCA
:
378 /* GML_SPDIF_OPTICAL_MODE bit cleared */
380 case DIGITAL_MODE_ADAT
:
381 control_reg
|= GML_ADAT_MODE
;
382 control_reg
&= ~GML_DOUBLE_SPEED_MODE
;
386 err
= write_control_reg(chip
, control_reg
, TRUE
);
387 spin_unlock_irq(&chip
->lock
);
390 chip
->digital_mode
= mode
;
392 DE_ACT(("set_digital_mode to %d\n", mode
));
393 return incompatible_clock
;