summaryrefslogtreecommitdiff
path: root/driver/fingerprint/fpc/fpc_sensor.c
blob: a15502521f4cd95a1fb40582346b2999b1d5c556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Copyright 2020 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.
 */

#include <stddef.h>
#include <include/fpsensor.h>
#include <include/fpsensor_state.h>
#include <common/fpsensor/fpsensor_private.h>
#if defined(CONFIG_FP_SENSOR_FPC1025) || defined(CONFIG_FP_SENSOR_FPC1035)
#include "bep/fpc_private.h"
#elif defined(CONFIG_FP_SENSOR_FPC1145)
#include "libfp/fpc_private.h"
#else
#error "Sensor type not defined!"
#endif

/*
 * TODO(b/164174822): We cannot include fpc_sensor.h here, since
 * the parent fpsensor.h header conditionally excludes fpc_sensor.h
 * and replaces its content with default macros.
 * Fix this header discrepancy.
 *
 * #include "fpc_sensor.h"
 */

int fpc_fp_maintenance(uint16_t *error_state)
{
	int rv;
	fp_sensor_info_t sensor_info;
	timestamp_t start = get_time();

	if (error_state == NULL)
		return EC_ERROR_INVAL;

	rv = fp_sensor_maintenance(fp_buffer, &sensor_info);
	CPRINTS("Maintenance took %d ms", time_since32(start) / MSEC);

	if (rv != 0) {
		/*
		 * Failure can occur if any of the fingerprint detection zones
		 * are covered (i.e., finger is on sensor).
		 */
		CPRINTS("Failed to run maintenance: %d", rv);
		return EC_ERROR_HW_INTERNAL;
	}

	*error_state |= FP_ERROR_DEAD_PIXELS(sensor_info.num_defective_pixels);
	CPRINTS("num_defective_pixels: %d", sensor_info.num_defective_pixels);

	return EC_SUCCESS;
}