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
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24 *************************************************************************
26 Translation from C++ and adaptation for use in ALSA-Driver
27 were made by Giuliano Pochini <pochini@shiny.it>
29 ****************************************************************************/
32 static int set_professional_spdif(struct echoaudio
*chip
, char prof
);
33 static int update_flags(struct echoaudio
*chip
);
36 static int init_hw(struct echoaudio
*chip
, u16 device_id
, u16 subdevice_id
)
40 if (snd_BUG_ON((subdevice_id
& 0xfff0) != GINA20
))
43 if ((err
= init_dsp_comm_page(chip
))) {
44 dev_err(chip
->card
->dev
,
45 "init_hw - could not initialize DSP comm page\n");
49 chip
->device_id
= device_id
;
50 chip
->subdevice_id
= subdevice_id
;
51 chip
->bad_board
= true;
52 chip
->dsp_code_to_load
= FW_GINA20_DSP
;
53 chip
->spdif_status
= GD_SPDIF_STATUS_UNDEF
;
54 chip
->clock_state
= GD_CLOCK_UNDEF
;
55 /* Since this card has no ASIC, mark it as loaded so everything
57 chip
->asic_loaded
= true;
58 chip
->input_clock_types
= ECHO_CLOCK_BIT_INTERNAL
|
61 if ((err
= load_firmware(chip
)) < 0)
63 chip
->bad_board
= false;
70 static int set_mixer_defaults(struct echoaudio
*chip
)
72 chip
->professional_spdif
= false;
73 return init_line_levels(chip
);
78 static u32
detect_input_clocks(const struct echoaudio
*chip
)
80 u32 clocks_from_dsp
, clock_bits
;
82 /* Map the DSP clock detect bits to the generic driver clock
84 clocks_from_dsp
= le32_to_cpu(chip
->comm_page
->status_clocks
);
86 clock_bits
= ECHO_CLOCK_BIT_INTERNAL
;
88 if (clocks_from_dsp
& GLDM_CLOCK_DETECT_BIT_SPDIF
)
89 clock_bits
|= ECHO_CLOCK_BIT_SPDIF
;
96 /* The Gina20 has no ASIC. Just do nothing */
97 static int load_asic(struct echoaudio
*chip
)
104 static int set_sample_rate(struct echoaudio
*chip
, u32 rate
)
106 u8 clock_state
, spdif_status
;
108 if (wait_handshake(chip
))
113 clock_state
= GD_CLOCK_44
;
114 spdif_status
= GD_SPDIF_STATUS_44
;
117 clock_state
= GD_CLOCK_48
;
118 spdif_status
= GD_SPDIF_STATUS_48
;
121 clock_state
= GD_CLOCK_NOCHANGE
;
122 spdif_status
= GD_SPDIF_STATUS_NOCHANGE
;
126 if (chip
->clock_state
== clock_state
)
127 clock_state
= GD_CLOCK_NOCHANGE
;
128 if (spdif_status
== chip
->spdif_status
)
129 spdif_status
= GD_SPDIF_STATUS_NOCHANGE
;
131 chip
->comm_page
->sample_rate
= cpu_to_le32(rate
);
132 chip
->comm_page
->gd_clock_state
= clock_state
;
133 chip
->comm_page
->gd_spdif_status
= spdif_status
;
134 chip
->comm_page
->gd_resampler_state
= 3; /* magic number - should always be 3 */
136 /* Save the new audio state if it changed */
137 if (clock_state
!= GD_CLOCK_NOCHANGE
)
138 chip
->clock_state
= clock_state
;
139 if (spdif_status
!= GD_SPDIF_STATUS_NOCHANGE
)
140 chip
->spdif_status
= spdif_status
;
141 chip
->sample_rate
= rate
;
143 clear_handshake(chip
);
144 return send_vector(chip
, DSP_VC_SET_GD_AUDIO_STATE
);
149 static int set_input_clock(struct echoaudio
*chip
, u16 clock
)
153 case ECHO_CLOCK_INTERNAL
:
154 /* Reset the audio state to unknown (just in case) */
155 chip
->clock_state
= GD_CLOCK_UNDEF
;
156 chip
->spdif_status
= GD_SPDIF_STATUS_UNDEF
;
157 set_sample_rate(chip
, chip
->sample_rate
);
158 chip
->input_clock
= clock
;
160 case ECHO_CLOCK_SPDIF
:
161 chip
->comm_page
->gd_clock_state
= GD_CLOCK_SPDIFIN
;
162 chip
->comm_page
->gd_spdif_status
= GD_SPDIF_STATUS_NOCHANGE
;
163 clear_handshake(chip
);
164 send_vector(chip
, DSP_VC_SET_GD_AUDIO_STATE
);
165 chip
->clock_state
= GD_CLOCK_SPDIFIN
;
166 chip
->input_clock
= clock
;
177 /* Set input bus gain (one unit is 0.5dB !) */
178 static int set_input_gain(struct echoaudio
*chip
, u16 input
, int gain
)
180 if (snd_BUG_ON(input
>= num_busses_in(chip
)))
183 if (wait_handshake(chip
))
186 chip
->input_gain
[input
] = gain
;
187 gain
+= GL20_INPUT_GAIN_MAGIC_NUMBER
;
188 chip
->comm_page
->line_in_level
[input
] = gain
;
194 /* Tell the DSP to reread the flags from the comm page */
195 static int update_flags(struct echoaudio
*chip
)
197 if (wait_handshake(chip
))
199 clear_handshake(chip
);
200 return send_vector(chip
, DSP_VC_UPDATE_FLAGS
);
205 static int set_professional_spdif(struct echoaudio
*chip
, char prof
)
208 chip
->comm_page
->flags
|=
209 cpu_to_le32(DSP_FLAG_PROFESSIONAL_SPDIF
);
211 chip
->comm_page
->flags
&=
212 ~cpu_to_le32(DSP_FLAG_PROFESSIONAL_SPDIF
);
213 chip
->professional_spdif
= prof
;
214 return update_flags(chip
);