dmidecode

2007-10-13 Thread Siegfried Lösch
LCEMobile02:~# dmidecode # dmidecode 2.9 SMBIOS 2.4 present. 19 structures occupying 735 bytes. Table at 0x7FEDF000. Handle 0x, DMI type 0, 24 bytes BIOS Information Vendor: Hewlett-Packard Version: F.22 Release Date: 08/17/2007 Address: 0xE69E0

Re: Fwd: FSC Esprimo Mobile V5505 - dmidecode

2007-10-13 Thread Jan-Simon Möller
Here is the output of dmidecode: legolas:~ # dmidecode # dmidecode 2.9 SMBIOS 2.4 present. 43 structures occupying 1553 bytes. Table at 0x7F6DF000. Handle 0x, DMI type 0, 24 bytes BIOS Information Vendor: Phoenix Technologies LTD Version: R01-A0T Release Date:

Re: [Suspend-devel] Fan not working after hibernate but ok after s2ram?

2007-10-13 Thread Rafael J. Wysocki
On Saturday, 13 October 2007 00:38, Alexey Starikovskiy wrote: Rafael J. Wysocki wrote: Greetings, On Friday, 12 October 2007 23:30, Romano Giannetti wrote: Hi, I have a strange problem. I am running 2.6.23 on a toshiba satellite 2.6.23, I use s2ram to suspend and echo disk ...

Re: [Suspend-devel] Fan not working after hibernate but ok after s2ram?

2007-10-13 Thread Rafael J. Wysocki
On Saturday, 13 October 2007 11:58, Alexey Starikovskiy wrote: Rafael J. Wysocki wrote: On Saturday, 13 October 2007 00:38, Alexey Starikovskiy wrote: Rafael J. Wysocki wrote: Greetings, On Friday, 12 October 2007 23:30, Romano Giannetti wrote: Hi, I have a strange problem. I am

dmidecode

2007-10-13 Thread Virus Q
Hello! `dmidecode` from Fujitsu-Siemens Amilo Pi 1556 # dmidecode 2.7 SMBIOS 2.4 present. 35 structures occupying 1159 bytes. Table at 0x3FEEA000. Handle 0x, DMI type 0, 24 bytes. BIOS Information Vendor: FUJITSU SIEMENS Version: 1.23 Release Date: 03/16/2007

Re: [Bugme-new] [Bug 9155] New: No fan control with ATI Radeon display support on HP nx6125.

2007-10-13 Thread Andrew Morton
On Sat, 13 Oct 2007 02:37:35 -0700 (PDT) [EMAIL PROTECTED] wrote: http://bugzilla.kernel.org/show_bug.cgi?id=9155 Summary: No fan control with ATI Radeon display support on HP nx6125. Product: Drivers Version: 2.5 KernelVersion:

Dmidecode of the Clevo M720R

2007-10-13 Thread Erik Andrén
Hello list, As requested in the kernel log, I'm attaching the dmidecode of the machine. Please cc me on this issue as I'm not subscribed to the list. Regards, Erik Andrén # dmidecode 2.9 SMBIOS 2.4 present. 42 structures occupying 1518 bytes. Table at 0xBF6DF000. Handle 0x, DMI type 0, 24

Re: [Bugme-new] [Bug 9155] New: No fan control with ATI Radeon display support on HP nx6125.

2007-10-13 Thread Rafael J. Wysocki
On Saturday, 13 October 2007 19:53, Andrew Morton wrote: On Sat, 13 Oct 2007 02:37:35 -0700 (PDT) [EMAIL PROTECTED] wrote: Most recent kernel where this bug did not occur:2.6.21 Distribution:gentoo Hardware Environment:HP nx6125 BIOS version F.11 Software Environment:Gnome 2.18,

[PATCH 02/10] ACPI: thinkpad-acpi: add brightness_force parameter

2007-10-13 Thread Henrique de Moraes Holschuh
Add a brightness_force module parameter that allows the local admin to force the backlight support to not be enabled. It can also be used to force the backlight support to be enabled, but that is currently a no-op as the backlight support is enabled by default when available. This will be

[PATCH 06/10] ACPI: thinkpad-acpi: fix brightness_set error paths

2007-10-13 Thread Henrique de Moraes Holschuh
The code calling brightness_set() can't handle EINTR/ERESTARTSYS well, nor is it checking brightness_set() return status properly. Fix it. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] --- drivers/misc/thinkpad_acpi.c | 34 +- 1 files changed, 21

[PATCH 08/10] ACPI: thinkpad-acpi: prepare for NVRAM polling support

2007-10-13 Thread Henrique de Moraes Holschuh
Make some small internal thinkpad-acpi changes to the hotkey subdriver code that will make it easier to add NVRAM polling support. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] --- drivers/misc/thinkpad_acpi.c | 82 + 1 files changed, 42

[PATCH 01/10] ACPI: thinkpad-acpi: support 16 levels of brightness (v3)

2007-10-13 Thread Henrique de Moraes Holschuh
Lenovo ThinkPads often have 16 brightness levels in EC, and not just eight levels like older ThinkPads. They also have standard ACPI backlight brightness control. We detect the number of brightness levels by the presence of a BCLL package with 16 entries. If BCLL is not there, we assume eight

[PATCH 04/10] ACPI: thinkpad-acpi: bump up version to 0.17

2007-10-13 Thread Henrique de Moraes Holschuh
The lm-sensors 3.0.0/libsensors4 compatibility changes are reason enough to bump up the version string. Do it. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] --- Documentation/thinkpad-acpi.txt |4 ++-- drivers/misc/thinkpad_acpi.c|2 +- 2 files changed, 3

[PATCH 10/10] ACPI: thinkpad-acpi: bump up version to 0.18

2007-10-13 Thread Henrique de Moraes Holschuh
The NVRAM polling support for hot keys is reason enough to bump up the version string. Do it. Signed-off-by: Henrique de Moraes Holschuh [EMAIL PROTECTED] --- Documentation/thinkpad-acpi.txt |4 ++-- drivers/misc/thinkpad_acpi.c|2 +- 2 files changed, 3 insertions(+), 3 deletions(-)

[PATCH 05/10] ACPI: thinkpad-acpi: allow for syscall restart in sysfs handlers

2007-10-13 Thread Henrique de Moraes Holschuh
Map an mutex_lock_interruptible() error return into ERESTARTSYS, as the only possible error from mutex_lock_interruptible is EINTR, and that will only happen if signal_pending() causes the mutex lock attempt to abort. This still allows signals to be delivered ASAP, which is much nicer than just

[PATCH 09/10] ACPI: thinkpad-acpi: add CMOS NVRAM polling for hot keys (v6)

2007-10-13 Thread Henrique de Moraes Holschuh
Older ThinkPad models do not export some of the hot keys over the event-based ACPI hot key interface. For these models, one has to poll the CMOS NVRAM to check the key state at a rate faster than the expected rate at which the user might repeatedly press the same hot key. This patch implements

[PATCH 07/10] ACPI: thinkpad-acpi: refactor hotkey_get and hotkey_set

2007-10-13 Thread Henrique de Moraes Holschuh
This patch: 1. Splits hotkey_get/set into hotkey_status_get/set and hotkey_mask_get/set; 2. Caches the status of hot key mask for later driver use; 3. Makes sure the cache of hot key mask is refreshed when needed; 4. logs a printk notice when the firmware doesn't set the hot key mask to

dmidecode from HP Pavilion DV6150EU

2007-10-13 Thread Witold Krecicki
# dmidecode 2.9 SMBIOS 2.4 present. 20 structures occupying 822 bytes. Table at 0x000F1C70. Handle 0x, DMI type 0, 24 bytes BIOS Information Vendor: Hewlett-Packard Version: F.38 Release Date: 06/20/2007 Address: 0xE6A20 Runtime Size: 103904 bytes

dmidecode mails.

2007-10-13 Thread Dave Jones
The last month or so, we've seen lots of people posting their dmidecode output here (in response to seeing requests for it in dmesg, if their BIOS requests _OSI(Linux) I guess) I'm wondering if anyone is actually looking at these, because I don't think I've seen a single follow up to any of them.

Fwd: ubuntu , satellite p100-219 and sound problem

2007-10-13 Thread Ozan
hi, im ozan from turkey; i couldnt found a DSDT for toshiba satellite p100-219 on internet. im totally a newbie and i cant create a DSDT for myself. i want to solve my sound problem with ubuntu. can you help me? im open for any kind of help. thanks - To unsubscribe from this list: send the line