From: Corentin Chary <corentin.chary@gmail.com>
To: David Herrmann <dh.herrmann@googlemail.com>
Cc: Matthew Garrett <mjg59@srcf.ucam.org>,
Andrzej Prochyra <andrzej@prochyra.name>,
platform-driver-x86@vger.kernel.org,
linux-kernel@vger.kernel.org, "Zhang, Rui" <rui.zhang@intel.com>
Subject: Re: [PATCH] Platform: samsung-laptop: add DMI information for Samsung N150 Plus
Date: Thu, 29 Dec 2011 11:23:36 +0100 [thread overview]
Message-ID: <4EFC3FA8.6020401@gmail.com> (raw)
In-Reply-To: <CANq1E4T9LtrBgAxhZAcZZc_gN5yuBm0Yn1ukYiWFvH84hKavBA@mail.gmail.com>
On 12/26/2011 11:22 AM, David Herrmann wrote:
> On Mon, Dec 26, 2011 at 10:49 AM, Corentin Chary
> <corentin.chary@gmail.com> wrote:
>> On Sat, Dec 24, 2011 at 3:28 PM, David Herrmann
>> <dh.herrmann@googlemail.com> wrote:
>>> On Sat, Dec 24, 2011 at 3:20 PM, Matthew Garrett<mjg59@srcf.ucam.org> wrote:
>>>> On Sat, Dec 24, 2011 at 02:12:57PM +0000, Andrzej Prochyra wrote:
>>>>> 'acpi_video0' not functional. Brightness can be controlled through
>>>>> intel_backlight interface. There are 21 brightness levels and the
>>>>> backlight can be turned off.
>>>>
>>>> If acpi_video0 doesn't work then we either need to work out why it's not
>>>> working or make it vanish completely, so this patch isn't the correct
>>>> approach.
>>>
>>> Just to make clear, intel_backlight isn't working properly either. If
>>> my laptop boots with backlight at 50% then intel_backlight will only
>>> work in the range 0%-50% on my machine. If I use the samsung module to
>>> set it to 100% then intel_backlight works correctly in the range
>>> 0-100% until next reboot/suspend.
>>>
>>> So I'd recommend staying with the samsung module and disabling the
>>> acpi_backlight entirely. The samsung module is the only backlight
>>> control which works properly.
>>
>> Can I take a look at the DSDT to see how it's broken ?
>> If it's really not functional, then it should be added to the
>> blacklist in video_detect.c
>
> Raw and disassembled dsdt is attached.
Took a quick look but didn't find anything obvious. What happens exactly
with acpi_video0 ?
But if it's not possible to make it work, I'd propose that (not tested):
diff --git a/drivers/acpi/video_detect.c b/drivers/acpi/video_detect.c
index 45d8097..5041924 100644
--- a/drivers/acpi/video_detect.c
+++ b/drivers/acpi/video_detect.c
@@ -132,6 +132,26 @@ find_video(acpi_handle handle, u32 lvl, void
*context, void **rv)
return AE_OK;
}
+/* Force to use vendor driver when the ACPI device is known to be
+ * buggy */
+static int video_detect_force_vendor(const struct dmi_system_id *d)
+{
+ acpi_video_support |= ACPI_VIDEO_BACKLIGHT_DMI_VENDOR;
+}
+
+static struct dmi_system_id video_detect_dmi_table[] __initdata = {
+ {
+ .callback = video_detect_force_vendor,
+ .ident = "N150P",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR,
+ "SAMSUNG ELECTRONICS CO., LTD."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "N150P"),
+ DMI_MATCH(DMI_BOARD_NAME, "N150P"),
+ },
+ },
+};
+
/*
* Returns the video capabilities of a specific ACPI graphics device
*
@@ -164,6 +184,8 @@ long acpi_video_get_capabilities(acpi_handle
graphics_handle)
* ACPI_VIDEO_BACKLIGHT_DMI_VENDOR;
*}
*/
+
+ dmi_check_system(video_detect_dmi_table);
} else {
status = acpi_bus_get_device(graphics_handle, &tmp_dev);
if (ACPI_FAILURE(status)) {
--
Corentin Chary
http://xf.iksaif.net/
next prev parent reply other threads:[~2011-12-29 10:24 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-22 22:19 [PATCH] Platform: samsung-laptop: add DMI information for Samsung N150 Plus Andrzej Prochyra
2011-12-23 14:15 ` Corentin Chary
2011-12-24 14:12 ` Andrzej Prochyra
2011-12-24 14:20 ` Matthew Garrett
2011-12-24 14:28 ` David Herrmann
2011-12-26 9:49 ` Corentin Chary
2011-12-26 10:22 ` David Herrmann
2011-12-29 10:23 ` Corentin Chary [this message]
2011-12-29 11:45 ` Richard Schütz
2011-12-29 11:49 ` Corentin Chary
2011-12-29 14:02 ` David Herrmann
2012-01-04 20:51 ` Seth Forshee
2012-01-05 7:18 ` Corentin Chary
2012-01-05 15:08 ` Seth Forshee
2012-01-07 14:12 ` [PATCH] ACPI / Video: blacklist some samsung laptops Corentin Chary
2012-01-08 10:46 ` Seth Forshee
2012-01-08 12:36 ` Corentin Chary
2012-01-08 13:40 ` Seth Forshee
2012-01-09 16:39 ` David Herrmann
2012-01-09 22:34 ` Andrzej Prochyra
2011-12-26 9:51 ` [PATCH] Platform: samsung-laptop: add DMI information for Samsung N150 Plus Corentin Chary
2011-12-26 12:33 ` Matthew Garrett
2012-01-23 10:41 ` Corentin Chary
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EFC3FA8.6020401@gmail.com \
--to=corentin.chary@gmail.com \
--cc=andrzej@prochyra.name \
--cc=dh.herrmann@googlemail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mjg59@srcf.ucam.org \
--cc=platform-driver-x86@vger.kernel.org \
--cc=rui.zhang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox