/* DingusPPC - The Experimental PowerPC Macintosh emulator Copyright (C) 2018-24 divingkatae and maximum (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 . */ /** Apple RAMDAC ASICs (RaDACal & DACula) emulation. */ #include #include #include #include AppleRamdac::AppleRamdac(DacFlavour flavour) { this->flavour = flavour; supports_types(HWCompType::IOBUS_DEV); set_name(this->flavour == DacFlavour::DACULA ? "DACula" : "RaDACal"); } uint16_t AppleRamdac::iodev_read(uint32_t address) { switch(address) { case RamdacRegs::MULTI: switch(this->dac_addr) { case RamdacRegs::MISC_CTRL: return this->dac_cr; case RamdacRegs::PLL_CTRL: return this->pll_cr; case RamdacRegs::VENDOR_ID: return DACULA_VENDOR_SIERRA; default: LOG_F(WARNING, "%s: read from unsupported multi-register at 0x%X", this->name.c_str(), this->dac_addr); } break; default: LOG_F(WARNING, "%s: read from unsupported register at 0x%X", this->name.c_str(), address); } return 0; } void AppleRamdac::iodev_write(uint32_t address, uint16_t value) { switch(address) { case RamdacRegs::ADDRESS: this->dac_addr = value; break; case RamdacRegs::CURSOR_CLUT: this->clut_color[this->comp_index++] = value; if (this->comp_index >= 3) { this->cursor_clut[this->dac_addr & 7] = (this->clut_color[0] << 16) | (this->clut_color[1] << 8) | this->clut_color[2]; this->dac_addr++; // auto-increment CLUT address this->comp_index = 0; } break; case RamdacRegs::MULTI: switch (this->dac_addr) { case RamdacRegs::CURSOR_POS_HI: this->cursor_xpos = (value << 8) | this->cursor_pos_lo; break; case RamdacRegs::CURSOR_POS_LO: this->cursor_pos_lo = value; break; case RamdacRegs::MISC_CTRL: if (bit_changed(this->dac_cr, value, 1)) { if (value & 2) this->cursor_ctrl_cb(true); else this->cursor_ctrl_cb(false); } this->dac_cr = value; break; case RamdacRegs::DBL_BUF_CTRL: this->dbl_buf_cr = value; break; case RamdacRegs::TEST_CTRL: this->tst_cr = value; if (value & 1) LOG_F(WARNING, "%s: DAC test enabled!", this->name.c_str()); break; case RamdacRegs::PLL_CTRL: this->pll_cr = value; break; case RamdacRegs::VIDCLK_M_SET_A: this->clk_m[0] = value; break; case RamdacRegs::VIDCLK_PN_SET_A: this->clk_pn[0] = value; break; case RamdacRegs::VIDCLK_M_SET_B: this->clk_m[1] = value; break; case RamdacRegs::VIDCLK_PN_SET_B: this->clk_pn[1] = value; break; default: LOG_F(WARNING, "%s: write to unsupported multi-register at 0x%X", this->name.c_str(), this->dac_addr); } break; case RamdacRegs::CLUT_DATA: this->clut_color[this->comp_index++] = value; if (this->comp_index >= 3) { this->set_clut_entry_cb(this->dac_addr, this->clut_color); this->dac_addr++; // auto-increment CLUT address this->comp_index = 0; } break; default: LOG_F(WARNING, "%s: write to unsupported register at 0x%X", this->name.c_str(), address); } } int AppleRamdac::get_clock_div() { return 1 << ((dac_cr >> 6) + 1); } int AppleRamdac::get_pix_width() { return 1 << (((this->dac_cr >> 2) & 3) + 3); } int AppleRamdac::get_dot_freq() { uint8_t m = this->clk_m[this->pll_cr & 1]; uint8_t p = this->clk_pn[this->pll_cr & 1] >> 5; uint8_t n = this->clk_pn[this->pll_cr & 1] & 0x1F; double dot_freq = 14318180.0f * (double)m / ((double)n * (double)(1 << p)); return static_cast(dot_freq + 0.5f); } // =========================== HW cursor stuff ============================= void AppleRamdac::measure_hw_cursor(uint8_t *fb_ptr) { uint8_t *src_bw_ptr = fb_ptr + this->fb_pitch * (this->video_height - 1); int cur_pos_y_start = -1; int cur_pos_y_end = -1; // forward scanning to find the first line of the cursor for (int h = 0; h < this->video_height; h++, fb_ptr += this->fb_pitch) { if (((uint64_t *)fb_ptr)[0] | ((uint64_t *)fb_ptr)[1]) { cur_pos_y_start = h; break; } } if (cur_pos_y_start < 0) return; // bail out because no cursor data start was found // backward scanning to find the last line of the cursor for (int h = this->video_height - 1; h >= 0; h--, src_bw_ptr -= this->fb_pitch) { if (((uint64_t *)src_bw_ptr)[0] | ((uint64_t *)src_bw_ptr)[1]) { cur_pos_y_end = h; break; } } if (cur_pos_y_end < 0) return; // bail out because no cursor data end was found this->cursor_height = cur_pos_y_end - cur_pos_y_start + 1; this->cursor_ypos = cur_pos_y_start; } void AppleRamdac::draw_hw_cursor(uint8_t *src_buf, uint8_t *dst_buf, int dst_pitch) { uint8_t *dst_row = dst_buf; this->measure_hw_cursor(src_buf); if (this->cursor_xpos >= this->video_width) return; src_buf += this->fb_pitch * this->cursor_ypos; dst_row += this->cursor_ypos * dst_pitch + this->cursor_xpos * sizeof(uint32_t); dst_pitch -= 32 * sizeof(uint32_t); for (int h = 0; h < this->cursor_height; h++) { for (int x = 0; x < 2; x++) { // two sets of 16 pixels uint64_t pix_data = READ_QWORD_BE_A(src_buf + x * 8); if (!pix_data) { // skip processing of 16 transparent pixels dst_row += 16 * sizeof(uint32_t); break; } for (int p = 0; p < 16; p++) { uint8_t pix = pix_data >> 60; // each pixel is 4 bits wide if (pix & 8) { // check control bit: 0 - transparent, 1 - opaque WRITE_DWORD_LE_A(dst_row, this->cursor_clut[pix & 7]); } pix_data <<= 4; dst_row += sizeof(uint32_t); } } src_buf += this->fb_pitch; dst_row += dst_pitch; } }