mirror of
https://github.com/zmkfirmware/zmk.git
synced 2026-03-27 16:35:17 -05:00
Added BEHAVIOR_DT_DEFINE() and BEHAVIOR_DT_INST_DEFINE(), which work exactly like the DEVICE_*_DEFINE() macros, except they also register the device as a behavior by adding a pointer to it to a memory section. Added zmk_behavior_get_binding(), which works like device_get_binding() except that it only searches the devices that have been registered as behaviors. This ensures that behaviors cannot have name collisions with other devices defined by the SoC, which will be important when we remove the label property from behaviors so they are given their node names. As an added benefit, this is faster since it searches a smaller list. Some basic benchmark code I wrote indicates it takes 30-70% as long, depending on where the behavior is in the list and whether the name string is an exact pointer match. From now on, behaviors should use BEHAVIOR_*_DEFINe() instead of DEVICE_*_DEFINE(), and any code that looks up a behavior by name should use zmk_behavior_get_binding() instead of device_get_binding().
44 lines
2.4 KiB
C
44 lines
2.4 KiB
C
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#define DT_DRV_COMPAT zmk_behavior_sensor_rotate
|
|
|
|
#include <zephyr/device.h>
|
|
|
|
#include <drivers/behavior.h>
|
|
|
|
#include "behavior_sensor_rotate_common.h"
|
|
|
|
static const struct behavior_driver_api behavior_sensor_rotate_driver_api = {
|
|
.sensor_binding_accept_data = zmk_behavior_sensor_rotate_common_accept_data,
|
|
.sensor_binding_process = zmk_behavior_sensor_rotate_common_process};
|
|
|
|
static int behavior_sensor_rotate_init(const struct device *dev) { return 0; };
|
|
|
|
#define _TRANSFORM_ENTRY(idx, node) \
|
|
{ \
|
|
.behavior_dev = DEVICE_DT_NAME(DT_INST_PHANDLE_BY_IDX(node, bindings, idx)), \
|
|
.param1 = COND_CODE_0(DT_INST_PHA_HAS_CELL_AT_IDX(node, bindings, idx, param1), (0), \
|
|
(DT_INST_PHA_BY_IDX(node, bindings, idx, param1))), \
|
|
.param2 = COND_CODE_0(DT_INST_PHA_HAS_CELL_AT_IDX(node, bindings, idx, param2), (0), \
|
|
(DT_INST_PHA_BY_IDX(node, bindings, idx, param2))), \
|
|
}
|
|
|
|
#define SENSOR_ROTATE_INST(n) \
|
|
static struct behavior_sensor_rotate_config behavior_sensor_rotate_config_##n = { \
|
|
.cw_binding = _TRANSFORM_ENTRY(0, n), \
|
|
.ccw_binding = _TRANSFORM_ENTRY(1, n), \
|
|
.tap_ms = DT_INST_PROP_OR(n, tap_ms, 5), \
|
|
.override_params = false, \
|
|
}; \
|
|
static struct behavior_sensor_rotate_data behavior_sensor_rotate_data_##n = {}; \
|
|
BEHAVIOR_DT_INST_DEFINE(n, behavior_sensor_rotate_init, NULL, \
|
|
&behavior_sensor_rotate_data_##n, &behavior_sensor_rotate_config_##n, \
|
|
APPLICATION, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \
|
|
&behavior_sensor_rotate_driver_api);
|
|
|
|
DT_INST_FOREACH_STATUS_OKAY(SENSOR_ROTATE_INST)
|