freebsd-stable Digest, Vol 84, Issue 3

Gilles Bruno Gilles.Bruno at ujf-grenoble.fr
Wed Oct 27 09:21:52 PDT 2004


Hi Gareth,

we are currently working on it in order to make FreeBSD 4.10-STABLE 
recognize our PowerEdge 1850 Perc 4e/SI (not a PCI-Express one !!)

Next week we'll also test a Perc 4/DC on it

Basically, you just have to add it's pci signature to the amr driver. 
The following patch applies to amr_pci.c (cvsup'ed)

It has not been thouroughtly tested so use it at your own risk - but so 
far it has not made any glitches to us


--- 4.10-rel/amr_pci.c  Wed Oct 27 18:15:12 2004
+++ amr_pci.c   Wed Oct 27 18:15:12 2004
@@ -128,6 +128,7 @@
      {0x1000, 0x1960, PROBE_SIGNATURE},
      {0x1000, 0x0407, 0},
      {0x1028, 0x000e, PROBE_SIGNATURE}, /* perc4/di i960 */
+    {0x1028, 0x0013, 0}, /* perc4e/Si */
      {0x1028, 0x000f, 0}, /* perc4/di Verde*/
      {0, 0, 0}
  };
@@ -180,7 +181,8 @@
       */
      command = pci_read_config(dev, PCIR_COMMAND, 1);
      if ((pci_get_device(dev) == 0x1960) || (pci_get_device(dev) == 
0x0407) ||
-       (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 
0x000f)) {
+       (pci_get_device(dev) == 0x000e) || (pci_get_device(dev) == 
0x000f) ||
+       (pci_get_device(dev) == 0x0013)) {
         /*
          * Make sure we are going to be able to talk to this board.
          */


Regards,

> 
> Message: 8
> Date: Tue, 26 Oct 2004 16:51:28 +0200 (South Africa Standard Time)
> From: Gareth Hopkins <gareth at uunet.co.za>
> Subject: Future support for PERC 4e/XX cards 
> To: freebsd-stable at freebsd.org
> Message-ID:
> 	<Pine.WNT.4.61.0410261648540.760 at LAP-GARETHH.staff.uunet.co.za>
> Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
> 
> Howdie,
> 
>  	Was wondering if the following cards would be supported in the 
> near future by BSD 4.10.
> 
> PERC 4e/Si and PERC 4e/Di. These are from the new Dell poweredge 1850 and 
> 2850 servers.
> 
> ---
> Gareth Hopkins
> System Operations
> UUNET ZA
> 

-- 
Gilles BRUNO
System Admin.
Universite Joseph Fourier - CRIP


More information about the freebsd-stable mailing list