Re: [PATCH] Platform: samsung-laptop: add DMI information for Samsung N150 Plus

From: Andrzej Prochyra
Date: Sat Dec 24 2011 - 09:13:06 EST


Corentin Chary <corentin.chary@xxxxxxxxx> writes:

> On Thu, Dec 22, 2011 at 11:19 PM, Andrzej Prochyra
> <andrzej@xxxxxxxxxxxxx> wrote:
>> From: Andrzej Prochyra <andrzej@xxxxxxxxxxxxx>
>>
>> Adds DMI information for Samsung N150 Plus which identifies itself as
>> "N150P" so that the driver loads and the 'acpi_backlight=vendor'
>> parameter does not need to be used in order for backlight control to
>> work.
>>
>> Signed-off-by: Andrzej Prochyra <andrzej@xxxxxxxxxxxxx>
>> ---
>> Âdrivers/platform/x86/samsung-laptop.c | Â 10 ++++++++++
>> Â1 files changed, 10 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/platform/x86/samsung-laptop.c b/drivers/platform/x86/samsung-laptop.c
>> index 09e26bf..e3a496a 100644
>> --- a/drivers/platform/x86/samsung-laptop.c
>> +++ b/drivers/platform/x86/samsung-laptop.c
>> @@ -780,6 +780,16 @@ static struct dmi_system_id __initdata samsung_dmi_table[] = {
>> Â Â Â Â Â Â Â Â},
>> Â Â Â Â Â Â Â Â.callback = dmi_check_cb,
>> Â Â Â Â},
>> + Â Â Â {
>> + Â Â Â Â Â Â Â .ident = "N150P",
>> + Â Â Â Â Â Â Â .matches = {
>> + Â Â Â Â Â Â Â Â Â Â Â DMI_MATCH(DMI_SYS_VENDOR,
>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â "SAMSUNG ELECTRONICS CO., LTD."),
>> + Â Â Â Â Â Â Â Â Â Â Â DMI_MATCH(DMI_PRODUCT_NAME, "N150P"),
>> + Â Â Â Â Â Â Â Â Â Â Â DMI_MATCH(DMI_BOARD_NAME, "N150P"),
>> + Â Â Â Â Â Â Â },
>> + Â Â Â Â Â Â Â .callback = dmi_check_cb,
>> + Â Â Â },
>> Â Â Â Â{ },
>> Â};
>> ÂMODULE_DEVICE_TABLE(dmi, samsung_dmi_table);
>> --
>> 1.7.4.1
>
> Hi,
> On top of what is based this patch ?

The patch is against the mainline kernel from
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git

(The MAINTAINERS file gives the git tree
git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
in the X86 PLATFORM DRIVERS section but this does not seem to exist.)

>
> Could you try
> https://github.com/iksaif/platform-drivers-x86/tree/samsung-laptop or
> https://github.com/iksaif/samsung-laptop-dkms ? Are both ACPI and VGA
> backlight non-fonctional ? What's in /sys/class/backlight/ ? Thanks

I have tried:

* The mainline kernel
* The mainline kernel with my patch applied
* https://github.com/iksaif/platform-drivers-x86/tree/samsung-laptop

Here are my results:

MAINLINE KERNEL
---------------

'samsung-laptop' module not loaded.

$ ls /sys/class/backlight
acpi_video0 intel_backlight

'acpi_video0' not functional. Brightness can be controlled through
intel_backlight interface. There are 21 brightness levels and the
backlight can be turned off.


WITH MY PATCH APPLIED
---------------------

'samsung-laptop' module now loaded.

$ ls /sys/class/backlight
acpi_video0 intel_backlight samsung

Backlight can be controlled through intel_backlight and samsung
interfaces. The samsung interface has only 9 brightness levels and 0
does not turn the backlight off.


SAMSUNG-LAPTOP BRANCH
---------------------

'samsung-laptop' module loaded.

$ ls /sys/class/backlight
acpi_video0 intel_backlight

Brightness can be controlled through intel_backlight.

With 'acpi_backlight=vendor':

$ ls /sys/class/backlight
intel_backlight samsung

Brightness can be controlled as with my patch.


CONCLUSION
----------

For kernel versions where 'intel_backlight' is available, samsung-laptop
is not needed for backlight control on this machine?
--
Andrzej Prochyra
<andrzej@xxxxxxxxxxxxx>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/