Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: Issues with i915drmkms on AMD64



Hi,

2014-07-25 22:16 GMT+09:00 David Mackay <davidm.jx8p%gmail.com@localhost>:

> This has made no change unfrotunately. The dmesg remains the same, and
> due to the panic occuring when there is no fb to cnopen(), there is no
> useful stack trace. All that is available is the [...]DRM error in
> i915_driver_load: failed to map registers[...] error in i915kms.

My ThinkPad X201 (Ironlake-M) works fine with the following patch for me.
Please try it.

# Also NetBSD/amd64 6.99.49 DRMKMS kernel binary with the following
patch is available.
# http://ftp.netbsd.org/pub/NetBSD/misc/nonaka/drmkms/DRMKMS-6.99.49-amd64.xz

----- patch
Index: dev/pci/agp_i810.c
===================================================================
RCS file: /cvsroot/src/sys/dev/pci/agp_i810.c,v
retrieving revision 1.111
diff -u -r1.111 agp_i810.c
--- dev/pci/agp_i810.c    23 Jul 2014 14:50:23 -0000    1.111
+++ dev/pci/agp_i810.c    25 Jul 2014 19:02:39 -0000
@@ -349,8 +349,6 @@
     case PCI_PRODUCT_INTEL_82945GM_IGD_1:
     case PCI_PRODUCT_INTEL_82945GME_IGD:
     case PCI_PRODUCT_INTEL_E7221_IGD:
-    case PCI_PRODUCT_INTEL_PINEVIEW_IGD:
-    case PCI_PRODUCT_INTEL_PINEVIEW_M_IGD:
         isc->chiptype = CHIP_I915;
         aprint_normal(": i915-family chipset\n");
         break;
@@ -383,10 +381,17 @@
     case PCI_PRODUCT_INTEL_82G45_IGD:
     case PCI_PRODUCT_INTEL_82G41_IGD:
     case PCI_PRODUCT_INTEL_82B43_IGD:
+        isc->chiptype = CHIP_G4X;
+        aprint_normal(": G4X-family chipset\n");
+        break;
+    case PCI_PRODUCT_INTEL_PINEVIEW_IGD:
+    case PCI_PRODUCT_INTEL_PINEVIEW_M_IGD:
+        isc->chiptype = CHIP_I915;
+        aprint_normal(": Pineview-family chipset\n");
     case PCI_PRODUCT_INTEL_IRONLAKE_D_IGD:
     case PCI_PRODUCT_INTEL_IRONLAKE_M_IGD:
         isc->chiptype = CHIP_G4X;
-        aprint_normal(": G4X-family chipset\n");
+        aprint_normal(": Ironlake-family chipset\n");
         break;
     }
     aprint_naive("\n");
@@ -450,6 +455,9 @@
         error = ENXIO;
         goto fail1;
     }
+#if 1    /* XXXNONAKA */
+    isc->size = mmadr_size;
+#endif
     isc->bst = isc->vga_pa.pa_memt;
     error = bus_space_map(isc->bst, mmadr, isc->size, mmadr_flags,
         &isc->bsh);
@@ -960,6 +968,12 @@

         isc->gtt_size = gtt_size * 1024;

+#if 1    /* XXXNONAKA */
+        if (isc->chiptype == CHIP_G4X) {
+            gtt_size = 0;
+        }
+#endif
+
         /* BIOS space */
         /* XXX [citation needed] */
         gtt_size += 4;
Index: external/bsd/drm2/dist/drm/i915/i915_dma.c
===================================================================
RCS file: /cvsroot/src/sys/external/bsd/drm2/dist/drm/i915/i915_dma.c,v
retrieving revision 1.10
diff -u -r1.10 i915_dma.c
--- external/bsd/drm2/dist/drm/i915/i915_dma.c    16 Jul 2014 23:25:18
-0000    1.10
+++ external/bsd/drm2/dist/drm/i915/i915_dma.c    25 Jul 2014 19:02:39 -0000
@@ -1761,6 +1761,10 @@
     }

     intel_irq_init(dev);
+#if 1    /* XXXNONAKA */
+    if (IS_GEN5(dev))
+        intel_gpu_ips_init(dev_priv);
+#endif
     intel_uncore_sanitize(dev);

     /* Try to make sure MCHBAR is enabled before poking at it */
@@ -1815,8 +1819,10 @@
         acpi_video_register();
     }

+#if 0    /* XXXNONAKA */
     if (IS_GEN5(dev))
         intel_gpu_ips_init(dev_priv);
+#endif

     intel_init_runtime_pm(dev_priv);

Index: external/bsd/drm2/i915drm/i915_pci.c
===================================================================
RCS file: /cvsroot/src/sys/external/bsd/drm2/i915drm/i915_pci.c,v
retrieving revision 1.15
diff -u -r1.15 i915_pci.c
--- external/bsd/drm2/i915drm/i915_pci.c    24 Jul 2014 22:13:23 -0000    1.15
+++ external/bsd/drm2/i915drm/i915_pci.c    25 Jul 2014 19:02:39 -0000
@@ -157,6 +157,12 @@
     sc->sc_task_state = I915DRMKMS_TASK_ATTACH;
     SIMPLEQ_INIT(&sc->sc_task_u.attach);

+#if 1    /* XXXNONAKA */
+    if (info->gen < 6) {
+        i915_drm_driver->driver_features |= DRIVER_USE_AGP;
+    }
+#endif
+
     /* XXX errno Linux->NetBSD */
     error = -drm_pci_attach(self, pa, &sc->sc_pci_dev, i915_drm_driver,
         cookie, &sc->sc_drm_dev);
-----

----- ThinkPad X201 with DRMKMS kernel dmesg
Copyright (c) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
    2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
    The NetBSD Foundation, Inc.  All rights reserved.
Copyright (c) 1982, 1986, 1989, 1991, 1993
    The Regents of the University of California.  All rights reserved.

NetBSD 6.99.49 (DRMKMS) #61: Sat Jul 26 04:04:50 JST 2014
    nonaka@koharu.myhome.local:/usr/obj.amd64/sys/arch/amd64/compile/DRMKMS
total memory = 3891 MB
avail memory = 3760 MB
timecounter: Timecounters tick every 10.000 msec
timecounter: Timecounter "i8254" frequency 1193182 Hz quality 100
LENOVO 3249CTO (ThinkPad X201)
mainbus0 (root)
ACPI: RSDP 0xf68e0 000024 (v02 LENOVO)
ACPI: XSDT 0xbb7f080e 00009C (v01 LENOVO TP-6Q    00001400  LTP 00000000)
ACPI: FACP 0xbb7f0900 0000F4 (v04 LENOVO TP-6Q    00001400 LNVO 00000001)
ACPI BIOS Warning (bug): 32/64X length mismatch in
FADT/Pm1aControlBlock: 16/32 (20131218/tbfadt-634)
ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32,
using default 16 (20131218/tbfadt-716)
ACPI: DSDT 0xbb7f0c6b 00DE88 (v01 LENOVO TP-6Q    00001400 MSFT 03000001)
ACPI: FACS 0xbb6e7000 000040
ACPI: SSDT 0xbb7f0ab4 0001B7 (v01 LENOVO TP-6Q    00001400 MSFT 03000001)
ACPI: ECDT 0xbb7feaf3 000052 (v01 LENOVO TP-6Q    00001400 LNVO 00000001)
ACPI: APIC 0xbb7feb45 000084 (v01 LENOVO TP-6Q    00001400 LNVO 00000001)
ACPI: MCFG 0xbb7fec01 00003C (v01 LENOVO TP-6Q    00001400 LNVO 00000001)
ACPI: HPET 0xbb7fec3d 000038 (v01 LENOVO TP-6Q    00001400 LNVO 00000001)
ACPI: ASF! 0xbb7fedbe 0000A4 (v16 LENOVO TP-6Q    00001400 PTL  00000001)
ACPI: SLIC 0xbb7fee62 000176 (v01 LENOVO TP-6Q    00001400  LTP 00000000)
ACPI: BOOT 0xbb7fefd8 000028 (v01 LENOVO TP-6Q    00001400  LTP 00000001)
ACPI: SSDT 0xbb6e590a 00085B (v01 LENOVO TP-6Q    00001400 INTL 20050513)
ACPI: TCPA 0xbb78b000 000032 (v02    PTL  CRESTLN 06040000      00005A52)
ACPI: DMAR 0xbb781000 0000B8 (v01 INTEL  CP_DALE  00000001 INTL 00000001)
ACPI: SSDT 0xbb779000 0009F1 (v01  PmRef    CpuPm 00003000 INTL 20060912)
ACPI: SSDT 0xbb778000 000259 (v01  PmRef  Cpu0Tst 00003000 INTL 20060912)
ACPI: SSDT 0xbb777000 00049F (v01  PmRef    ApTst 00003000 INTL 20060912)
ACPI: All ACPI Tables successfully acquired
cpu0 at mainbus0 apid 0: Intel(R) Core(TM) i5 CPU       M 560  @
2.67GHz, id 0x20655
cpu1 at mainbus0 apid 1: Intel(R) Core(TM) i5 CPU       M 560  @
2.67GHz, id 0x20655
cpu2 at mainbus0 apid 4: Intel(R) Core(TM) i5 CPU       M 560  @
2.67GHz, id 0x20655
cpu3 at mainbus0 apid 5: Intel(R) Core(TM) i5 CPU       M 560  @
2.67GHz, id 0x20655
ioapic0 at mainbus0 apid 1: pa 0xfec00000, version 0x20, 24 pins
acpi0 at mainbus0: Intel ACPICA 20131218
acpi0: X/RSDT: OemId <LENOVO,TP-6Q   ,00001400>, AslId < LTP,00000000>
acpiecdt0 at acpi0: ACPI Embedded Controller via ECDT
ACPI: SSDT 0xbb71a598 0004F3 (v01  PmRef  Cpu0Ist 00003000 INTL 20060912)
ACPI: SSDT 0x0 0004F3 (v01  PmRef  Cpu0Ist 00003000 INTL 20060912)
ACPI: SSDT 0xbb718718 0006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20060912)
ACPI: SSDT 0x0 0006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20060912)
ACPI: SSDT 0xbb719a98 000303 (v01  PmRef    ApIst 00003000 INTL 20060912)
ACPI: SSDT 0x0 000303 (v01  PmRef    ApIst 00003000 INTL 20060912)
ACPI: SSDT 0xbb717d98 000119 (v01  PmRef    ApCst 00003000 INTL 20060912)
ACPI: SSDT 0x0 000119 (v01  PmRef    ApCst 00003000 INTL 20060912)
acpi0: SCI interrupting at int 9
timecounter: Timecounter "ACPI-Safe" frequency 3579545 Hz quality 900
hpet0 at acpi0: high precision event timer (mem 0xfed00000-0xfed00400)
timecounter: Timecounter "hpet0" frequency 14318180 Hz quality 2000
acpiec0 at acpi0 (EC, PNP0C09-0): using acpiecdt0
MEM (PNP0C01) WARNING: module error: vfs load failed for `acpiverbose', error 45
at acpi0 not configured
acpilid0 at acpi0 (LID, PNP0C0D): ACPI Lid Switch
acpibut0 at acpi0 (SLPB, PNP0C0E): ACPI Sleep Button
acpivga0 at acpi0 (VID): ACPI Display Adapter
acpiout0 at acpivga0 (LCD0, 0x0400): ACPI Display Output Device
acpiout0: brightness levels: 2 3 4 7 9 11 13 17 20 24 28 32 40 50 66 100
acpiout1 at acpivga0 (CRT0, 0x0100): ACPI Display Output Device
acpiout2 at acpivga0 (DVI0, 0x0300): ACPI Display Output Device
acpiout3 at acpivga0 (DVI1, 0x0301): ACPI Display Output Device
acpiout4 at acpivga0 (DVI2, 0x0302): ACPI Display Output Device
acpiout5 at acpivga0 (DVI3, 0x0303): ACPI Display Output Device
acpiout6 at acpivga0 (DVI4, 0x0304): ACPI Display Output Device
acpiout7 at acpivga0 (DVI5, 0x0305): ACPI Display Output Device
acpivga0: unknown output device acpiout1
acpivga0: unknown output device acpiout2
acpivga0: unknown output device acpiout3
acpivga0: unknown output device acpiout4
acpivga0: unknown output device acpiout5
acpivga0: unknown output device acpiout6
acpivga0: unknown output device acpiout7
acpivga0: connected output devices:
acpivga0:   0x0400 (acpiout0): Unknown Output Device, head 0
SIO (PNP0C02) WARNING: module error: vfs load failed for `acpiverbose', error 45
at acpi0 not configured
attimer1 at acpi0 (TIMR, PNP0100): io 0x40-0x43 irq 0
pcppi1 at acpi0 (SPKR, PNP0800): io 0x61
midi0 at pcppi1: PC speaker
sysbeep0 at pcppi1
pckbc1 at acpi0 (KBD, PNP0303) (kbd port): io 0x60,0x64 irq 1
pckbc2 at acpi0 (MOU, IBM3780) (aux port): irq 12
TPM (SMO1200) WARNING: module error: vfs load failed for `acpiverbose', error 45
at acpi0 not configured
acpibat0 at acpi0 (BAT0, PNP0C0A-0): ACPI Battery
acpibat0: SANYO LION rechargeable battery
acpibat0: granularity: low->warn 0.001 Ah, warn->full 0.001 Ah
acpiacad0 at acpi0 (AC, ACPI0003-0): ACPI AC Adapter
thinkpad0 at acpi0 (HKEY, IBM0068)
GDCK (IBM0079) WARNING: module error: vfs load failed for
`acpiverbose', error 45
at acpi0 not configured
acpiwmi0 at acpi0 (WMI1, PNP0C14-1): ACPI WMI Interface
acpiwmibus at acpiwmi0 not configured
acpitz0 at acpi0 (THM0): cpu0 cpu1 cpu2 cpu3
acpitz0: levels: critical 100.0 C, passive 91.5 C, passive cooling
ACPI: Enabled 3 GPEs in block 00 to 3F
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_]
(20131218/hwxface-646)
ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_]
(20131218/hwxface-646)
WARNING: module error: vfs load failed for `acpiverbose', error 45
attimer1: attached to pcppi1
pckbd0 at pckbc1 (kbd slot)
pckbc1: using irq 1 for kbd slot
wskbd0 at pckbd0: console keyboard
pms0 at pckbc1 (aux slot)
pckbc1: using irq 12 for aux slot
wsmouse0 at pms0 mux 0
pci0 at mainbus0 bus 0: configuration mode 1
pci0: i/o space, memory space enabled, rd/line, rd/mult, wr/inv ok
pchb0 at pci0 dev 0 function 0: Intel Iron Lake Host Bridge (rev. 0x02)
agp0 at pchb0: Ironlake-family chipset
agp0: detected 32764k stolen memory
agp0: aperture at 0xd0000000, size 0x10000000
i915drmkms0 at pci0 dev 2 function 0: Intel Iron Lake Integrated
Graphics Device (rev. 0x02)
drm: Memory usable by graphics device = 512M
drm: Supports vblank timestamp caching Rev 2 (21.10.2013).
drm: Driver supports precise vblank timestamp query.
drm: failed to find VBIOS tables
i915drmkms0: interrupting at ioapic0 pin 16 (i915)
intelfb0 at i915drmkms0i915drmkms0: info: registered panic notifier
i915drmkms0: unable to map VGA registers: 35
intelfb0: framebuffer at 0xffff800045283000, size 1280x800, depth 32,
stride 5120
wsdisplay0 at intelfb0 kbdmux 1: console (default, vt100 emulation),
using wskbd0
wsmux1: connecting to wsdisplay0
Intel 3400 MEI (miscellaneous communications, revision 0x06) at pci0
dev 22 function 0 not configured
wm0 at pci0 dev 25 function 0: PCH LAN (82577LM) Controller (rev. 0x06)
wm0: interrupting at ioapic0 pin 20
wm0: PCI-Express bus
wm0: FLASH
wm0: Ethernet address XX:XX:XX:XX:XX:XX
ihphy0 at wm0 phy 2: i82577 10/100/1000 media interface, rev. 3
ihphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT,
1000baseT-FDX, auto
ehci0 at pci0 dev 26 function 0: Intel 3400 USB ECHI (rev. 0x06)
ehci0: interrupting at ioapic0 pin 23
ehci0: EHCI version 1.0
usb0 at ehci0: USB revision 2.0
hdaudio0 at pci0 dev 27 function 0: HD Audio Controller
hdaudio0: interrupting at ioapic0 pin 17
hdafg0 at hdaudio0: Conexant CX20585
hdafg0: DAC00 2ch: HP Out [Jack]
hdafg0: ADC01 2ch: Mic In [Jack]
hdafg0: DAC02 2ch: Speaker [Built-In]
hdafg0: ADC03 2ch: Mic In [Built-In]
hdafg0: 2ch/2ch 44100Hz 48000Hz 96000Hz PCM16 PCM20 PCM24 AC3
audio0 at hdafg0: full duplex, playback, capture, mmap, independent
hdvsmfg at hdaudio0 not configured
hdafg1 at hdaudio0: Intel G45 HDMI
hdafg1: DP00 8ch: Digital Out [Jack]
hdafg1: 8ch/0ch 48000Hz PCM16*
ppb0 at pci0 dev 28 function 0: Intel 3400 PCIE (rev. 0x06)
ppb0: PCI Express 2.0 <Root Port of PCI-E Root Complex> x1 @ 2.5Gb/s
pci1 at ppb0 bus 13
pci1: i/o space, memory space enabled, rd/line, wr/inv ok
ppb1 at pci0 dev 28 function 3: Intel 3400 PCIE (rev. 0x06)
ppb1: PCI Express 2.0 <Root Port of PCI-E Root Complex> x1 @ 2.5Gb/s
pci2 at ppb1 bus 5
pci2: i/o space, memory space enabled, rd/line, wr/inv ok
ppb2 at pci0 dev 28 function 4: Intel 3400 PCIE (rev. 0x06)
ppb2: PCI Express 2.0 <Root Port of PCI-E Root Complex> x1 @ 2.5Gb/s
pci3 at ppb2 bus 2
pci3: i/o space, memory space enabled, rd/line, wr/inv ok
iwn0 at pci3 dev 0 function 0: Intel Centrino Advanced-N 6200 (rev. 0x35)
iwn0: interrupting at ioapic0 pin 16
iwn0: MIMO 2T2R, MoW, address XX:XX:XX:XX:XX:XX
iwn0: 11a rates: 6Mbps 9Mbps 12Mbps 18Mbps 24Mbps 36Mbps 48Mbps 54Mbps
iwn0: 11b rates: 1Mbps 2Mbps 5.5Mbps 11Mbps
iwn0: 11g rates: 1Mbps 2Mbps 5.5Mbps 11Mbps 6Mbps 9Mbps 12Mbps 18Mbps
24Mbps 36Mbps 48Mbps 54Mbps
ehci1 at pci0 dev 29 function 0: Intel 3400 USB EHCI (rev. 0x06)
ehci1: interrupting at ioapic0 pin 19
ehci1: EHCI version 1.0
usb1 at ehci1: USB revision 2.0
ppb3 at pci0 dev 30 function 0: Intel 82801BAM Hub-PCI Bridge (rev. 0xa6)
pci4 at ppb3 bus 14
pci4: i/o space, memory space enabled
ichlpcib0 at pci0 dev 31 function 0: Intel QM57 LPC Interface Bridge (rev. 0x06)
ichlpcib0: can't map power management i/o space
ahcisata0 at pci0 dev 31 function 2: Intel 3400 AHCI (rev. 0x06)
ahcisata0: interrupting at ioapic0 pin 16
ahcisata0: 64-bit DMA
ahcisata0: AHCI revision 1.30, 6 ports, 32 slots, CAP
0xff20ff65<SXS,EMS,PSC,SSC,PMD,ISS=0x2=Gen2,SCLO,SAL,SALP,SSS,SMPS,SSNTF,SNCQ,S64A>
atabus0 at ahcisata0 channel 0
atabus1 at ahcisata0 channel 1
atabus2 at ahcisata0 channel 4
atabus3 at ahcisata0 channel 5
ichsmb0 at pci0 dev 31 function 3: Intel 3400 SMBus (rev. 0x06)
ichsmb0: interrupting at ioapic0 pin 23
iic0 at ichsmb0: I2C bus
Intel 3400 Thermal (miscellaneous DASP, revision 0x06) at pci0 dev 31
function 6 not configured
isa0 at ichlpcib0
tpm0 at isa0 iomem 0xfed40000-0xfed44fff irq 7: device 0x0000104a rev 0x4e
pci5 at mainbus0 bus 255
pci5: i/o space, memory space enabled, rd/line, rd/mult, wr/inv ok
pchb1 at pci5 dev 0 function 0: Intel product 0x2c62 (rev. 0x02)
pchb2 at pci5 dev 0 function 1: Intel product 0x2d01 (rev. 0x02)
pchb3 at pci5 dev 2 function 0: Intel product 0x2d10 (rev. 0x02)
pchb4 at pci5 dev 2 function 1: Intel product 0x2d11 (rev. 0x02)
pchb5 at pci5 dev 2 function 2: Intel product 0x2d12 (rev. 0x02)
pchb6 at pci5 dev 2 function 3: Intel product 0x2d13 (rev. 0x02)
acpicpu0 at cpu0: ACPI CPU
acpicpu0: C1: FFH, lat   3 us, pow  1000 mW
acpicpu0: C2: FFH, lat 205 us, pow   500 mW
acpicpu0: C3: FFH, lat 245 us, pow   350 mW, bus master check
acpicpu0: P0: FFH, lat  10 us, pow 25000 mW, 2667 MHz, turbo boost
acpicpu0: P1: FFH, lat  10 us, pow 25000 mW, 2666 MHz
acpicpu0: P2: FFH, lat  10 us, pow 23465 mW, 2533 MHz
acpicpu0: P3: FFH, lat  10 us, pow 21982 mW, 2399 MHz
acpicpu0: P4: FFH, lat  10 us, pow 20527 mW, 2266 MHz
acpicpu0: P5: FFH, lat  10 us, pow 19080 mW, 2133 MHz
acpicpu0: P6: FFH, lat  10 us, pow 17681 mW, 1999 MHz
acpicpu0: P7: FFH, lat  10 us, pow 16310 mW, 1866 MHz
acpicpu0: P8: FFH, lat  10 us, pow 14966 mW, 1733 MHz
acpicpu0: P9: FFH, lat  10 us, pow 13665 mW, 1599 MHz
acpicpu0: P10: FFH, lat  10 us, pow 12375 mW, 1466 MHz
acpicpu0: P11: FFH, lat  10 us, pow 11112 mW, 1333 MHz
acpicpu0: P12: FFH, lat  10 us, pow  9877 mW, 1199 MHz
acpicpu0: T0: FFH, lat   1 us, pow  9877 mW, 100 %
acpicpu0: T1: FFH, lat   1 us, pow  8642 mW,  88 %
acpicpu0: T2: FFH, lat   1 us, pow  7407 mW,  75 %
acpicpu0: T3: FFH, lat   1 us, pow  6173 mW,  63 %
acpicpu0: T4: FFH, lat   1 us, pow  4938 mW,  50 %
acpicpu0: T5: FFH, lat   1 us, pow  3703 mW,  38 %
acpicpu0: T6: FFH, lat   1 us, pow  2469 mW,  25 %
acpicpu0: T7: FFH, lat   1 us, pow  1234 mW,  13 %
coretemp0 at cpu0: thermal sensor, 1 C resolution
acpicpu1 at cpu1: ACPI CPU
acpicpu2 at cpu2: ACPI CPU
coretemp1 at cpu2: thermal sensor, 1 C resolution
acpicpu3 at cpu3: ACPI CPU
timecounter: Timecounter "clockinterrupt" frequency 100 Hz quality 0
timecounter: Timecounter "TSC" frequency 2660237350 Hz quality 3000
acpiacad0: AC adapter online.
uhub0 at usb0: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub0: 3 ports with 3 removable, self powered
uhub1 at usb1: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub1: 3 ports with 3 removable, self powered
IPsec: Initialized Security Association Processing.
WARNING: module error: can't find builtin dependency `drmkms_ttm'
ahcisata0 port 1: device present, speed: 1.5Gb/s
ahcisata0 port 0: device present, speed: 3.0Gb/s
wd0 at atabus0 drive 0
wd0: <ST95005620AS>
wd0: drive supports 16-sector PIO transfers, LBA48 addressing
wd0: 465 GB, 969021 cyl, 16 head, 63 sec, 512 bytes/sect x 976773168 sectors
wd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA mode 6 (Ultra/133)
wd0(ahcisata0:0:0): using PIO mode 4, DMA mode 2, Ultra-DMA mode 6
(Ultra/133) (using DMA)
atapibus0 at atabus1: 1 targets
cd0 at atapibus0 drive 0: <MATSHITADVD-RAM UJ892, HG97  749910, SB01>
cdrom removable
cd0: drive supports PIO mode 4, DMA mode 2, Ultra-DMA mode 5 (Ultra/100)
cd0(ahcisata0:1:0): using PIO mode 4, DMA mode 2, Ultra-DMA mode 5
(Ultra/100) (using DMA)
uhub2 at uhub1 port 1: Intel Rate Matching Hub, class 9/0, rev 2.00/0.00, addr 2
uhub2: single transaction translator
uhub3 at uhub0 port 1: Intel Rate Matching Hub, class 9/0, rev 2.00/0.00, addr 2
uhub3: single transaction translator
uhub2: 8 ports with 8 removable, self powered
uhub3: 6 ports with 6 removable, self powered
uhub4 at uhub3 port 5: Lenovo product 0x1005, class 9/0, rev 2.00/0.01, addr 3
uhub4: multiple transaction translators
uhub4: 4 ports with 4 removable, self powered
umass0 at uhub2 port 2 configuration 1 interface 0
umass0: Sony Storage Media, rev 2.10/a.00, addr 3
umass0: using SCSI over Bulk-Only
scsibus0 at umass0: 2 targets, 1 lun per target
sd0 at scsibus0 target 0 lun 0: <Sony, Storage Media, 1.00> disk removable
sd0: fabricating a geometry
sd0: 7520 MB, 7520 cyl, 64 head, 32 sec, 512 bytes/sect x 15400960 sectors
sd0: fabricating a geometry
Kernelized RAIDframe activated
pad0: outputs: 44100Hz, 16-bit, stereo
audio1 at pad0: half duplex, playback, capture
boot device: sd0
root on sd0a dumps on sd0b
dump_misc_init: max_paddr = 0x138000000
mountroot: trying smbfs...
mountroot: trying ntfs...
mountroot: trying nfs...
mountroot: trying msdos...
mountroot: trying lfs...
mountroot: trying ext2fs...
mountroot: trying ffs...
root file system type: ffs
init: copying out path `/sbin/init' 11
wsdisplay0: screen 1 added (default, vt100 emulation)
wsdisplay0: screen 2 added (default, vt100 emulation)
wsdisplay0: screen 3 added (default, vt100 emulation)
wsdisplay0: screen 4 added (default, vt100 emulation)
-----

Regards,
-- 
NONAKA Kimihiro


Home | Main Index | Thread Index | Old Index