Changeset 82139 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Nov 24, 2019 12:20:24 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134949
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r82138 r82139 445 445 /** Alignment padding. */ 446 446 uint32_t Alignment6; 447 448 /** PCI Region \#0: I/O ports offset 0x10-0x1f. */ 449 IOMIOPORTHANDLE hIoPortsPci; 450 /** PCI Region \#0: I/O ports offset 0x00-0x0f. */ 451 IOMIOPORTHANDLE hIoPortsPciAProm; 452 453 /** ISA I/O ports offset 0x10-0x1f. */ 454 IOMIOPORTHANDLE hIoPortsIsa; 455 /** ISA I/O ports offset 0x00-0x0f. */ 456 IOMIOPORTHANDLE hIoPortsIsaAProm; 447 457 448 458 STAMCOUNTER StatReceiveBytes; … … 1146 1156 static void pcnetUpdateIrq(PPCNETSTATE pThis); 1147 1157 static uint32_t pcnetBCRReadU16(PPCNETSTATE pThis, uint32_t u32RAP); 1148 static intpcnetBCRWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t u32RAP, uint32_t val);1158 static VBOXSTRICTRC pcnetBCRWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t u32RAP, uint32_t val); 1149 1159 1150 1160 … … 2851 2861 2852 2862 2853 static intpcnetCSRWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t u32RAP, uint32_t val)2854 { 2855 intrc = VINF_SUCCESS;2863 static VBOXSTRICTRC pcnetCSRWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t u32RAP, uint32_t val) 2864 { 2865 VBOXSTRICTRC rc = VINF_SUCCESS; 2856 2866 #ifdef PCNET_DEBUG_CSR 2857 2867 Log(("#%d pcnetCSRWriteU16: rap=%d val=%#06x\n", PCNET_INST_NR, u32RAP, val)); … … 3108 3118 } 3109 3119 3110 static int pcnetBCRWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t u32RAP, uint32_t val) 3111 { 3112 int rc = VINF_SUCCESS; 3120 static VBOXSTRICTRC pcnetBCRWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t u32RAP, uint32_t val) 3121 { 3113 3122 u32RAP &= 0x7f; 3114 3123 #ifdef PCNET_DEBUG_BCR … … 3119 3128 case BCR_SWS: 3120 3129 if (!(CSR_STOP(pThis) || CSR_SPND(pThis))) 3121 return rc;3130 return VINF_SUCCESS; 3122 3131 val &= ~0x0300; 3123 3132 switch (val & 0x00ff) … … 3177 3186 break; 3178 3187 } 3179 return rc;3188 return VINF_SUCCESS; 3180 3189 } 3181 3190 … … 3478 3487 * @callback_method_impl{FNIOMIOPORTIN, APROM} 3479 3488 */ 3480 PDMBOTHCBDECL(int) pcnetIOPortAPromRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb) 3481 { 3482 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 3483 int rc = VINF_SUCCESS; 3489 static DECLCALLBACK(VBOXSTRICTRC) 3490 pcnetIOPortAPromRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb) 3491 { 3492 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 3493 VBOXSTRICTRC rc = VINF_SUCCESS; 3484 3494 STAM_PROFILE_ADV_START(&pThis->StatAPROMRead, a); 3485 3495 Assert(PDMCritSectIsOwner(&pThis->CritSect)); … … 3488 3498 /* FreeBSD is accessing in dwords. */ 3489 3499 if (cb == 1) 3490 *pu32 = pcnetAPROMReadU8(pThis, Port);3500 *pu32 = pcnetAPROMReadU8(pThis, offPort); 3491 3501 else if (cb == 2 && !BCR_DWIO(pThis)) 3492 *pu32 = pcnetAPROMReadU8(pThis, Port)3493 | (pcnetAPROMReadU8(pThis, Port + 1) << 8);3502 *pu32 = pcnetAPROMReadU8(pThis, offPort) 3503 | (pcnetAPROMReadU8(pThis, offPort + 1) << 8); 3494 3504 else if (cb == 4 && BCR_DWIO(pThis)) 3495 *pu32 = pcnetAPROMReadU8(pThis, Port)3496 | (pcnetAPROMReadU8(pThis, Port + 1) << 8)3497 | (pcnetAPROMReadU8(pThis, Port + 2) << 16)3498 | (pcnetAPROMReadU8(pThis, Port + 3) << 24);3505 *pu32 = pcnetAPROMReadU8(pThis, offPort) 3506 | (pcnetAPROMReadU8(pThis, offPort + 1) << 8) 3507 | (pcnetAPROMReadU8(pThis, offPort + 2) << 16) 3508 | (pcnetAPROMReadU8(pThis, offPort + 3) << 24); 3499 3509 else 3500 3510 { 3501 Log(("#%d pcnetIOPortAPromRead: Port=%RTiop cb=%d BCR_DWIO !!\n", PCNET_INST_NR,Port, cb));3511 Log(("#%d pcnetIOPortAPromRead: offPort=%RTiop cb=%d BCR_DWIO !!\n", PCNET_INST_NR, offPort, cb)); 3502 3512 rc = VERR_IOM_IOPORT_UNUSED; 3503 3513 } 3504 3514 3505 3515 STAM_PROFILE_ADV_STOP(&pThis->StatAPROMRead, a); 3506 LogFlow(("#%d pcnetIOPortAPromRead: Port=%RTiop *pu32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR,Port, *pu32, cb, rc));3516 LogFlow(("#%d pcnetIOPortAPromRead: offPort=%RTiop *pu32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR, offPort, *pu32, cb, rc)); 3507 3517 return rc; 3508 3518 } … … 3512 3522 * @callback_method_impl{FNIOMIOPORTOUT, APROM} 3513 3523 */ 3514 PDMBOTHCBDECL(int) pcnetIOPortAPromWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb) 3515 { 3516 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 3517 int rc = VINF_SUCCESS; 3524 static DECLCALLBACK(VBOXSTRICTRC) 3525 pcnetIoPortAPromWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb) 3526 { 3527 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 3528 VBOXSTRICTRC rc = VINF_SUCCESS; 3518 3529 Assert(PDMCritSectIsOwner(&pThis->CritSect)); 3519 3530 RT_NOREF_PV(pvUser); … … 3522 3533 { 3523 3534 STAM_PROFILE_ADV_START(&pThis->StatAPROMWrite, a); 3524 pcnetAPROMWriteU8(pThis, Port, u32);3535 pcnetAPROMWriteU8(pThis, offPort, u32); 3525 3536 STAM_PROFILE_ADV_STOP(&pThis->StatAPROMWrite, a); 3526 3537 } 3527 3538 else 3528 rc = PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, " Port=%#x cb=%d u32=%#x\n",Port, cb, u32);3529 3530 LogFlow(("#%d pcnetI OPortAPromWrite: Port=%RTiop u32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR,Port, u32, cb, rc));3539 rc = PDMDevHlpDBGFStop(pDevIns, RT_SRC_POS, "offPort=%#x cb=%d u32=%#x\n", offPort, cb, u32); 3540 3541 LogFlow(("#%d pcnetIoPortAPromWrite: offPort=%RTiop u32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR, offPort, u32, cb, rc)); 3531 3542 return rc; 3532 3543 } … … 3536 3547 3537 3548 3538 static intpcnetIoPortWriteU8(PPCNETSTATE pThis, uint32_t addr, uint32_t val)3549 static VBOXSTRICTRC pcnetIoPortWriteU8(PPCNETSTATE pThis, uint32_t addr, uint32_t val) 3539 3550 { 3540 3551 RT_NOREF1(val); … … 3556 3567 } 3557 3568 3558 static uint32_t pcnetIoPortReadU8(PPCNETSTATE pThis, uint32_t addr , int *pRC)3569 static uint32_t pcnetIoPortReadU8(PPCNETSTATE pThis, uint32_t addr) 3559 3570 { 3560 3571 uint32_t val = UINT32_MAX; 3561 3562 *pRC = VINF_SUCCESS;3563 3572 3564 3573 if (RT_LIKELY(!BCR_DWIO(pThis))) … … 3583 3592 } 3584 3593 3585 static intpcnetIoPortWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr, uint32_t val)3586 { 3587 intrc = VINF_SUCCESS;3594 static VBOXSTRICTRC pcnetIoPortWriteU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr, uint32_t val) 3595 { 3596 VBOXSTRICTRC rc = VINF_SUCCESS; 3588 3597 3589 3598 #ifdef PCNET_DEBUG_IO … … 3613 3622 } 3614 3623 3615 static uint32_t pcnetIoPortReadU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr , int *pRC)3624 static uint32_t pcnetIoPortReadU16(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr) 3616 3625 { 3617 3626 uint32_t val = ~0U; 3618 3619 *pRC = VINF_SUCCESS;3620 3627 3621 3628 if (RT_LIKELY(!BCR_DWIO(pThis))) … … 3657 3664 } 3658 3665 3659 static intpcnetIoPortWriteU32(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr, uint32_t val)3660 { 3661 intrc = VINF_SUCCESS;3666 static VBOXSTRICTRC pcnetIoPortWriteU32(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr, uint32_t val) 3667 { 3668 VBOXSTRICTRC rc = VINF_SUCCESS; 3662 3669 3663 3670 #ifdef PCNET_DEBUG_IO … … 3696 3703 } 3697 3704 3698 static uint32_t pcnetIoPortReadU32(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr , int *pRC)3705 static uint32_t pcnetIoPortReadU32(PPDMDEVINS pDevIns, PPCNETSTATE pThis, uint32_t addr) 3699 3706 { 3700 3707 uint32_t val = ~0U; 3701 3702 *pRC = VINF_SUCCESS;3703 3708 3704 3709 if (RT_LIKELY(BCR_DWIO(pThis))) … … 3743 3748 * @callback_method_impl{FNIOMIOPORTIN} 3744 3749 */ 3745 PDMBOTHCBDECL(int) pcnetIOPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORTPort, uint32_t *pu32, unsigned cb)3746 { 3747 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE);3748 intrc = VINF_SUCCESS;3750 static DECLCALLBACK(VBOXSTRICTRC) pcnetIoPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t *pu32, unsigned cb) 3751 { 3752 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 3753 VBOXSTRICTRC rc = VINF_SUCCESS; 3749 3754 STAM_PROFILE_ADV_START(&pThis->CTX_SUFF_Z(StatIORead), a); 3750 3755 Assert(PDMCritSectIsOwner(&pThis->CritSect)); … … 3753 3758 switch (cb) 3754 3759 { 3755 case 1: *pu32 = pcnetIoPortReadU8(pThis, Port, &rc); break;3756 case 2: *pu32 = pcnetIoPortReadU16(pDevIns, pThis, Port, &rc); break;3757 case 4: *pu32 = pcnetIoPortReadU32(pDevIns, pThis, Port, &rc); break;3760 case 1: *pu32 = pcnetIoPortReadU8(pThis, offPort); break; 3761 case 2: *pu32 = pcnetIoPortReadU16(pDevIns, pThis, offPort); break; 3762 case 4: *pu32 = pcnetIoPortReadU32(pDevIns, pThis, offPort); break; 3758 3763 default: 3759 3764 rc = PDMDevHlpDBGFStop(pThis->CTX_SUFF(pDevIns), RT_SRC_POS, 3760 "pcnetIOPortRead: unsupported op size: offset=%#10x cb=%u\n", 3761 Port, cb); 3762 } 3763 3764 Log2(("#%d pcnetIOPortRead: Port=%RTiop *pu32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR, Port, *pu32, cb, rc)); 3765 "pcnetIoPortRead: unsupported op size: offset=%#10x cb=%u\n", offPort, cb); 3766 } 3767 3768 Log2(("#%d pcnetIoPortRead: offPort=%RTiop *pu32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR, offPort, *pu32, cb, VBOXSTRICTRC_VAL(rc))); 3765 3769 STAM_PROFILE_ADV_STOP(&pThis->CTX_SUFF_Z(StatIORead), a); 3766 3770 return rc; … … 3771 3775 * @callback_method_impl{FNIOMIOPORTOUT} 3772 3776 */ 3773 PDMBOTHCBDECL(int) pcnetIOPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORTPort, uint32_t u32, unsigned cb)3777 static DECLCALLBACK(VBOXSTRICTRC) pcnetIoPortWrite(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT offPort, uint32_t u32, unsigned cb) 3774 3778 { 3775 3779 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 3776 intrc = VINF_SUCCESS;3780 VBOXSTRICTRC rc = VINF_SUCCESS; 3777 3781 STAM_PROFILE_ADV_START(&pThis->CTX_SUFF_Z(StatIOWrite), a); 3778 3782 Assert(PDMCritSectIsOwner(&pThis->CritSect)); … … 3781 3785 switch (cb) 3782 3786 { 3783 case 1: rc = pcnetIoPortWriteU8(pThis, Port, u32); break;3784 case 2: rc = pcnetIoPortWriteU16(pDevIns, pThis, Port, u32); break;3785 case 4: rc = pcnetIoPortWriteU32(pDevIns, pThis, Port, u32); break;3787 case 1: rc = pcnetIoPortWriteU8(pThis, offPort, u32); break; 3788 case 2: rc = pcnetIoPortWriteU16(pDevIns, pThis, offPort, u32); break; 3789 case 4: rc = pcnetIoPortWriteU32(pDevIns, pThis, offPort, u32); break; 3786 3790 default: 3787 3791 rc = PDMDevHlpDBGFStop(pThis->CTX_SUFF(pDevIns), RT_SRC_POS, 3788 "pcnetIOPortWrite: unsupported op size: offset=%#10x cb=%u\n", 3789 Port, cb); 3790 } 3791 3792 Log2(("#%d pcnetIOPortWrite: Port=%RTiop u32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR, Port, u32, cb, rc)); 3792 "pcnetIoPortWrite: unsupported op size: offset=%#10x cb=%u\n", offPort, cb); 3793 } 3794 3795 Log2(("#%d pcnetIoPortWrite: offPort=%RTiop u32=%#RX32 cb=%d rc=%Rrc\n", PCNET_INST_NR, offPort, u32, cb, VBOXSTRICTRC_VAL(rc))); 3793 3796 STAM_PROFILE_ADV_STOP(&pThis->CTX_SUFF_Z(StatIOWrite), a); 3794 3797 return rc; … … 3835 3838 { 3836 3839 uint32_t val = ~0U; 3837 int rc;3838 3840 3839 3841 if (addr & 0x10) 3840 val = pcnetIoPortReadU16(pDevIns, pThis, addr & 0x0f , &rc);3842 val = pcnetIoPortReadU16(pDevIns, pThis, addr & 0x0f); 3841 3843 else 3842 3844 { … … 3870 3872 { 3871 3873 uint32_t val; 3872 int rc;3873 3874 3874 3875 if (addr & 0x10) 3875 val = pcnetIoPortReadU32(pDevIns, pThis, addr & 0x0f , &rc);3876 val = pcnetIoPortReadU32(pDevIns, pThis, addr & 0x0f); 3876 3877 else 3877 3878 { … … 4044 4045 * @callback_method_impl{FNPCIIOREGIONMAP, For the PCnet I/O Ports.} 4045 4046 */ 4046 static DECLCALLBACK(int) pcnet IOPortMap(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion,4047 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType)4047 static DECLCALLBACK(int) pcnetR3PciMapUnmapIoPorts(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 4048 RTGCPHYS GCPhysAddress, RTGCPHYS cb, PCIADDRESSSPACE enmType) 4048 4049 { 4049 4050 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 4050 RTIOPORT Port = (RTIOPORT)GCPhysAddress;4051 int rc; 4051 4052 RT_NOREF(iRegion, cb, enmType, pPciDev); 4052 4053 … … 4055 4056 Assert(cb >= 0x20); 4056 4057 4057 int rc = PDMDevHlpIOPortRegister(pDevIns, Port, 0x10, 0, pcnetIOPortAPromWrite, 4058 pcnetIOPortAPromRead, NULL, NULL, "PCnet APROM"); 4059 if (RT_FAILURE(rc)) 4060 return rc; 4061 rc = PDMDevHlpIOPortRegister(pDevIns, Port + 0x10, 0x10, 0, pcnetIOPortWrite, 4062 pcnetIOPortRead, NULL, NULL, "PCnet"); 4063 if (RT_FAILURE(rc)) 4064 return rc; 4065 4066 if (pDevIns->fRCEnabled) 4067 { 4068 rc = PDMDevHlpIOPortRegisterRC(pDevIns, Port, 0x10, 0, "pcnetIOPortAPromWrite", 4069 "pcnetIOPortAPromRead", NULL, NULL, "PCnet APROM"); 4070 if (RT_FAILURE(rc)) 4071 return rc; 4072 rc = PDMDevHlpIOPortRegisterRC(pDevIns, Port + 0x10, 0x10, 0, "pcnetIOPortWrite", 4073 "pcnetIOPortRead", NULL, NULL, "PCnet"); 4074 if (RT_FAILURE(rc)) 4075 return rc; 4076 } 4077 if (pDevIns->fR0Enabled) 4078 { 4079 rc = PDMDevHlpIOPortRegisterR0(pDevIns, Port, 0x10, 0, "pcnetIOPortAPromWrite", 4080 "pcnetIOPortAPromRead", NULL, NULL, "PCnet APROM"); 4081 if (RT_FAILURE(rc)) 4082 return rc; 4083 rc = PDMDevHlpIOPortRegisterR0(pDevIns, Port + 0x10, 0x10, 0, "pcnetIOPortWrite", 4084 "pcnetIOPortRead", NULL, NULL, "PCnet"); 4085 if (RT_FAILURE(rc)) 4086 return rc; 4087 } 4088 4089 pThis->IOPortBase = Port; 4058 if (GCPhysAddress != NIL_RTGCPHYS) 4059 { 4060 RTIOPORT Port = (RTIOPORT)GCPhysAddress; 4061 rc = PDMDevHlpIoPortMap(pDevIns, pThis->hIoPortsPciAProm, Port); 4062 AssertRCReturn(rc, rc); 4063 rc = PDMDevHlpIoPortMap(pDevIns, pThis->hIoPortsPci, Port + 0x10); 4064 AssertRCReturn(rc, rc); 4065 pThis->IOPortBase = Port; 4066 } 4067 else 4068 { 4069 rc = PDMDevHlpIoPortUnmap(pDevIns, pThis->hIoPortsPciAProm); 4070 AssertRCReturn(rc, rc); 4071 rc = PDMDevHlpIoPortUnmap(pDevIns, pThis->hIoPortsPci); 4072 AssertRCReturn(rc, rc); 4073 pThis->IOPortBase = 0; 4074 } 4075 4090 4076 return VINF_SUCCESS; 4091 4077 } … … 5079 5065 * Init what's required to make the destructor safe. 5080 5066 */ 5081 pThis->hEventOutOfRxSpace = NIL_SUPSEMEVENT; 5067 pThis->hEventOutOfRxSpace = NIL_SUPSEMEVENT; 5068 pThis->hIoPortsPci = NIL_IOMIOPORTHANDLE; 5069 pThis->hIoPortsPciAProm = NIL_IOMIOPORTHANDLE; 5070 pThis->hIoPortsIsa = NIL_IOMIOPORTHANDLE; 5071 pThis->hIoPortsIsaAProm = NIL_IOMIOPORTHANDLE; 5082 5072 5083 5073 /* … … 5232 5222 rc = PDMDevHlpPCIRegister(pDevIns, pPciDev); 5233 5223 AssertRCReturn(rc, rc); 5234 rc = PDMDevHlpPCIIORegionRegister(pDevIns, 0, PCNET_IOPORT_SIZE, PCI_ADDRESS_SPACE_IO, pcnetIOPortMap); 5224 5225 /* Region #0: I/O ports - two handlers: */ 5226 rc = PDMDevHlpIoPortCreate(pDevIns, 0x10 /*cPorts*/, pPciDev, 0 /*iPciRegion*/, 5227 pcnetIoPortAPromWrite, pcnetIOPortAPromRead, NULL /*pvUser*/, 5228 "PCnet APROM", NULL /*paExtDescs*/, &pThis->hIoPortsPciAProm); 5235 5229 AssertRCReturn(rc, rc); 5230 rc = PDMDevHlpIoPortCreate(pDevIns, 0x10 /*cPorts*/, pPciDev, 0 /*iPciRegion*/, 5231 pcnetIoPortWrite, pcnetIoPortRead, NULL /*pvUser*/, 5232 "PCnet", NULL /*paExtDescs*/, &pThis->hIoPortsPci); 5233 AssertRCReturn(rc, rc); 5234 rc = PDMDevHlpPCIIORegionRegisterIoCustom(pDevIns, 0, PCNET_IOPORT_SIZE, pcnetR3PciMapUnmapIoPorts); 5235 AssertRCReturn(rc, rc); 5236 5237 /* Region #1: MMIO */ 5236 5238 rc = PDMDevHlpPCIIORegionRegister(pDevIns, 1, PCNET_PNPMMIO_SIZE, PCI_ADDRESS_SPACE_MEM, pcnetMMIOMap); 5237 5239 AssertRCReturn(rc, rc); … … 5243 5245 if (PCNET_IS_ISA(pThis)) 5244 5246 { 5245 rc = PDMDevHlpIOPortRegister(pDevIns, pThis->IOPortBase, 0x10, 0, pcnetIOPortAPromWrite, 5246 pcnetIOPortAPromRead, NULL, NULL, "PCnet APROM"); 5247 if (RT_FAILURE(rc)) 5248 return rc; 5249 rc = PDMDevHlpIOPortRegister(pDevIns, pThis->IOPortBase + 0x10, 0x10, 0, pcnetIOPortWrite, 5250 pcnetIOPortRead, NULL, NULL, "PCnet"); 5251 if (RT_FAILURE(rc)) 5252 return rc; 5253 5254 if (pDevIns->fRCEnabled) 5255 { 5256 rc = PDMDevHlpIOPortRegisterRC(pDevIns, pThis->IOPortBase, 0x10, 0, "pcnetIOPortAPromWrite", 5257 "pcnetIOPortAPromRead", NULL, NULL, "PCnet APROM"); 5258 if (RT_FAILURE(rc)) 5259 return rc; 5260 rc = PDMDevHlpIOPortRegisterRC(pDevIns, pThis->IOPortBase + 0x10, 0x10, 0, "pcnetIOPortWrite", 5261 "pcnetIOPortRead", NULL, NULL, "PCnet"); 5262 if (RT_FAILURE(rc)) 5263 return rc; 5264 } 5265 if (pDevIns->fR0Enabled) 5266 { 5267 rc = PDMDevHlpIOPortRegisterR0(pDevIns, pThis->IOPortBase, 0x10, 0, "pcnetIOPortAPromWrite", 5268 "pcnetIOPortAPromRead", NULL, NULL, "PCnet APROM"); 5269 if (RT_FAILURE(rc)) 5270 return rc; 5271 rc = PDMDevHlpIOPortRegisterR0(pDevIns, pThis->IOPortBase + 0x10, 0x10, 0, "pcnetIOPortWrite", 5272 "pcnetIOPortRead", NULL, NULL, "PCnet"); 5273 if (RT_FAILURE(rc)) 5274 return rc; 5275 } 5276 5247 rc = PDMDevHlpIoPortCreateAndMap(pDevIns, pThis->IOPortBase, 0x10 /*cPorts*/, pcnetIoPortAPromWrite, pcnetIOPortAPromRead, 5248 "PCnet APROM", NULL /*paExtDesc*/, &pThis->hIoPortsIsaAProm); 5249 AssertRCReturn(rc, rc); 5250 rc = PDMDevHlpIoPortCreateAndMap(pDevIns, pThis->IOPortBase + 0x10, 0x10 /*cPorts*/, pcnetIoPortWrite, pcnetIoPortRead, 5251 "PCnet", NULL /*paExtDesc*/, &pThis->hIoPortsIsa); 5252 AssertRCReturn(rc, rc); 5277 5253 } 5278 5254 … … 5467 5443 PPCNETSTATE pThis = PDMDEVINS_2_DATA(pDevIns, PPCNETSTATE); 5468 5444 5445 /* Critical section setup: */ 5469 5446 int rc = PDMDevHlpSetDeviceCritSect(pDevIns, &pThis->CritSect); 5470 5447 AssertRCReturn(rc, rc); 5448 5449 /* PCI I/O ports: */ 5450 if (pThis->hIoPortsPciAProm != NIL_IOMIOPORTHANDLE) 5451 { 5452 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsPciAProm, pcnetIoPortAPromWrite, pcnetIOPortAPromRead, NULL /*pvUser*/); 5453 AssertRCReturn(rc, rc); 5454 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsPci, pcnetIoPortWrite, pcnetIoPortRead, NULL /*pvUser*/); 5455 AssertRCReturn(rc, rc); 5456 } 5457 else 5458 Assert(pThis->hIoPortsPci == NIL_IOMIOPORTHANDLE); 5459 5460 /* ISA I/O ports: */ 5461 if (pThis->hIoPortsIsaAProm != NIL_IOMIOPORTHANDLE) 5462 { 5463 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsIsaAProm, pcnetIoPortAPromWrite, pcnetIOPortAPromRead, NULL /*pvUser*/); 5464 AssertRCReturn(rc, rc); 5465 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsIsa, pcnetIoPortWrite, pcnetIoPortRead, NULL /*pvUser*/); 5466 AssertRCReturn(rc, rc); 5467 } 5468 else 5469 Assert(pThis->hIoPortsIsa == NIL_IOMIOPORTHANDLE); 5471 5470 5472 5471 return VINF_SUCCESS; … … 5524 5523 #elif defined(IN_RING0) 5525 5524 /* .pfnEarlyConstruct = */ NULL, 5526 /* .pfnConstruct = */ NULL,5525 /* .pfnConstruct = */ pcnetRZConstruct, 5527 5526 /* .pfnDestruct = */ NULL, 5528 5527 /* .pfnFinalDestruct = */ NULL, … … 5537 5536 /* .pfnReserved7 = */ NULL, 5538 5537 #elif defined(IN_RC) 5539 /* .pfnConstruct = */ NULL,5538 /* .pfnConstruct = */ pcnetRZConstruct, 5540 5539 /* .pfnReserved0 = */ NULL, 5541 5540 /* .pfnReserved1 = */ NULL,
Note:
See TracChangeset
for help on using the changeset viewer.