Re: [x86_64] Exception when using powernowd.

2005-09-03 Thread David Ranson
Kyuma Ohta wrote:

>When upgrade X 6.8.2-4 to 6.8.2-5(or after),this issue has often happend.
>I'm using nVidia Geforce 5200 as Display adapter,but this issue
>has happend bot Debian's driver and nVidia's driver.
>  
>
Hmmm. I use a low end Radeon 7000 in mine, so our configurations
diverge. I'm using stock SuSE X.org.

nVidia issues ?? I've no idea really :-(

David

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [x86_64] Exception when using powernowd.

2005-09-03 Thread David Ranson
Kyuma Ohta wrote:


>>Hi,
>>
>>I'm using MSI K8T Neo2 (VIA K8T800 chipset) and Athlon64 3000+
>>with  linux x86_64 2.6.13 kernel and Debian/sid.
>>  
>>
>  
>
I'm using a K8T Neo2 FIR with the same processor and powernow-k8. Up
with 2.6.13 since Sunday, no problems noted. Mine is a SuSE 9.1 based
system though.

Maybe BIOS related??

Cheers
David



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [x86_64] Exception when using powernowd.

2005-09-03 Thread David Ranson
Kyuma Ohta wrote:


Hi,

I'm using MSI K8T Neo2 (VIA K8T800 chipset) and Athlon64 3000+
with  linux x86_64 2.6.13 kernel and Debian/sid.
  

  

I'm using a K8T Neo2 FIR with the same processor and powernow-k8. Up
with 2.6.13 since Sunday, no problems noted. Mine is a SuSE 9.1 based
system though.

Maybe BIOS related??

Cheers
David



-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [x86_64] Exception when using powernowd.

2005-09-03 Thread David Ranson
Kyuma Ohta wrote:

When upgrade X 6.8.2-4 to 6.8.2-5(or after),this issue has often happend.
I'm using nVidia Geforce 5200 as Display adapter,but this issue
has happend bot Debian's driver and nVidia's driver.
  

Hmmm. I use a low end Radeon 7000 in mine, so our configurations
diverge. I'm using stock SuSE X.org.

nVidia issues ?? I've no idea really :-(

David

-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] Serial MRi MRI-PCIDS1 dual port serial card

2005-04-07 Thread David Ranson
This trivial patch against 2.6.11.6 adds support for the MRi PCIDS1 dual
port serial card. This card is a little controversial since it is the
subject of a PCI vendor/device ID clash. (See
http://www.ussg.iu.edu/hypermail/linux/kernel/0303.1/0516.html). I have
for now just used the hex ID 0x950a. The divisor was part calculated
part iterated, so may not be exactly correct (but works for me at all
settings between 300 - 115300 bps).

Cheers
David

diff -ur old/linux-2.6.11/drivers/serial/8250_pci.c
new/linux-2.6.11/drivers/serial/8250_pci.c
--- old/linux-2.6.11/drivers/serial/8250_pci.c  2005-03-02
07:38:17.0 +
+++ new/linux-2.6.11/drivers/serial/8250_pci.c  2005-04-01
16:56:31.0 +0100
@@ -999,6 +999,7 @@

pbn_b0_1_921600,
pbn_b0_2_921600,
+pbn_b0_2_113,
pbn_b0_4_921600,

pbn_b0_bt_1_115200,
@@ -1127,6 +1128,12 @@
.base_baud  = 921600,
.uart_offset= 8,
},
+[pbn_b0_2_113] = {
+   .flags  = FL_BASE0,
+   .num_ports  = 2,
+   .base_baud  = 113,
+   .uart_offset= 8,
+   },
[pbn_b0_4_921600] = {
.flags  = FL_BASE0,
.num_ports  = 4,
@@ -1945,6 +1952,9 @@
{   PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952,
PCI_ANY_ID, PCI_ANY_ID, 0, 0,
pbn_b0_bt_2_921600 },
+   {   PCI_VENDOR_ID_OXSEMI, 0x950a,
+   PCI_ANY_ID, PCI_ANY_ID, 0, 0,
+   pbn_b0_2_113 },

/*
 * SBS Technologies, Inc. P-Octal and PMC-OCTPRO cards,

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] Serial MRi MRI-PCIDS1 dual port serial card

2005-04-07 Thread David Ranson
This trivial patch against 2.6.11.6 adds support for the MRi PCIDS1 dual
port serial card. This card is a little controversial since it is the
subject of a PCI vendor/device ID clash. (See
http://www.ussg.iu.edu/hypermail/linux/kernel/0303.1/0516.html). I have
for now just used the hex ID 0x950a. The divisor was part calculated
part iterated, so may not be exactly correct (but works for me at all
settings between 300 - 115300 bps).

Cheers
David

diff -ur old/linux-2.6.11/drivers/serial/8250_pci.c
new/linux-2.6.11/drivers/serial/8250_pci.c
--- old/linux-2.6.11/drivers/serial/8250_pci.c  2005-03-02
07:38:17.0 +
+++ new/linux-2.6.11/drivers/serial/8250_pci.c  2005-04-01
16:56:31.0 +0100
@@ -999,6 +999,7 @@

pbn_b0_1_921600,
pbn_b0_2_921600,
+pbn_b0_2_113,
pbn_b0_4_921600,

pbn_b0_bt_1_115200,
@@ -1127,6 +1128,12 @@
.base_baud  = 921600,
.uart_offset= 8,
},
+[pbn_b0_2_113] = {
+   .flags  = FL_BASE0,
+   .num_ports  = 2,
+   .base_baud  = 113,
+   .uart_offset= 8,
+   },
[pbn_b0_4_921600] = {
.flags  = FL_BASE0,
.num_ports  = 4,
@@ -1945,6 +1952,9 @@
{   PCI_VENDOR_ID_OXSEMI, PCI_DEVICE_ID_OXSEMI_16PCI952,
PCI_ANY_ID, PCI_ANY_ID, 0, 0,
pbn_b0_bt_2_921600 },
+   {   PCI_VENDOR_ID_OXSEMI, 0x950a,
+   PCI_ANY_ID, PCI_ANY_ID, 0, 0,
+   pbn_b0_2_113 },

/*
 * SBS Technologies, Inc. P-Octal and PMC-OCTPRO cards,

-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/