linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: acpi-als on Dell XPS 13 9343
       [not found]   ` <1451468582.2348.0@smtp.gmail.com>
@ 2015-12-30  9:50     ` Marek Vasut
  2015-12-30 10:28       ` Gabriele Mazzotta
  0 siblings, 1 reply; 4+ messages in thread
From: Marek Vasut @ 2015-12-30  9:50 UTC (permalink / raw)
  To: linux-iio; +Cc: Mykola Dvornik, marxin.liska, Gabriele Mazzotta

On Wednesday, December 30, 2015 at 10:43:02 AM, Mykola Dvornik wrote:
> Hi Marek,
> 
> Thanks for you prompt reply.
> 
> The DSDT describes _ALI method:
> 
> 	...
> Device (ALSD)
>     {
>         Name (_HID, "ACPI0008" /* Ambient Light Sensor Device */)  //
> _HID: Hardware ID
>         Method (_STA, 0, NotSerialized)  // _STA: Status
>         {
>             If ((ALSE == 0x02))
>             {
>                 Return (0x0B)
>             }
> 
>             Return (Zero)
>         }
> 
>         Method (_ALI, 0, NotSerialized)  // _ALI: Ambient Light
> Illuminance
>         {
>             Return (((LHIH << 0x08) | LLOW))
>         }
> 	...
> 
> acpidump also shows _ALI method.
> 
> But '/sys/bus/acpi/devices/ACPI0008:00' only contains:
> 
> hid
> modalias
> path
> power
> status
> subsystem
> uevent

OK, I don't have a machine with the ALS in it here, so I am CCing the list and
a few more interested parties.

> Regards,
> 
> Mykola
> 
> On Wed, Dec 30, 2015 at 9:52 AM, Marek Vasut <marex@denx.de> wrote:
> > On Wednesday, December 30, 2015 at 09:32:48 AM, Mykola Dvornik wrote:
> >>  Hi guys,
> >>  
> >>  I am writing to you because the acpi-als kernel module is not
> >> 
> >> detecting
> >> 
> >>  ALS on Dell XPS 13 9343.
> >>  
> >>  The (decompiled) DSDT of the laptop is attached to this email.
> >>  
> >>  The ACPI0008 is present in the system with 'cat modalias':
> >>  
> >>  acpi:ACPI0008:
> >>  
> >>  but exposes no iio-related stuff.
> >>  
> >>  I am running Fedora 23 with kernel-4.2.8.
> >>  
> >>  Would you be so kind to look into this issue?
> > 
> > Do you have the _ALI value in the ACPI0008 ? That's what's used to
> > read out
> > the illuminance and without it, the ALS driver won't report anything.
> > 
> > Best regards,
> > Marek Vasut

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: acpi-als on Dell XPS 13 9343
  2015-12-30  9:50     ` acpi-als on Dell XPS 13 9343 Marek Vasut
@ 2015-12-30 10:28       ` Gabriele Mazzotta
       [not found]         ` <1451473319.2316.0@smtp.gmail.com>
  2016-05-25 16:45         ` Pali Rohár
  0 siblings, 2 replies; 4+ messages in thread
From: Gabriele Mazzotta @ 2015-12-30 10:28 UTC (permalink / raw)
  To: Marek Vasut; +Cc: linux-iio, Mykola Dvornik, Martin Liška

2015-12-30 10:50 GMT+01:00 Marek Vasut <marex@denx.de>:
> On Wednesday, December 30, 2015 at 10:43:02 AM, Mykola Dvornik wrote:
>> Hi Marek,
>>
>> Thanks for you prompt reply.
>>
>> The DSDT describes _ALI method:
>>
>>       ...
>> Device (ALSD)
>>     {
>>         Name (_HID, "ACPI0008" /* Ambient Light Sensor Device */)  //
>> _HID: Hardware ID
>>         Method (_STA, 0, NotSerialized)  // _STA: Status
>>         {
>>             If ((ALSE == 0x02))
>>             {
>>                 Return (0x0B)
>>             }
>>
>>             Return (Zero)
>>         }
>>
>>         Method (_ALI, 0, NotSerialized)  // _ALI: Ambient Light
>> Illuminance
>>         {
>>             Return (((LHIH << 0x08) | LLOW))
>>         }
>>       ...
>>
>> acpidump also shows _ALI method.
>>
>> But '/sys/bus/acpi/devices/ACPI0008:00' only contains:
>>
>> hid
>> modalias
>> path
>> power
>> status
>> subsystem
>> uevent

Hi,

looking at this portion of the ACPI table I can see that the
status of the ambient light sensor is controlled by a variable
(ALSE, which I guess stands for ALS Enabled).

If the output of /sys/bus/acpi/devices/ACPI0008:00/status is 0,
then the light sensor is disabled and must be somehow enabled.
When the sensor is enabled, the output of status should be 11. I
don't know what controls the value of ALSE, I think it's something
specific of your laptop.

Regards,
Gabriele

> OK, I don't have a machine with the ALS in it here, so I am CCing the list and
> a few more interested parties.
>
>> Regards,
>>
>> Mykola
>>
>> On Wed, Dec 30, 2015 at 9:52 AM, Marek Vasut <marex@denx.de> wrote:
>> > On Wednesday, December 30, 2015 at 09:32:48 AM, Mykola Dvornik wrote:
>> >>  Hi guys,
>> >>
>> >>  I am writing to you because the acpi-als kernel module is not
>> >>
>> >> detecting
>> >>
>> >>  ALS on Dell XPS 13 9343.
>> >>
>> >>  The (decompiled) DSDT of the laptop is attached to this email.
>> >>
>> >>  The ACPI0008 is present in the system with 'cat modalias':
>> >>
>> >>  acpi:ACPI0008:
>> >>
>> >>  but exposes no iio-related stuff.
>> >>
>> >>  I am running Fedora 23 with kernel-4.2.8.
>> >>
>> >>  Would you be so kind to look into this issue?
>> >
>> > Do you have the _ALI value in the ACPI0008 ? That's what's used to
>> > read out
>> > the illuminance and without it, the ALS driver won't report anything.
>> >
>> > Best regards,
>> > Marek Vasut

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: acpi-als on Dell XPS 13 9343
       [not found]         ` <1451473319.2316.0@smtp.gmail.com>
@ 2015-12-30 11:07           ` Gabriele Mazzotta
  0 siblings, 0 replies; 4+ messages in thread
From: Gabriele Mazzotta @ 2015-12-30 11:07 UTC (permalink / raw)
  To: Mykola Dvornik; +Cc: Marek Vasut, linux-iio, Martin Liška

2015-12-30 12:01 GMT+01:00 Mykola Dvornik <mykola.dvornik@gmail.com>:
> Hi Gabriele,
>
> Thanks for the tip.
>
> The reported status is 0, so the device is disabled and there is no way to
> override it in BIOS.

Not really related to acpi-als, but you could take a look at
libsmbios. I know it can enable the ambient light sensor of
some Dell laptops.

Gabriele

> Anyway thanks guys for all your help.
>
> Happy New Year.
>
> Cheers,
>
> Mykola

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: acpi-als on Dell XPS 13 9343
  2015-12-30 10:28       ` Gabriele Mazzotta
       [not found]         ` <1451473319.2316.0@smtp.gmail.com>
@ 2016-05-25 16:45         ` Pali Rohár
  1 sibling, 0 replies; 4+ messages in thread
From: Pali Rohár @ 2016-05-25 16:45 UTC (permalink / raw)
  To: Mykola Dvornik
  Cc: Marek Vasut, linux-iio, Martin Liška, Gabriele Mazzotta

On Wednesday 30 December 2015 11:28:32 Gabriele Mazzotta wrote:
> 2015-12-30 10:50 GMT+01:00 Marek Vasut <marex@denx.de>:
> > On Wednesday, December 30, 2015 at 10:43:02 AM, Mykola Dvornik wrote:
> >> Hi Marek,
> >>
> >> Thanks for you prompt reply.
> >>
> >> The DSDT describes _ALI method:
> >>
> >>       ...
> >> Device (ALSD)
> >>     {
> >>         Name (_HID, "ACPI0008" /* Ambient Light Sensor Device */)  //
> >> _HID: Hardware ID
> >>         Method (_STA, 0, NotSerialized)  // _STA: Status
> >>         {
> >>             If ((ALSE == 0x02))
> >>             {
> >>                 Return (0x0B)
> >>             }
> >>
> >>             Return (Zero)
> >>         }
> >>
> >>         Method (_ALI, 0, NotSerialized)  // _ALI: Ambient Light
> >> Illuminance
> >>         {
> >>             Return (((LHIH << 0x08) | LLOW))
> >>         }
> >>       ...
> >>
> >> acpidump also shows _ALI method.
> >>
> >> But '/sys/bus/acpi/devices/ACPI0008:00' only contains:
> >>
> >> hid
> >> modalias
> >> path
> >> power
> >> status
> >> subsystem
> >> uevent
> 
> Hi,
> 
> looking at this portion of the ACPI table I can see that the
> status of the ambient light sensor is controlled by a variable
> (ALSE, which I guess stands for ALS Enabled).
> 
> If the output of /sys/bus/acpi/devices/ACPI0008:00/status is 0,
> then the light sensor is disabled and must be somehow enabled.
> When the sensor is enabled, the output of status should be 11. I
> don't know what controls the value of ALSE, I think it's something
> specific of your laptop.
> 
> Regards,
> Gabriele

Hi Mykola! Please look at dell-wmi driver:
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/platform/x86/dell-wmi.c?h=v4.6#n634

There is specific Dell SMBIOS call which tell Dell BIOS/firmware to
start generating WMI events when some buttons are pressed.

In above link is also documentation for that SMBIOS call and there is
also parameter "ALS Driver". So maybe this one can enable your currently
disabled ambient light sensor...

Can you play with it?

> > OK, I don't have a machine with the ALS in it here, so I am CCing the list and
> > a few more interested parties.
> >
> >> Regards,
> >>
> >> Mykola
> >>
> >> On Wed, Dec 30, 2015 at 9:52 AM, Marek Vasut <marex@denx.de> wrote:
> >> > On Wednesday, December 30, 2015 at 09:32:48 AM, Mykola Dvornik wrote:
> >> >>  Hi guys,
> >> >>
> >> >>  I am writing to you because the acpi-als kernel module is not
> >> >>
> >> >> detecting
> >> >>
> >> >>  ALS on Dell XPS 13 9343.
> >> >>
> >> >>  The (decompiled) DSDT of the laptop is attached to this email.
> >> >>
> >> >>  The ACPI0008 is present in the system with 'cat modalias':
> >> >>
> >> >>  acpi:ACPI0008:
> >> >>
> >> >>  but exposes no iio-related stuff.
> >> >>
> >> >>  I am running Fedora 23 with kernel-4.2.8.
> >> >>
> >> >>  Would you be so kind to look into this issue?
> >> >
> >> > Do you have the _ALI value in the ACPI0008 ? That's what's used to
> >> > read out
> >> > the illuminance and without it, the ALS driver won't report anything.
> >> >
> >> > Best regards,
> >> > Marek Vasut
> 

-- 
Pali Rohár
pali.rohar@gmail.com

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-25 16:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1451464368.2262.1@smtp.gmail.com>
     [not found] ` <201512300952.24700.marex@denx.de>
     [not found]   ` <1451468582.2348.0@smtp.gmail.com>
2015-12-30  9:50     ` acpi-als on Dell XPS 13 9343 Marek Vasut
2015-12-30 10:28       ` Gabriele Mazzotta
     [not found]         ` <1451473319.2316.0@smtp.gmail.com>
2015-12-30 11:07           ` Gabriele Mazzotta
2016-05-25 16:45         ` Pali Rohár

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).