2016-01-26 00:23:04 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016 Intel Corporation
|
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-01-26 00:23:04 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SENSOR_SX9500_H__
|
|
|
|
#define __SENSOR_SX9500_H__
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <device.h>
|
|
|
|
|
|
|
|
#define SX9500_REG_IRQ_SRC 0x00
|
|
|
|
#define SX9500_REG_STAT 0x01
|
|
|
|
#define SX9500_REG_IRQ_MSK 0x03
|
|
|
|
|
|
|
|
#define SX9500_REG_PROX_CTRL0 0x06
|
|
|
|
#define SX9500_REG_PROX_CTRL1 0x07
|
|
|
|
|
|
|
|
/* These are used both in the IRQ_SRC register, to identify which
|
|
|
|
* interrupt occur, and in the IRQ_MSK register, to enable specific
|
|
|
|
* interrupts.
|
|
|
|
*/
|
|
|
|
#define SX9500_CONV_DONE_IRQ (1 << 3)
|
|
|
|
#define SX9500_NEAR_FAR_IRQ ((1 << 5) | (1 << 6))
|
|
|
|
|
|
|
|
struct sx9500_data {
|
|
|
|
struct device *i2c_master;
|
|
|
|
uint16_t i2c_slave_addr;
|
|
|
|
uint8_t prox_stat;
|
|
|
|
|
2016-04-06 20:52:53 +08:00
|
|
|
struct gpio_callback gpio_cb;
|
|
|
|
|
2016-11-10 23:05:53 +08:00
|
|
|
#ifdef CONFIG_SX9500_TRIGGER_OWN_THREAD
|
2016-11-10 21:21:34 +08:00
|
|
|
struct k_sem sem;
|
2016-01-26 00:23:04 +08:00
|
|
|
#endif
|
|
|
|
|
2016-11-10 23:05:53 +08:00
|
|
|
#ifdef CONFIG_SX9500_TRIGGER_GLOBAL_THREAD
|
2016-11-10 21:21:34 +08:00
|
|
|
struct k_work work;
|
2016-05-04 20:39:17 +08:00
|
|
|
struct device *dev;
|
2016-01-26 00:23:04 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SX9500_TRIGGER
|
|
|
|
struct sensor_trigger trigger_drdy;
|
|
|
|
struct sensor_trigger trigger_near_far;
|
|
|
|
|
|
|
|
sensor_trigger_handler_t handler_drdy;
|
|
|
|
sensor_trigger_handler_t handler_near_far;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef CONFIG_SX9500_TRIGGER
|
|
|
|
int sx9500_setup_interrupt(struct device *dev);
|
|
|
|
int sx9500_trigger_set(struct device *dev,
|
|
|
|
const struct sensor_trigger *trig,
|
|
|
|
sensor_trigger_handler_t handler);
|
|
|
|
#else
|
|
|
|
static inline int sx9500_setup_interrupt(struct device *dev)
|
|
|
|
{
|
2016-03-10 01:01:20 +08:00
|
|
|
return 0;
|
2016-01-26 00:23:04 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-04-22 00:08:51 +08:00
|
|
|
#define SYS_LOG_DOMAIN "SX9500"
|
2016-10-06 00:49:41 +08:00
|
|
|
#define SYS_LOG_LEVEL CONFIG_SYS_LOG_SENSOR_LEVEL
|
2016-12-18 01:56:56 +08:00
|
|
|
#include <logging/sys_log.h>
|
2016-01-26 00:23:04 +08:00
|
|
|
#endif /* __SENSOR_SX9500_H__ */
|