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 init_hw(struct echoaudio
*chip
, u16 device_id
, u16 subdevice_id
)
36 if (snd_BUG_ON((subdevice_id
& 0xfff0) != DARLA24
))
39 if ((err
= init_dsp_comm_page(chip
))) {
40 dev_err(chip
->card
->dev
,
41 "init_hw: could not initialize DSP comm page\n");
45 chip
->device_id
= device_id
;
46 chip
->subdevice_id
= subdevice_id
;
47 chip
->bad_board
= true;
48 chip
->dsp_code_to_load
= FW_DARLA24_DSP
;
49 /* Since this card has no ASIC, mark it as loaded so everything
51 chip
->asic_loaded
= true;
52 chip
->input_clock_types
= ECHO_CLOCK_BIT_INTERNAL
|
55 if ((err
= load_firmware(chip
)) < 0)
57 chip
->bad_board
= false;
64 static int set_mixer_defaults(struct echoaudio
*chip
)
66 return init_line_levels(chip
);
71 static u32
detect_input_clocks(const struct echoaudio
*chip
)
73 u32 clocks_from_dsp
, clock_bits
;
75 /* Map the DSP clock detect bits to the generic driver clock
77 clocks_from_dsp
= le32_to_cpu(chip
->comm_page
->status_clocks
);
79 clock_bits
= ECHO_CLOCK_BIT_INTERNAL
;
81 if (clocks_from_dsp
& GLDM_CLOCK_DETECT_BIT_ESYNC
)
82 clock_bits
|= ECHO_CLOCK_BIT_ESYNC
;
89 /* The Darla24 has no ASIC. Just do nothing */
90 static int load_asic(struct echoaudio
*chip
)
97 static int set_sample_rate(struct echoaudio
*chip
, u32 rate
)
130 dev_err(chip
->card
->dev
,
131 "set_sample_rate: Error, invalid sample rate %d\n",
136 if (wait_handshake(chip
))
139 dev_dbg(chip
->card
->dev
,
140 "set_sample_rate: %d clock %d\n", rate
, clock
);
141 chip
->sample_rate
= rate
;
143 /* Override the sample rate if this card is set to Echo sync. */
144 if (chip
->input_clock
== ECHO_CLOCK_ESYNC
)
145 clock
= GD24_EXT_SYNC
;
147 chip
->comm_page
->sample_rate
= cpu_to_le32(rate
); /* ignored by the DSP ? */
148 chip
->comm_page
->gd_clock_state
= clock
;
149 clear_handshake(chip
);
150 return send_vector(chip
, DSP_VC_SET_GD_AUDIO_STATE
);
155 static int set_input_clock(struct echoaudio
*chip
, u16 clock
)
157 if (snd_BUG_ON(clock
!= ECHO_CLOCK_INTERNAL
&&
158 clock
!= ECHO_CLOCK_ESYNC
))
160 chip
->input_clock
= clock
;
161 return set_sample_rate(chip
, chip
->sample_rate
);