public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Update to IPMI driver to support old DMI spec
@ 2005-02-09 17:24 Corey Minyard
  2005-02-09 21:36 ` Bukie Mabayoje
  0 siblings, 1 reply; 3+ messages in thread
From: Corey Minyard @ 2005-02-09 17:24 UTC (permalink / raw)
  To: Andrew Morton, lkml

[-- Attachment #1: Type: text/plain, Size: 221 bytes --]

BTW, I'm also working with the person who had the trouble with the I2C 
non-blocking driver updates, but we haven't figured it out yet.  
Hopefully soon.  (Though that has nothing to do with this patch.)

Thanks,

-Corey

[-- Attachment #2: ipmi_olddmi.diff --]
[-- Type: text/plain, Size: 2621 bytes --]

The 1999 version of the DMI spec had a different configuration
than the newer versions for the IPMI configuration information.
This patch handles the differences between the two.

Signed-off-by: Corey Minyard <minyard@acm.org>

Index: linux-2.6.11-rc3/drivers/char/ipmi/ipmi_si_intf.c
===================================================================
--- linux-2.6.11-rc3.orig/drivers/char/ipmi/ipmi_si_intf.c
+++ linux-2.6.11-rc3/drivers/char/ipmi/ipmi_si_intf.c
@@ -1578,46 +1578,53 @@
 	u8		*data = (u8 *)dm;
 	unsigned long  	base_addr;
 	u8		reg_spacing;
+	u8              len = dm->length; 
 	dmi_ipmi_data_t *ipmi_data = dmi_data+intf_num;
 
 	ipmi_data->type = data[4];
 
 	memcpy(&base_addr, data+8, sizeof(unsigned long));
-	if (base_addr & 1) {
-		/* I/O */
-		base_addr &= 0xFFFE;
+	if (len >= 0x11) {
+		if (base_addr & 1) {
+			/* I/O */
+			base_addr &= 0xFFFE;
+			ipmi_data->addr_space = IPMI_IO_ADDR_SPACE;
+		}
+		else {
+			/* Memory */
+			ipmi_data->addr_space = IPMI_MEM_ADDR_SPACE;
+		}
+		/* If bit 4 of byte 0x10 is set, then the lsb for the address
+		   is odd. */
+		ipmi_data->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
+
+		ipmi_data->irq = data[0x11];
+
+		/* The top two bits of byte 0x10 hold the register spacing. */
+		reg_spacing = (data[0x10] & 0xC0) >> 6;
+		switch(reg_spacing){
+		case 0x00: /* Byte boundaries */
+		    ipmi_data->offset = 1;
+		    break;
+		case 0x01: /* 32-bit boundaries */
+		    ipmi_data->offset = 4;
+		    break;
+		case 0x02: /* 16-byte boundaries */
+		    ipmi_data->offset = 16;
+		    break;
+		default:
+		    /* Some other interface, just ignore it. */
+		    return -EIO;
+		}
+	} else {
+		/* Old DMI spec. */
+		ipmi_data->base_addr = base_addr;
 		ipmi_data->addr_space = IPMI_IO_ADDR_SPACE;
-	}
-	else {
-		/* Memory */
-		ipmi_data->addr_space = IPMI_MEM_ADDR_SPACE;
-	}
-
-	/* The top two bits of byte 0x10 hold the register spacing. */
-	reg_spacing = (data[0x10] & 0xC0) >> 6;
-	switch(reg_spacing){
-	case 0x00: /* Byte boundaries */
 		ipmi_data->offset = 1;
-		break;
-	case 0x01: /* 32-bit boundaries */
-		ipmi_data->offset = 4;
-		break;
-	case 0x02: /* 16-byte boundaries */
-		ipmi_data->offset = 16;
-		break;
-	default:
-		/* Some other interface, just ignore it. */
-		return -EIO;
 	}
 
 	ipmi_data->slave_addr = data[6];
 
-	/* If bit 4 of byte 0x10 is set, then the lsb for the address
-	   is odd. */
-	ipmi_data->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
-
-	ipmi_data->irq = data[0x11];
-
 	if (is_new_interface(-1, ipmi_data->addr_space,ipmi_data->base_addr)) {
 		dmi_data_entries++;
 		return 0;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Update to IPMI driver to support old DMI spec
  2005-02-09 17:24 [PATCH] Update to IPMI driver to support old DMI spec Corey Minyard
@ 2005-02-09 21:36 ` Bukie Mabayoje
  2005-02-09 21:39   ` Corey Minyard
  0 siblings, 1 reply; 3+ messages in thread
From: Bukie Mabayoje @ 2005-02-09 21:36 UTC (permalink / raw)
  To: Corey Minyard; +Cc: Andrew Morton, lkml



Corey Minyard wrote:

> BTW, I'm also working with the person who had the trouble with the I2C
> non-blocking driver updates, but we haven't figured it out yet.
> Hopefully soon.  (Though that has nothing to do with this patch.)
>
> Thanks,
>
> -Corey
>
>                                                   -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
> The 1999 version of the DMI spec had a different configuration
> than the newer versions for the IPMI configuration information.

Are you referring to the System Management BIOS Reference Specification  version 2.3.1 16 March 1999?

>
> This patch handles the differences between the two.
>
> Signed-off-by: Corey Minyard <minyard@acm.org>
>
> Index: linux-2.6.11-rc3/drivers/char/ipmi/ipmi_si_intf.c
> ===================================================================
> --- linux-2.6.11-rc3.orig/drivers/char/ipmi/ipmi_si_intf.c
> +++ linux-2.6.11-rc3/drivers/char/ipmi/ipmi_si_intf.c
> @@ -1578,46 +1578,53 @@
>         u8              *data = (u8 *)dm;
>         unsigned long   base_addr;
>         u8              reg_spacing;
> +       u8              len = dm->length;
>         dmi_ipmi_data_t *ipmi_data = dmi_data+intf_num;
>
>         ipmi_data->type = data[4];
>
>         memcpy(&base_addr, data+8, sizeof(unsigned long));
> -       if (base_addr & 1) {
> -               /* I/O */
> -               base_addr &= 0xFFFE;
> +       if (len >= 0x11) {
> +               if (base_addr & 1) {
> +                       /* I/O */
> +                       base_addr &= 0xFFFE;
> +                       ipmi_data->addr_space = IPMI_IO_ADDR_SPACE;
> +               }
> +               else {
> +                       /* Memory */
> +                       ipmi_data->addr_space = IPMI_MEM_ADDR_SPACE;
> +               }
> +               /* If bit 4 of byte 0x10 is set, then the lsb for the address
> +                  is odd. */
> +               ipmi_data->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
> +
> +               ipmi_data->irq = data[0x11];
> +
> +               /* The top two bits of byte 0x10 hold the register spacing. */
> +               reg_spacing = (data[0x10] & 0xC0) >> 6;
> +               switch(reg_spacing){
> +               case 0x00: /* Byte boundaries */
> +                   ipmi_data->offset = 1;
> +                   break;
> +               case 0x01: /* 32-bit boundaries */
> +                   ipmi_data->offset = 4;
> +                   break;
> +               case 0x02: /* 16-byte boundaries */
> +                   ipmi_data->offset = 16;
> +                   break;
> +               default:
> +                   /* Some other interface, just ignore it. */
> +                   return -EIO;
> +               }
> +       } else {
> +               /* Old DMI spec. */
> +               ipmi_data->base_addr = base_addr;
>                 ipmi_data->addr_space = IPMI_IO_ADDR_SPACE;
> -       }
> -       else {
> -               /* Memory */
> -               ipmi_data->addr_space = IPMI_MEM_ADDR_SPACE;
> -       }
> -
> -       /* The top two bits of byte 0x10 hold the register spacing. */
> -       reg_spacing = (data[0x10] & 0xC0) >> 6;
> -       switch(reg_spacing){
> -       case 0x00: /* Byte boundaries */
>                 ipmi_data->offset = 1;
> -               break;
> -       case 0x01: /* 32-bit boundaries */
> -               ipmi_data->offset = 4;
> -               break;
> -       case 0x02: /* 16-byte boundaries */
> -               ipmi_data->offset = 16;
> -               break;
> -       default:
> -               /* Some other interface, just ignore it. */
> -               return -EIO;
>         }
>
>         ipmi_data->slave_addr = data[6];
>
> -       /* If bit 4 of byte 0x10 is set, then the lsb for the address
> -          is odd. */
> -       ipmi_data->base_addr = base_addr | ((data[0x10] & 0x10) >> 4);
> -
> -       ipmi_data->irq = data[0x11];
> -
>         if (is_new_interface(-1, ipmi_data->addr_space,ipmi_data->base_addr)) {
>                 dmi_data_entries++;
>                 return 0;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Update to IPMI driver to support old DMI spec
  2005-02-09 21:36 ` Bukie Mabayoje
@ 2005-02-09 21:39   ` Corey Minyard
  0 siblings, 0 replies; 3+ messages in thread
From: Corey Minyard @ 2005-02-09 21:39 UTC (permalink / raw)
  To: Bukie Mabayoje; +Cc: Andrew Morton, lkml

Bukie Mabayoje wrote:

>Corey Minyard wrote:
>
>  
>
>>BTW, I'm also working with the person who had the trouble with the I2C
>>non-blocking driver updates, but we haven't figured it out yet.
>>Hopefully soon.  (Though that has nothing to do with this patch.)
>>
>>Thanks,
>>
>>-Corey
>>
>>                                                  -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>>The 1999 version of the DMI spec had a different configuration
>>than the newer versions for the IPMI configuration information.
>>    
>>
>
>Are you referring to the System Management BIOS Reference Specification  version 2.3.1 16 March 1999?
>  
>
Yes, that is correct.

-Corey


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-02-09 21:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-09 17:24 [PATCH] Update to IPMI driver to support old DMI spec Corey Minyard
2005-02-09 21:36 ` Bukie Mabayoje
2005-02-09 21:39   ` Corey Minyard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox