From patchwork Sat Oct 3 22:12:00 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Walter Hutchins X-Patchwork-Id: 34931 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 7BD17B7088 for ; Sun, 4 Oct 2009 09:13:10 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752174AbZJCWMi (ORCPT ); Sat, 3 Oct 2009 18:12:38 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752190AbZJCWMi (ORCPT ); Sat, 3 Oct 2009 18:12:38 -0400 Received: from mail-yx0-f199.google.com ([209.85.210.199]:62004 "EHLO mail-yx0-f199.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752174AbZJCWMg (ORCPT ); Sat, 3 Oct 2009 18:12:36 -0400 Received: by yxe37 with SMTP id 37so2087838yxe.33 for ; Sat, 03 Oct 2009 15:12:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=g1T5PooBv9PLdspSBTGR/qf+B5bA068EpKkAkgPG0L8=; b=mkXPctiOjj4bK+sQF3w+WrwTnp39LwIz8Z+sQkjtRi7pJU7R5i7BMgTFc3YaxGm7ry Ds8vzA8c+qO8yQ6WElbqOKKa3MZWgDR7Pg8B2V1cwdLys4R6t0wWQvBZTONCZVIrie4E /Wg4HUaMpSJxoCPu1ez3kxlq966uNphkM1910= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=sW12EmFq5qHmdD0fLXjDPZElDkixPPlz5g5juWrsMYKa4KjUkdxkeGqqB5d8Rt+f8a wSHXORdnDoGh7bH4A9iRSJ1zF7keJtbvxCYLK2mq0WNrpQVOej+iqbnm8l9pjGnajY3+ 7vx2q9xiGUaVUWg2Fb3Suony2fGQS0/HDX4s0= MIME-Version: 1.0 Received: by 10.91.21.25 with SMTP id y25mr2466736agi.66.1254607920138; Sat, 03 Oct 2009 15:12:00 -0700 (PDT) Date: Sat, 3 Oct 2009 18:12:00 -0400 Message-ID: <898aa1e70910031512q39e0f582t5540669c19a821f8@mail.gmail.com> Subject: Re: [PATCH] sata_promise: Port enumeration order - SATA 150 TX4, SATA 300 TX4 From: Walter Hutchins To: linux-ide@vger.kernel.org Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org The first 2 ports on the SATA 300 TX4302 board are wired in reverse of the SATA 300 TX4 board. Wrong port order (still) makes it (nearly) impossible to deal with boot problems using two or more drives for users of TX4302 board. Driver was modified to remap ports on certain boards according to this line: static const unsigned char sataii_tx4_port_remap[4] = { 3, 1, 0, 2}; That modification makes the situation bad for users of TX4302 board. The situation could be much improved by adding kernel config parameters allowing users requiring a different remap order some sub options for CONFIG_SATA_PROMISE which would default to the current remap order. The sub options would not need to appear except by user kepress to open sub menu. config PROMISE_TX4302_REMAP prompt "TX4302 port remap" ---help--- The TX4302 card reverses ports 1 and 2 compared to the TX4 card. Say Y here if you are using the TX4302 card and you want ata1 to correspond to port 1 printed on the card (the first esata port). If unsure say N config PROMISE_TX4_NO_REMAP prompt "TX4 no port remap" ---help--- The TX4 and TX4302 cards enumerate the ports in a peculiar order compared to the ports numbers printed on the card. Say Y here if you want to use the peculiar native port ordering. You may want this if you want the ports to resolve the same way they did prior to kernel version 2.6.22. This would be useful if you sometimes boot older kernels or if upgrading numerous machines from kernels older than 2.6.22 and not wanting to change all the connections. If unsure say N Proof that TX4302 is wired differently from TX4 on the first 2 ports: Retail name: SATA 300 TX4302 2-port eSATA and 2-port internal SATA Chip label: PDC40718-GP SATAII 300 Vendor-Device number: 105a:3d17 (rev 02) Wiring: not-New and not-Old Bios version: 1.00.0.36 ----------------------------noremap (vanilla order prior to 2.6.22)------------- scsi1 ata2 bios0 silkscreen1 model-ST3500641AS dev/sdb 976773168 NCQ scsi3 ata4 bios1 silkscreen2 model-WD My Book dev/sdd 976773168 scsi0 ata1 bios2 silkscreen3 model-WDC WD400BB dev/sda 78165360 scsi2 ata3 bios3 silkscreen4 model-WDC WD600AB dev/sdc 117231408 ----------------------------remap 3102 (vanilla order since 2.6.22)------------- scsi1 ata2 bios0 silkscreen1 model-ST3500641AS dev/sdb 976773168 NCQ scsi0 ata1 bios1 silkscreen2 model-WD My Book dev/sda 976773168 scsi2 ata3 bios2 silkscreen3 model-WDC WD400BB dev/sdc 78165360 scsi3 ata4 bios3 silkscreen4 model-WDC WD600AB dev/sdd 117231408 ----------------------------remap 1302 (custom patch required)------------------ scsi0 ata1 bios0 silkscreen1 model-ST3500641AS dev/sda 976773168 NCQ scsi1 ata2 bios1 silkscreen2 model-WD My Book dev/sdb 976773168 scsi2 ata3 bios2 silkscreen3 model-WDC WD400BB dev/sdc 78165360 scsi3 ata4 bios3 silkscreen4 model-WDC WD600AB dev/sdd 117231408 The noremap log and lspci attached. ------------------- noremap log and lspci ---------------------------------- Oct 3 15:33:22 lfs syslogd 1.5.0: restart. Oct 3 15:33:23 lfs kernel: klogd 1.5.0, log source = /proc/kmsg started. Oct 3 15:33:23 lfs kernel: Inspecting /boot/System.map-2.6.18.8 Oct 3 15:33:23 lfs kernel: Loaded 28969 symbols from /boot/System.map-2.6.18.8. Oct 3 15:33:23 lfs kernel: Symbols match kernel version 2.6.18. Oct 3 15:33:23 lfs kernel: Loaded 292 symbols from 2 modules. Oct 3 15:33:23 lfs kernel: Linux version 2.6.18.8 (root@lfs) (gcc version 3.3.6) #1 Fri Sep 25 20:25:03 EDT 2009 Oct 3 15:33:23 lfs kernel: BIOS-provided physical RAM map: Oct 3 15:33:23 lfs kernel: BIOS-e820: 0000000000000000 - 000000000009d400 (usable) Oct 3 15:33:23 lfs kernel: BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved) Oct 3 15:33:23 lfs kernel: BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved) Oct 3 15:33:23 lfs kernel: BIOS-e820: 0000000000100000 - 000000005fffc000 (usable) Oct 3 15:33:23 lfs kernel: BIOS-e820: 000000005fffc000 - 000000005ffff000 (ACPI data) Oct 3 15:33:23 lfs kernel: BIOS-e820: 000000005ffff000 - 0000000060000000 (ACPI NVS) Oct 3 15:33:23 lfs kernel: BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved) Oct 3 15:33:23 lfs kernel: 639MB HIGHMEM available. Oct 3 15:33:23 lfs kernel: 896MB LOWMEM available. Oct 3 15:33:23 lfs kernel: On node 0 totalpages: 393212 Oct 3 15:33:23 lfs kernel: DMA zone: 4096 pages, LIFO batch:0 Oct 3 15:33:23 lfs kernel: Normal zone: 225280 pages, LIFO batch:31 Oct 3 15:33:23 lfs kernel: HighMem zone: 163836 pages, LIFO batch:31 Oct 3 15:33:23 lfs kernel: DMI 2.3 present. Oct 3 15:33:23 lfs kernel: ACPI: RSDP (v000 ASUS ) @ 0x000f5a60 Oct 3 15:33:23 lfs kernel: ACPI: RSDT (v001 ASUS P3V_4X 0x30303031 MSFT 0x31313031) @ 0x5fffc000 Oct 3 15:33:23 lfs kernel: ACPI: FADT (v001 ASUS P3V_4X 0x30303031 MSFT 0x31313031) @ 0x5fffc080 Oct 3 15:33:23 lfs kernel: ACPI: BOOT (v001 ASUS P3V_4X 0x30303031 MSFT 0x31313031) @ 0x5fffc040 Oct 3 15:33:23 lfs kernel: ACPI: DSDT (v001 ASUS P3V_4X 0x00001000 MSFT 0x0100000b) @ 0x00000000 Oct 3 15:33:23 lfs kernel: ACPI: PM-Timer IO Port: 0xe408 Oct 3 15:33:23 lfs kernel: Allocating PCI resources starting at 70000000 (gap: 60000000:9fff0000) Oct 3 15:33:23 lfs kernel: Detected 803.063 MHz processor. Oct 3 15:33:23 lfs kernel: Built 1 zonelists. Total pages: 393212 Oct 3 15:33:23 lfs kernel: Kernel command line: root=/dev/sdb11 ide0=noprobe Oct 3 15:33:23 lfs kernel: ide_setup: ide0=noprobe Oct 3 15:33:23 lfs kernel: Local APIC disabled by BIOS -- you can enable it with "lapic" Oct 3 15:33:23 lfs kernel: mapped APIC to ffffd000 (01c05000) Oct 3 15:33:23 lfs kernel: Enabling fast FPU save and restore... done. Oct 3 15:33:23 lfs kernel: Enabling unmasked SIMD FPU exception support... done. Oct 3 15:33:23 lfs kernel: Initializing CPU#0 Oct 3 15:33:23 lfs kernel: PID hash table entries: 4096 (order: 12, 16384 bytes) Oct 3 15:33:23 lfs kernel: Console: colour VGA+ 80x25 Oct 3 15:33:23 lfs kernel: Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) Oct 3 15:33:23 lfs kernel: Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) Oct 3 15:33:23 lfs kernel: Memory: 1554452k/1572848k available (2639k kernel code, 17300k reserved, 1115k data, 180k init, 655344k highmem) Oct 3 15:33:23 lfs kernel: Checking if this processor honours the WP bit even in supervisor mode... Ok. Oct 3 15:33:23 lfs kernel: Calibrating delay using timer specific routine.. 1606.92 BogoMIPS (lpj=803462) Oct 3 15:33:23 lfs kernel: Mount-cache hash table entries: 512 Oct 3 15:33:23 lfs kernel: CPU: After generic identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000 Oct 3 15:33:23 lfs kernel: CPU: After vendor identify, caps: 0383f9ff 00000000 00000000 00000000 00000000 00000000 00000000 Oct 3 15:33:23 lfs kernel: CPU: L1 I cache: 16K, L1 D cache: 16K Oct 3 15:33:23 lfs kernel: CPU: L2 cache: 256K Oct 3 15:33:23 lfs kernel: CPU: After all inits, caps: 0383f9ff 00000000 00000000 00000040 00000000 00000000 00000000 Oct 3 15:33:23 lfs kernel: Intel machine check architecture supported. Oct 3 15:33:23 lfs kernel: Intel machine check reporting enabled on CPU#0. Oct 3 15:33:23 lfs kernel: Compat vDSO mapped to ffffe000. Oct 3 15:33:23 lfs kernel: CPU: Intel Pentium III (Coppermine) stepping 06 Oct 3 15:33:23 lfs kernel: Checking 'hlt' instruction... OK. Oct 3 15:33:23 lfs kernel: ACPI: Core revision 20060707 Oct 3 15:33:23 lfs kernel: ACPI: setting ELCR to 0200 (from 0e20) Oct 3 15:33:23 lfs kernel: NET: Registered protocol family 16 Oct 3 15:33:23 lfs kernel: ACPI: bus type pci registered Oct 3 15:33:23 lfs kernel: PCI: PCI BIOS revision 2.10 entry at 0xf0890, last bus=1 Oct 3 15:33:23 lfs kernel: PCI: Using configuration type 1 Oct 3 15:33:23 lfs kernel: Setting up standard PCI resources Oct 3 15:33:23 lfs kernel: ACPI: Interpreter enabled Oct 3 15:33:23 lfs kernel: ACPI: Using PIC for interrupt routing Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 14 15) Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 14 15) Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15) Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 *9 10 11 12 14 15) Oct 3 15:33:23 lfs kernel: ACPI: PCI Root Bridge [PCI0] (0000:00) Oct 3 15:33:23 lfs kernel: PCI: Probing PCI hardware (bus 00) Oct 3 15:33:23 lfs kernel: ACPI: Assume root bridge [\_SB_.PCI0] bus is 0 Oct 3 15:33:23 lfs kernel: Boot video device is 0000:01:00.0 Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] Oct 3 15:33:23 lfs kernel: Linux Plug and Play Support v0.97 (c) Adam Belay Oct 3 15:33:23 lfs kernel: pnp: PnP ACPI init Oct 3 15:33:23 lfs kernel: pnp: PnP ACPI: found 14 devices Oct 3 15:33:23 lfs kernel: SCSI subsystem initialized Oct 3 15:33:23 lfs kernel: usbcore: registered new driver usbfs Oct 3 15:33:23 lfs kernel: usbcore: registered new driver hub Oct 3 15:33:23 lfs kernel: PCI: Using ACPI for IRQ routing Oct 3 15:33:23 lfs kernel: PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report Oct 3 15:33:23 lfs kernel: pnp: 00:03: ioport range 0xe400-0xe47f could not be reserved Oct 3 15:33:23 lfs kernel: pnp: 00:03: ioport range 0xe800-0xe80f has been reserved Oct 3 15:33:23 lfs kernel: PCI: Bridge: 0000:00:01.0 Oct 3 15:33:23 lfs kernel: IO window: disabled. Oct 3 15:33:23 lfs kernel: MEM window: d6000000-d7dfffff Oct 3 15:33:23 lfs kernel: PREFETCH window: d7f00000-e3ffffff Oct 3 15:33:23 lfs kernel: PCI: Setting latency timer of device 0000:00:01.0 to 64 Oct 3 15:33:23 lfs kernel: NET: Registered protocol family 2 Oct 3 15:33:23 lfs kernel: IP route cache hash table entries: 32768 (order: 5, 131072 bytes) Oct 3 15:33:23 lfs kernel: TCP established hash table entries: 131072 (order: 7, 524288 bytes) Oct 3 15:33:23 lfs kernel: TCP bind hash table entries: 65536 (order: 6, 262144 bytes) Oct 3 15:33:23 lfs kernel: TCP: Hash tables configured (established 131072 bind 65536) Oct 3 15:33:23 lfs kernel: TCP reno registered Oct 3 15:33:23 lfs kernel: Simple Boot Flag at 0x3a set to 0x1 Oct 3 15:33:23 lfs kernel: Machine check exception polling timer started. Oct 3 15:33:23 lfs kernel: highmem bounce pool size: 64 pages Oct 3 15:33:23 lfs kernel: Initializing Cryptographic API Oct 3 15:33:23 lfs kernel: io scheduler noop registered Oct 3 15:33:23 lfs kernel: io scheduler cfq registered (default) Oct 3 15:33:23 lfs kernel: Activating ISA DMA hang workarounds. Oct 3 15:33:23 lfs kernel: lp: driver loaded but no devices found Oct 3 15:33:23 lfs kernel: Real Time Clock Driver v1.12ac Oct 3 15:33:23 lfs kernel: Non-volatile memory driver v1.2 Oct 3 15:33:23 lfs kernel: Linux agpgart interface v0.101 (c) Dave Jones Oct 3 15:33:23 lfs kernel: agpgart: Detected VIA Apollo Pro 133 chipset Oct 3 15:33:23 lfs kernel: agpgart: AGP aperture is 64M @ 0xe4000000 Oct 3 15:33:23 lfs kernel: [drm] Initialized drm 1.0.1 20051102 Oct 3 15:33:23 lfs kernel: Serial: 8250/16550 driver $Revision: 1.90 $ 4 ports, IRQ sharing disabled Oct 3 15:33:23 lfs kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A Oct 3 15:33:23 lfs kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A Oct 3 15:33:23 lfs kernel: 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A Oct 3 15:33:23 lfs kernel: 00:0b: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A Oct 3 15:33:23 lfs kernel: parport: PnPBIOS parport detected. Oct 3 15:33:23 lfs kernel: parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE,EPP] Oct 3 15:33:23 lfs kernel: lp0: using parport0 (interrupt-driven). Oct 3 15:33:23 lfs kernel: Floppy drive(s): fd0 is 1.44M Oct 3 15:33:23 lfs kernel: FDC 0 is a post-1991 82077 Oct 3 15:33:23 lfs kernel: loop: loaded (max 8 devices) Oct 3 15:33:23 lfs kernel: e100: Intel(R) PRO/100 Network Driver, 3.5.10-k2-NAPI Oct 3 15:33:23 lfs kernel: e100: Copyright(c) 1999-2005 Intel Corporation Oct 3 15:33:23 lfs kernel: Linux Tulip driver version 1.1.13 (May 11, 2002) Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 9 Oct 3 15:33:23 lfs kernel: PCI: setting IRQ 9 as level-triggered Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt 0000:00:09.0[A] -> Link [LNKD] -> GSI 9 (level, low) -> IRQ 9 Oct 3 15:33:23 lfs kernel: tulip0: MII transceiver #1 config 1000 status 786d advertising 01e1. Oct 3 15:33:23 lfs kernel: eth0: ADMtek Comet rev 17 at 0001d000, 00:03:6D:14:18:92, IRQ 9. Oct 3 15:33:23 lfs kernel: Linux video capture interface: v2.00 Oct 3 15:33:23 lfs kernel: saa7130/34: v4l2 driver version 0.2.14 loaded Oct 3 15:33:23 lfs kernel: Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 Oct 3 15:33:23 lfs kernel: ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx Oct 3 15:33:23 lfs kernel: VP_IDE: IDE controller at PCI slot 0000:00:04.1 Oct 3 15:33:23 lfs kernel: VP_IDE: chipset revision 6 Oct 3 15:33:23 lfs kernel: VP_IDE: not 100% native mode: will probe irqs later Oct 3 15:33:23 lfs kernel: VP_IDE: VIA vt82c596b (rev 12) IDE UDMA66 controller on pci0000:00:04.1 Oct 3 15:33:23 lfs kernel: ide0: BM-DMA at 0xd800-0xd807, BIOS settings: hda:pio, hdb:pio Oct 3 15:33:23 lfs kernel: ide1: BM-DMA at 0xd808-0xd80f, BIOS settings: hdc:DMA, hdd:DMA Oct 3 15:33:23 lfs kernel: Probing IDE interface ide1... Oct 3 15:33:23 lfs kernel: hdc: CREATIVE DVD-ROM DVD1243E, ATAPI CD/DVD-ROM drive Oct 3 15:33:23 lfs kernel: hdd: LITE-ON LTR-52246S, ATAPI CD/DVD-ROM drive Oct 3 15:33:23 lfs kernel: ide1 at 0x170-0x177,0x376 on irq 15 Oct 3 15:33:23 lfs kernel: PDC20268: IDE controller at PCI slot 0000:00:0c.0 Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11 Oct 3 15:33:23 lfs kernel: PCI: setting IRQ 11 as level-triggered Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt 0000:00:0c.0[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11 Oct 3 15:33:23 lfs kernel: PDC20268: chipset revision 2 Oct 3 15:33:23 lfs kernel: PDC20268: ROM enabled at 0x70028000 Oct 3 15:33:23 lfs kernel: PDC20268: 100% native mode on irq 11 Oct 3 15:33:23 lfs kernel: ide2: BM-DMA at 0xa000-0xa007, BIOS settings: hde:pio, hdf:pio Oct 3 15:33:23 lfs kernel: ide3: BM-DMA at 0xa008-0xa00f, BIOS settings: hdg:pio, hdh:pio Oct 3 15:33:23 lfs kernel: Probing IDE interface ide2... Oct 3 15:33:23 lfs kernel: Probing IDE interface ide3... Oct 3 15:33:23 lfs kernel: hdc: ATAPI 40X DVD-ROM drive, 512kB Cache Oct 3 15:33:23 lfs kernel: Uniform CD-ROM driver Revision: 3.20 Oct 3 15:33:23 lfs kernel: hdd: ATAPI 52X CD-ROM CD-R/RW drive, 2048kB Cache Oct 3 15:33:23 lfs kernel: libata version 2.00 loaded. Oct 3 15:33:23 lfs kernel: sata_promise 0000:00:0e.0: version 1.04 Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 5 Oct 3 15:33:23 lfs kernel: PCI: setting IRQ 5 as level-triggered Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt 0000:00:0e.0[A] -> Link [LNKC] -> GSI 5 (level, low) -> IRQ 5 Oct 3 15:33:23 lfs kernel: ata1: SATA max UDMA/133 cmd 0xF881C200 ctl 0xF881C238 bmdma 0x0 irq 5 Oct 3 15:33:23 lfs kernel: ata2: SATA max UDMA/133 cmd 0xF881C280 ctl 0xF881C2B8 bmdma 0x0 irq 5 Oct 3 15:33:23 lfs kernel: ata3: SATA max UDMA/133 cmd 0xF881C300 ctl 0xF881C338 bmdma 0x0 irq 5 Oct 3 15:33:23 lfs kernel: ata4: SATA max UDMA/133 cmd 0xF881C380 ctl 0xF881C3B8 bmdma 0x0 irq 5 Oct 3 15:33:23 lfs kernel: scsi0 : sata_promise Oct 3 15:33:23 lfs kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300) Oct 3 15:33:23 lfs kernel: ata1.00: ATA-5, max UDMA/100, 78165360 sectors: LBA Oct 3 15:33:23 lfs kernel: ata1.00: ata1: dev 0 multi count 0 Oct 3 15:33:23 lfs kernel: ata1.00: applying bridge limits Oct 3 15:33:23 lfs kernel: ata1.00: configured for UDMA/100 Oct 3 15:33:23 lfs kernel: scsi1 : sata_promise Oct 3 15:33:23 lfs kernel: ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300) Oct 3 15:33:23 lfs kernel: ata2.00: ATA-7, max UDMA/133, 976773168 sectors: LBA48 NCQ (depth 0/32) Oct 3 15:33:23 lfs kernel: ata2.00: configured for UDMA/133 Oct 3 15:33:23 lfs kernel: scsi2 : sata_promise Oct 3 15:33:23 lfs kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300) Oct 3 15:33:23 lfs kernel: ata3.00: ATA-5, max UDMA/100, 117231408 sectors: LBA Oct 3 15:33:23 lfs kernel: ata3.00: ata3: dev 0 multi count 0 Oct 3 15:33:23 lfs kernel: ata3.00: applying bridge limits Oct 3 15:33:23 lfs kernel: ata3.00: configured for UDMA/100 Oct 3 15:33:23 lfs kernel: scsi3 : sata_promise Oct 3 15:33:23 lfs kernel: ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300) Oct 3 15:33:23 lfs kernel: ata4.00: ATA-6, max UDMA/133, 976773168 sectors: LBA48 Oct 3 15:33:23 lfs kernel: ata4.00: ata4: dev 0 multi count 0 Oct 3 15:33:23 lfs kernel: ata4.00: configured for UDMA/133 Oct 3 15:33:23 lfs kernel: Vendor: ATA Model: WDC WD400BB-00DG Rev: 05.0 Oct 3 15:33:23 lfs kernel: Type: Direct-Access ANSI SCSI revision: 05 Oct 3 15:33:23 lfs kernel: Vendor: ATA Model: ST3500641AS Rev: 3.AA Oct 3 15:33:23 lfs kernel: Type: Direct-Access ANSI SCSI revision: 05 Oct 3 15:33:23 lfs kernel: Vendor: ATA Model: WDC WD600AB-32BV Rev: 21.0 Oct 3 15:33:23 lfs kernel: Type: Direct-Access ANSI SCSI revision: 05 Oct 3 15:33:23 lfs kernel: Vendor: ATA Model: WD My Book Rev: 012 Oct 3 15:33:23 lfs kernel: Type: Direct-Access ANSI SCSI revision: 05 Oct 3 15:33:23 lfs kernel: SCSI device sda: 78165360 512-byte hdwr sectors (40021 MB) Oct 3 15:33:23 lfs kernel: sda: Write Protect is off Oct 3 15:33:23 lfs kernel: sda: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sda: drive cache: write back Oct 3 15:33:23 lfs kernel: SCSI device sda: 78165360 512-byte hdwr sectors (40021 MB) Oct 3 15:33:23 lfs kernel: sda: Write Protect is off Oct 3 15:33:23 lfs kernel: sda: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sda: drive cache: write back Oct 3 15:33:23 lfs kernel: sda: sda1 sda2 < sda5 sda6 sda7 sda8 sda9 sda10 > Oct 3 15:33:23 lfs kernel: sd 0:0:0:0: Attached scsi disk sda Oct 3 15:33:23 lfs kernel: SCSI device sdb: 976773168 512-byte hdwr sectors (500108 MB) Oct 3 15:33:23 lfs kernel: sdb: Write Protect is off Oct 3 15:33:23 lfs kernel: sdb: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sdb: drive cache: write back Oct 3 15:33:23 lfs kernel: SCSI device sdb: 976773168 512-byte hdwr sectors (500108 MB) Oct 3 15:33:23 lfs kernel: sdb: Write Protect is off Oct 3 15:33:23 lfs kernel: sdb: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sdb: drive cache: write back Oct 3 15:33:23 lfs kernel: sdb: sdb1 sdb2 < sdb5 sdb6 sdb7 sdb8 sdb9 sdb10 sdb11 sdb12 sdb13 sdb14 sdb15 > sdb3 Oct 3 15:33:23 lfs kernel: sd 1:0:0:0: Attached scsi disk sdb Oct 3 15:33:23 lfs kernel: SCSI device sdc: 117231408 512-byte hdwr sectors (60022 MB) Oct 3 15:33:23 lfs kernel: sdc: Write Protect is off Oct 3 15:33:23 lfs kernel: sdc: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sdc: drive cache: write back Oct 3 15:33:23 lfs kernel: SCSI device sdc: 117231408 512-byte hdwr sectors (60022 MB) Oct 3 15:33:23 lfs kernel: sdc: Write Protect is off Oct 3 15:33:23 lfs kernel: sdc: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sdc: drive cache: write back Oct 3 15:33:23 lfs kernel: sdc: sdc1 sdc2 < sdc5 sdc6 sdc7 sdc8 sdc9 sdc10 > sdc3 Oct 3 15:33:23 lfs kernel: sd 2:0:0:0: Attached scsi disk sdc Oct 3 15:33:23 lfs kernel: SCSI device sdd: 976773168 512-byte hdwr sectors (500108 MB) Oct 3 15:33:23 lfs kernel: sdd: Write Protect is off Oct 3 15:33:23 lfs kernel: sdd: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sdd: drive cache: write back Oct 3 15:33:23 lfs kernel: SCSI device sdd: 976773168 512-byte hdwr sectors (500108 MB) Oct 3 15:33:23 lfs kernel: sdd: Write Protect is off Oct 3 15:33:23 lfs kernel: sdd: Mode Sense: 00 3a 00 00 Oct 3 15:33:23 lfs kernel: SCSI device sdd: drive cache: write back Oct 3 15:33:23 lfs kernel: sdd: sdd1 sdd2 < sdd5 sdd6 sdd7 sdd8 sdd9 sdd10 sdd11 > sdd3 sdd4 Oct 3 15:33:23 lfs kernel: sd 3:0:0:0: Attached scsi disk sdd Oct 3 15:33:23 lfs kernel: USB Universal Host Controller Interface driver v3.0 Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt 0000:00:04.2[D] -> Link [LNKD] -> GSI 9 (level, low) -> IRQ 9 Oct 3 15:33:23 lfs kernel: uhci_hcd 0000:00:04.2: UHCI Host Controller Oct 3 15:33:23 lfs kernel: uhci_hcd 0000:00:04.2: new USB bus registered, assigned bus number 1 Oct 3 15:33:23 lfs kernel: uhci_hcd 0000:00:04.2: irq 9, io base 0x0000d400 Oct 3 15:33:23 lfs kernel: usb usb1: configuration #1 chosen from 1 choice Oct 3 15:33:23 lfs kernel: hub 1-0:1.0: USB hub found Oct 3 15:33:23 lfs kernel: hub 1-0:1.0: 2 ports detected Oct 3 15:33:23 lfs kernel: Initializing USB Mass Storage driver... Oct 3 15:33:23 lfs kernel: usb 1-1: new full speed USB device using uhci_hcd and address 2 Oct 3 15:33:23 lfs kernel: usb 1-1: configuration #1 chosen from 1 choice Oct 3 15:33:23 lfs kernel: usbcore: registered new driver usb-storage Oct 3 15:33:23 lfs kernel: USB Mass Storage support registered. Oct 3 15:33:23 lfs kernel: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 Oct 3 15:33:23 lfs kernel: serio: i8042 AUX port at 0x60,0x64 irq 12 Oct 3 15:33:23 lfs kernel: serio: i8042 KBD port at 0x60,0x64 irq 1 Oct 3 15:33:23 lfs kernel: mice: PS/2 mouse device common for all mice Oct 3 15:33:23 lfs kernel: input: PC Speaker as /class/input/input0 Oct 3 15:33:23 lfs kernel: input: AT Translated Set 2 keyboard as /class/input/input1 Oct 3 15:33:23 lfs kernel: i2c /dev entries driver Oct 3 15:33:23 lfs kernel: Advanced Linux Sound Architecture Driver Version 1.0.12rc1 (Thu Jun 22 13:55:50 2006 UTC). Oct 3 15:33:23 lfs kernel: ALSA device list: Oct 3 15:33:23 lfs kernel: No soundcards found. Oct 3 15:33:23 lfs kernel: TCP bic registered Oct 3 15:33:23 lfs kernel: NET: Registered protocol family 1 Oct 3 15:33:23 lfs kernel: NET: Registered protocol family 17 Oct 3 15:33:23 lfs kernel: Using IPI Shortcut mode Oct 3 15:33:23 lfs kernel: ACPI: (supports S0 S1<6>Time: tsc clocksource has been installed. Oct 3 15:33:23 lfs kernel: S4 S5) Oct 3 15:33:23 lfs kernel: kjournald starting. Commit interval 5 seconds Oct 3 15:33:23 lfs kernel: EXT3-fs: mounted filesystem with ordered data mode. Oct 3 15:33:23 lfs kernel: VFS: Mounted root (ext3 filesystem) readonly. Oct 3 15:33:23 lfs kernel: Freeing unused kernel memory: 180k freed Oct 3 15:33:23 lfs kernel: input: ImPS/2 Generic Wheel Mouse as /class/input/input2 Oct 3 15:33:23 lfs kernel: udev: starting version 130 Oct 3 15:33:23 lfs kernel: udev: deprecated sysfs layout (kernel too old, or CONFIG_SYSFS_DEPRECATED) is unsupported, some udev features may fail Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10 Oct 3 15:33:23 lfs kernel: PCI: setting IRQ 10 as level-triggered Oct 3 15:33:23 lfs kernel: ACPI: PCI Interrupt 0000:00:0b.0[A] -> Link [LNKB] -> GSI 10 (level, low) -> IRQ 10 Oct 3 15:33:23 lfs kernel: drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 2 if 0 alt 0 proto 2 vid 0x03F0 pid 0x7004 Oct 3 15:33:23 lfs kernel: usbcore: registered new driver usblp Oct 3 15:33:23 lfs kernel: drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver Oct 3 15:33:23 lfs kernel: Adding 522072k swap on /dev/sdb6. Priority:1 extents:1 across:522072k Oct 3 15:33:23 lfs kernel: EXT3 FS on sdb11, internal journal Oct 3 15:33:23 lfs dhcpcd[2010]: eth0: dhcpcd 4.0.7 starting Oct 3 15:33:23 lfs dhcpcd[2010]: eth0: broadcasting for a lease Oct 3 15:33:24 lfs dhcpcd[2010]: eth0: offered 192.168.1.96 from 192.168.1.254 Oct 3 15:33:24 lfs dhcpcd[2010]: eth0: checking 192.168.1.96 is available on attached networks Oct 3 15:33:26 lfs kernel: 0000:00:09.0: tulip_stop_rxtx() failed Oct 3 15:33:26 lfs kernel: eth0: Setting full-duplex based on MII#1 link partner capability of 41e1. Oct 3 15:33:29 lfs dhcpcd[2010]: eth0: acknowledged 192.168.1.96 from 192.168.1.254 Oct 3 15:33:29 lfs dhcpcd[2010]: eth0: leased 192.168.1.96 for 86400 seconds Relevant portion of lspci -vvvxxx: 00:0e.0 Mass storage controller: Promise Technology, Inc. PDC40718 (SATA 300 TX4) (rev 02) Subsystem: Promise Technology, Inc. PDC40718 (SATA 300 TX4) Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR-