mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-25 16:11:45 +00:00
HID: hid-sensor-hub: Extend API for async reads
Add additional flag to read in async mode. In this mode the caller will get reply via registered callback for capture_sample. Callbacks can be registered using sensor_hub_register_callback function. The usage id parameter of the capture_sample can be matched with the usage id of the requested attribute. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Acked-by: Jonathan Cameron <jic23@kernel.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
cb67126f32
commit
b3f4737d00
10 changed files with 64 additions and 44 deletions
|
@ -250,14 +250,21 @@ EXPORT_SYMBOL_GPL(sensor_hub_get_feature);
|
||||||
|
|
||||||
int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
|
int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
|
||||||
u32 usage_id,
|
u32 usage_id,
|
||||||
u32 attr_usage_id, u32 report_id)
|
u32 attr_usage_id, u32 report_id,
|
||||||
|
enum sensor_hub_read_flags flag)
|
||||||
{
|
{
|
||||||
struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
|
struct sensor_hub_data *data = hid_get_drvdata(hsdev->hdev);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
struct hid_report *report;
|
struct hid_report *report;
|
||||||
int ret_val = 0;
|
int ret_val = 0;
|
||||||
|
|
||||||
|
report = sensor_hub_report(report_id, hsdev->hdev,
|
||||||
|
HID_INPUT_REPORT);
|
||||||
|
if (!report)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
mutex_lock(&hsdev->mutex);
|
mutex_lock(&hsdev->mutex);
|
||||||
|
if (flag == SENSOR_HUB_SYNC) {
|
||||||
memset(&hsdev->pending, 0, sizeof(hsdev->pending));
|
memset(&hsdev->pending, 0, sizeof(hsdev->pending));
|
||||||
init_completion(&hsdev->pending.ready);
|
init_completion(&hsdev->pending.ready);
|
||||||
hsdev->pending.usage_id = usage_id;
|
hsdev->pending.usage_id = usage_id;
|
||||||
|
@ -267,14 +274,13 @@ int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
|
||||||
spin_lock_irqsave(&data->lock, flags);
|
spin_lock_irqsave(&data->lock, flags);
|
||||||
hsdev->pending.status = true;
|
hsdev->pending.status = true;
|
||||||
spin_unlock_irqrestore(&data->lock, flags);
|
spin_unlock_irqrestore(&data->lock, flags);
|
||||||
report = sensor_hub_report(report_id, hsdev->hdev, HID_INPUT_REPORT);
|
}
|
||||||
if (!report)
|
|
||||||
goto err_free;
|
|
||||||
|
|
||||||
mutex_lock(&data->mutex);
|
mutex_lock(&data->mutex);
|
||||||
hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT);
|
hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT);
|
||||||
mutex_unlock(&data->mutex);
|
mutex_unlock(&data->mutex);
|
||||||
wait_for_completion_interruptible_timeout(&hsdev->pending.ready, HZ*5);
|
if (flag == SENSOR_HUB_SYNC) {
|
||||||
|
wait_for_completion_interruptible_timeout(
|
||||||
|
&hsdev->pending.ready, HZ*5);
|
||||||
switch (hsdev->pending.raw_size) {
|
switch (hsdev->pending.raw_size) {
|
||||||
case 1:
|
case 1:
|
||||||
ret_val = *(u8 *)hsdev->pending.raw_data;
|
ret_val = *(u8 *)hsdev->pending.raw_data;
|
||||||
|
@ -289,9 +295,8 @@ int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
|
||||||
ret_val = 0;
|
ret_val = 0;
|
||||||
}
|
}
|
||||||
kfree(hsdev->pending.raw_data);
|
kfree(hsdev->pending.raw_data);
|
||||||
|
|
||||||
err_free:
|
|
||||||
hsdev->pending.status = false;
|
hsdev->pending.status = false;
|
||||||
|
}
|
||||||
mutex_unlock(&hsdev->mutex);
|
mutex_unlock(&hsdev->mutex);
|
||||||
|
|
||||||
return ret_val;
|
return ret_val;
|
||||||
|
|
|
@ -130,7 +130,8 @@ static int accel_3d_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
accel_state->common_attributes.hsdev,
|
accel_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_ACCEL_3D, address,
|
HID_USAGE_SENSOR_ACCEL_3D, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
else {
|
else {
|
||||||
*val = 0;
|
*val = 0;
|
||||||
hid_sensor_power_state(&accel_state->common_attributes,
|
hid_sensor_power_state(&accel_state->common_attributes,
|
||||||
|
|
|
@ -130,7 +130,8 @@ static int gyro_3d_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
gyro_state->common_attributes.hsdev,
|
gyro_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_GYRO_3D, address,
|
HID_USAGE_SENSOR_GYRO_3D, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
else {
|
else {
|
||||||
*val = 0;
|
*val = 0;
|
||||||
hid_sensor_power_state(&gyro_state->common_attributes,
|
hid_sensor_power_state(&gyro_state->common_attributes,
|
||||||
|
|
|
@ -109,7 +109,8 @@ static int als_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
als_state->common_attributes.hsdev,
|
als_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_ALS, address,
|
HID_USAGE_SENSOR_ALS, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
hid_sensor_power_state(&als_state->common_attributes,
|
hid_sensor_power_state(&als_state->common_attributes,
|
||||||
false);
|
false);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -105,7 +105,8 @@ static int prox_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
prox_state->common_attributes.hsdev,
|
prox_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_PROX, address,
|
HID_USAGE_SENSOR_PROX, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
hid_sensor_power_state(&prox_state->common_attributes,
|
hid_sensor_power_state(&prox_state->common_attributes,
|
||||||
false);
|
false);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -178,7 +178,8 @@ static int magn_3d_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
magn_state->common_attributes.hsdev,
|
magn_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_COMPASS_3D, address,
|
HID_USAGE_SENSOR_COMPASS_3D, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
else {
|
else {
|
||||||
*val = 0;
|
*val = 0;
|
||||||
hid_sensor_power_state(&magn_state->common_attributes,
|
hid_sensor_power_state(&magn_state->common_attributes,
|
||||||
|
|
|
@ -132,7 +132,8 @@ static int incl_3d_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
incl_state->common_attributes.hsdev,
|
incl_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_INCLINOMETER_3D, address,
|
HID_USAGE_SENSOR_INCLINOMETER_3D, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
else {
|
else {
|
||||||
hid_sensor_power_state(&incl_state->common_attributes,
|
hid_sensor_power_state(&incl_state->common_attributes,
|
||||||
false);
|
false);
|
||||||
|
|
|
@ -108,7 +108,8 @@ static int press_read_raw(struct iio_dev *indio_dev,
|
||||||
*val = sensor_hub_input_attr_get_raw_value(
|
*val = sensor_hub_input_attr_get_raw_value(
|
||||||
press_state->common_attributes.hsdev,
|
press_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_PRESSURE, address,
|
HID_USAGE_SENSOR_PRESSURE, address,
|
||||||
report_id);
|
report_id,
|
||||||
|
SENSOR_HUB_SYNC);
|
||||||
hid_sensor_power_state(&press_state->common_attributes,
|
hid_sensor_power_state(&press_state->common_attributes,
|
||||||
false);
|
false);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -213,7 +213,7 @@ static int hid_rtc_read_time(struct device *dev, struct rtc_time *tm)
|
||||||
/* get a report with all values through requesting one value */
|
/* get a report with all values through requesting one value */
|
||||||
sensor_hub_input_attr_get_raw_value(time_state->common_attributes.hsdev,
|
sensor_hub_input_attr_get_raw_value(time_state->common_attributes.hsdev,
|
||||||
HID_USAGE_SENSOR_TIME, hid_time_addresses[0],
|
HID_USAGE_SENSOR_TIME, hid_time_addresses[0],
|
||||||
time_state->info[0].report_id);
|
time_state->info[0].report_id, SENSOR_HUB_SYNC);
|
||||||
/* wait for all values (event) */
|
/* wait for all values (event) */
|
||||||
ret = wait_for_completion_killable_timeout(
|
ret = wait_for_completion_killable_timeout(
|
||||||
&time_state->comp_last_time, HZ*6);
|
&time_state->comp_last_time, HZ*6);
|
||||||
|
|
|
@ -169,19 +169,27 @@ int sensor_hub_input_get_attribute_info(struct hid_sensor_hub_device *hsdev,
|
||||||
struct hid_sensor_hub_attribute_info *info);
|
struct hid_sensor_hub_attribute_info *info);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sensor_hub_input_attr_get_raw_value() - Synchronous read request
|
* sensor_hub_input_attr_get_raw_value() - Attribute read request
|
||||||
* @usage_id: Attribute usage id of parent physical device as per spec
|
* @usage_id: Attribute usage id of parent physical device as per spec
|
||||||
* @attr_usage_id: Attribute usage id as per spec
|
* @attr_usage_id: Attribute usage id as per spec
|
||||||
* @report_id: Report id to look for
|
* @report_id: Report id to look for
|
||||||
|
* @flag: Synchronous or asynchronous read
|
||||||
*
|
*
|
||||||
* Issues a synchronous read request for an input attribute. Returns
|
* Issues a synchronous or asynchronous read request for an input attribute.
|
||||||
* data upto 32 bits. Since client can get events, so this call should
|
* Returns data upto 32 bits.
|
||||||
* not be used for data paths, this will impact performance.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
enum sensor_hub_read_flags {
|
||||||
|
SENSOR_HUB_SYNC,
|
||||||
|
SENSOR_HUB_ASYNC,
|
||||||
|
};
|
||||||
|
|
||||||
int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
|
int sensor_hub_input_attr_get_raw_value(struct hid_sensor_hub_device *hsdev,
|
||||||
u32 usage_id,
|
u32 usage_id,
|
||||||
u32 attr_usage_id, u32 report_id);
|
u32 attr_usage_id, u32 report_id,
|
||||||
|
enum sensor_hub_read_flags flag
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* sensor_hub_set_feature() - Feature set request
|
* sensor_hub_set_feature() - Feature set request
|
||||||
* @report_id: Report id to look for
|
* @report_id: Report id to look for
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue