[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 [EMAIL PROTECTED] changed: What|Removed |Added Status|ASSIGNED|REJECTED Resolution||INSUFFICIENT_DATA --- Comment #27 from [EMAIL PROTECTED] 2008-03-04 00:01 --- There are four problems in this bug. The first two problems are caused by broken bios. The detailed explanation can be found in the comment #23 and #25. The patch for the following problem can be found in comment #54 of http://bugzilla.kernel.org/show_bug.cgi?id=8570 >AE_NOT_FOUND, Processor Device is not present [20060707] The remaing problem is that acpi_cpufreq can't be loaded. (No such device) Since there is no reponse for more than one month, the bug will be rejected. If the problem still exists, please reopen the bug and attach the output required in comment #26. Thanks. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 [EMAIL PROTECTED] changed: What|Removed |Added AssignedTo|[EMAIL PROTECTED] |[EMAIL PROTECTED] Status|NEEDINFO|ASSIGNED -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #26 from [EMAIL PROTECTED] 2008-01-30 06:33 --- Hi, Norman From the log in comment #18 it seems that the acpi-cpufreq module isn't loaded. But it is not helpful to find the root cause. Will you please enable the debug function of acpi and cpufreq in kernel configuration and boot the system with the option of "acpi.debug_layer=0x0100 acpi.debug_level=0x1f cpufreq.debug=0x7" ? Please attach the output of dmesg. It will be great if you can attach the .config file. Thanks. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #25 from [EMAIL PROTECTED] 2008-01-30 02:03 --- Hi, Norman Thanks for the info. From the info in comment #24 we can know that SENF is 0x0001 and SSHU bit is 1. So the _TMP method will always return 40 temperature.( _TMP returns 0xC3C and the result is converted to 40). So this problem is caused by broken bios. It is more appropriate to fix this by bios.(Linux can't fix it). -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #24 from [EMAIL PROTECTED] 2008-01-29 12:59 --- Created an attachment (id=14640) --> (http://bugzilla.kernel.org/attachment.cgi?id=14640&action=view) requested acpidump output of acpidump --addr 0xff810 --length 0x100 -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #23 from [EMAIL PROTECTED] 2008-01-24 00:51 --- Hi, Norman Thanks for the info. What Alexey said is right. The remained two problems are caused by broken BIOS. a. /proc/acpi/processors/CPU0/info In the DSDT there is no PBLK address in the definition of processor block. >Processor (\_PR.CPU0, 0x00, 0x, 0x00) Correct defintion should be : Processor(\_PR.CPU0, 0x00, 0x410, 0x06) At the same time there is no _PTC defintion for throttling control in DSDT. The flag of throttling control and limit will be zero. In the FADT table the following can be found: [060h 096 2] C2 Latency : 0065 . [062h 098 2] C3 Latency : 03E9 [068h 104 1]Duty Cycle Offset : 01 [069h 105 1] Duty Cycle Width : 01 In the DSDT table there is no _CST defintion for power management. And C2 latency 0x65 > 100, C3 latency 0x3E9 > 1000 means that system can't support C2 /C3. The power interface can't be supported. b. Temperature always is 40. In the DSDT table the result of _TMP is related to the following two definitions: SENF, SSHU If the values of SENF and SSHU are both one, the temperature will always be 40. (Linux can't fix it). The output in comment #22 can confirm whether the the values are one. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #22 from [EMAIL PROTECTED] 2008-01-23 21:50 --- Will you please attach the output using the following command ? acpidump --addr 0xff810 --length 0x100 -o output Thanks. -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #21 from [EMAIL PROTECTED] 2008-01-09 09:48 --- Sorry ykzhao for my late response. I added the outputs you an Len wanted of the patched kernel 2.6.23.1 (see comment #15). -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #20 from [EMAIL PROTECTED] 2008-01-09 09:46 --- Created an attachment (id=14383) --> (http://bugzilla.kernel.org/attachment.cgi?id=14383&action=view) proc_acpi_processor_cpu0_info -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #19 from [EMAIL PROTECTED] 2008-01-09 09:44 --- Created an attachment (id=14382) --> (http://bugzilla.kernel.org/attachment.cgi?id=14382&action=view) proc_cpuinfo -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #18 from [EMAIL PROTECTED] 2008-01-09 09:43 --- Created an attachment (id=14381) --> (http://bugzilla.kernel.org/attachment.cgi?id=14381&action=view) dmesg-output -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 [EMAIL PROTECTED] changed: What|Removed |Added CC||acpi- ||[EMAIL PROTECTED] ||et --- Comment #17 from [EMAIL PROTECTED] 2008-01-08 23:25 --- > [1] no correct values in /proc/acpi/processors/CPU0/info (Pentium M 773 ULV) Please paste the contents of /proc/acpi/processors/CPU0/info here > [2] no changes in /proc/acpi/thermal_zone/THRM/temperature > (permanently 40°C, is not true) per Alexey's comments above, this is a BIOS/platform issue that Linux can not fix. > [3] could not load kernel module acpi_cpufreq > (No such device, < should it be possible to load?) please respond to comment #16 -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are on the CC list for the bug, or are watching someone who is. - Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 [EMAIL PROTECTED] changed: What|Removed |Added AssignedTo|[EMAIL PROTECTED] |[EMAIL PROTECTED] |bugs.osdl.org | Status|NEW |ASSIGNED -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #4 from [EMAIL PROTECTED] 2007-07-11 06:10 --- The main problem seem to be that APIC table lists only one processor (true), while DSDT lists four. Linux then thinks that other processors 0x01,0x02,0x03 could be hot-plugged, but they lack _STA method (don't support hotplug). Thus acpi_processor gets an error, and don't show any information at all. Could you please check if latest kernel from kernel.org (2.6.22 ATM) has this problem too? -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #3 from [EMAIL PROTECTED] 2007-07-11 05:16 --- Created an attachment (id=11998) --> (http://bugzilla.kernel.org/attachment.cgi?id=11998&action=view) dmesg -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #2 from [EMAIL PROTECTED] 2007-07-11 05:16 --- Created an attachment (id=11997) --> (http://bugzilla.kernel.org/attachment.cgi?id=11997&action=view) acpidump -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla
[Bug 8734] several problems with Pentium M 773 on MSI-9625
http://bugzilla.kernel.org/show_bug.cgi?id=8734 --- Comment #1 from [EMAIL PROTECTED] 2007-07-11 05:15 --- Created an attachment (id=11996) --> (http://bugzilla.kernel.org/attachment.cgi?id=11996&action=view) dmidecode -- Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug, or are watching the assignee. - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ ___ acpi-bugzilla mailing list acpi-bugzilla@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla