Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 12 Apr 2002 14:03:06 +0200 (MEST)
From:      Klaus Leibrandt <leibrand@informatik.tu-muenchen.de>
To:        freebsd-current@FreeBSD.org
Cc:        freebsd-mobile@FreeBSD.org
Subject:   Possible bug in /sys/i386/pci/pci_cfgreg.c
Message-ID:  <Pine.GSO.4.44.0204121353110.3002-100000@sunhalle19>

next in thread | raw e-mail | index | archive | help
Hi Folks.

I spent some time tracking down my CardBus problem and found the
following:

In /sys/i386/pci/pci_cfgreg.c:
In Function: static int pci_cfgintr_linked(struct PIR_entry *pe, int pin):

There you can find this code (my changes included):

	    /* link destination mapped to a unique interrupt? */

/*	    if (powerof2(pi->irqs)) { // i changed this line to the next
line of code */
                                     /* the reason is given below*/

/* On my system the CardBus bridge has no interrupt assigned (lazy BIOS I
would say).
   So pi->irqs is 0. powerof2 returns true (which is wrong as ahown
below).
   Then ffs returs 0. that - 1 gives an irq of -1 whis is totally wrong)
   The if clause must evaluate to false if there is no interrut assigned
   otherwise the system will panic during boot as I experineced it. */

                                   /* I added "&& pi->irqs != 0 */
	    if (powerof2(pi->irqs) && pi->irqs != 0) {
		irq = ffs(pi->irqs) - 1;
		PRVERB(("pci_cfgintr_linked: linked (%x) to hard-routed
irq %d\n",
		pi->link, irq));
		return(irq);
	    }

In my opinion the macro powerof2(x) defined in /sys/i386/sys/param.h is
correct
for all input values except 0 (zero).

Proof for zero being illegal input:
powerof2(0) = ((((0x00000000)-1) & (0x00000000)) == 0)
            = ((( 0xffffffff   ) & (0x00000000)) == 0)
	    = ((            0x00000000         ) == 0)
	    = true

Since zero is not a power of 2 the returnvalue of powerof2(0) is wrong.
----

This change may have implictions I do not forsee, so I leave to the
experts what should be done about it.

In my eyes a similar change may be useful in function
pci_cfgintr_unique(..,..).

Now, the system is booting without panic. It does assign an Interrupt for
the CardBus Bridge and my CardBus NIC is detected.
But all this didnt't sove my problem entirely. Although the network card
driver (dc) is loading it is still not configured the right way.
I get a watchdog timeout when trying to use the interface. The shown
MAC adres is also not correct.

I am eager to hear your comment on this issue.

This is my dmesg output with the above mentioned patch applied (boot -v):

----
Copyright (c) 1992-2002 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD 5.0-DP1 #1: Fri Apr 12 12:22:33 GMT 2002
    root@:/usr/src/sys/i386/compile/NEWCARD
Preloaded elf kernel "/boot/kernel/kernel" at 0xc0536000.
Calibrating clock(s) ... TSC clock: 450965769 Hz, i8254 clock: 1193032 Hz
CLK_USE_I8254_CALIBRATION not specified - using default frequency
Timecounter "i8254"  frequency 1193182 Hz
CLK_USE_TSC_CALIBRATION not specified - using old calibration method
Timecounter "TSC"  frequency 451024942 Hz
CPU: Pentium III/Pentium III Xeon/Celeron (451.02-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x681  Stepping = 1

Features=0x383f9ff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE>
real memory  = 268369920 (262080K bytes)
Physical memory chunk(s):
0x00001000 - 0x0009efff, 647168 bytes (158 pages)
0x0055d000 - 0x0ffe7fff, 262713344 bytes (64139 pages)
avail memory = 255537152 (249548K bytes)
bios32: Found BIOS32 Service Directory header at 0xc00fdb70
bios32: Entry = 0xfdb80 (c00fdb80)  Rev = 0  Len = 1
pcibios: PCI BIOS entry at 0xf0000+0xdba1
pnpbios: Found PnP BIOS data at 0xc00f5de0
pnpbios: Entry = f0000:5744  Rev = 1.0
Other BIOS signatures found:
null: <null device, zero device>
random: <entropy source>
mem: <memory & I/O>
Pentium Pro MTRR support enabled
pcibios: BIOS version 2.10
Using $PIR table, 6 entries at 0xc00f6420
npx0: <math processor> on motherboard
npx0: INT 16 interface
pcib0: <Intel 82443BX (440 BX) host to PCI bridge> at pcibus 0 on
motherboard
pci0: physical bus=0
	map[10]: type 3, range 32, base e0000000, size 26, enabled
found->	vendor=0x8086, dev=0x7190, revid=0x03
	bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
found->	vendor=0x8086, dev=0x7191, revid=0x03
	bus=0, slot=1, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
found->	vendor=0x8086, dev=0x7110, revid=0x02
	bus=0, slot=7, func=0
	class=06-01-00, hdrtype=0x00, mfdev=1
	map[20]: type 4, range 32, base 0000ffa0, size  4, enabled
found->	vendor=0x8086, dev=0x7111, revid=0x01
	bus=0, slot=7, func=1
	class=01-01-80, hdrtype=0x00, mfdev=0
	map[20]: type 4, range 32, base 0000e800, size  5, enabled
found->	vendor=0x8086, dev=0x7112, revid=0x01
	bus=0, slot=7, func=2
	class=0c-03-00, hdrtype=0x00, mfdev=0
	intpin=d, irq=9
	map[90]: type 4, range 32, base 00000440, size  4, enabled
found->	vendor=0x8086, dev=0x7113, revid=0x02
	bus=0, slot=7, func=3
	class=06-80-00, hdrtype=0x00, mfdev=0
	map[10]: type 4, range 32, base 0000ea00, size  8, enabled
found->	vendor=0x125d, dev=0x1968, revid=0x00
	bus=0, slot=9, func=0
	class=04-01-00, hdrtype=0x00, mfdev=0
	intpin=a, irq=9
	powerspec 1  supports D0 D1 D2 D3  current D0
found->	vendor=0x104c, dev=0xac1c, revid=0x01
	bus=0, slot=10, func=0
	class=06-07-00, hdrtype=0x02, mfdev=1
	intpin=a, irq=255
	powerspec 1  supports D0 D1 D2 D3  current D0
found->	vendor=0x104c, dev=0xac1c, revid=0x01
	bus=0, slot=10, func=1
	class=06-07-00, hdrtype=0x02, mfdev=1
	intpin=a, irq=255
	powerspec 1  supports D0 D1 D2 D3  current D0
	map[10]: type 1, range 32, base febfff00, size  8, enabled
	map[14]: type 4, range 32, base 0000ee00, size  3, enabled
	map[18]: type 4, range 32, base 0000ec00, size  8, enabled
found->	vendor=0x11c1, dev=0x0448, revid=0x01
	bus=0, slot=12, func=0
	class=07-80-00, hdrtype=0x00, mfdev=0
	intpin=a, irq=9
	powerspec 2  supports D0 D2 D3  current D0
pci0: <PCI bus> on pcib0
pcib1: <PCI-PCI bridge> at device 1.0 on pci0
pcib1:   secondary bus     1
pcib1:   subordinate bus   1
pcib1:   I/O decode        0xb000-0xcfff
pcib1:   memory decode     0xfca00000-0xfeafffff
pcib1:   prefetched decode 0xff900000-0xff9fffff
pci1: physical bus=1
	map[10]: type 1, range 32, base fd000000, size 24, enabled
	map[14]: type 4, range 32, base 0000c800, size  8, enabled
	map[18]: type 1, range 32, base feaff000, size 12, enabled
found->	vendor=0x1002, dev=0x4c42, revid=0xdc
	bus=1, slot=0, func=0
	class=03-00-00, hdrtype=0x00, mfdev=0
	intpin=a, irq=11
	powerspec 1  supports D0 D1 D2 D3  current D0
pci1: <PCI bus> on pcib1
pci1: <display, VGA> at device 0.0 (no driver attached)
isab0: <PCI-ISA bridge> at device 7.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel PIIX4 ATA33 controller> port 0xffa0-0xffaf at device 7.1
on pci0
ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xffa0
ata0: mask=03 ostat0=50 ostat2=00
ata0-master: ATAPI 00 00
ata0-slave: ATAPI 00 00
ata0: mask=03 stat0=50 stat1=00
ata0-master: ATA 01 a5
ata0: devices=01
ata0: at 0x1f0 irq 14 on atapci0
ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0xffa8
ata1: mask=03 ostat0=50 ostat2=00
ata1-master: ATAPI 14 eb
ata1-slave: ATAPI 7f 7f
ata1: mask=03 stat0=00 stat1=00
ata1: devices=04
ata1: at 0x170 irq 15 on atapci0
uhci0: <Intel 82371AB/EB (PIIX4) USB controller> port 0xe800-0xe81f irq 9
at device 7.2 on pci0
usb0: <Intel 82371AB/EB (PIIX4) USB controller> on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
ums0: Microsoft Microsoft Wheel Mouse Optical\M-., rev 1.10/1.21, addr 2,
iclass 3/1
ums0: 3 buttons and Z dir.
pci0: <bridge, PCI-unknown> at device 7.3 (no driver attached)
pci0: <multimedia, audio> at device 9.0 (no driver attached)
pccbb0: <TI1225 PCI-CardBus Bridge> at device 10.0 on pci0
cardbus0: <CardBus bus> on pccbb0
pccard0: <16-bit PCCard bus> on pccbb0
pci_cfgintr_search: linked (62) to configured irq 9 at 0:9:0
pci_cfgintr: 0:10 INTA routed to irq 9
pccbb1: <TI1225 PCI-CardBus Bridge> at device 10.1 on pci0
cardbus1: <CardBus bus> on pccbb1
pccard1: <16-bit PCCard bus> on pccbb1
pci_cfgintr_search: linked (62) to configured irq 9 at 0:9:0
pci_cfgintr: 0:10 INTA routed to irq 9
pci0: <simple comms> at device 12.0 (no driver attached)
ata: ata0 already exists; skipping it
ata: ata1 already exists; skipping it
Trying Read_Port at 203
Trying Read_Port at 243
Trying Read_Port at 283
Trying Read_Port at 2c3
Trying Read_Port at 303
Trying Read_Port at 343
Trying Read_Port at 383
Trying Read_Port at 3c3
ex_isa_identify()
pnpbios: 17 devices, largest 218 bytes
PNP0c01: adding fixed memory32 range 0-0x9fbff, size=0x9fc00
PNP0c01: adding fixed memory32 range 0x9fc00-0x9ffff, size=0x400
PNP0c01: adding fixed memory32 range 0xe0000-0xfffff, size=0x20000
PNP0c01: adding fixed memory32 range 0x100000-0xffeffff, size=0xfef0000
PNP0c01: adding fixed memory32 range 0xfff0000-0xfff7fff, size=0x8000
PNP0c01: adding fixed memory32 range 0xfff8000-0xfffffff, size=0x8000
PNP0c01: adding fixed memory32 range 0xfec00000-0xfec00fff, size=0x1000
PNP0c01: adding fixed memory32 range 0xfee00000-0xfee00fff, size=0x1000
PNP0c01: adding fixed memory32 range 0xfffe0000-0xffffffff, size=0x20000
pnpbios: handle 0 device ID PNP0c01 (010cd041)
PNP0000: adding fixed io range 0x20-0x21, size=0x2, align=0x1
PNP0000: adding fixed io range 0xa0-0xa1, size=0x2, align=0x1
PNP0000: adding irq mask 0x4
pnpbios: handle 1 device ID PNP0000 (0000d041)
PNP0200: adding dma mask 0x10
PNP0200: adding fixed io range 0-0xf, size=0x10, align=0x1
PNP0200: adding fixed io range 0x80-0x90, size=0x11, align=0x1
PNP0200: adding fixed io range 0x94-0x9f, size=0xc, align=0x1
PNP0200: adding fixed io range 0xc0-0xdf, size=0x20, align=0x1
pnpbios: handle 2 device ID PNP0200 (0002d041)
PNP0100: adding irq mask 0x1
PNP0100: adding fixed io range 0x40-0x43, size=0x4, align=0x1
pnpbios: handle 3 device ID PNP0100 (0001d041)
PNP0b00: adding irq mask 0x100
PNP0b00: adding fixed io range 0x70-0x71, size=0x2, align=0x1
pnpbios: handle 4 device ID PNP0b00 (000bd041)
PNP0303: adding irq mask 0x2
PNP0303: adding fixed io range 0x60-0x60, size=0x1, align=0x1
PNP0303: adding fixed io range 0x64-0x64, size=0x1, align=0x1
pnpbios: handle 5 device ID PNP0303 (0303d041)
PNP0800: adding fixed io range 0x61-0x61, size=0x1, align=0x1
pnpbios: handle 6 device ID PNP0800 (0008d041)
PNP0c04: adding irq mask 0x2000
PNP0c04: adding fixed io range 0xf0-0xff, size=0x10, align=0x1
pnpbios: handle 7 device ID PNP0c04 (040cd041)
PNP0c02: adding io range 0x4d0-0x4d1, size=0x2, align=0x1
PNP0c02: adding io range 0xcf8-0xcff, size=0x8, align=0x1
PNP0c02: adding io range 0x440-0x44f, size=0x10, align=0x1
PNP0c02: adding io range 0x400-0x43f, size=0x40, align=0x1
PNP0c02: adding fixed memory32 range 0xcf000-0xcffff, size=0x1000
pnpbios: handle 8 device ID PNP0c02 (020cd041)
PNP0c02: adding io range 0x10-0x1f, size=0x10, align=0x1
PNP0c02: adding io range 0x22-0x3f, size=0x1e, align=0x1
PNP0c02: adding io range 0x44-0x5f, size=0x1c, align=0x1
PNP0c02: adding io range 0x62-0x63, size=0x2, align=0x1
PNP0c02: adding io range 0x65-0x6f, size=0xb, align=0x1
PNP0c02: adding io range 0x72-0x7d, size=0xc, align=0x1
PNP0c02: adding io range 0x91-0x93, size=0x3, align=0x1
PNP0c02: adding io range 0xa2-0xbf, size=0x1e, align=0x1
PNP0c02: adding io range 0xe0-0xef, size=0x10, align=0x1
PNP0c02: adding io range 0x3800-0x383f, size=0x40, align=0x1
pnpbios: handle 9 device ID PNP0c02 (020cd041)
PNP0501: adding io range 0x3f8-0x3ff, size=0x8, align=0x8
PNP0501: adding irq mask 0x10
pnpbios: handle 10 device ID PNP0501 (0105d041)
SMCf010: adding io range 0x3e8-0x3ef, size=0x8, align=0x8
SMCf010: adding io range 0x100-0x107, size=0x8, align=0x8
SMCf010: adding irq mask 0x8
SMCf010: adding dma mask 0x1
pnpbios: handle 11 device ID SMCf010 (10f0a34d)
PNP0400: adding io range 0x378-0x37f, size=0x8, align=0x8
PNP0400: adding irq mask 0x80
pnpbios: handle 12 device ID PNP0400 (0004d041)
PNP0700: adding io range 0x3f0-0x3f5, size=0x6, align=0x1
PNP0700: adding irq mask 0x40
PNP0700: adding dma mask 0x4
pnpbios: handle 13 device ID PNP0700 (0007d041)
pnpbios: handle 14 device ID PNP0e03 (030ed041)
PNP0f13: adding irq mask 0x1000
pnpbios: handle 15 device ID PNP0f13 (130fd041)
pnpbios: handle 16 device ID PNP0a03 (030ad041)
sc: sc0 already exists; skipping it
vga: vga0 already exists; skipping it
isa_probe_children: disabling PnP devices
isa_probe_children: probing non-PnP devices
orm0: <Option ROM> at iomem 0xc0000-0xcefff on isa0
adv0 failed to probe on isa0
aha0: status reg test failed ff
aha0: status reg test failed ff
aha0: status reg test failed ff
aha0: status reg test failed ff
aha0: status reg test failed ff
aha0: status reg test failed ff
aha0 failed to probe at port 0x134-0x137 on isa0
aic0 failed to probe at port 0x140-0x15f on isa0
atkbdc0: <Keyboard controller (i8042)> at port 0x64,0x60 on isa0
atkbd0: <AT Keyboard> flags 0x1 irq 1 on atkbdc0
atkbd: the current kbd controller command byte 0047
atkbd: keyboard ID 0x41ab (2)
kbd0 at atkbd0
kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000
psm0: current command byte:0047
psm0: failed to get data.
psm0: <PS/2 Mouse> irq 12 on atkbdc0
psm0: model IntelliMouse, device ID 3-00, 3 buttons
psm0: config:00000000, flags:00000000, packet size:4
psm0: syncmask:00, syncbits:00
bt0: Failed Status Reg Test - ff
bt_isa_probe: Probe failed at 0x330
bt0: Failed Status Reg Test - ff
bt_isa_probe: Probe failed at 0x334
bt0: Failed Status Reg Test - ff
bt_isa_probe: Probe failed at 0x230
bt0: Failed Status Reg Test - ff
bt_isa_probe: Probe failed at 0x234
bt0: Failed Status Reg Test - ff
bt_isa_probe: Probe failed at 0x130
bt0: Failed Status Reg Test - ff
bt_isa_probe: Probe failed at 0x134
bt0 failed to probe at port 0x134-0x137 on isa0
cs0 failed to probe at port 0x300-0x31f on isa0
ed0 failed to probe at port 0x280-0x29f iomem 0xd8000 irq 10 on isa0
fdc0: <enhanced floppy controller (i82077, NE72065 or clone)> at port
0x3f7,0x3f0-0x3f5 irq 6 drq 2 on isa0
fdc0: FIFO enabled, 8 bytes threshold
fd0: <1440-KB 3.5" drive> on fdc0 drive 0
fe0 failed to probe at port 0x300-0x31f on isa0
ie0 failed to probe at port 0x300 iomem 0xd0000 irq 10 on isa0
le0 failed to probe at port 0x300 iomem 0xd0000 irq 5 on isa0
lnc0 failed to probe at port 0x280 irq 10 drq 0 on isa0
pcic0 failed to probe at port 0x3e0 iomem 0xd0000 on isa0
pcic1: not probed (disabled)
pmtimer0 on isa0
ppc0: parallel port found at 0x378
ppc0: using extended I/O port range
ppc0: EPP SPP
ppc0: <Parallel port> at port 0x378-0x37f irq 7 on isa0
ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode
plip0: <PLIP network interface> on ppbus0
bpf: lp0 attached
lpt0: <Printer> on ppbus0
lpt0: Interrupt-driven port
ppi0: <Parallel I/O> on ppbus0
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sc0: fb0, kbd0, terminal emulator: sc (syscons terminal)
sio0: irq maps: 0x1 0x11 0x1 0x1
sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0
sio0: type 16550A
sio1: configured irq 3 not in bitmap of probed irqs 0
sio1: port may not be enabled
sio1: irq maps: 0x1 0x1 0x1 0x1
sio1: probe failed test(s): 0 1 2 4 6 7 9
sio1 failed to probe at port 0x2f8-0x2ff irq 3 on isa0
sio2: not probed (disabled)
sio3: not probed (disabled)
sn0 failed to probe at port 0x300-0x30f irq 10 on isa0
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
fb0: vga0, vga, type:VGA (5), flags:0x7007f
fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000
fb0: init mode:24, bios mode:3, current mode:24
fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k
vga0: vga: WARNING: video mode switching is not fully supported on this
adapter
VGA parameters upon power-up
50 18 10 00 00 00 03 00 02 e7 73 4f 4f 97 52 83
b4 1f 00 4f 0d 0e 00 00 07 80 91 87 8f 28 1f 8f
b5 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c
3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff
VGA parameters in BIOS for mode 24
50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81
bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96
b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c
3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff
EGA/VGA parameters to be used for mode 24
50 18 10 00 00 00 03 00 02 e7 73 4f 4f 97 52 83
b4 1f 00 4f 0d 0e 00 00 07 80 91 87 8f 28 1f 8f
b5 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c
3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff
vt0 failed to probe on isa0
isa_probe_children: probing PnP devices
adv1: Invalid baseport of 0x20 specified. Nearest valid baseport is 0x100.
Failing probe.
adv1: Invalid baseport of 0x0 specified. Nearest valid baseport is 0x100.
Failing probe.
adv1: Invalid baseport of 0x40 specified. Nearest valid baseport is 0x100.
Failing probe.
adv1: Invalid baseport of 0x70 specified. Nearest valid baseport is 0x100.
Failing probe.
unknown: <PNP0303> can't assign resources (port)
unknown: <PNP0303> at port 0x60 on isa0
adv1: Invalid baseport of 0x61 specified. Nearest valid baseport is 0x100.
Failing probe.
unknown: <PNP0800> failed to probe at port 0x61 on isa0
adv1: Invalid baseport of 0xf0 specified. Nearest valid baseport is 0x100.
Failing probe.
adv1: Invalid baseport of 0x4d0 specified. Nearest valid baseport is
0x330.  Failing probe.
unknown: <PNP0c02> can't assign resources (port)
unknown: <PNP0c02> at port 0x22-0x3f,0x10-0x1f on isa0
unknown: <PNP0501> can't assign resources (port)
unknown: <PNP0501> at port 0x3f8-0x3ff on isa0
adv1: Invalid baseport of 0x3e8 specified. Nearest valid baseport is
0x330.  Failing probe.
sio4: irq maps: 0x1 0x9 0x1 0x1
sio4: <SMCf010> at port 0x100-0x107,0x3e8-0x3ef irq 3 drq 0 on isa0
sio4: type 16550A
unknown: <PNP0400> can't assign resources (port)
unknown: <PNP0400> at port 0x378-0x37f on isa0
unknown: <PNP0700> can't assign resources (port)
unknown: <PNP0700> at port 0x3f0-0x3f5 on isa0
unknown: <PNP0e03> failed to probe on isa0
unknown: <PNP0f13> can't assign resources (irq)
unknown: <PNP0f13> at irq 12 on isa0
BIOS Geometries:
 0:0313fe3f 0..787=788 cylinders, 0..254=255 heads, 1..63=63 sectors
 0 accounted for
Device configuration finished.
procfs registered
bpf: lo0 attached
bpf: ppp0 attached
found->	vendor=0x1011, dev=0x0019, revid=0x41
	class=02-00-00, hdrtype=0x00, mfdev=0
	intpin=a, irq=128
cardbus0: Expecting link target, got 0x0
cardbus0: Resource not specified in CIS: id=10, size=80
cardbus0: Resource not specified in CIS: id=14, size=400
dc0: <Intel 21143 10/100BaseTX> port 0x1000-0x107f mem
0x84002000-0x840023ff irq 9 at device 0.0 on cardbus0
dc0: Ethernet address: 00:80:00:80:00:80
miibus0: <MII bus> on dc0
ukphy0: <Generic IEEE 802.3u media interface> on miibus0
ukphy0: OUI 0x001018, model 0x0021, rev. 2
ukphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
bpf: dc0 attached
ad0: success setting UDMA2 on Intel chip
Creating DISK ad0
ad0: <TOSHIBA MK6412MAT/K2.10 B> ATA-4 disk at ata0-master
ad0: 6194MB (12685680 sectors), 13424 C, 15 H, 63 S, 512 B
ad0: 16 secs/int, 1 depth queue, UDMA33
ad0: piomode=4 dmamode=2 udmamode=2 cblid=0
ata1-master: piomode=4 dmamode=2 udmamode=2 dmaflag=1
ata1-master: success setting PIO4 on generic chip
acd0: <TOSHIBA CD-ROM XM-1902B/1014> CDROM drive at ata1 as master
acd0: read 4134KB/s (34515KB/s), 128KB buffer, PIO4
acd0: Reads: CD-R, CD-RW, CD-DA stream
acd0: Writes:
acd0: Audio: play, 16 volume levels
acd0: Mechanism: ejectable tray, unlocked
acd0: Medium: no/blank disc
Mounting root from ufs:/dev/ad0s2a
ad0s1: type 0x7, start 63, end = 6136829, size 6136767 : OK
ad0s2: type 0xa5, start 6136830, end = 12675284, size 6538455 : OK
start_init: trying /sbin/init

---------------

Greetings,

Klaus Leibrandt



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-mobile" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.44.0204121353110.3002-100000>