2020-03-15 16:24:40 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
2024-04-07 16:37:03 +00:00
|
|
|
Copyright (C) 2018-24 divingkatae and maximum
|
2020-03-15 16:24:40 +00:00
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** AWAC sound device emulation.
|
|
|
|
|
2021-10-04 21:46:19 +00:00
|
|
|
Currently supported audio codecs:
|
|
|
|
- PDM AWACs in Nubus Power Macintosh models
|
|
|
|
- Screamer AWACs in Beige G3
|
2020-03-15 16:24:40 +00:00
|
|
|
*/
|
|
|
|
|
2023-11-22 04:38:56 +00:00
|
|
|
#include <core/timermanager.h>
|
2023-02-11 13:51:03 +00:00
|
|
|
#include <devices/deviceregistry.h>
|
2021-10-23 18:17:47 +00:00
|
|
|
#include <devices/sound/awacs.h>
|
|
|
|
#include <devices/sound/soundserver.h>
|
2023-11-22 04:38:56 +00:00
|
|
|
#include <devices/common/dbdma.h>
|
2021-10-23 18:17:47 +00:00
|
|
|
#include <endianswap.h>
|
|
|
|
#include <machines/machinebase.h>
|
|
|
|
|
2021-09-15 22:46:38 +00:00
|
|
|
#include <loguru.hpp>
|
2020-03-19 14:09:24 +00:00
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
AwacsBase::AwacsBase(std::string name) {
|
2023-02-11 13:51:03 +00:00
|
|
|
supports_types(HWCompType::SND_CODEC);
|
|
|
|
|
|
|
|
this->name = name;
|
|
|
|
|
2021-10-04 21:46:19 +00:00
|
|
|
// connect to SoundServer
|
|
|
|
this->snd_server = dynamic_cast<SoundServer *>
|
|
|
|
(gMachineObj->get_comp_by_name("SoundServer"));
|
|
|
|
this->out_stream_ready = false;
|
|
|
|
}
|
2020-03-15 16:24:40 +00:00
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
void AwacsBase::set_sample_rate(int sr_id) {
|
2021-10-04 21:46:19 +00:00
|
|
|
if (sr_id > this->max_sr_id) {
|
2023-02-11 13:51:03 +00:00
|
|
|
LOG_F(ERROR, "%s: invalid sample rate ID %d!", this->name.c_str(), sr_id);
|
2021-10-04 21:46:19 +00:00
|
|
|
} else {
|
|
|
|
this->cur_sample_rate = this->sr_table[sr_id];
|
|
|
|
}
|
2024-04-07 16:37:03 +00:00
|
|
|
}
|
2020-03-15 16:24:40 +00:00
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
void AwacsBase::dma_out_start() {
|
2023-02-11 13:51:03 +00:00
|
|
|
int err;
|
|
|
|
bool reopen = false;
|
2020-03-15 16:24:40 +00:00
|
|
|
|
2023-02-11 13:51:03 +00:00
|
|
|
if (this->out_stream_ready && this->out_sample_rate != this->cur_sample_rate)
|
|
|
|
reopen = true;
|
|
|
|
|
|
|
|
if (reopen) {
|
|
|
|
snd_server->close_out_stream();
|
2023-11-08 23:54:58 +00:00
|
|
|
this->out_stream_ready = false;
|
|
|
|
this->out_stream_running = false;
|
2021-10-04 21:46:19 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
if (!this->out_stream_ready) {
|
2023-02-11 13:51:03 +00:00
|
|
|
if ((err = this->snd_server->open_out_stream(this->cur_sample_rate,
|
|
|
|
(void *)this->dma_out_ch))) {
|
|
|
|
LOG_F(ERROR, "%s: unable to open sound output stream: %d",
|
|
|
|
this->name.c_str(), err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
this->out_sample_rate = this->cur_sample_rate;
|
|
|
|
this->out_stream_ready = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this->out_stream_running) {
|
2023-02-11 13:51:03 +00:00
|
|
|
if ((err = snd_server->start_out_stream())) {
|
2023-08-15 22:25:36 +00:00
|
|
|
LOG_F(ERROR, "%s: could not start sound output stream: %d",
|
|
|
|
this->name.c_str(), err);
|
2023-02-11 13:51:03 +00:00
|
|
|
}
|
2021-10-04 21:46:19 +00:00
|
|
|
}
|
2020-03-15 16:24:40 +00:00
|
|
|
}
|
2020-03-19 14:09:24 +00:00
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
void AwacsBase::dma_out_stop() {
|
2020-05-15 00:36:40 +00:00
|
|
|
if (this->out_stream_ready) {
|
|
|
|
snd_server->close_out_stream();
|
2023-11-08 23:54:58 +00:00
|
|
|
this->out_stream_ready = false;
|
|
|
|
this->out_stream_running = false;
|
2020-05-15 00:36:40 +00:00
|
|
|
}
|
2021-10-04 21:46:19 +00:00
|
|
|
}
|
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
void AwacsBase::dma_out_pause() {
|
|
|
|
this->out_stream_running = false;
|
|
|
|
}
|
|
|
|
|
2023-11-22 04:38:56 +00:00
|
|
|
static const char sound_input_data[2048] = {0};
|
|
|
|
static int sound_in_status = 0x10;
|
|
|
|
|
2024-04-07 16:37:03 +00:00
|
|
|
void AwacsBase::dma_in_data() {
|
2023-11-22 04:38:56 +00:00
|
|
|
// transfer data from sound input device
|
|
|
|
this->dma_in_ch->push_data(sound_input_data, sizeof(sound_input_data));
|
|
|
|
|
|
|
|
if (dma_in_ch->is_in_active()) {
|
|
|
|
auto dbdma_ch = dynamic_cast<DMAChannel*>(dma_in_ch);
|
|
|
|
sound_in_status <<= 1;
|
|
|
|
if (!sound_in_status)
|
|
|
|
sound_in_status = 1;
|
|
|
|
dbdma_ch->set_stat(sound_in_status);
|
|
|
|
LOG_F(INFO, "%s: status:%x", this->name.c_str(), sound_in_status);
|
|
|
|
|
|
|
|
this->dma_in_timer_id = TimerManager::get_instance()->add_oneshot_timer(
|
|
|
|
10000,
|
|
|
|
[this]() {
|
|
|
|
// re-enter the sequencer with the state specified in next_state
|
|
|
|
this->dma_in_timer_id = 0;
|
|
|
|
this->dma_in_data();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void AwacsBase::dma_in_start() {
|
|
|
|
LOG_F(ERROR, "%s: dma_in_start", this->name.c_str());
|
|
|
|
dma_in_data();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AwacsBase::dma_in_stop() {
|
|
|
|
if (this->dma_in_timer_id) {
|
|
|
|
TimerManager::get_instance()->cancel_timer(this->dma_in_timer_id);
|
|
|
|
this->dma_in_timer_id = 0;
|
|
|
|
}
|
|
|
|
LOG_F(ERROR, "%s: dma_in_stop", this->name.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void AwacsBase::dma_in_pause() {
|
|
|
|
LOG_F(ERROR, "%s: dma_in_pause", this->name.c_str());
|
|
|
|
}
|
|
|
|
|
2021-10-04 21:46:19 +00:00
|
|
|
//=========================== PDM-style AWACs =================================
|
2023-11-08 23:54:58 +00:00
|
|
|
AwacDevicePdm::AwacDevicePdm() : AwacsBase("AWAC-PDM") {
|
2021-10-04 21:46:19 +00:00
|
|
|
static int pdm_awac_freqs[3] = {22050, 29400, 44100};
|
|
|
|
|
|
|
|
// PDM-style AWACs only supports three sample rates
|
|
|
|
this->sr_table = pdm_awac_freqs;
|
|
|
|
this->max_sr_id = 2;
|
|
|
|
}
|
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
uint32_t AwacDevicePdm::read_stat() {
|
2023-11-03 09:28:30 +00:00
|
|
|
// TODO: implement all other status bits
|
|
|
|
return (AWAC_REV_AWACS << 12) | (AWAC_MAKER_CRYSTAL << 8);
|
2021-10-04 21:46:19 +00:00
|
|
|
}
|
2020-03-19 14:09:24 +00:00
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
void AwacDevicePdm::write_ctrl(uint32_t addr, uint16_t value) {
|
2021-10-04 21:46:19 +00:00
|
|
|
if (addr <= 4) {
|
|
|
|
this->ctrl_regs[addr] = value;
|
|
|
|
} else {
|
2023-02-11 13:51:03 +00:00
|
|
|
LOG_F(ERROR, "%s: invalid control register address %d!", this->name.c_str(),
|
|
|
|
addr);
|
2021-10-04 21:46:19 +00:00
|
|
|
}
|
2020-03-15 16:24:40 +00:00
|
|
|
}
|
|
|
|
|
2021-10-04 21:46:19 +00:00
|
|
|
//============================= Screamer AWACs ================================
|
2023-11-08 23:54:58 +00:00
|
|
|
AwacsScreamer::AwacsScreamer(std::string name) : MacioSndCodec(name) {
|
2021-10-04 21:46:19 +00:00
|
|
|
static int screamer_freqs[8] = {
|
|
|
|
44100, 29400, 22050, 17640, 14700, 11025, 8820, 7350
|
|
|
|
};
|
|
|
|
|
|
|
|
this->sr_table = screamer_freqs;
|
|
|
|
this->max_sr_id = 7;
|
2020-03-26 01:07:12 +00:00
|
|
|
}
|
|
|
|
|
2023-02-11 13:51:03 +00:00
|
|
|
int AwacsScreamer::device_postinit() {
|
|
|
|
this->audio_proc = std::unique_ptr<AudioProcessor> (new AudioProcessor());
|
|
|
|
|
|
|
|
/* register audio processor chip with the I2C bus */
|
|
|
|
I2CBus* i2c_bus = dynamic_cast<I2CBus*>(gMachineObj->get_comp_by_type(HWCompType::I2C_HOST));
|
|
|
|
i2c_bus->register_device(0x45, this->audio_proc.get());
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
uint32_t AwacsScreamer::snd_ctrl_read(uint32_t offset, int size) {
|
2020-05-12 18:55:45 +00:00
|
|
|
switch (offset) {
|
2020-03-15 16:24:40 +00:00
|
|
|
case AWAC_SOUND_CTRL_REG:
|
|
|
|
return this->snd_ctrl_reg;
|
|
|
|
case AWAC_CODEC_CTRL_REG:
|
|
|
|
return this->is_busy;
|
|
|
|
case AWAC_CODEC_STATUS_REG:
|
2020-05-12 18:55:45 +00:00
|
|
|
return (AWAC_AVAILABLE << 8) | (AWAC_MAKER_CRYSTAL << 16) | (AWAC_REV_SCREAMER << 20);
|
2020-03-15 16:24:40 +00:00
|
|
|
default:
|
2023-02-11 13:51:03 +00:00
|
|
|
LOG_F(ERROR, "%s: unsupported register at offset 0x%X", this->name.c_str(), offset);
|
2020-03-15 16:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-11-08 23:54:58 +00:00
|
|
|
void AwacsScreamer::snd_ctrl_write(uint32_t offset, uint32_t value, int size) {
|
2020-03-15 16:24:40 +00:00
|
|
|
int subframe, reg_num;
|
|
|
|
uint16_t data;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
switch (offset) {
|
2020-03-15 16:24:40 +00:00
|
|
|
case AWAC_SOUND_CTRL_REG:
|
2020-03-19 14:09:24 +00:00
|
|
|
this->snd_ctrl_reg = BYTESWAP_32(value);
|
2023-02-11 13:51:03 +00:00
|
|
|
this->set_sample_rate((this->snd_ctrl_reg >> 8) & 7);
|
2020-03-15 16:24:40 +00:00
|
|
|
break;
|
|
|
|
case AWAC_CODEC_CTRL_REG:
|
|
|
|
subframe = (value >> 14) & 3;
|
|
|
|
reg_num = (value >> 20) & 7;
|
2020-05-12 18:55:45 +00:00
|
|
|
data = ((value >> 8) & 0xF00) | ((value >> 24) & 0xFF);
|
2023-02-11 13:51:03 +00:00
|
|
|
LOG_F(9, "%s subframe = %d, reg = %d, data = %08X", this->name.c_str(),
|
2021-10-04 21:46:19 +00:00
|
|
|
subframe, reg_num, data);
|
2020-03-15 16:24:40 +00:00
|
|
|
if (!subframe)
|
|
|
|
this->control_regs[reg_num] = data;
|
|
|
|
break;
|
|
|
|
default:
|
2023-02-11 13:51:03 +00:00
|
|
|
LOG_F(ERROR, "%s: unsupported register at offset 0x%X", this->name.c_str(),
|
|
|
|
offset);
|
2020-03-15 16:24:40 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-19 14:09:24 +00:00
|
|
|
|
2023-02-11 13:51:03 +00:00
|
|
|
static const DeviceDescription Screamer_Descriptor = {
|
|
|
|
AwacsScreamer::create, {}, {}
|
|
|
|
};
|
2020-03-19 14:09:24 +00:00
|
|
|
|
2023-02-11 13:51:03 +00:00
|
|
|
REGISTER_DEVICE(ScreamerSnd, Screamer_Descriptor);
|