mirror of https://github.com/xemu-project/xemu.git
nv2a: Add some missing RAMDAC registers
Cromwell sets these registers on video initialization and guest OS should be able to read them in order to obtain current screen resolution set up by firmware.
This commit is contained in:
parent
c4fca3843f
commit
c230d77bc2
|
@ -331,6 +331,13 @@ typedef struct NV2AState {
|
|||
uint32_t memory_clock_coeff;
|
||||
uint32_t video_clock_coeff;
|
||||
uint32_t general_control;
|
||||
uint32_t fp_vdisplay_end;
|
||||
uint32_t fp_vcrtc;
|
||||
uint32_t fp_vsync_end;
|
||||
uint32_t fp_vvalid_end;
|
||||
uint32_t fp_hdisplay_end;
|
||||
uint32_t fp_hcrtc;
|
||||
uint32_t fp_hvalid_end;
|
||||
} pramdac;
|
||||
|
||||
} NV2AState;
|
||||
|
|
|
@ -44,6 +44,27 @@ uint64_t pramdac_read(void *opaque, hwaddr addr, unsigned int size)
|
|||
case NV_PRAMDAC_GENERAL_CONTROL:
|
||||
r = d->pramdac.general_control;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VDISPLAY_END:
|
||||
r = d->pramdac.fp_vdisplay_end;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VCRTC:
|
||||
r = d->pramdac.fp_vcrtc;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VSYNC_END:
|
||||
r = d->pramdac.fp_vsync_end;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VVALID_END:
|
||||
r = d->pramdac.fp_vvalid_end;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_HDISPLAY_END:
|
||||
r = d->pramdac.fp_hdisplay_end;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_HCRTC:
|
||||
r = d->pramdac.fp_hcrtc;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_HVALID_END:
|
||||
r = d->pramdac.fp_hvalid_end;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
@ -87,6 +108,27 @@ void pramdac_write(void *opaque, hwaddr addr, uint64_t val, unsigned int size)
|
|||
case NV_PRAMDAC_GENERAL_CONTROL:
|
||||
d->pramdac.general_control = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VDISPLAY_END:
|
||||
d->pramdac.fp_vdisplay_end = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VCRTC:
|
||||
d->pramdac.fp_vcrtc = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VSYNC_END:
|
||||
d->pramdac.fp_vsync_end = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_VVALID_END:
|
||||
d->pramdac.fp_vvalid_end = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_HDISPLAY_END:
|
||||
d->pramdac.fp_hdisplay_end = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_HCRTC:
|
||||
d->pramdac.fp_hcrtc = val;
|
||||
break;
|
||||
case NV_PRAMDAC_FP_HVALID_END:
|
||||
d->pramdac.fp_hvalid_end = val;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -680,6 +680,13 @@
|
|||
# define NV_PRAMDAC_PLL_TEST_COUNTER_VPLL_LOCK (1 << 31)
|
||||
#define NV_PRAMDAC_GENERAL_CONTROL 0x00000600
|
||||
# define NV_PRAMDAC_GENERAL_CONTROL_ALT_MODE_SEL (1 << 12)
|
||||
#define NV_PRAMDAC_FP_VDISPLAY_END 0x00000800
|
||||
#define NV_PRAMDAC_FP_VCRTC 0x00000808
|
||||
#define NV_PRAMDAC_FP_VSYNC_END 0x00000810
|
||||
#define NV_PRAMDAC_FP_VVALID_END 0x00000818
|
||||
#define NV_PRAMDAC_FP_HDISPLAY_END 0x00000820
|
||||
#define NV_PRAMDAC_FP_HCRTC 0x00000828
|
||||
#define NV_PRAMDAC_FP_HVALID_END 0x00000838
|
||||
|
||||
#define NV_USER_DMA_PUT 0x40
|
||||
#define NV_USER_DMA_GET 0x44
|
||||
|
|
Loading…
Reference in New Issue