mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-04 05:51:34 +00:00
This adds space for up to two ALS lux readings to be available to the AP
through the memory-mapped LPC region. If enabled, the values are updated
once a second.
The ALS will be reinitialized at every AP resume, since it's typically
unpowered otherwise. The reported value will be zero when the ALS is off.
BUG=chrome-os-partner:23380
BRANCH=samus
TEST=manual
Boot the AP, then from the EC console run "als" or just monitor the
memory-mapped region directly ("rw 0x40080780" on Samus), while pointing the
sensor at bright and dim areas. The value should change.
Change-Id: I705371fcd57345dc9adae1231ea30c7ff024aaf8
Signed-off-by: Bill Richardson <wfrichar@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/176142
Reviewed-by: Randall Spangler <rspangler@chromium.org>
65 lines
1.4 KiB
C
65 lines
1.4 KiB
C
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/* This provides the interface for any Ambient Light Sensors that are connected
|
|
* to the EC instead of the AP.
|
|
*/
|
|
|
|
#include "als.h"
|
|
#include "common.h"
|
|
#include "console.h"
|
|
#include "hooks.h"
|
|
#include "host_command.h"
|
|
#include "util.h"
|
|
|
|
int als_read(enum als_id id, int *lux)
|
|
{
|
|
return als[id].read(lux);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* Hooks */
|
|
|
|
static void als_update(void)
|
|
{
|
|
int i, rv, val;
|
|
uint16_t *mapped = (uint16_t *)host_get_memmap(EC_MEMMAP_ALS);
|
|
|
|
for (i = 0; i < EC_ALS_ENTRIES && i < ALS_COUNT; i++) {
|
|
rv = als_read(i, &val);
|
|
if (rv == EC_SUCCESS)
|
|
mapped[i] = val;
|
|
else
|
|
mapped[i] = 0;
|
|
}
|
|
}
|
|
DECLARE_HOOK(HOOK_SECOND, als_update, HOOK_PRIO_DEFAULT);
|
|
|
|
/*****************************************************************************/
|
|
/* Console commands */
|
|
|
|
static int command_als(int argc, char **argv)
|
|
{
|
|
int i, rv, val;
|
|
|
|
for (i = 0; i < ALS_COUNT; i++) {
|
|
ccprintf("%s: ", als[i].name);
|
|
rv = als_read(i, &val);
|
|
switch (rv) {
|
|
case EC_SUCCESS:
|
|
ccprintf("%d lux\n", val);
|
|
break;
|
|
default:
|
|
ccprintf("Error %d\n", rv);
|
|
}
|
|
}
|
|
|
|
return EC_SUCCESS;
|
|
}
|
|
DECLARE_CONSOLE_COMMAND(als, command_als,
|
|
NULL,
|
|
"Print ALS values",
|
|
NULL);
|