Lines Matching defs:u32

2757 PDMBOTHCBDECL(int) vgaIOPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
2764 vga_ioport_write(pThis, Port, u32);
2767 vga_ioport_write(pThis, Port, u32 & 0xff);
2768 vga_ioport_write(pThis, Port + 1, u32 >> 8);
2798 PDMBOTHCBDECL(int) vgaIOPortWriteVBEData(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
2822 && (u32 & VBE_DISPI_ENABLED))
2825 return vbe_ioport_write_data(pThis, Port, u32 & 0xFF);
2828 pThis->cbWriteVBEData = u32 & 0xFF;
2833 u32 = (pThis->cbWriteVBEData << 8) | (u32 & 0xFF);
2847 // && (u32 & VBE_DISPI_ENABLED))
2853 return vbe_ioport_write_data(pThis, Port, u32);
2855 AssertMsgFailed(("vgaIOPortWriteVBEData: Port=%#x cb=%d u32=%#x\n", Port, cb, u32));
2864 PDMBOTHCBDECL(int) vgaIOPortWriteVBEIndex(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
2874 pThis->cbWriteVBEIndex = u32 & 0x00FF;
2879 vbe_ioport_write_index(pThis, Port, (pThis->cbWriteVBEIndex << 8) | (u32 & 0x00FF));
2885 vbe_ioport_write_index(pThis, Port, u32);
2887 AssertMsgFailed(("vgaIOPortWriteVBEIndex: Port=%#x cb=%d u32=%#x\n", Port, cb, u32));
2968 static DECLCALLBACK(int) vgaR3IOPortHGSMIWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
2972 LogFlowFunc(("Port 0x%x, u32 0x%x, cb %d\n", Port, u32, cb));
2984 if (u32 == HGSMIOFFSET_VOID)
2998 HGSMIHostWrite(pThis->pHGSMI, u32);
3004 HGSMIGuestWrite(pThis->pHGSMI, u32);
3009 AssertMsgFailed(("vgaR3IOPortHGSMIWrite: Port=%#x cb=%d u32=%#x\n", Port, cb, u32));
3017 AssertMsgFailed(("vgaR3IOPortHGSMIWrite: Port=%#x cb=%d u32=%#x\n", Port, cb, u32));
3549 PDMBOTHCBDECL(int) vgaIOPortWriteBIOS(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
3563 switch (u32)
3569 Log(("vgabios: %c\n", u32));
3574 if (u32 != '\r') /* return - is only sent in conjunction with '\n' */
3575 Log(("%c", u32));
3576 if (u32 == '\n')
3598 PDMBOTHCBDECL(int) vbeIOPortWriteVBEExtra(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
3606 Log(("vbeIOPortWriteVBEExtra: addr=%#RX32\n", u32));
3607 pThis->u16VBEExtraAddress = u32;
3930 PDMBOTHCBDECL(int) vbeIOPortWriteCMDLogo(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
3936 Log(("vbeIOPortWriteCMDLogo: cb=%d u32=%#04x(%#04d) (byte)\n", cb, u32, u32));
3941 switch (u32 & 0xFF00)
3944 pThis->offLogoData = u32 & 0xFF;
3949 uint8_t iStep = u32 & 0xFF;
4015 Log(("vbeIOPortWriteCMDLogo: invalid command %d\n", u32));
5542 uint32_t u32;
5543 rc = SSMR3GetU32(pSSM, &u32);
5544 if (u32)
5547 if (u32 == 1)