forked from kofal.net/zmk
refactor(behaviors): Create a list to lookup behaviors
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().
This commit is contained in:
@@ -32,7 +32,7 @@ struct behavior_key_repeat_data {
|
||||
|
||||
static int on_key_repeat_binding_pressed(struct zmk_behavior_binding *binding,
|
||||
struct zmk_behavior_binding_event event) {
|
||||
const struct device *dev = device_get_binding(binding->behavior_dev);
|
||||
const struct device *dev = zmk_behavior_get_binding(binding->behavior_dev);
|
||||
struct behavior_key_repeat_data *data = dev->data;
|
||||
|
||||
if (data->last_keycode_pressed.usage_page == 0) {
|
||||
@@ -50,7 +50,7 @@ static int on_key_repeat_binding_pressed(struct zmk_behavior_binding *binding,
|
||||
|
||||
static int on_key_repeat_binding_released(struct zmk_behavior_binding *binding,
|
||||
struct zmk_behavior_binding_event event) {
|
||||
const struct device *dev = device_get_binding(binding->behavior_dev);
|
||||
const struct device *dev = zmk_behavior_get_binding(binding->behavior_dev);
|
||||
struct behavior_key_repeat_data *data = dev->data;
|
||||
|
||||
if (data->current_keycode_pressed.usage_page == 0) {
|
||||
@@ -116,9 +116,9 @@ static int behavior_key_repeat_init(const struct device *dev) {
|
||||
.usage_pages = DT_INST_PROP(n, usage_pages), \
|
||||
.usage_pages_count = DT_INST_PROP_LEN(n, usage_pages), \
|
||||
}; \
|
||||
DEVICE_DT_INST_DEFINE(n, behavior_key_repeat_init, NULL, &behavior_key_repeat_data_##n, \
|
||||
&behavior_key_repeat_config_##n, APPLICATION, \
|
||||
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &behavior_key_repeat_driver_api);
|
||||
BEHAVIOR_DT_INST_DEFINE(n, behavior_key_repeat_init, NULL, &behavior_key_repeat_data_##n, \
|
||||
&behavior_key_repeat_config_##n, APPLICATION, \
|
||||
CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, &behavior_key_repeat_driver_api);
|
||||
|
||||
DT_INST_FOREACH_STATUS_OKAY(KR_INST)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user