2020-06-20 05:32:33 +10:00
|
|
|
/*
|
2020-09-10 13:57:44 +10:00
|
|
|
* Copyright (c) 2020 The ZMK Contributors
|
2020-06-20 05:32:33 +10:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <zephyr/types.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <device.h>
|
2020-06-22 11:43:44 +10:00
|
|
|
#include <zmk/keys.h>
|
2020-10-11 08:32:53 +11:00
|
|
|
#include <zmk/behavior.h>
|
2020-06-20 05:32:33 +10:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @cond INTERNAL_HIDDEN
|
|
|
|
*
|
|
|
|
* Behavior driver API definition and system call entry points.
|
|
|
|
*
|
|
|
|
* (Internal use only.)
|
|
|
|
*/
|
|
|
|
|
2020-10-11 08:32:53 +11:00
|
|
|
typedef int (*behavior_keymap_binding_callback_t)(struct zmk_behavior_binding *binding,
|
|
|
|
struct zmk_behavior_binding_event event);
|
|
|
|
typedef int (*behavior_sensor_keymap_binding_callback_t)(struct zmk_behavior_binding *binding,
|
2020-11-12 08:06:25 +11:00
|
|
|
struct device *sensor, s64_t timestamp);
|
2020-06-20 05:32:33 +10:00
|
|
|
|
|
|
|
__subsystem struct behavior_driver_api {
|
2020-09-14 12:53:24 +10:00
|
|
|
behavior_keymap_binding_callback_t binding_pressed;
|
|
|
|
behavior_keymap_binding_callback_t binding_released;
|
|
|
|
behavior_sensor_keymap_binding_callback_t sensor_binding_triggered;
|
2020-06-20 05:32:33 +10:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* @endcond
|
|
|
|
*/
|
|
|
|
|
2020-06-22 11:43:44 +10:00
|
|
|
/**
|
|
|
|
* @brief Handle the keymap binding being pressed
|
|
|
|
* @param dev Pointer to the device structure for the driver instance.
|
|
|
|
* @param param1 User parameter specified at time of behavior binding.
|
|
|
|
* @param param2 User parameter specified at time of behavior binding.
|
|
|
|
*
|
|
|
|
* @retval 0 If successful.
|
|
|
|
* @retval Negative errno code if failure.
|
|
|
|
*/
|
2020-10-11 08:32:53 +11:00
|
|
|
__syscall int behavior_keymap_binding_pressed(struct zmk_behavior_binding *binding,
|
|
|
|
struct zmk_behavior_binding_event event);
|
2020-06-22 11:43:44 +10:00
|
|
|
|
2020-10-11 08:32:53 +11:00
|
|
|
static inline int z_impl_behavior_keymap_binding_pressed(struct zmk_behavior_binding *binding,
|
|
|
|
struct zmk_behavior_binding_event event) {
|
|
|
|
struct device *dev = device_get_binding(binding->behavior_dev);
|
2020-09-14 12:53:24 +10:00
|
|
|
const struct behavior_driver_api *api = (const struct behavior_driver_api *)dev->driver_api;
|
2020-06-22 11:43:44 +10:00
|
|
|
|
2020-09-14 12:53:24 +10:00
|
|
|
if (api->binding_pressed == NULL) {
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
2020-06-22 11:43:44 +10:00
|
|
|
|
2020-10-11 08:32:53 +11:00
|
|
|
return api->binding_pressed(binding, event);
|
2020-06-20 05:32:33 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Handle the assigned position being pressed
|
|
|
|
* @param dev Pointer to the device structure for the driver instance.
|
|
|
|
* @param param1 User parameter specified at time of behavior assignment.
|
|
|
|
*
|
|
|
|
* @retval 0 If successful.
|
|
|
|
* @retval Negative errno code if failure.
|
|
|
|
*/
|
2020-10-11 08:32:53 +11:00
|
|
|
__syscall int behavior_keymap_binding_released(struct zmk_behavior_binding *binding,
|
|
|
|
struct zmk_behavior_binding_event event);
|
2020-06-20 05:32:33 +10:00
|
|
|
|
2020-10-11 08:32:53 +11:00
|
|
|
static inline int z_impl_behavior_keymap_binding_released(struct zmk_behavior_binding *binding,
|
|
|
|
struct zmk_behavior_binding_event event) {
|
|
|
|
struct device *dev = device_get_binding(binding->behavior_dev);
|
2020-09-14 12:53:24 +10:00
|
|
|
const struct behavior_driver_api *api = (const struct behavior_driver_api *)dev->driver_api;
|
2020-06-20 05:32:33 +10:00
|
|
|
|
2020-09-14 12:53:24 +10:00
|
|
|
if (api->binding_released == NULL) {
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
2020-06-20 05:32:33 +10:00
|
|
|
|
2020-10-11 08:32:53 +11:00
|
|
|
return api->binding_released(binding, event);
|
2020-06-20 05:32:33 +10:00
|
|
|
}
|
|
|
|
|
2020-06-20 14:11:39 +10:00
|
|
|
/**
|
2020-07-23 00:10:04 +10:00
|
|
|
* @brief Handle the a sensor keymap binding being triggered
|
2020-06-20 14:11:39 +10:00
|
|
|
* @param dev Pointer to the device structure for the driver instance.
|
2020-07-23 00:10:04 +10:00
|
|
|
* @param sensor Pointer to the sensor device structure for the sensor driver instance.
|
|
|
|
* @param param1 User parameter specified at time of behavior binding.
|
|
|
|
* @param param2 User parameter specified at time of behavior binding.
|
2020-06-22 11:43:44 +10:00
|
|
|
*
|
|
|
|
* @retval 0 If successful.
|
|
|
|
* @retval Negative errno code if failure.
|
|
|
|
*/
|
2020-10-11 08:32:53 +11:00
|
|
|
__syscall int behavior_sensor_keymap_binding_triggered(struct zmk_behavior_binding *binding,
|
2020-11-12 08:06:25 +11:00
|
|
|
struct device *sensor, s64_t timestamp);
|
2020-06-22 11:43:44 +10:00
|
|
|
|
2020-10-11 08:32:53 +11:00
|
|
|
static inline int
|
|
|
|
z_impl_behavior_sensor_keymap_binding_triggered(struct zmk_behavior_binding *binding,
|
2020-11-12 08:06:25 +11:00
|
|
|
struct device *sensor, s64_t timestamp) {
|
2020-10-11 08:32:53 +11:00
|
|
|
struct device *dev = device_get_binding(binding->behavior_dev);
|
2020-09-14 12:53:24 +10:00
|
|
|
const struct behavior_driver_api *api = (const struct behavior_driver_api *)dev->driver_api;
|
2020-06-22 11:43:44 +10:00
|
|
|
|
2020-09-14 12:53:24 +10:00
|
|
|
if (api->sensor_binding_triggered == NULL) {
|
|
|
|
return -ENOTSUP;
|
|
|
|
}
|
2020-06-22 11:43:44 +10:00
|
|
|
|
2020-11-12 08:06:25 +11:00
|
|
|
return api->sensor_binding_triggered(binding, sensor, timestamp);
|
2020-06-22 11:43:44 +10:00
|
|
|
}
|
|
|
|
|
2020-06-20 05:32:33 +10:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <syscalls/behavior.h>
|