|
View:
New views
5 Messages
—
Rating Filter:
Alert me
|
|
|
another re(4) diff for testing.If you have any of the newer PCIe re(4) chipsets in your system
(especially the 8168C since that is all we have seen so far) please test the following diff which adds support for TX/RX checksum offload. Index: re.c =================================================================== RCS file: /cvs/src/sys/dev/ic/re.c,v retrieving revision 1.84 diff -u -p -r1.84 re.c --- re.c 15 Jul 2008 13:21:17 -0000 1.84 +++ re.c 17 Jul 2008 13:36:04 -0000 @@ -1053,11 +1053,8 @@ re_attach(struct rl_softc *sc, const cha IFQ_SET_MAXLEN(&ifp->if_snd, RL_TX_QLEN); IFQ_SET_READY(&ifp->if_snd); - - ifp->if_capabilities = IFCAP_VLAN_MTU; - if ((sc->rl_flags & RL_FLAG_DESCV2) == 0) - ifp->if_capabilities |= IFCAP_CSUM_IPv4 | - IFCAP_CSUM_TCPv4 | IFCAP_CSUM_UDPv4; + ifp->if_capabilities = IFCAP_VLAN_MTU | IFCAP_CSUM_IPv4 | + IFCAP_CSUM_TCPv4 | IFCAP_CSUM_UDPv4; #if NVLAN > 0 ifp->if_capabilities |= IFCAP_VLAN_HWTAGGING; @@ -1278,7 +1275,7 @@ re_rxeof(struct rl_softc *sc) int i, total_len; struct rl_desc *cur_rx; struct rl_rxsoft *rxs; - u_int32_t rxstat; + u_int32_t rxstat, rxvlan; ifp = &sc->sc_arpcom.ac_if; @@ -1287,6 +1284,7 @@ re_rxeof(struct rl_softc *sc) RL_RXDESCSYNC(sc, i, BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE); rxstat = letoh32(cur_rx->rl_cmdstat); + rxvlan = letoh32(cur_rx->rl_vlanctl); RL_RXDESCSYNC(sc, i, BUS_DMASYNC_PREREAD); if ((rxstat & RL_RDESC_STAT_OWN) != 0) break; @@ -1399,7 +1397,19 @@ re_rxeof(struct rl_softc *sc) /* Do RX checksumming */ if (sc->rl_flags & RL_FLAG_DESCV2) { - /* XXX V2 CSUM */ + /* Check IP header checksum */ + if ((rxstat & RL_RDESC_STAT_PROTOID) && + !(rxstat & RL_RDESC_STAT_IPSUMBAD) && + (rxvlan & RL_RDESC_IPV4)) + m->m_pkthdr.csum_flags |= M_IPV4_CSUM_IN_OK; + + /* Check TCP/UDP checksum */ + if (((rxstat & RL_RDESC_STAT_TCP) && + !(rxstat & RL_RDESC_STAT_TCPSUMBAD)) || + ((rxstat & RL_RDESC_STAT_UDP) && + !(rxstat & RL_RDESC_STAT_UDPSUMBAD))) + m->m_pkthdr.csum_flags |= M_TCP_CSUM_IN_OK | + M_UDP_CSUM_IN_OK; } else { /* Check IP header checksum */ if ((rxstat & RL_RDESC_STAT_PROTOID) && @@ -1614,11 +1624,19 @@ re_encap(struct rl_softc *sc, struct mbu if ((m->m_pkthdr.csum_flags & (M_IPV4_CSUM_OUT|M_TCPV4_CSUM_OUT|M_UDPV4_CSUM_OUT)) != 0) { - rl_flags |= RL_TDESC_CMD_IPCSUM; - if (m->m_pkthdr.csum_flags & M_TCPV4_CSUM_OUT) - rl_flags |= RL_TDESC_CMD_TCPCSUM; - if (m->m_pkthdr.csum_flags & M_UDPV4_CSUM_OUT) - rl_flags |= RL_TDESC_CMD_UDPCSUM; + if (sc->rl_flags & RL_FLAG_DESCV2) { + rl_flags |= RL_TDESC_CMD_IPCSUMV2; + if (m->m_pkthdr.csum_flags & M_TCPV4_CSUM_OUT) + rl_flags |= RL_TDESC_CMD_TCPCSUMV2; + if (m->m_pkthdr.csum_flags & M_UDPV4_CSUM_OUT) + rl_flags |= RL_TDESC_CMD_UDPCSUMV2; + } else { + rl_flags |= RL_TDESC_CMD_IPCSUM; + if (m->m_pkthdr.csum_flags & M_TCPV4_CSUM_OUT) + rl_flags |= RL_TDESC_CMD_TCPCSUM; + if (m->m_pkthdr.csum_flags & M_UDPV4_CSUM_OUT) + rl_flags |= RL_TDESC_CMD_UDPCSUM; + } } txq = &sc->rl_ldata.rl_txq[*idx]; @@ -1634,7 +1652,8 @@ re_encap(struct rl_softc *sc, struct mbu nsegs = map->dm_nsegs; pad = 0; - if (m->m_pkthdr.len <= RL_IP4CSUMTX_PADLEN && + if ((sc->rl_flags & RL_FLAG_DESCV2) == 0 && + m->m_pkthdr.len <= RL_IP4CSUMTX_PADLEN && (rl_flags & RL_TDESC_CMD_IPCSUM) != 0) { pad = 1; nsegs++; Index: rtl81x9reg.h =================================================================== RCS file: /cvs/src/sys/dev/ic/rtl81x9reg.h,v retrieving revision 1.49 diff -u -p -r1.49 rtl81x9reg.h --- rtl81x9reg.h 15 Jul 2008 13:21:17 -0000 1.49 +++ rtl81x9reg.h 17 Jul 2008 13:16:52 -0000 @@ -528,6 +528,10 @@ struct rl_desc { #define RL_TDESC_VLANCTL_TAG 0x00020000 /* Insert VLAN tag */ #define RL_TDESC_VLANCTL_DATA 0x0000FFFF /* TAG data */ +/* RTL8168C/RTL8168CP/RTL8111C/RTL8111CP */ +#define RL_TDESC_CMD_IPCSUMV2 0x20000000 +#define RL_TDESC_CMD_TCPCSUMV2 0x40000000 +#define RL_TDESC_CMD_UDPCSUMV2 0x80000000 /* * Error bits are valid only on the last descriptor of a frame @@ -565,6 +569,8 @@ struct rl_desc { #define RL_RDESC_STAT_RUNT 0x00080000 /* runt packet received */ #define RL_RDESC_STAT_CRCERR 0x00040000 /* CRC error */ #define RL_RDESC_STAT_PROTOID 0x00030000 /* Protocol type */ +#define RL_RDESC_STAT_UDP 0x00020000 /* UDP, 8168C/CP, 8111C/CP */ +#define RL_RDESC_STAT_TCP 0x00010000 /* TCP, 8168C/CP, 8111C/CP */ #define RL_RDESC_STAT_IPSUMBAD 0x00008000 /* IP header checksum bad */ #define RL_RDESC_STAT_UDPSUMBAD 0x00004000 /* UDP checksum bad */ #define RL_RDESC_STAT_TCPSUMBAD 0x00002000 /* TCP checksum bad */ @@ -576,6 +582,9 @@ struct rl_desc { #define RL_RDESC_VLANCTL_TAG 0x00010000 /* VLAN tag available (rl_vlandata valid)*/ #define RL_RDESC_VLANCTL_DATA 0x0000FFFF /* TAG data */ +/* RTL8168C/RTL8168CP/RTL8111C/RTL8111CP */ +#define RL_RDESC_IPV6 0x80000000 +#define RL_RDESC_IPV4 0x40000000 #define RL_PROTOID_NONIP 0x00000000 #define RL_PROTOID_TCPIP 0x00010000 -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. |
|
|
Re: another re(4) diff for testing.neither diffs have made a difference on my vostro 1310, the kernel still
panics with: config_detach: forced detach of re0 failed (45) the mac address of the card is still not picked up either (either all 0's or F's) this is on the AMD64 snapshot from yesterday (16th) Sevan / Venture37 _________________________________________________________________ Invite your Facebook friends to chat on Messenger http://clk.atdmt.com/UKM/go/101719649/direct/01/ |
|
|
Re: another re(4) diff for testing.On Thu, Jul 17, 2008 at 06:11:27PM +0100, Sevan / Venture37 wrote:
> neither diffs have made a difference on my vostro 1310, the kernel still > panics with: > config_detach: forced detach of re0 failed (45) > > the mac address of the card is still not picked up either (either all 0's or > F's) > > this is on the AMD64 snapshot from yesterday (16th) i've looked in my inbox and i cannot find your dmesg. where's it? f.- |
|
|
Re: another re(4) diff for testing.OpenBSD 4.4-beta (GENERIC) #1528: Wed Jul 16 10:01:03 MDT 2008
todd@...:/usr/src/sys/arch/amd64/compile/GENERIC real mem = 2133344256 (2034MB) avail mem = 2071490560 (1975MB) User Kernel Config UKC> disable re 90 re* disabled 91 re* disabled UKC> dislb\^H \^H\^H \^Hable acpi 289 acpi0 disabled UKC> exit Continuing... mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.4 @ 0xdc010 (38 entries) bios0: vendor Dell Inc. version "A10" date 07/10/2008 bios0: Dell Inc. Vostro1310 acpi at bios0 not configured cpu0 at mainbus0: (uniprocessor) cpu0: Intel(R) Core(TM)2 Duo CPU T5670 @ 1.80GHz, 1795.79 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,EST,TM2,CX16,xTPR ,NXE,LONG cpu0: 2MB 64b/line 8-way L2 cache pci0 at mainbus0 bus 0: configuration mode 1 pchb0 at pci0 dev 0 function 0 "Intel GM965 Host" rev 0x0c ppb0 at pci0 dev 1 function 0 "Intel GM965 PCIE" rev 0x0c: irq 5 pci1 at ppb0 bus 1 vga1 at pci1 dev 0 function 0 vendor "NVIDIA", unknown product 0x0427 rev 0xa1 wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) agp0 at vga1: no integrated graphics uhci0 at pci0 dev 26 function 0 "Intel 82801H USB" rev 0x03: irq 5 uhci1 at pci0 dev 26 function 1 "Intel 82801H USB" rev 0x03: irq 11 ehci0 at pci0 dev 26 function 7 "Intel 82801H USB" rev 0x03: irq 10 usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 azalia0 at pci0 dev 27 function 0 "Intel 82801H HD Audio" rev 0x03: irq 10 azalia0: codec[s]: Realtek/0x0268 audio0 at azalia0 ppb1 at pci0 dev 28 function 0 "Intel 82801H PCIE" rev 0x03: irq 11 pci2 at ppb1 bus 2 ppb2 at pci0 dev 28 function 1 "Intel 82801H PCIE" rev 0x03: irq 5 pci3 at ppb2 bus 3 ppb3 at pci0 dev 28 function 3 "Intel 82801H PCIE" rev 0x03: irq 11 pci4 at ppb3 bus 6 ppb4 at pci0 dev 28 function 4 "Intel 82801H PCIE" rev 0x03: irq 11 pci5 at ppb4 bus 7 "Realtek 8168" rev 0x02 at pci5 dev 0 function 0 not configured uhci2 at pci0 dev 29 function 0 "Intel 82801H USB" rev 0x03: irq 10 uhci3 at pci0 dev 29 function 1 "Intel 82801H USB" rev 0x03: irq 11 uhci4 at pci0 dev 29 function 2 "Intel 82801H USB" rev 0x03: irq 10 ehci1 at pci0 dev 29 function 7 "Intel 82801H USB" rev 0x03: irq 10 ehci1: timed out waiting for BIOS usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb5 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0xf3 pci6 at ppb5 bus 8 "O2 Micro Firewire" rev 0x02 at pci6 dev 5 function 0 not configured sdhc0 at pci6 dev 5 function 2 "O2 Micro OZ711MP1 SDHC" rev 0x02: irq 10 sdmmc0 at sdhc0 "O2 Micro OZ711MP1 XDHC" rev 0x01 at pci6 dev 5 function 3 not configured pcib0 at pci0 dev 31 function 0 "Intel 82801HBM LPC" rev 0x03 pciide0 at pci0 dev 31 function 1 "Intel 82801HBM IDE" rev 0x03: DMA, channel 0 configured to compatibility, channel 1 configured to compatibility atapiscsi0 at pciide0 channel 0 drive 0 scsibus0 at atapiscsi0: 2 targets, initiator 7 cd0 at scsibus0 targ 0 lun 0: ATAPI 5/cdrom removable cd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 2 pciide0: channel 1 disabled (no drives) ahci0 at pci0 dev 31 function 2 "Intel 82801HBM AHCI" rev 0x03: irq 10, AHCI 1.1 ahci0: PHY offline on port 1 ahci0: PHY offline on port 2 scsibus1 at ahci0: 32 targets, initiator 32 sd0 at scsibus1 targ 0 lun 0: SCSI3 0/direct fixed sd0: 152627MB, 19457 cyl, 255 head, 63 sec, 512 bytes/sec, 312581808 sec total ichiic0 at pci0 dev 31 function 3 "Intel 82801H SMBus" rev 0x03: irq 10 iic0 at ichiic0 spdmem0 at iic0 addr 0x50: 1GB DDR2 SDRAM non-parity PC2-5300CL5 SO-DIMM spdmem1 at iic0 addr 0x52: 1GB DDR2 SDRAM non-parity PC2-5300CL5 SO-DIMM usb2 at uhci0: USB revision 1.0 uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb3 at uhci1: USB revision 1.0 uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb4 at uhci2: USB revision 1.0 uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb5 at uhci3: USB revision 1.0 uhub5 at usb5 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb6 at uhci4: USB revision 1.0 uhub6 at usb6 "Intel UHCI root hub" rev 1.00/1.00 addr 1 isa0 at pcib0 isadma0 at isa0 pckbc0 at isa0 port 0x60/5 pckbd0 at pckbc0 (kbd slot) pckbc0: using irq 1 for kbd slot wskbd0 at pckbd0: console keyboard, using wsdisplay0 pms0 at pckbc0 (aux slot) pckbc0: using irq 12 for aux slot wsmouse0 at pms0 mux 0 pcppi0 at isa0 port 0x61 midi0 at pcppi0: spkr0 at pcppi0 mtrr: Pentium Pro MTRR support rum0 at uhub1 port 5 "Ralink 802.11 bg WLAN" rev 2.00/0.01 addr 2 rum0: MAC/BBP RT2573 (rev 0x2573a), RF RT2528, address 00:16:e6:35:30:f9 softraid0 at root root on sd0a swap on sd0b dump on sd0b OpenBSD 4.4-beta (GENERIC.MP) #1773: Wed Jul 16 10:07:46 MDT 2008 todd@...:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 2133213184 (2034MB) avail mem = 2071363584 (1975MB) User Kernel Config UKC> disable re 92 re* disabled 93 re* disabled UKC> disable uvideo 226 uvideo* disabled UKC> exit Continuing... mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.4 @ 0xdc010 (38 entries) bios0: vendor Dell Inc. version "A10" date 07/10/2008 bios0: Dell Inc. Vostro1310 acpi0 at bios0: rev 2 acpi0: tables DSDT FACP APIC HPET MCFG TCPA TMOR OSFR APIC BOOT SLIC SSDT SSDT SSDT SSDT acpi0: wakeup devices LID0(S3) HDEF(S3) PXSX(S3) PXSX(S5) USB1(S0) USB2(S0) USB3(S0) USB4(S0) USB5(S0) EHC1(S0) EHC2(S0) acpitimer0 at acpi0: 3579545 Hz, 24 bits acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat cpu0 at mainbus0: apid 0 (boot processor) cpu0: Intel(R) Core(TM)2 Duo CPU T5670 @ 1.80GHz, 1795.77 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,EST,TM2,CX16,xTPR ,NXE,LONG cpu0: 2MB 64b/line 8-way L2 cache cpu0: apic clock running at 199MHz cpu1 at mainbus0: apid 1 (application processor) cpu1: Intel(R) Core(TM)2 Duo CPU T5670 @ 1.80GHz, 1795.50 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,EST,TM2,CX16,xTPR ,NXE,LONG cpu1: 2MB 64b/line 8-way L2 cache ioapic0 at mainbus0 apid 1 pa 0xfec00000, version 20, 24 pins ioapic0: misconfigured as apic 2, remapped to apid 1 acpihpet0 at acpi0: 14318179 Hz acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus 1 (PEGP) acpiprt2 at acpi0: bus 2 (RP01) acpiprt3 at acpi0: bus 3 (RP02) acpiprt4 at acpi0: bus -1 (RP03) acpiprt5 at acpi0: bus 6 (RP04) acpiprt6 at acpi0: bus 7 (RP05) acpiprt7 at acpi0: bus -1 (RP06) acpiprt8 at acpi0: bus 8 (PCIB) acpiec0 at acpi0 acpicpu0 at acpi0: C3, C2, C1, PSS acpicpu1 at acpi0: C3, C2, C1, PSS acpibtn0 at acpi0: LID0 acpibtn1 at acpi0: PWRB acpibtn2 at acpi0: SLPB acpiac0 at acpi0: AC unit online acpibat0 at acpi0: BAT1 serial 11 type Lion oem "Dell" acpivideo at acpi0 not configured acpivideo at acpi0 not configured cpu0: Enhanced SpeedStep 1795 MHz: speeds: 1801, 1800, 1200, 800 MHz pci0 at mainbus0 bus 0: configuration mode 1 pchb0 at pci0 dev 0 function 0 "Intel GM965 Host" rev 0x0c ppb0 at pci0 dev 1 function 0 "Intel GM965 PCIE" rev 0x0c: apic 1 int 16 (irq 5) pci1 at ppb0 bus 1 vga1 at pci1 dev 0 function 0 vendor "NVIDIA", unknown product 0x0427 rev 0xa1 wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) agp0 at vga1: no integrated graphics uhci0 at pci0 dev 26 function 0 "Intel 82801H USB" rev 0x03: apic 1 int 16 (irq 5) uhci1 at pci0 dev 26 function 1 "Intel 82801H USB" rev 0x03: apic 1 int 21 (irq 11) ehci0 at pci0 dev 26 function 7 "Intel 82801H USB" rev 0x03: apic 1 int 18 (irq 10) usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 azalia0 at pci0 dev 27 function 0 "Intel 82801H HD Audio" rev 0x03: apic 1 int 22 (irq 10) azalia0: codec[s]: Realtek/0x0268 audio0 at azalia0 ppb1 at pci0 dev 28 function 0 "Intel 82801H PCIE" rev 0x03: apic 1 int 17 (irq 11) pci2 at ppb1 bus 2 ppb2 at pci0 dev 28 function 1 "Intel 82801H PCIE" rev 0x03: apic 1 int 16 (irq 5) pci3 at ppb2 bus 3 ppb3 at pci0 dev 28 function 3 "Intel 82801H PCIE" rev 0x03: apic 1 int 19 (irq 11) pci4 at ppb3 bus 6 ppb4 at pci0 dev 28 function 4 "Intel 82801H PCIE" rev 0x03: apic 1 int 17 (irq 11) pci5 at ppb4 bus 7 "Realtek 8168" rev 0x02 at pci5 dev 0 function 0 not configured uhci2 at pci0 dev 29 function 0 "Intel 82801H USB" rev 0x03: apic 1 int 23 (irq 10) uhci3 at pci0 dev 29 function 1 "Intel 82801H USB" rev 0x03: apic 1 int 19 (irq 11) uhci4 at pci0 dev 29 function 2 "Intel 82801H USB" rev 0x03: apic 1 int 18 (irq 10) ehci1 at pci0 dev 29 function 7 "Intel 82801H USB" rev 0x03: apic 1 int 23 (irq 10) usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb5 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0xf3 pci6 at ppb5 bus 8 "O2 Micro Firewire" rev 0x02 at pci6 dev 5 function 0 not configured sdhc0 at pci6 dev 5 function 2 "O2 Micro OZ711MP1 SDHC" rev 0x02: apic 1 int 22 (irq 10) sdmmc0 at sdhc0 "O2 Micro OZ711MP1 XDHC" rev 0x01 at pci6 dev 5 function 3 not configured pcib0 at pci0 dev 31 function 0 "Intel 82801HBM LPC" rev 0x03 pciide0 at pci0 dev 31 function 1 "Intel 82801HBM IDE" rev 0x03: DMA, channel 0 configured to compatibility, channel 1 configured to compatibility atapiscsi0 at pciide0 channel 0 drive 0 scsibus0 at atapiscsi0: 2 targets, initiator 7 cd0 at scsibus0 targ 0 lun 0: ATAPI 5/cdrom removable cd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 2 pciide0: channel 1 disabled (no drives) ahci0 at pci0 dev 31 function 2 "Intel 82801HBM AHCI" rev 0x03: apic 1 int 18 (irq 10), AHCI 1.1 ahci0: PHY offline on port 1 ahci0: PHY offline on port 2 scsibus1 at ahci0: 32 targets, initiator 32 sd0 at scsibus1 targ 0 lun 0: SCSI3 0/direct fixed sd0: 152627MB, 19457 cyl, 255 head, 63 sec, 512 bytes/sec, 312581808 sec total ichiic0 at pci0 dev 31 function 3 "Intel 82801H SMBus" rev 0x03: apic 1 int 18 (irq 10) iic0 at ichiic0 spdmem0 at iic0 addr 0x50: 1GB DDR2 SDRAM non-parity PC2-5300CL5 SO-DIMM spdmem1 at iic0 addr 0x52: 1GB DDR2 SDRAM non-parity PC2-5300CL5 SO-DIMM usb2 at uhci0: USB revision 1.0 uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb3 at uhci1: USB revision 1.0 uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb4 at uhci2: USB revision 1.0 uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb5 at uhci3: USB revision 1.0 uhub5 at usb5 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb6 at uhci4: USB revision 1.0 uhub6 at usb6 "Intel UHCI root hub" rev 1.00/1.00 addr 1 isa0 at pcib0 isadma0 at isa0 pckbc0 at isa0 port 0x60/5 pckbd0 at pckbc0 (kbd slot) pckbc0: using irq 1 for kbd slot wskbd0 at pckbd0: console keyboard, using wsdisplay0 pms0 at pckbc0 (aux slot) pckbc0: using irq 12 for aux slot wsmouse0 at pms0 mux 0 pcppi0 at isa0 port 0x61 midi0 at pcppi0: spkr0 at pcppi0 mtrr: Pentium Pro MTRR support rum0 at uhub1 port 5 "Ralink 802.11 bg WLAN" rev 2.00/0.01 addr 2 rum0: MAC/BBP RT2573 (rev 0x2573a), RF RT2528, address 00:16:e6:35:30:f9 ugen0 at uhub3 port 1 "SONiX Technology Inc Integrated Webcam" rev 2.00/83.04 addr 2 softraid0 at root root on sd0a swap on sd0b dump on sd0b _________________________________________________________________ Play and win great prizes with Live Search and Kung Fu Panda http://clk.atdmt.com/UKM/go/101719966/direct/01/ |
|
|
Re: another re(4) diff for testing.generic.mp recompiled with patch
OpenBSD 4.4-beta (GENERIC.MP) #0: Thu Jul 17 22:32:31 BST 2008 root@...:/usr/src/sys/arch/amd64/compile/GENERIC.MP real mem = 2133213184 (2034MB) avail mem = 2071363584 (1975MB) User Kernel Config UKC> disable re 92 re* disabled 93 re* disabled UKC> disable acpi\^H \^H\^H \^H\^H \^H\^H \^Hui\^H \^Hvideo 226 uvideo* disabled UKC> exit Continuing... mainbus0 at root bios0 at mainbus0: SMBIOS rev. 2.4 @ 0xdc010 (38 entries) bios0: vendor Dell Inc. version "A10" date 07/10/2008 bios0: Dell Inc. Vostro1310 acpi0 at bios0: rev 2 acpi0: tables DSDT FACP APIC HPET MCFG TCPA TMOR OSFR APIC BOOT SLIC SSDT SSDT SSDT SSDT acpi0: wakeup devices LID0(S3) HDEF(S3) PXSX(S3) PXSX(S5) USB1(S0) USB2(S0) USB3(S0) USB4(S0) USB5(S0) EHC1(S0) EHC2(S0) acpitimer0 at acpi0: 3579545 Hz, 24 bits acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat cpu0 at mainbus0: apid 0 (boot processor) cpu0: Intel(R) Core(TM)2 Duo CPU T5670 @ 1.80GHz, 1795.81 MHz cpu0: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,EST,TM2,CX16,xTPR ,NXE,LONG cpu0: 2MB 64b/line 8-way L2 cache cpu0: apic clock running at 199MHz cpu1 at mainbus0: apid 1 (application processor) cpu1: Intel(R) Core(TM)2 Duo CPU T5670 @ 1.80GHz, 1795.50 MHz cpu1: FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUS H,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,SBF,SSE3,MWAIT,DS-CPL,EST,TM2,CX16,xTPR ,NXE,LONG cpu1: 2MB 64b/line 8-way L2 cache ioapic0 at mainbus0 apid 1 pa 0xfec00000, version 20, 24 pins ioapic0: misconfigured as apic 2, remapped to apid 1 acpihpet0 at acpi0: 14318179 Hz acpiprt0 at acpi0: bus 0 (PCI0) acpiprt1 at acpi0: bus 1 (PEGP) acpiprt2 at acpi0: bus 2 (RP01) acpiprt3 at acpi0: bus 3 (RP02) acpiprt4 at acpi0: bus -1 (RP03) acpiprt5 at acpi0: bus 6 (RP04) acpiprt6 at acpi0: bus 7 (RP05) acpiprt7 at acpi0: bus -1 (RP06) acpiprt8 at acpi0: bus 8 (PCIB) acpiec0 at acpi0 acpicpu0 at acpi0: C3, C2, C1, PSS acpicpu1 at acpi0: C3, C2, C1, PSS acpibtn0 at acpi0: LID0 acpibtn1 at acpi0: PWRB acpibtn2 at acpi0: SLPB acpiac0 at acpi0: AC unit online acpibat0 at acpi0: BAT1 serial 11 type Lion oem "Dell" acpivideo at acpi0 not configured acpivideo at acpi0 not configured cpu0: Enhanced SpeedStep 1795 MHz: speeds: 1801, 1800, 1200, 800 MHz pci0 at mainbus0 bus 0: configuration mode 1 pchb0 at pci0 dev 0 function 0 "Intel GM965 Host" rev 0x0c ppb0 at pci0 dev 1 function 0 "Intel GM965 PCIE" rev 0x0c: apic 1 int 16 (irq 5) pci1 at ppb0 bus 1 vga1 at pci1 dev 0 function 0 vendor "NVIDIA", unknown product 0x0427 rev 0xa1 wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) wsdisplay0: screen 1-5 added (80x25, vt100 emulation) agp0 at vga1: no integrated graphics uhci0 at pci0 dev 26 function 0 "Intel 82801H USB" rev 0x03: apic 1 int 16 (irq 5) uhci1 at pci0 dev 26 function 1 "Intel 82801H USB" rev 0x03: apic 1 int 21 (irq 11) ehci0 at pci0 dev 26 function 7 "Intel 82801H USB" rev 0x03: apic 1 int 18 (irq 10) usb0 at ehci0: USB revision 2.0 uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 azalia0 at pci0 dev 27 function 0 "Intel 82801H HD Audio" rev 0x03: apic 1 int 22 (irq 10) azalia0: codec[s]: Realtek/0x0268 audio0 at azalia0 ppb1 at pci0 dev 28 function 0 "Intel 82801H PCIE" rev 0x03: apic 1 int 17 (irq 11) pci2 at ppb1 bus 2 ppb2 at pci0 dev 28 function 1 "Intel 82801H PCIE" rev 0x03: apic 1 int 16 (irq 5) pci3 at ppb2 bus 3 ppb3 at pci0 dev 28 function 3 "Intel 82801H PCIE" rev 0x03: apic 1 int 19 (irq 11) pci4 at ppb3 bus 6 ppb4 at pci0 dev 28 function 4 "Intel 82801H PCIE" rev 0x03: apic 1 int 17 (irq 11) pci5 at ppb4 bus 7 "Realtek 8168" rev 0x02 at pci5 dev 0 function 0 not configured uhci2 at pci0 dev 29 function 0 "Intel 82801H USB" rev 0x03: apic 1 int 23 (irq 10) uhci3 at pci0 dev 29 function 1 "Intel 82801H USB" rev 0x03: apic 1 int 19 (irq 11) uhci4 at pci0 dev 29 function 2 "Intel 82801H USB" rev 0x03: apic 1 int 18 (irq 10) ehci1 at pci0 dev 29 function 7 "Intel 82801H USB" rev 0x03: apic 1 int 23 (irq 10) usb1 at ehci1: USB revision 2.0 uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 ppb5 at pci0 dev 30 function 0 "Intel 82801BAM Hub-to-PCI" rev 0xf3 pci6 at ppb5 bus 8 "O2 Micro Firewire" rev 0x02 at pci6 dev 5 function 0 not configured sdhc0 at pci6 dev 5 function 2 "O2 Micro OZ711MP1 SDHC" rev 0x02: apic 1 int 22 (irq 10) sdmmc0 at sdhc0 "O2 Micro OZ711MP1 XDHC" rev 0x01 at pci6 dev 5 function 3 not configured pcib0 at pci0 dev 31 function 0 "Intel 82801HBM LPC" rev 0x03 pciide0 at pci0 dev 31 function 1 "Intel 82801HBM IDE" rev 0x03: DMA, channel 0 configured to compatibility, channel 1 configured to compatibility atapiscsi0 at pciide0 channel 0 drive 0 scsibus0 at atapiscsi0: 2 targets, initiator 7 cd0 at scsibus0 targ 0 lun 0: ATAPI 5/cdrom removable cd0(pciide0:0:0): using PIO mode 4, Ultra-DMA mode 2 pciide0: channel 1 disabled (no drives) ahci0 at pci0 dev 31 function 2 "Intel 82801HBM AHCI" rev 0x03: apic 1 int 18 (irq 10), AHCI 1.1 ahci0: PHY offline on port 1 ahci0: PHY offline on port 2 scsibus1 at ahci0: 32 targets, initiator 32 sd0 at scsibus1 targ 0 lun 0: SCSI3 0/direct fixed sd0: 152627MB, 19457 cyl, 255 head, 63 sec, 512 bytes/sec, 312581808 sec total ichiic0 at pci0 dev 31 function 3 "Intel 82801H SMBus" rev 0x03: apic 1 int 18 (irq 10) iic0 at ichiic0 spdmem0 at iic0 addr 0x50: 1GB DDR2 SDRAM non-parity PC2-5300CL5 SO-DIMM spdmem1 at iic0 addr 0x52: 1GB DDR2 SDRAM non-parity PC2-5300CL5 SO-DIMM usb2 at uhci0: USB revision 1.0 uhub2 at usb2 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb3 at uhci1: USB revision 1.0 uhub3 at usb3 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb4 at uhci2: USB revision 1.0 uhub4 at usb4 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb5 at uhci3: USB revision 1.0 uhub5 at usb5 "Intel UHCI root hub" rev 1.00/1.00 addr 1 usb6 at uhci4: USB revision 1.0 uhub6 at usb6 "Intel UHCI root hub" rev 1.00/1.00 addr 1 isa0 at pcib0 isadma0 at isa0 pckbc0 at isa0 port 0x60/5 pckbd0 at pckbc0 (kbd slot) pckbc0: using irq 1 for kbd slot wskbd0 at pckbd0: console keyboard, using wsdisplay0 pms0 at pckbc0 (aux slot) pckbc0: using irq 12 for aux slot wsmouse0 at pms0 mux 0 pcppi0 at isa0 port 0x61 midi0 at pcppi0: spkr0 at pcppi0 mtrr: Pentium Pro MTRR support rum0 at uhub1 port 5 "Ralink 802.11 bg WLAN" rev 2.00/0.01 addr 2 rum0: MAC/BBP RT2573 (rev 0x2573a), RF RT2528, address 00:16:e6:35:30:f9 ugen0 at uhub3 port 1 "SONiX Technology Inc Integrated Webcam" rev 2.00/83.04 addr 2 softraid0 at root root on sd0a swap on sd0b dump on sd0b _________________________________________________________________ Play and win great prizes with Live Search and Kung Fu Panda http://clk.atdmt.com/UKM/go/101719966/direct/01/ |
| Free embeddable forum powered by Nabble | Forum Help |