- Timestamp:
- Dec 14, 2018 5:18:44 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127491
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r76060 r76224 9 9 * AMD Am79C973/Am79C975 PCnet-FAST III Single-Chip 10/100 Mbps PCI Ethernet Controller datasheet 10 10 * AMD publication# 20510 Rev:E Amendment/0 Issue Date: August 2000 11 * and 12 * AMD Am79C960 PCnet-ISA III Single-Chip ISA Single-Chip Ethernet Controller datasheet 13 * AMD publication# 16907 Rev:B Amendment/0 Issue Date: May 1994 11 14 */ 12 15 13 16 /* 14 * Copyright (C) 2006-201 7Oracle Corporation17 * Copyright (C) 2006-2018 Oracle Corporation 15 18 * 16 19 * This file is part of VirtualBox Open Source Edition (OSE), as … … 233 236 /** @name Version for the PCnet/FAST III 79C973 card 234 237 * @{ */ 235 #define CSR_VERSION_LOW_79C973 0x5003 /* the lower two bits must be 11b for AMD */ 236 #define CSR_VERSION_LOW_79C970A 0x1003 /* the lower two bits must be 11b for AMD */ 238 #define CSR_VERSION_LOW_79C973 0x5003 /* the lower two bits are always 11b for AMD (JEDEC) */ 239 #define CSR_VERSION_LOW_79C970A 0x1003 240 #define CSR_VERSION_LOW_79C960 0x0003 237 241 #define CSR_VERSION_HIGH 0x0262 238 242 /** @} */ … … 245 249 * Structures and Typedefs * 246 250 *********************************************************************************************************************************/ 251 252 /** 253 * Emulated device types. 254 */ 255 enum PCNET_DEVICE_TYPE 256 { 257 DEV_AM79C970A = 0, /* PCnet-PCI II (PCI, 10 Mbps). */ 258 DEV_AM79C973 = 1, /* PCnet-FAST III (PCI, 10/100 Mbps). */ 259 DEV_AM79C960 = 2 /* PCnet-ISA (ISA, 10 Mbps, NE2100/NE1500T compatible) */ 260 }; 261 262 #define PCNET_IS_PCI(pcnet) ((pcnet->uDevType == DEV_AM79C970A) || (pcnet->uDevType == DEV_AM79C973)) 263 #define PCNET_IS_ISA(pcnet) (pcnet->uDevType == DEV_AM79C960) 264 265 /* 266 * Note: Old adapters, including the original NE2100/NE1500T, used the LANCE (Am7990) or 267 * possibly C-LANCE (Am79C90) chips. Those only had the RAP/RDP register and any PROMs were 268 * decoded by external circuitry; as a consequence, different vendors used different layouts. 269 * Several different variants are known: 270 * 271 * 1) Racal Interlan NI6510 (before PCnet-based EtherBlaster variants): 272 * - RDP at iobase + 0x00 (16-bit) 273 * - RAP at iobase + 0x02 (16-bit) 274 * - reset at iobase + 0x04 (8-bit) 275 * - config at iobase + 0x05 (8-bit) 276 * - PROM at iobase + 0x08 277 * 278 * 2) BICC Data Networks ISOLAN 4110-2 (ISA) / 4110-3 (MCA): 279 * - PROM at iobase + 0x00 280 * - reset at iobase + 0x04 281 * - config at iobase + 0x05 282 * - RDP at iobase + 0x0c (16-bit) 283 * - RAP at iobase + 0x0e (16-bit) 284 * 285 * 3) Novell NE2100/NE1500T, AMD Am2100, all PCnet chips: 286 * - PROM at iobase + 0x00 287 * - RDP at iobase + 0x10 (16-bit) 288 * - RAP at iobase + 0x12 (16-bit) 289 * - reset at iobase + 0x14 (16-bit) 290 * - BDP/IDP at iobase + 0x16 (16-bit) 291 * 292 * There were also non-busmastering LANCE adapters, such as the BICC 4110-1, DEC DEPCA, 293 * or NTI 16. Those are uninteresting. 294 */ 295 247 296 /** 248 297 * PCNET state. … … 316 365 /** Alignment padding. */ 317 366 uint32_t Alignment1; 367 318 368 /** Register Address Pointer */ 319 369 uint32_t u32RAP; … … 343 393 uint8_t abRecvBuf[4096]; 344 394 395 /** The configured IRQ for ISA operation. */ 396 uint8_t uIsaIrq; 345 397 /** Alignment padding. */ 346 uint 32_t Alignment2;398 uint8_t Alignment2[3]; 347 399 348 400 /** Size of a RX/TX descriptor (8 or 16 bytes according to SWSTYLE */ … … 353 405 /** Base address of the MMIO region. */ 354 406 RTGCPHYS32 MMIOBase; 355 /** Base port of the I/O space region. */ 407 408 /** Base port of the I/O space region (PCI). */ 356 409 RTIOPORT IOPortBase; 357 410 /** If set the link is currently up. */ … … 364 417 /** The configured MAC address. */ 365 418 RTMAC MacConfigured; 366 /** Alignment padding. */367 uint8_t Alignment3[2];419 /** Base port of the I/O space region (ISA). */ 420 RTIOPORT IOPortBaseISA; 368 421 369 422 /** The LED. */ … … 403 456 /* True if R0 context is enabled. */ 404 457 bool fR0Enabled; 405 /* True: Emulate Am79C973. False: Emulate 79C970A. */ 406 bool fAm79C973; 458 /* Emulated device type. */ 459 uint8_t uDevType; 460 /* Backwards compatible shared memory region. */ 461 bool fSharedRegion; 407 462 /* Link speed to be reported through CSR68. */ 408 bool fSharedRegion;409 /* Alignment padding. */410 463 uint32_t u32LinkSpeed; 411 464 /* MS to wait before we enable the link. */ … … 660 713 661 714 /** 715 * Memory write helper to handle PCI/ISA differences. 716 * 717 * @returns nothing. 718 * @param pThis Pointer to the BusLogic device instance 719 * @param GCPhys Guest physical memory address 720 * @param pvBuf Host side buffer address 721 * @param cbWrite Number of bytes to write 722 */ 723 static void pcnetPhysWrite(PPCNETSTATE pThis, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite) 724 { 725 if (!PCNET_IS_ISA(pThis)) 726 PDMDevHlpPCIPhysWrite(pThis->CTX_SUFF(pDevIns), GCPhys, pvBuf, cbWrite); 727 else 728 PDMDevHlpPhysWrite(pThis->CTX_SUFF(pDevIns), GCPhys, pvBuf, cbWrite); 729 } 730 731 /** 662 732 * Load transmit message descriptor 663 733 * Make sure we read the own flag first. … … 723 793 { 724 794 STAM_PROFILE_ADV_START(&pThis->CTX_SUFF_Z(StatTmdStore), a); 725 PPDMDEVINS pDevIns = PCNETSTATE_2_DEVINS(pThis);726 795 if (RT_UNLIKELY(BCR_SWSTYLE(pThis) == 0)) 727 796 { … … 732 801 xda[3] = ((uint32_t *)tmd)[2] >> 16; 733 802 xda[1] |= 0x8000; 734 PDMDevHlpPCIPhysWrite(pDevIns, addr, (void*)&xda[0], sizeof(xda));803 pcnetPhysWrite(pThis, addr, (void*)&xda[0], sizeof(xda)); 735 804 xda[1] &= ~0x8000; 736 PDMDevHlpPCIPhysWrite(pDevIns, addr+3, (uint8_t*)xda + 3, 1);805 pcnetPhysWrite(pThis, addr+3, (uint8_t*)xda + 3, 1); 737 806 } 738 807 else if (RT_LIKELY(BCR_SWSTYLE(pThis) != 3)) 739 808 { 740 809 ((uint32_t*)tmd)[1] |= 0x80000000; 741 PDMDevHlpPCIPhysWrite(pDevIns, addr, (void*)tmd, 16);810 pcnetPhysWrite(pThis, addr, (void*)tmd, 16); 742 811 ((uint32_t*)tmd)[1] &= ~0x80000000; 743 PDMDevHlpPCIPhysWrite(pDevIns, addr+7, (uint8_t*)tmd + 7, 1);812 pcnetPhysWrite(pThis, addr+7, (uint8_t*)tmd + 7, 1); 744 813 } 745 814 else … … 751 820 xda[3] = ((uint32_t *)tmd)[3]; 752 821 xda[1] |= 0x80000000; 753 PDMDevHlpPCIPhysWrite(pDevIns, addr, (void*)&xda[0], sizeof(xda));822 pcnetPhysWrite(pThis, addr, (void*)&xda[0], sizeof(xda)); 754 823 xda[1] &= ~0x80000000; 755 PDMDevHlpPCIPhysWrite(pDevIns, addr+7, (uint8_t*)xda + 7, 1);824 pcnetPhysWrite(pThis, addr+7, (uint8_t*)xda + 7, 1); 756 825 } 757 826 STAM_PROFILE_ADV_STOP(&pThis->CTX_SUFF_Z(StatTmdStore), a); … … 821 890 DECLINLINE(void) pcnetRmdStorePassHost(PPCNETSTATE pThis, RMD *rmd, RTGCPHYS32 addr) 822 891 { 823 PPDMDEVINS pDevIns = PCNETSTATE_2_DEVINS(pThis);824 892 if (RT_UNLIKELY(BCR_SWSTYLE(pThis) == 0)) 825 893 { … … 830 898 rda[3] = ((uint32_t *)rmd)[2] & 0xffff; 831 899 rda[1] |= 0x8000; 832 PDMDevHlpPCIPhysWrite(pDevIns, addr, (void*)&rda[0], sizeof(rda));900 pcnetPhysWrite(pThis, addr, (void*)&rda[0], sizeof(rda)); 833 901 rda[1] &= ~0x8000; 834 PDMDevHlpPCIPhysWrite(pDevIns, addr+3, (uint8_t*)rda + 3, 1);902 pcnetPhysWrite(pThis, addr+3, (uint8_t*)rda + 3, 1); 835 903 } 836 904 else if (RT_LIKELY(BCR_SWSTYLE(pThis) != 3)) 837 905 { 838 906 ((uint32_t*)rmd)[1] |= 0x80000000; 839 PDMDevHlpPCIPhysWrite(pDevIns, addr, (void*)rmd, 16);907 pcnetPhysWrite(pThis, addr, (void*)rmd, 16); 840 908 ((uint32_t*)rmd)[1] &= ~0x80000000; 841 PDMDevHlpPCIPhysWrite(pDevIns, addr+7, (uint8_t*)rmd + 7, 1);909 pcnetPhysWrite(pThis, addr+7, (uint8_t*)rmd + 7, 1); 842 910 } 843 911 else … … 849 917 rda[3] = ((uint32_t *)rmd)[3]; 850 918 rda[1] |= 0x80000000; 851 PDMDevHlpPCIPhysWrite(pDevIns, addr, (void*)&rda[0], sizeof(rda));919 pcnetPhysWrite(pThis, addr, (void*)&rda[0], sizeof(rda)); 852 920 rda[1] &= ~0x80000000; 853 PDMDevHlpPCIPhysWrite(pDevIns, addr+7, (uint8_t*)rda + 7, 1);921 pcnetPhysWrite(pThis, addr+7, (uint8_t*)rda + 7, 1); 854 922 } 855 923 } … … 870 938 cbDesc = 16; 871 939 PDMDevHlpPhysRead(pDevIns, addr, aBuf, cbDesc); 872 PDMDevHlpPCIPhysWrite(pDevIns, addr, aBuf, cbDesc);940 pcnetPhysWrite(pThis, addr, aBuf, cbDesc); 873 941 } 874 942 #endif /* IN_RING3 */ … … 1227 1295 CSR_XMTRL(pThis) = 1; 1228 1296 pThis->aCSR[80] = 0x1410; 1229 pThis->aCSR[88] = pThis->fAm79C973 ? CSR_VERSION_LOW_79C973 : CSR_VERSION_LOW_79C970A; 1230 pThis->aCSR[89] = CSR_VERSION_HIGH; 1297 switch (pThis->uDevType) 1298 { 1299 default: 1300 case DEV_AM79C970A: 1301 pThis->aCSR[88] = CSR_VERSION_LOW_79C970A; 1302 pThis->aCSR[89] = CSR_VERSION_HIGH; 1303 break; 1304 case DEV_AM79C973: 1305 pThis->aCSR[88] = CSR_VERSION_LOW_79C973; 1306 pThis->aCSR[89] = CSR_VERSION_HIGH; 1307 break; 1308 case DEV_AM79C960: 1309 pThis->aCSR[88] = CSR_VERSION_LOW_79C960; 1310 pThis->aCSR[89] = 0x0000; 1311 break; 1312 } 1231 1313 pThis->aCSR[94] = 0x0000; 1232 1314 pThis->aCSR[100] = 0x0200; … … 1323 1405 if (RT_UNLIKELY(iISR != pThis->iISR)) 1324 1406 { 1325 Log(("#%d INTA=%d\n", PCNET_INST_NR, iISR)); 1326 PDMDevHlpPCISetIrq(PCNETSTATE_2_DEVINS(pThis), 0, iISR); 1407 if (!PCNET_IS_ISA(pThis)) 1408 { 1409 Log(("#%d INTA=%d\n", PCNET_INST_NR, iISR)); 1410 PDMDevHlpPCISetIrq(PCNETSTATE_2_DEVINS(pThis), 0, iISR); 1411 } 1412 else 1413 { 1414 Log(("#%d IRQ=%d, state=%d\n", PCNET_INST_NR, pThis->uIsaIrq, iISR)); 1415 PDMDevHlpISASetIrq(PCNETSTATE_2_DEVINS(pThis), pThis->uIsaIrq, iISR); 1416 } 1327 1417 pThis->iISR = iISR; 1328 1418 } … … 1904 1994 */ 1905 1995 PDMCritSectLeave(&pThis->CritSect); 1906 PDMDevHlpPCIPhysWrite(pDevIns, rbadr, src, cbBuf);1996 pcnetPhysWrite(pThis, rbadr, src, cbBuf); 1907 1997 int rc = PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY); 1908 1998 AssertReleaseRC(rc); … … 1951 2041 * handler associated with it. See above for additional comments. */ 1952 2042 PDMCritSectLeave(&pThis->CritSect); 1953 PDMDevHlpPCIPhysWrite(pDevIns, rbadr2, src, cbBuf);2043 pcnetPhysWrite(pThis, rbadr2, src, cbBuf); 1954 2044 rc = PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY); 1955 2045 AssertReleaseRC(rc); … … 3077 3167 val &= 0xffff; 3078 3168 pThis->aBCR[BCR_STVAL] = val; 3079 if (pThis-> fAm79C973)3169 if (pThis->uDevType == DEV_AM79C973) 3080 3170 TMTimerSetNano(pThis->CTX_SUFF(pTimerSoftInt), 12800U * val); 3081 3171 break; … … 3230 3320 3231 3321 case BCR_MIIMDR: 3232 if ( pThis->fAm79C973&& (pThis->aBCR[BCR_MIIADDR] >> 5 & 0x1f) == 0)3322 if ((pThis->uDevType == DEV_AM79C973) && (pThis->aBCR[BCR_MIIADDR] >> 5 & 0x1f) == 0) 3233 3323 { 3234 3324 uint32_t miiaddr = pThis->aBCR[BCR_MIIADDR] & 0x1f; … … 3259 3349 memcpy(pThis->aPROM, &pThis->MacConfigured, sizeof(pThis->MacConfigured)); 3260 3350 pThis->aPROM[ 8] = 0x00; 3261 pThis->aPROM[ 9] = 0x 11;3351 pThis->aPROM[ 9] = 0x00; /* 0x00/0xFF=ISA, 0x01=PnP, 0x10=VLB, 0x11=PCI */ 3262 3352 pThis->aPROM[12] = pThis->aPROM[13] = 0x00; 3263 3353 pThis->aPROM[14] = pThis->aPROM[15] = 0x57; … … 3975 4065 * Show info. 3976 4066 */ 4067 const char *pcszModel; 4068 switch (pThis->uDevType) 4069 { 4070 case DEV_AM79C970A: pcszModel = "AM79C970A"; break; 4071 case DEV_AM79C973: pcszModel = "AM79C973"; break; 4072 case DEV_AM79C960: pcszModel = "AM79C960"; break; 4073 default: pcszModel = "Unknown"; break; 4074 } 3977 4075 pHlp->pfnPrintf(pHlp, 3978 4076 "pcnet #%d: port=%RTiop mmio=%RX32 mac-cfg=%RTmac %s%s%s\n", 3979 4077 pDevIns->iInstance, 3980 4078 pThis->IOPortBase, pThis->MMIOBase, &pThis->MacConfigured, 3981 p This->fAm79C973 ? "Am79C973" : "Am79C970A", pThis->fGCEnabled ? " RC" : "", pThis->fR0Enabled ? " R0" : "");4079 pcszModel, pThis->fGCEnabled ? " RC" : "", pThis->fR0Enabled ? " R0" : ""); 3982 4080 3983 4081 PDMCritSectEnter(&pThis->CritSect, VERR_INTERNAL_ERROR); /* Take it here so we know why we're hanging... */ … … 4217 4315 { 4218 4316 SSMR3PutMem(pSSM, &pThis->MacConfigured, sizeof(pThis->MacConfigured)); 4219 SSMR3Put Bool(pSSM, pThis->fAm79C973); /* >= If version 0.8 */4317 SSMR3PutU8(pSSM, pThis->uDevType); 4220 4318 SSMR3PutU32(pSSM, pThis->u32LinkSpeed); 4221 4319 } … … 4280 4378 return rc; 4281 4379 #endif 4282 if (pThis-> fAm79C973)4380 if (pThis->uDevType == DEV_AM79C973) 4283 4381 rc = TMR3TimerSave(pThis->CTX_SUFF(pTimerSoftInt), pSSM); 4284 4382 return rc; … … 4371 4469 LogRel(("PCnet#%u: The mac address differs: config=%RTmac saved=%RTmac\n", PCNET_INST_NR, &pThis->MacConfigured, &Mac)); 4372 4470 4373 bool fAm79C973;4374 rc = SSMR3Get Bool(pSSM, &fAm79C973);4471 uint8_t uDevType; 4472 rc = SSMR3GetU8(pSSM, &uDevType); 4375 4473 AssertRCReturn(rc, rc); 4376 if (pThis-> fAm79C973 != fAm79C973)4377 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("The fAm79C973 flag differs: config=%RTbool saved=%RTbool"), pThis->fAm79C973, fAm79C973);4474 if (pThis->uDevType != uDevType) 4475 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("The uDevType setting differs: config=%u saved=%u"), pThis->uDevType, uDevType); 4378 4476 4379 4477 uint32_t u32LinkSpeed; … … 4390 4488 TMR3TimerLoad(pThis->CTX_SUFF(pTimerPoll), pSSM); 4391 4489 #endif 4392 if (pThis-> fAm79C973)4490 if (pThis->uDevType == DEV_AM79C973) 4393 4491 { 4394 4492 if ( SSM_VERSION_MAJOR(uVersion) > 0 … … 4843 4941 pThis->pTimerPollRC = TMTimerRCPtr(pThis->pTimerPollR3); 4844 4942 #endif 4845 if (pThis-> fAm79C973)4943 if (pThis->uDevType == DEV_AM79C973) 4846 4944 pThis->pTimerSoftIntRC = TMTimerRCPtr(pThis->pTimerSoftIntR3); 4847 4945 } … … 4890 4988 * Validate configuration. 4891 4989 */ 4892 if (!CFGMR3AreValuesValid(pCfg, "MAC\0" "CableConnected\0" "Am79C973\0" " LineSpeed\0" "GCEnabled\0" "R0Enabled\0" "PrivIfEnabled\0" "LinkUpDelay\0"))4990 if (!CFGMR3AreValuesValid(pCfg, "MAC\0" "CableConnected\0" "Am79C973\0" "ChipType\0" "LineSpeed\0" "GCEnabled\0" "R0Enabled\0" "PrivIfEnabled\0" "LinkUpDelay\0")) 4893 4991 return PDMDEV_SET_ERROR(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES, 4894 4992 N_("Invalid configuration for pcnet device")); … … 4906 5004 N_("Configuration error: Failed to get the \"CableConnected\" value")); 4907 5005 4908 rc = CFGMR3QueryBoolDef(pCfg, "Am79C973", &pThis->fAm79C973, false); 5006 /* 5007 * Determine the model. 5008 */ 5009 char szChipType[16]; 5010 rc = CFGMR3QueryStringDef(pCfg, "ChipType", &szChipType[0], sizeof(szChipType), "Am79C970A"); 5011 if (RT_FAILURE(rc)) 5012 return PDMDEV_SET_ERROR(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES, 5013 N_("Configuration error: Querying \"ChipType\" as string failed")); 5014 5015 if (!strcmp(szChipType, "Am79C970A")) 5016 pThis->uDevType = DEV_AM79C970A; /* 10 Mbps PCnet-PCI II. */ 5017 else if (!strcmp(szChipType, "Am79C973")) 5018 pThis->uDevType = DEV_AM79C970A; /* 10/100 Mbps PCnet-FAST III. */ 5019 else if (!strcmp(szChipType, "Am79C960")) 5020 pThis->uDevType = DEV_AM79C960; /* 10 Mbps PCnet-ISA, NE2100/Am2100 compatible. */ 5021 else 5022 { 5023 return PDMDevHlpVMSetError(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES, RT_SRC_POS, 5024 N_("Configuration error: The \"ChipType\" value \"%s\" is unsupported"), 5025 szChipType); 5026 } 5027 5028 5029 /* 5030 * Process the old model configuration. If present, it must take precedence for saved state compatibility. 5031 */ 5032 bool fAm79C973; 5033 rc = CFGMR3QueryBoolDef(pCfg, "Am79C973", &fAm79C973, false); 4909 5034 if (RT_FAILURE(rc)) 4910 5035 return PDMDEV_SET_ERROR(pDevIns, rc, 4911 5036 N_("Configuration error: Failed to get the \"Am79C973\" value")); 5037 if (fAm79C973) 5038 pThis->uDevType = DEV_AM79C973; 5039 5040 /* 5041 * Process ISA configuration options. The defaults are chosen to be NE2100/Am2100 compatible. 5042 */ 5043 rc = CFGMR3QueryPortDef(pCfg, "Port", &pThis->IOPortBaseISA, 0x300); 5044 if (RT_FAILURE(rc)) 5045 return PDMDEV_SET_ERROR(pDevIns, rc, 5046 N_("Configuration error: Failed to get the \"Port\" value")); 5047 5048 rc = CFGMR3QueryU8Def(pCfg, "IRQ", &pThis->uIsaIrq, 3); 5049 if (RT_FAILURE(rc)) 5050 return PDMDEV_SET_ERROR(pDevIns, rc, 5051 N_("Configuration error: Failed to get the \"IRQ\" value")); 4912 5052 4913 5053 rc = CFGMR3QueryU32Def(pCfg, "LineSpeed", &pThis->u32LinkSpeed, 1000000); /* 1GBit/s (in kbps units)*/ … … 4973 5113 pThis->PciDev.abConfig[0x06] = 0x80; /* status */ 4974 5114 pThis->PciDev.abConfig[0x07] = 0x02; 4975 pThis->PciDev.abConfig[0x08] = pThis-> fAm79C973 ? 0x40 : 0x10; /* revision */5115 pThis->PciDev.abConfig[0x08] = pThis->uDevType == DEV_AM79C973 ? 0x40 : 0x10; /* revision */ 4976 5116 pThis->PciDev.abConfig[0x09] = 0x00; 4977 5117 pThis->PciDev.abConfig[0x0a] = 0x00; /* ethernet network controller */ … … 5011 5151 * Register the PCI device, its I/O regions, the timer and the saved state item. 5012 5152 */ 5013 rc = PDMDevHlpPCIRegister(pDevIns, &pThis->PciDev); 5014 if (RT_FAILURE(rc)) 5015 return rc; 5016 rc = PDMDevHlpPCIIORegionRegister(pDevIns, 0, PCNET_IOPORT_SIZE, PCI_ADDRESS_SPACE_IO, pcnetIOPortMap); 5017 if (RT_FAILURE(rc)) 5018 return rc; 5019 rc = PDMDevHlpPCIIORegionRegister(pDevIns, 1, PCNET_PNPMMIO_SIZE, PCI_ADDRESS_SPACE_MEM, pcnetMMIOMap); 5020 if (RT_FAILURE(rc)) 5021 return rc; 5153 if (PCNET_IS_PCI(pThis)) 5154 { 5155 rc = PDMDevHlpPCIRegister(pDevIns, &pThis->PciDev); 5156 if (RT_FAILURE(rc)) 5157 return rc; 5158 rc = PDMDevHlpPCIIORegionRegister(pDevIns, 0, PCNET_IOPORT_SIZE, PCI_ADDRESS_SPACE_IO, pcnetIOPortMap); 5159 if (RT_FAILURE(rc)) 5160 return rc; 5161 rc = PDMDevHlpPCIIORegionRegister(pDevIns, 1, PCNET_PNPMMIO_SIZE, PCI_ADDRESS_SPACE_MEM, pcnetMMIOMap); 5162 if (RT_FAILURE(rc)) 5163 return rc; 5164 } 5165 5166 /* 5167 * Register ISA I/O ranges for PCnet-ISA. 5168 */ 5169 if (PCNET_IS_ISA(pThis)) 5170 { 5171 rc = PDMDevHlpIOPortRegister(pDevIns, pThis->IOPortBaseISA, 0x10, 0, pcnetIOPortAPromWrite, 5172 pcnetIOPortAPromRead, NULL, NULL, "PCnet APROM"); 5173 if (RT_FAILURE(rc)) 5174 return rc; 5175 rc = PDMDevHlpIOPortRegister(pDevIns, pThis->IOPortBaseISA + 0x10, 0x10, 0, pcnetIOPortWrite, 5176 pcnetIOPortRead, NULL, NULL, "PCnet"); 5177 if (RT_FAILURE(rc)) 5178 return rc; 5179 5180 if (pThis->fGCEnabled) 5181 { 5182 rc = PDMDevHlpIOPortRegisterRC(pDevIns, pThis->IOPortBaseISA, 0x10, 0, "pcnetIOPortAPromWrite", 5183 "pcnetIOPortAPromRead", NULL, NULL, "PCnet APROM"); 5184 if (RT_FAILURE(rc)) 5185 return rc; 5186 rc = PDMDevHlpIOPortRegisterRC(pDevIns, pThis->IOPortBaseISA + 0x10, 0x10, 0, "pcnetIOPortWrite", 5187 "pcnetIOPortRead", NULL, NULL, "PCnet"); 5188 if (RT_FAILURE(rc)) 5189 return rc; 5190 } 5191 if (pThis->fR0Enabled) 5192 { 5193 rc = PDMDevHlpIOPortRegisterR0(pDevIns, pThis->IOPortBaseISA, 0x10, 0, "pcnetIOPortAPromWrite", 5194 "pcnetIOPortAPromRead", NULL, NULL, "PCnet APROM"); 5195 if (RT_FAILURE(rc)) 5196 return rc; 5197 rc = PDMDevHlpIOPortRegisterR0(pDevIns, pThis->IOPortBaseISA + 0x10, 0x10, 0, "pcnetIOPortWrite", 5198 "pcnetIOPortRead", NULL, NULL, "PCnet"); 5199 if (RT_FAILURE(rc)) 5200 return rc; 5201 } 5202 5203 } 5204 5022 5205 5023 5206 #ifdef PCNET_NO_POLLING … … 5047 5230 TMR3TimerSetCritSect(pThis->pTimerPollR3, &pThis->CritSect); 5048 5231 #endif 5049 if (pThis-> fAm79C973)5232 if (pThis->uDevType == DEV_AM79C973) 5050 5233 { 5051 5234 /* Software Interrupt timer */ -
trunk/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp
r76180 r76224 596 596 GEN_CHECK_OFF(PCNETSTATE, fGCEnabled); 597 597 GEN_CHECK_OFF(PCNETSTATE, fR0Enabled); 598 GEN_CHECK_OFF(PCNETSTATE, fAm79C973); 599 GEN_CHECK_OFF(PCNETSTATE, u32LinkSpeed); 598 GEN_CHECK_OFF(PCNETSTATE, uDevType); 600 599 GEN_CHECK_OFF(PCNETSTATE, StatReceiveBytes); 601 600 GEN_CHECK_OFF(PCNETSTATE, StatTransmitBytes);
Note:
See TracChangeset
for help on using the changeset viewer.