From owner-freebsd-hardware@FreeBSD.ORG Sun Mar 30 09:06:46 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E61D337B401 for ; Sun, 30 Mar 2003 09:06:46 -0800 (PST) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10F3043F75 for ; Sun, 30 Mar 2003 09:06:46 -0800 (PST) (envelope-from mike@sentex.net) Received: from house (cage.simianscience.com [64.7.134.1]) by smtp1.sentex.ca (8.12.9/8.12.6) with SMTP id h2UH6lWG034288 for ; Sun, 30 Mar 2003 12:06:47 -0500 (EST) (envelope-from mike@sentex.net) From: Mike Tancsa To: freebsd-hardware@freebsd.org Date: Sun, 30 Mar 2003 12:04:48 -0500 Message-ID: <8e8e8vou1b7rtvg4nih6g7h79lbrtpbstc@4ax.com> References: In-Reply-To: X-Mailer: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Re: problem on 1TB filesystem RAID 5 3ware X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 30 Mar 2003 17:06:48 -0000 On Sat, 29 Mar 2003 13:48:15 -0600, in sentex.lists.freebsd.hardware you wrote: > >>There have been broken 3ware firmwares in the past that specifically >>effected RAID5. A quick test of the same hardware under LINUX or win2k >>would confirm if this is another firmware issue or driver specific. = Another >>common issue across all platforms (i.e. firmware issue) was changing = the >>disk stripe to anything other than the default 64k on RAID0 or 10. = This >>too would break things on all operating systems. > >We'd like to use the 3ware 7000-2 in non-RAID JBOD, to get the supposed=20 >speed benefit of the 3ware "switch fabric", lower CPU overhead, etc. in=20 >high-volume SMTP relays. > >Will whatever 3ware+FreeBSD somewhat "discutable" 3ware problems show up= in=20 >JBOD mode or are the problems limited to RAID? I have *many* 3ware cards deployed in FreeBSD in RAID1, one very large = news server with several RAID0 stripes (it blasts 25Mb/s onto the drives 24hrs= a day) running dnews with about 55 concurrent clients reading at peak = times) and a busy sql server in RAID10 with excellent results. I cant speak to RAID5 as I dont have any application for that configuration, nor JBOD. However, I have tested a pair of drives in RAID 1 vs the same drive on a regular ATA controller. Even in RAID1, the reads are faster as both spindles seem to be used in an intelligent way and we had no difference = in write speed with respect for the RAID5 issues, try "raid5, 3ware, corruption, linux" = on google... http://www.google.ca/search?q=3Dcache:DXp1yfuL5RwC:computing.fnal.gov/cms= /disk/performance/3ware/3Ware_CMS_Story.html+3ware+corruption+raid5&hl=3D= en&ie=3DUTF-8 >Does anybody have experience or URL that says the 3ware 7000-2 @ $100 is= =20 >sufficiently "better" to justify it over an Promise "Ultra133 TX2" @ = $40? as JBOD, I doubt you would see any significant difference. If you want RAID0,1 or 10, I highly recommend the 3ware. ---Mike Mike Tancsa (mike@sentex.net)=09 http://www.sentex.net/mike From owner-freebsd-hardware@FreeBSD.ORG Wed Apr 2 05:49:44 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F090237B401 for ; Wed, 2 Apr 2003 05:49:44 -0800 (PST) Received: from critchley.biz (pc2-flit1-2-cust182.lutn.cable.ntl.com [62.255.182.182]) by mx1.FreeBSD.org (Postfix) with SMTP id 9BD9A43F75 for ; Wed, 2 Apr 2003 05:49:43 -0800 (PST) (envelope-from john@critchley.biz) To: freebsd-hardware@freebsd.org Date: Wed, 2 Apr 2003 14:49:41 +0100 (BST) In-Reply-To: <20030329133114.A16353@neurosoft.org> from "Zachariah P Garner" at Mar 29, 2003 01:31:14 PM X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: john@critchley.biz Sender: john@critchley.biz Message-ID: <200304021449.aa13687@banana.critchley.biz> Subject: Linksys WMP11 card X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 13:49:45 -0000 Hi, I'd like to get this going under FreeBSD. It seems to have the same Prism hardware as the PCMCIA cards made by Linksys, so I thought I'd try getting it working. I added {0x14e4, 0x4301, WI_BUS_PCI_NATIVE, "Linksys WMP11"}, to the pci_ids in the /usr/src/sys/dev/wi/if_wi_pci.c file. It didn't work: wi0: wi_pci_attach() failed to enable pci! I added debugging 139 command = pci_read_config(dev, PCIR_COMMAND, 4); 140 wanted = PCIM_CMD_PORTEN|PCIM_CMD_MEMEN; 141 command |= wanted; 142 pci_write_config(dev, PCIR_COMMAND, command, 4); 143 command = pci_read_config(dev, PCIR_COMMAND, 4); 144 if ((command & wanted) != wanted) { 145 device_printf(dev, "wi_pci_attach() failed to enable pci!\n"); 146 /* BEGIN -jc */ 147 printf("Command state=%x Wanted to add=%x\n", command, wanted); 148 if(!(command&PCIM_CMD_PORTEN)) 149 printf("PCIM_CMD_PORTEN failed to happen\n"); 150 if(!(command&PCIM_CMD_MEMEN)) 151 printf("PCIM_CMD_MEMEN failed to happen\n"); 152 /* END -jc */ 153 return (ENXIO); 154 } 155 and found that "PCIM_CMD_PORTEN failed to happen" Am I on the right track? Does this card work on any other BSD? -jc From owner-freebsd-hardware@FreeBSD.ORG Wed Apr 2 15:12:31 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA6BD37B401 for ; Wed, 2 Apr 2003 15:12:31 -0800 (PST) Received: from lakemtao05.cox.net (lakemtao05.cox.net [68.1.17.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2FC243FB1 for ; Wed, 2 Apr 2003 15:12:30 -0800 (PST) (envelope-from bsd@hightek.org) Received: from quark.localdomain ([68.12.144.236]) by lakemtao05.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030402231229.OOSE28938.lakemtao05.cox.net@quark.localdomain> for ; Wed, 2 Apr 2003 18:12:29 -0500 From: Vincent To: freebsd-hardware@FreeBSD.ORG Date: Wed, 2 Apr 2003 17:12:50 -0600 User-Agent: KMail/1.5 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200304021712.50857.bsd@hightek.org> Subject: USB FlashLink CF card reader on 5.0 RELEASE X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Apr 2003 23:12:32 -0000 Hi. I bought a SimpleTech FlashLink UCF-100 compact flash card reader because they claimed it was mass storage compliant, but it does not seem to work under FreeBSD. I tested on the RELEASE kernel and the on the 5.0-RELEASE-p7 kernel. It reports the following entries in the system log with a bunch of the duplicate entries clipped. kernel: umass0: USB Mass Storage, rev 1.10/1.13, addr 3 kernel: umass0: Get Max Lun not supported (STALLED) kernel: umass0: BBB reset failed, IOERROR kernel: umass0: BBB bulk-in clear stall failed, IOERROR kernel: umass0: BBB bulk-out clear stall failed, IOERROR kernel: umass0: BBB reset failed, IOERROR kernel: umass0: BBB bulk-in clear stall failed, IOERROR kernel: umass0: BBB bulk-out clear stall failed, IOERROR kernel: umass0: BBB reset failed, IOERROR . . kernel: (da0:umass-sim0:0:0:0): got CAM status 0x4 kernel: (da0:umass-sim0:0:0:0): fatal error, failed to attach to device kernel: (da0:umass-sim0:0:0:0): lost device kernel: umass0: BBB reset failed, IOERROR kernel: umass0: BBB bulk-in clear stall failed, IOERROR kernel: umass0: BBB bulk-out clear stall failed, IOERROR . . kernel: (da0:umass-sim0:0:0:0): removing device entry kernel: Opened disk da0 -> 5 Device da0 never appears in the device directory. Any help would be appreciated. I have a SanDisk CF card reader which works just fine with the same CF card plugged into it. Regards, Vincent From owner-freebsd-hardware@FreeBSD.ORG Wed Apr 2 18:50:21 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8E1037B401 for ; Wed, 2 Apr 2003 18:50:21 -0800 (PST) Received: from oxley.vic.edu.au (adsl007.vic.etalk.net.au [203.56.245.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id DECE643FBD for ; Wed, 2 Apr 2003 18:50:18 -0800 (PST) (envelope-from allan-nelson@oxley.vic.edu.au) Received: from allandesktop [10.0.1.98] by oxley.vic.edu.au with Novonyx SMTP Server $Revision: 2.72 $; Thu, 03 Apr 2003 11:54:03 +1000 (ESUT) Message-ID: <00fd01c2f983$d13f6520$6201000a@allandesktop> From: "Allan Nelson" To: Date: Thu, 3 Apr 2003 11:53:26 +1000 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Is this supported? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:50:22 -0000 Hi, Just joined the list today, so sorry if this is the wrong place to post = this message, but it seemed like the one it should go in. Ok. I have a Laptop that i want to setup as a Wireless access point. I = have 2 PCMCIA slots in it and am going to use one for the wireless card = and the other for a network card (there is no inbuilt network port). The wireless card works fine, and i have no problems setting that up and = getting that to work, but as for the network card i can not get it to = work. It is an Alloy card, i am not sure of the chipset, but from my searches = on the net it seemes it is just a clone ne2000 card. When i insert it = into the laptop it says that the card is not found, and does nothing. Now the problem is that i need to use this card to install FreeBSD on = the laptop but it does not seem to load during the boot, even though all = the lights that are ment to come on, work. Here is a link to the card: http://www.alloy.com.au/products/6305m.htm If anyone can let me know if this is supported or if there is some = driver that i can load after i have booted of the floppy that would be = great. Some other information that you might want --=20 Installing FreeBSD 5.0 Doing an FTP Install Booting from the kern.flp and the mfsroot.fpl images . Thanks for any help -|- Hurgh -|- From owner-freebsd-hardware@FreeBSD.ORG Wed Apr 2 18:55:25 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DB6A37B401 for ; Wed, 2 Apr 2003 18:55:25 -0800 (PST) Received: from oxley.vic.edu.au (adsl007.vic.etalk.net.au [203.56.245.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 672F143F93 for ; Wed, 2 Apr 2003 18:55:24 -0800 (PST) (envelope-from hurgh@oxley.vic.edu.au) Received: from allandesktop [10.0.1.98] by oxley.vic.edu.au with Novonyx SMTP Server $Revision: 2.72 $; Thu, 03 Apr 2003 11:59:09 +1000 (ESUT) Message-ID: <011101c2f984$8747bca0$6201000a@allandesktop> From: "-|- Hurgh -|-" To: Date: Thu, 3 Apr 2003 11:58:31 +1000 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Is This Supported? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 02:55:25 -0000 Hi, Just joined the list today, so sorry if this is the wrong place to post = this message, but it seemed like the one it should go in. Ok. I have a Laptop that i want to setup as a Wireless access point. I = have 2 PCMCIA slots in it and am going to use one for the wireless card = and the other for a network card (there is no inbuilt network port). The wireless card works fine, and i have no problems setting that up and = getting that to work, but as for the network card i can not get it to = work. It is an Alloy card, i am not sure of the chipset, but from my searches = on the net it seemes it is just a clone ne2000 card. When i insert it = into the laptop it says that the card is not found, and does nothing. Now the problem is that i need to use this card to install FreeBSD on = the laptop but it does not seem to load during the boot, even though all = the lights that are ment to come on, work. Here is a link to the card: http://www.alloy.com.au/products/6305m.htm If anyone can let me know if this is supported or if there is some = driver that i can load after i have booted of the floppy that would be = great. Some other information that you might want --=20 Installing FreeBSD 5.0 Doing an FTP Install Booting from the kern.flp and the mfsroot.fpl images . Thanks for any help -|- Hurgh -|- PS: Sorry about the last post if it gets through, i used the wrong email = address. From owner-freebsd-hardware@FreeBSD.ORG Wed Apr 2 19:20:54 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6309837B401 for ; Wed, 2 Apr 2003 19:20:54 -0800 (PST) Received: from aphrodite.gwi.net (aphrodite.gwi.net [207.5.128.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8233543FA3 for ; Wed, 2 Apr 2003 19:20:53 -0800 (PST) (envelope-from ah54@httpsite.com) Received: from andy.gwi.net (blake.gwi.net [207.5.142.8]) by aphrodite.gwi.net (8.12.6/8.12.6) with ESMTP id h333KqK4026649 for ; Wed, 2 Apr 2003 22:20:52 -0500 (EST) (envelope-from ah54@httpsite.com) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 X-Homepage: http://www.nachoz.com X-PGP-Key: RSA-1024 http://www.nachoz.com/andy.pub X-System-Info-DB: PostgreSQL-7.3.2 X-System-Info-RT: rt-3-0-0 X-System-Info-WM: windowmaker-0.80.2 X-System-Info-httpd: apache-1.3.27_4 X-System-Info-OS: FreeBSD 4.7-RELEASE-p6 Date: Wed, 02 Apr 2003 22:21:00 -0500 (EST) Sender: aharriso@andy.gwi.net From: Andy Harrison To: freebsd-hardware@freebsd.org Subject: video card X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 03:20:54 -0000 -----BEGIN PGP SIGNED MESSAGE----- I have a rather ancient system (ppro 200mhz) for my freebsd toy machine that I'm upgrading a little bit. Any recommendations for the absolute cheapest pci video card with 8+MB that works well with FreeBSD? I have version 5 installed at the moment. Newegg has a "Palit Daytona Nvidia Riva TNT2 M64 32MB SDRAM PCI" for $34 bucks shipped. ~~ Andy Harrison ah##@httpsite.com ICQ: 123472 AIM/Y!: AHinMaine [full headers for details] -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBPouom1PEkLgodAWVAQEO5gQAmsAzQQBZEb+b2kptFQOwKxZHAY6Ys+Fx d1TfDb7+U386srBs/VZQfOMRsy+sJ7Xk8M88NDWC4YW2M3iY7GbYys/tRhVNhzzT e3xCiWKl5IRMgWNlMMvjY4n1R2z4giySkTgKXf5BM8H0ReHF2uaI6dQG4EtwQVV4 vmyFhc/tMuI= =HO80 -----END PGP SIGNATURE----- From owner-freebsd-hardware@FreeBSD.ORG Wed Apr 2 20:16:21 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE1C337B401 for ; Wed, 2 Apr 2003 20:16:21 -0800 (PST) Received: from BAY0-HMR12.adinternal.hotmail.com (bay0-hmr12.bay0.hotmail.com [65.54.241.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E96943F93 for ; Wed, 2 Apr 2003 20:16:21 -0800 (PST) (envelope-from loexcalibur@hotmail.com) Received: from hotmail.com ([65.54.244.198]) by BAY0-HMR12.adinternal.hotmail.com with Microsoft SMTPSVC(5.0.2195.5600); Wed, 2 Apr 2003 20:16:20 -0800 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 2 Apr 2003 20:16:20 -0800 Received: from 64.168.25.7 by bay1-dav63.bay1.hotmail.com with DAV; Thu, 03 Apr 2003 04:16:20 +0000 X-Originating-IP: [64.168.25.7] X-Originating-Email: [loexcalibur@hotmail.com] From: To: Date: Wed, 2 Apr 2003 20:16:21 -0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Message-ID: X-OriginalArrivalTime: 03 Apr 2003 04:16:20.0525 (UTC) FILETIME=[C7AE1DD0:01C2F997] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Broadcom 4401 network driver X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 04:16:22 -0000 Hi. I'm new here. I'm also wondering if the broadcom 440x drivers will = be made. There are linux drivers available for that device, which you = can download from the asus website (probably other manufacturers also), = but there are no FreeBSD drivers. I don't know how to port these = drivers, but maybe someone can try to? I'm sure if the linux drivers are = available, it should be a lot easier to make the driver for FreeBSD. Any = help would be much appreciated. From owner-freebsd-hardware@FreeBSD.ORG Thu Apr 3 00:43:00 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E1E737B401 for ; Thu, 3 Apr 2003 00:42:59 -0800 (PST) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 374C643F75 for ; Thu, 3 Apr 2003 00:42:58 -0800 (PST) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h338glM2032513; Thu, 3 Apr 2003 18:42:47 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h338gkcs032512; Thu, 3 Apr 2003 18:42:46 +1000 (EST) Date: Thu, 3 Apr 2003 18:42:45 +1000 From: Peter Jeremy To: Andy Harrison Message-ID: <20030403084245.GC7729@cirb503493.alcatel.com.au> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: freebsd-hardware@freebsd.org Subject: Re: video card X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 08:43:00 -0000 On Wed, Apr 02, 2003 at 10:21:00PM -0500, Andy Harrison wrote: > Any recommendations for the absolute cheapest pci >video card with 8+MB that works well with FreeBSD? FreeBSD only uses VGA features so anything should work. The card restrictions relate to X - see http://www.xfree.org/ > Newegg has a "Palit Daytona Nvidia Riva TNT2 M64 32MB SDRAM PCI" >for $34 bucks shipped. Nvidia cards need a proprietary driver, though I believe it works fairly well. Peter From owner-freebsd-hardware@FreeBSD.ORG Thu Apr 3 10:28:48 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C0F137B401 for ; Thu, 3 Apr 2003 10:28:48 -0800 (PST) Received: from mail.fbfguns.com (adsl-64-123-156-89.dsl.okcyok.swbell.net [64.123.156.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8AC343F75 for ; Thu, 3 Apr 2003 10:28:46 -0800 (PST) (envelope-from jb@fbfguns.com) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Thu, 3 Apr 2003 12:28:45 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 Message-ID: <3BD4A5842C8AE2428158AB1EE6DCC3774D5D@mail.fbfguns.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Linksys WMP11 card Thread-Index: AcL5Hr2g15iYQQg2RluNKOndXAiL3gA7+Upg From: "Jason Burgess" To: cc: Freebsd-hardware@freebsd.org Subject: RE: Linksys WMP11 card X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2003 18:28:49 -0000 John, I don't have any advice as to the problem you are having, but it should've worked without any modification as of (I believe) 4.6. I've got one of those cards that worked as soon as I added the wi device to the kernel. (Plus a lot of tweaking in software settings to make it work they way I wanted it to.) Jason Burgess -----Original Message----- From: john@critchley.biz [mailto:john@critchley.biz]=20 Sent: Wednesday, April 02, 2003 7:50 AM To: freebsd-hardware@freebsd.org Subject: Linksys WMP11 card Hi, I'd like to get this going under FreeBSD. It seems to have the same Prism hardware as the PCMCIA cards made by Linksys, so I thought I'd try getting it working. I added=20 {0x14e4, 0x4301, WI_BUS_PCI_NATIVE, "Linksys WMP11"}, to the pci_ids in the=20 /usr/src/sys/dev/wi/if_wi_pci.c file. It didn't work: wi0: wi_pci_attach() failed to enable pci! I added debugging 139 command =3D pci_read_config(dev, PCIR_COMMAND, 4); 140 wanted =3D PCIM_CMD_PORTEN|PCIM_CMD_MEMEN; 141 command |=3D wanted; 142 pci_write_config(dev, PCIR_COMMAND, command, 4); 143 command =3D pci_read_config(dev, PCIR_COMMAND, 4); 144 if ((command & wanted) !=3D wanted) { 145 device_printf(dev, "wi_pci_attach() failed to enable pci!\n"); 146 /* BEGIN -jc */ 147 printf("Command state=3D%x Wanted to = add=3D%x\n", command, wanted); 148 if(!(command&PCIM_CMD_PORTEN)) 149 printf("PCIM_CMD_PORTEN failed to happen\n"); 150 if(!(command&PCIM_CMD_MEMEN)) 151 printf("PCIM_CMD_MEMEN failed to happen\n"); 152 /* END -jc */ 153 return (ENXIO); 154 } 155=20 and found that "PCIM_CMD_PORTEN failed to happen" Am I on the right track? Does this card work on any other BSD? -jc _______________________________________________ freebsd-hardware@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hardware To unsubscribe, send any mail to "freebsd-hardware-unsubscribe@freebsd.org" From owner-freebsd-hardware@FreeBSD.ORG Fri Apr 4 07:14:52 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A051437B401 for ; Fri, 4 Apr 2003 07:14:52 -0800 (PST) Received: from mail.fbfguns.com (adsl-64-123-156-89.dsl.okcyok.swbell.net [64.123.156.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id B097E43F3F for ; Fri, 4 Apr 2003 07:14:51 -0800 (PST) (envelope-from jb@fbfguns.com) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 4 Apr 2003 09:14:50 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 Message-ID: <3BD4A5842C8AE2428158AB1EE6DCC3774D5E@mail.fbfguns.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Linksys WMP11 card# Thread-Index: AcL6oy6NDxfyliawQ+WNZaV6a2akfQAGQW3g From: "Jason Burgess" To: cc: Freebsd-hardware@freebsd.org Subject: RE: Linksys WMP11 card# X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 15:14:52 -0000 John, I've got the card in front of me now (wasn't in a machine at the moment.) It is a WMP11. On the edge of the card, (away from the antenna connection) it says mw251-1 REV:XA. I was just thinking there is another thing you might be missing. Even though it doesn't look like it, I believe this card is also a PCMCIA bridge. I seem to remember having to enable the PCMCIA devices in the kernel as well. That could cause it to not work. Jason Burgess. -----Original Message----- From: john@critchley.biz [mailto:john@critchley.biz]=20 Sent: Friday, April 04, 2003 6:10 AM To: Jason Burgess Subject: Re: Linksys WMP11 card# Thanks for replying - I really appreciate it! > I don't have any advice as to the problem you are having, but it > should've worked without any modification as of (I believe) 4.6. I am working from sources pulled by cvsup so am on: 4.8-PRERELEASE=20 I suppose it could have got broken... >I've > got one of those cards that worked as soon as I added the wi device to > the kernel. Exactly what card? WMP11? I think that the Linksys WDT11 card seems to give different values for vendor (!?) and device values for its PCI ids - and it is a PCMCIA bridge onto the wireless network device. In fact I only see reference to WDT11 in if_wi_pci.c; although I could be looking in the wrong place, as there seems to be some stuff in if_wi_pccard.c Do you think I am asing in the right place? Thanks! -jc From owner-freebsd-hardware@FreeBSD.ORG Fri Apr 4 11:26:09 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40AEC37B401 for ; Fri, 4 Apr 2003 11:26:09 -0800 (PST) Received: from pit.databus.com (p70-227.acedsl.com [66.114.70.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C64243FBD for ; Fri, 4 Apr 2003 11:26:08 -0800 (PST) (envelope-from barney@pit.databus.com) Received: from pit.databus.com (localhost [127.0.0.1]) by pit.databus.com (8.12.9/8.12.9) with ESMTP id h34JQ7x2000829 for ; Fri, 4 Apr 2003 14:26:07 -0500 (EST) (envelope-from barney@pit.databus.com) Received: (from barney@localhost) by pit.databus.com (8.12.9/8.12.9/Submit) id h34JQ7Vm000828 for hardware@freebsd.org; Fri, 4 Apr 2003 14:26:07 -0500 (EST) Date: Fri, 4 Apr 2003 14:26:07 -0500 From: Barney Wolff To: hardware@freebsd.org Message-ID: <20030404192607.GA811@pit.databus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Scanned-By: MIMEDefang 2.30 (www . roaringpenguin . com / mimedefang) Subject: CPUTYPE? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 04 Apr 2003 19:26:09 -0000 I need to buildworld (current) and ports to run on both p3 and athlon-mp. What's a good value for CPUTYPE, or should I just leave it out? Thanks, Barney Wolff From owner-freebsd-hardware@FreeBSD.ORG Sat Apr 5 22:49:51 2003 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CAE037B401 for ; Sat, 5 Apr 2003 22:49:51 -0800 (PST) Received: from mail.contemplation.org (adsl-207-212-133-17.dsl.scrm01.pacbell.net [207.212.133.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFBB643F85 for ; Sat, 5 Apr 2003 22:49:50 -0800 (PST) (envelope-from christopher@contemplation.org) Received: by mail.contemplation.org (Postfix, from userid 1001) id C5066122AC9; Sat, 5 Apr 2003 22:49:47 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mail.contemplation.org (Postfix) with ESMTP id C2E4D191223 for ; Sat, 5 Apr 2003 22:49:47 -0800 (PST) Date: Sat, 5 Apr 2003 22:49:47 -0800 (PST) From: Christopher Turner X-X-Sender: drumline@thought To: freebsd-hardware@freebsd.org Message-ID: <20030405224937.U85290@thought> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: USB Solid-state drive problems X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Apr 2003 06:49:51 -0000 Hello, I have a USB flash drive with 128MB. When it first recognizes it, i see this on the console: umass0: USB Solid state disk, rev 1.10/1.00, addr 2 da0 at umass-sim0 bus 0 target 0 lun 0 da0: <128MB HardDrive 1.11> Removable Direct Access SCSI-2 device da0: 650KB/s transfers da0: 126MB (258048 512 byte sectors: 64H 32S/T 126C) I can mount it with either of the following depending on the mood of the box: "mount_msdos -l /dev/rda0s1 /mnt" OR "mount_msdos -l /dev/da0s1 /mnt" If it doesn't work, i get: "mount_msdos: /dev/(the device i used): Input/output error" to stderr and "da0: reading primary partition table: error reading fsbn 0" to the console. If it _does_ work, i get this on the console: "(da0:umass-sim0:0:0:0): READ(6)/WRITE(6) not supported, increasing minimum_cmd_size to 10", but the filesystem works fine. ^^ When it makes it there, everything is perfect until i want to dismount it. When i dismount it and remove the flash drive, the box _will not_ detect it again until i reboot. Sometimes, it will detect the device's removal and display a console warning; sometimes, not. But after reinserting it and regardless of the box recognizing its departure or not, instead of the flash drive blinking steadily, it only blinks once and the box wont recognize it. I'd very much prefer not to reboot.. heh.. does anyone know why this thing is so flaky? Will it be improved? Will sending my style of flash drive to the dev team help? Is 5.0 more stable with this kind of stuff? Is there any way to reinitialize the usb bus(or whatever does the usd detecting) so it will recognize the flash drive after i've removed it and reinserted it? Thanks to whoever can offer help... -Christopher -- Christopher Turner christopher@contemplation.org _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"