/* DingusPPC - The Experimental PowerPC Macintosh emulator Copyright (C) 2018-23 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 . */ /** @file TNT on-board video output definitions. */ #ifndef CONTROL_VIDEO_H #define CONTROL_VIDEO_H #include #include #include #include #include #include #include // Memory-mapped registers. namespace ControlRegs { enum ControlRegs : int { // 512 bytes, repeats 8 times for 4K total. // A register every 16 bytes, little endian, 32 bits, repeats 4 times. CUR_LINE = 0x00, // current active video line (ro) 12 bits VFPEQ = 0x01, // vertical front porch with EQ (rw) 12 bits VFP = 0x02, // vertical front porch (rw) 12 bits VAL = 0x03, // vertical active line (rw) 12 bits VBP = 0x04, // vertical back porch (rw) 12 bits VBPEQ = 0x05, // vertical back porch with EQ (rw) 12 bits VSYNC = 0x06, // vertical sync starting point (rw) 12 bits VHLINE = 0x07, // vertical half line (rw) 12 bits PIPE_DELAY = 0x08, // controls pixel pipe delay (rw) 12 bits HPIX = 0x09, // horizontal pixel count (rw) 12 bits HFP = 0x0A, // horizontal front porch (rw) 12 bits HAL = 0x0B, // horizontal active line (rw) 12 bits HBWAY = 0x0C, // horizontal breezeway (rw) 12 bits HSP = 0x0D, // horizontal sync starting point (rw) 12 bits HEQ = 0x0E, // horizontal equalization (rw) 12 bits HLFLN = 0x0F, // horizontal half line (rw) 12 bits HSERR = 0x10, // horizontal serration (rw) 12 bits CNTTST = 0x11, // Swatch counter test value (rw) 12 bits SWATCH_CTRL = 0x12, // Swatch timing generator control (rw) 11 bits GBASE = 0x13, // graphics base address (rw) 22 bits, 32 byte aligned ROW_WORDS = 0x14, // framebuffer pitch (rw) 15 bits, 32 byte aligned MON_SENSE = 0x15, // Monitor sense control & status (rw) 9 bits MISC_ENABLES = 0x16, // controls chip's features (rw) 12 bits GSC_DIVIDE = 0x17, // graphics clock divide count (rw) 2 bits REFRESH_COUNT = 0x18, // VRAM refresh counter (rw) 10 bits INT_ENABLE = 0x19, // interrupt enable bits (rw) 4 bits INT_STATUS = 0x1A, // interrupt status bits (ro) 3 bits }; }; // namespace ControlRegs // Bit definitions for the video timing generator (Swatch) control register. enum { RESET_TIMING = 1 << 3, // toggle this bit to change timing parameters DISABLE_TIMING = 1 << 10, // 1 - disable video timing, 0 - enable it }; // Bit definitions for MISC_ENABLES register. enum { SCAN_CONTROL = 1 << 0, // 0 - interlaced, 1 - progressive FB_ENDIAN_LITTLE = 1 << 1, // framebuffer endianness: 0 - big, 1 - little VRAM_WIDE_MODE = 1 << 6, // VRAM bus width: 1 - 128bit, 0 - 64bit BLANK_DISABLE = 1 << 11, // 0 - enable blanking, 1 - disable it }; // Bit definitions for INT_ENABLE & INT_STATUS registers. enum { VBL_IRQ_CLR = 1 << 3, // VBL interrupt clear bit (INT_ENABLE) VBL_IRQ_EN = 1 << 2, // VBL interrupt enable bit (INT_ENABLE) VBL_IRQ_STAT = 1 << 2, // VBL interrupt status bit (INT_STATUS) }; namespace RadacalRegs { enum RadacalRegs : uint8_t { ADDRESS = 0, // address register CURSOR_CLUT = 1, // cursor palette data MULTI = 2, // multipurpose section CLUT_DATA = 3, // color palette data // multipurpose section registers CURSOR_POS_HI = 0x10, // cursor position, high-order byte CURSOR_POS_LO = 0x11, // cursor position, low-order byte MISC_CTRL = 0x20, // miscellaneus control bits DBL_BUF_CTRL = 0x21, // double buffer control bits TEST_CTRL = 0x22, // enable/disable DAC tests }; }; // namespace RadacalRegs class ControlVideo : public PCIDevice, public VideoCtrlBase, public IobusDevice { public: ControlVideo(); ~ControlVideo() = default; static std::unique_ptr create() { return std::unique_ptr(new ControlVideo()); } // MMIODevice methods uint32_t read(uint32_t rgn_start, uint32_t offset, int size); void write(uint32_t rgn_start, uint32_t offset, uint32_t value, int size); protected: void notify_bar_change(int bar_num); void enable_display(); void disable_display(); // HWComponent methods int device_postinit(); // IobusDevice methods for RaDACal uint16_t iodev_read(uint32_t address); void iodev_write(uint32_t address, uint16_t value); // HW cursor support (in RaDACal) void measure_hw_cursor(); void draw_hw_cursor(uint8_t *dst_buf, int dst_pitch); private: std::unique_ptr display_id; std::unique_ptr clk_gen; std::unique_ptr vram_ptr; uint32_t vram_size; uint32_t io_base = 0; uint32_t vram_base = 0; uint32_t regs_base = 0; uint32_t swatch_ctrl = 0; bool display_enabled = false; uint32_t clock_divider = 0; uint32_t row_words = 0; uint32_t fb_base = 0; uint16_t swatch_params[16]; int strobe_counter = 0; uint8_t num_banks = 0; uint8_t cur_mon_id = 0; uint8_t enables = 0; uint8_t int_enable = 0; uint8_t int_status = 0; uint8_t last_int_status = -1; int last_int_status_read_count = 0; // RaDACal internal state uint8_t rad_addr = 0; uint8_t rad_cr = 0; uint8_t rad_dbl_buf_cr = 0; uint8_t rad_tst_cr = 0; uint16_t rad_cur_rgn_pos = 0; // horizontal position of the cursor region uint8_t rad_cur_pos_lo = 0; // lower byte of the horizontal cursor position uint16_t rad_cur_ypos = 0; uint16_t rad_cursor_height = 0; uint8_t comp_index; uint8_t clut_color[3]; uint32_t cursor_clut[8] = {}; }; #endif // CONTROL_VIDEO_H