summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2020-12-02 20:22:59 -0800
committerCommit Bot <commit-bot@chromium.org>2020-12-11 06:41:56 +0000
commita4fd2173f7e058fcf48287fc9760d6bb9d39cc7c (patch)
treeb731e611ca3a9f487b6a1aa339bb99cd225adc48
parentc36ba0724bc7db8cdb12b66d24f4f4db60a80d65 (diff)
downloadchrome-ec-a4fd2173f7e058fcf48287fc9760d6bb9d39cc7c.tar.gz
driver: tcs3400: Report ODR for RGB sensor
To be able to send data to the host, the oversampling ratio must be non-zero. It implies: - the host send a set frequency request for the RGB sensor - the EC use the frequency from the clear sensor to calculate the RGB sensor oversampling ratio BUG=b:172343923 BRANCH=kukui,hatch,volteer TEST=On Volteer, in calibration mode, check we get samples from the RGB sensor. Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Change-Id: I70eb62287cae983800cdadaee4cfe00b2f22b734 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2570825 Reviewed-by: Nick Vaccaro <nvaccaro@google.com> (cherry picked from commit 4761e94ef6690c47a25351d024705197674720bd) Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2586070
-rw-r--r--driver/als_tcs3400.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/driver/als_tcs3400.c b/driver/als_tcs3400.c
index 10e33b755c..9969a0a565 100644
--- a/driver/als_tcs3400.c
+++ b/driver/als_tcs3400.c
@@ -600,11 +600,6 @@ static int tcs3400_rgb_set_offset(const struct motion_sensor_t *s,
return EC_SUCCESS;
}
-static int tcs3400_rgb_get_data_rate(const struct motion_sensor_t *s)
-{
- return 0;
-}
-
static int tcs3400_rgb_set_data_rate(const struct motion_sensor_t *s,
int rate,
int rnd)
@@ -680,6 +675,11 @@ static int tcs3400_get_data_rate(const struct motion_sensor_t *s)
return TCS3400_DRV_DATA(s)->rate;
}
+static int tcs3400_rgb_get_data_rate(const struct motion_sensor_t *s)
+{
+ return tcs3400_get_data_rate(s - 1);
+}
+
static int tcs3400_set_data_rate(const struct motion_sensor_t *s,
int rate,
int rnd)