| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2022-3-08 GuEe-GUI the first version
- */
- #include <rthw.h>
- #include <rtthread.h>
- #include <rtdevice.h>
- #define DBG_TAG "input.touch"
- #define DBG_LVL DBG_INFO
- #include <rtdbg.h>
- struct input_touch_device
- {
- struct rt_touch_device parent;
- struct rt_input_handler handler;
- rt_bool_t enabled;
- rt_uint16_t slot;
- rt_uint16_t down;
- struct rt_touch_data points[];
- };
- struct input_touch_properties
- {
- rt_uint32_t max_x;
- rt_uint32_t max_y;
- rt_bool_t invert_x;
- rt_bool_t invert_y;
- rt_bool_t swap_x_y;
- rt_uint16_t track_id;
- rt_uint32_t num_slots;
- struct input_touch_device *touch_dev;
- };
- static rt_size_t input_touch_readpoint(struct rt_touch_device *touch,
- void *buf, rt_size_t touch_num)
- {
- struct input_touch_device *touch_dev;
- touch_dev = rt_container_of(touch, struct input_touch_device, parent);
- rt_memcpy(buf, &touch_dev->points[touch_dev->slot], sizeof(struct rt_touch_data));
- return 1;
- }
- static rt_err_t input_touch_control(struct rt_touch_device *touch, int cmd, void *arg)
- {
- rt_err_t err = RT_EOK;
- struct input_touch_device *touch_dev;
- if (!arg)
- {
- return -RT_EINVAL;
- }
- touch_dev = rt_container_of(touch, struct input_touch_device, parent);
- switch (cmd)
- {
- case RT_TOUCH_CTRL_GET_ID:
- *(int *)arg = 0;
- break;
- case RT_TOUCH_CTRL_GET_INFO:
- rt_memcpy(arg, &touch_dev->parent.info, sizeof(touch_dev->parent.info));
- break;
- case RT_TOUCH_CTRL_SET_X_RANGE:
- touch_dev->parent.info.range_x = *(rt_uint16_t *)arg;
- break;
- case RT_TOUCH_CTRL_SET_Y_RANGE:
- touch_dev->parent.info.range_y = *(rt_uint16_t *)arg;
- break;
- case RT_TOUCH_CTRL_SET_X_TO_Y:
- break;
- case RT_TOUCH_CTRL_DISABLE_INT:
- case RT_TOUCH_CTRL_POWER_OFF:
- touch_dev->enabled = RT_FALSE;
- break;
- case RT_TOUCH_CTRL_ENABLE_INT:
- case RT_TOUCH_CTRL_POWER_ON:
- touch_dev->enabled = RT_TRUE;
- break;
- case RT_TOUCH_CTRL_GET_STATUS:
- *(int *)arg = touch_dev->enabled;
- break;
- default:
- err = -RT_ENOSYS;
- break;
- }
- return err;
- }
- const static struct rt_touch_ops input_touch_ops =
- {
- .touch_readpoint = input_touch_readpoint,
- .touch_control = input_touch_control,
- };
- static rt_bool_t input_touch_cb(struct rt_input_handler *handler,
- struct rt_input_event *ev)
- {
- struct input_touch_device *touch_dev;
- touch_dev = rt_container_of(handler, struct input_touch_device, handler);
- if (touch_dev->enabled)
- {
- struct rt_touch_data *point = &touch_dev->points[touch_dev->slot];
- if (ev->type == EV_ABS)
- {
- struct rt_input_device *idev = handler->idev;
- struct rt_input_absinfo *absinfo = &idev->absinfo[touch_dev->slot];
- switch (ev->code)
- {
- case ABS_MT_SLOT:
- touch_dev->slot = ev->value;
- break;
- case ABS_MT_TRACKING_ID:
- point->timestamp = ev->tick;
- if (ev->value == (typeof(ev->code))-1)
- {
- point->event = RT_TOUCH_EVENT_UP;
- touch_dev->down = 0;
- rt_hw_touch_isr(&touch_dev->parent);
- break;
- }
- point->track_id = ev->value;
- point->event = touch_dev->down ? RT_TOUCH_EVENT_MOVE : RT_TOUCH_EVENT_DOWN;
- ++touch_dev->down;
- break;
- case ABS_MT_POSITION_X:
- case ABS_X:
- point->x_coordinate = (ev->value * touch_dev->parent.info.range_x) /
- (absinfo->maximum - absinfo->minimum);
- break;
- case ABS_MT_POSITION_Y:
- case ABS_Y:
- point->y_coordinate = (ev->value * touch_dev->parent.info.range_y) /
- (absinfo->maximum - absinfo->minimum);
- break;
- }
- }
- else if (ev->type == EV_SYN && ev->code == SYN_REPORT && ev->value == 0)
- {
- rt_hw_touch_isr(&touch_dev->parent);
- }
- }
- return RT_FALSE;
- }
- void input_touch_register(struct rt_input_device *idev)
- {
- const char *dev_name;
- struct rt_touch_device *tdev;
- struct input_touch_device *touch_dev;
- struct input_touch_properties *prop = idev->touch;
- /* Only register rt_touch_device */
- if (!prop || !prop->touch_dev)
- {
- return;
- }
- touch_dev = prop->touch_dev;
- tdev = &touch_dev->parent;
- tdev->ops = &input_touch_ops;
- rt_dm_dev_set_name_auto(&tdev->parent, "touch");
- dev_name = rt_dm_dev_get_name(&tdev->parent);
- rt_hw_touch_register(tdev, dev_name, RT_DEVICE_FLAG_INT_RX, prop);
- touch_dev->enabled = RT_TRUE;
- touch_dev->handler.idev = idev;
- touch_dev->handler.callback = &input_touch_cb;
- rt_input_add_handler(&touch_dev->handler);
- }
- void input_touch_unregister(struct rt_input_device *idev)
- {
- struct rt_touch_device *tdev;
- struct input_touch_device *touch_dev;
- struct input_touch_properties *prop = idev->touch;
- if (!prop)
- {
- return;
- }
- if (prop->touch_dev)
- {
- goto _end;
- }
- touch_dev = prop->touch_dev;
- tdev = &touch_dev->parent;
- rt_input_del_handler(&touch_dev->handler);
- rt_device_unregister(&tdev->parent);
- _end:
- rt_free(idev->touch);
- idev->touch = RT_NULL;
- }
- static void input_touch_parse(struct rt_input_device *idev,
- rt_bool_t multitouch, struct input_touch_properties *prop)
- {
- rt_bool_t present = RT_TRUE;
- rt_uint32_t axis, axis_x, axis_y;
- rt_uint32_t minimum, maximum, fuzz;
- struct rt_device *dev = &idev->parent;
- struct rt_input_absinfo *absinfo = idev->absinfo;
- axis_x = multitouch ? ABS_MT_POSITION_X : ABS_X;
- axis_y = multitouch ? ABS_MT_POSITION_Y : ABS_Y;
- if ((present = rt_dm_dev_prop_read_u32(dev, "touchscreen-min-x", &minimum)))
- {
- minimum = absinfo[axis_x].minimum;
- }
- if ((present |= rt_dm_dev_prop_read_u32(dev, "touchscreen-size-x", &maximum)))
- {
- maximum = absinfo[axis_x].maximum + 1;
- }
- if ((present |= rt_dm_dev_prop_read_u32(dev, "touchscreen-fuzz-x", &fuzz)))
- {
- fuzz = absinfo[axis_x].fuzz;
- }
- if (present)
- {
- rt_input_set_absinfo(idev, axis_x, minimum, maximum - 1, fuzz, 0);
- }
- if ((present = rt_dm_dev_prop_read_u32(dev, "touchscreen-min-y", &minimum)))
- {
- minimum = absinfo[axis_y].minimum;
- }
- if ((present |= rt_dm_dev_prop_read_u32(dev, "touchscreen-size-y", &maximum)))
- {
- maximum = absinfo[axis_y].maximum + 1;
- }
- if ((present |= rt_dm_dev_prop_read_u32(dev, "touchscreen-fuzz-y", &fuzz)))
- {
- fuzz = absinfo[axis_y].fuzz;
- }
- if (present)
- {
- rt_input_set_absinfo(idev, axis_y, minimum, maximum - 1, fuzz, 0);
- }
- axis = multitouch ? ABS_MT_PRESSURE : ABS_PRESSURE;
- if ((present = rt_dm_dev_prop_read_u32(dev, "touchscreen-max-pressure", &maximum)))
- {
- maximum = absinfo[axis].maximum;
- }
- if ((present |= rt_dm_dev_prop_read_u32(dev, "touchscreen-fuzz-pressure", &fuzz)))
- {
- fuzz = absinfo[axis].fuzz;
- }
- if (present)
- {
- rt_input_set_absinfo(idev, axis, 0, maximum, fuzz, 0);
- }
- prop->max_x = absinfo[axis_x].maximum;
- prop->max_y = absinfo[axis_y].maximum;
- prop->invert_x = rt_dm_dev_prop_read_bool(dev, "touchscreen-inverted-x");
- if (prop->invert_x)
- {
- absinfo[axis_x].maximum -= absinfo[axis_x].minimum;
- absinfo[axis_x].minimum = 0;
- }
- prop->invert_y = rt_dm_dev_prop_read_bool(dev, "touchscreen-inverted-y");
- if (prop->invert_y)
- {
- absinfo[axis_y].maximum -= absinfo[axis_y].minimum;
- absinfo[axis_y].minimum = 0;
- }
- prop->swap_x_y = rt_dm_dev_prop_read_bool(dev, "touchscreen-swapped-x-y");
- if (prop->swap_x_y)
- {
- struct rt_input_absinfo swap_absinfo;
- rt_memcpy(&swap_absinfo, &idev->absinfo[axis_x], sizeof(swap_absinfo));
- rt_memcpy(&idev->absinfo[axis_x], &idev->absinfo[axis_y], sizeof(swap_absinfo));
- rt_memcpy(&idev->absinfo[axis_y], &swap_absinfo, sizeof(swap_absinfo));
- }
- }
- rt_err_t rt_input_setup_touch(struct rt_input_device *idev,
- rt_uint32_t num_slots, struct rt_touch_info *info)
- {
- rt_size_t alloc_size;
- rt_bool_t multitouch;
- struct input_touch_device *touch_dev;
- struct input_touch_properties *prop;
- if (!idev || idev->touch)
- {
- return -RT_EINVAL;
- }
- multitouch = !!num_slots;
- alloc_size = sizeof(*prop);
- if (info)
- {
- alloc_size += sizeof(*touch_dev);
- alloc_size += sizeof(*touch_dev->points) * rt_max_t(rt_uint32_t, num_slots, 1);
- }
- if (!(prop = rt_calloc(1, alloc_size)))
- {
- return -RT_ENOMEM;
- }
- idev->touch = prop;
- if ((prop->num_slots = num_slots))
- {
- rt_input_set_absinfo(idev, ABS_MT_SLOT, 0, num_slots - 1, 0, 0);
- rt_input_set_absinfo(idev, ABS_MT_TRACKING_ID, 0, RT_UINT16_MAX, 0, 0);
- }
- input_touch_parse(idev, multitouch, prop);
- if (info)
- {
- rt_size_t points_nr = rt_max_t(rt_uint32_t, num_slots, 1);
- touch_dev = (void *)prop + sizeof(*prop);
- prop->touch_dev = touch_dev;
- for (int i = 0; i < points_nr; ++i)
- {
- touch_dev->points[i].width = 1;
- }
- rt_memcpy(&touch_dev->parent.info, info, sizeof(*info));
- info = &touch_dev->parent.info;
- info->point_num = info->point_num ? : prop->num_slots;
- info->range_x = info->range_x ? : prop->max_x;
- info->range_y = info->range_y ? : prop->max_y;
- }
- return RT_EOK;
- }
- rt_err_t rt_input_parse_touch_position(struct rt_input_device *idev,
- rt_uint32_t *out_x, rt_uint32_t *out_y)
- {
- struct input_touch_properties *prop;
- RT_ASSERT(idev != RT_NULL);
- RT_ASSERT(out_x != RT_NULL);
- RT_ASSERT(out_y != RT_NULL);
- prop = idev->touch;
- if (prop->invert_x)
- {
- *out_x = prop->max_x - *out_x;
- }
- if (prop->invert_y)
- {
- *out_y = prop->max_y - *out_y;
- }
- if (prop->swap_x_y)
- {
- *out_x ^= *out_y;
- *out_y ^= *out_x;
- *out_x ^= *out_y;
- }
- return RT_EOK;
- }
- rt_bool_t rt_input_report_touch_inactive(struct rt_input_device *idev,
- rt_bool_t active)
- {
- struct input_touch_properties *prop;
- RT_ASSERT(idev != RT_NULL);
- prop = idev->touch;
- if (!active)
- {
- rt_input_event(idev, EV_ABS, ABS_MT_TRACKING_ID, -1);
- return RT_FALSE;
- }
- rt_input_event(idev, EV_ABS, ABS_MT_TRACKING_ID, prop->track_id++);
- return RT_TRUE;
- }
- void rt_input_report_touch_position(struct rt_input_device *idev,
- rt_uint32_t x, rt_uint32_t y, rt_bool_t multitouch)
- {
- RT_ASSERT(idev != RT_NULL);
- rt_input_parse_touch_position(idev, &x, &y);
- rt_input_report_abs(idev, multitouch ? ABS_MT_POSITION_X : ABS_X, x);
- rt_input_report_abs(idev, multitouch ? ABS_MT_POSITION_Y : ABS_Y, y);
- }
|