summaryrefslogtreecommitdiff
path: root/drivers/sensors/brcm/ssp_sensorhub.h
blob: 742806d3679cd1ee6092d2ecb84fe86192e79675 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 *  Copyright (C) 2013, Samsung Electronics Co. Ltd. All Rights Reserved.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 */

#ifndef __SSP_SENSORHUB__
#define __SSP_SENSORHUB__

#include <linux/completion.h>
#include <linux/kfifo.h>
#include <linux/kthread.h>
#include <linux/list.h>
#include <linux/spinlock.h>
#include "ssp.h"

/* 'LIST_SIZE' should be be rounded-up to a power of 2 */
#define LIST_SIZE			4
#define MAX_DATA_COPY_TRY		2
#define WAKE_LOCK_TIMEOUT		(3*HZ)
#define COMPLETION_TIMEOUT		(2*HZ)
#define DATA				REL_RX
#define BIG_DATA			REL_RY
#define NOTICE				REL_RZ
#define BIG_DATA_SIZE			256
#define PRINT_TRUNCATE			6
#define BIN_PATH_SIZE			100

#define SENSORHUB_IOCTL_MAGIC		'S'
#define IOCTL_READ_BIG_CONTEXT_DATA	_IOR(SENSORHUB_IOCTL_MAGIC, 3, char *)

#define sensorhub_info(str, args...) \
	pr_info("[SSP]: %s - " str, __func__, ##args)
#define sensorhub_debug(str, args...) \
	pr_debug("[SSP]: %s - " str, __func__, ##args)
#define sensorhub_err(str, args...) \
	pr_err("[SSP]: %s - " str, __func__, ##args)


struct sensorhub_event {
	char *library_data;
	int library_length;
};

struct ssp_sensorhub_data {
	struct ssp_data *ssp_data;
	struct input_dev *sensorhub_input_dev;
	struct task_struct *sensorhub_task;
	struct miscdevice sensorhub_device;
	struct wake_lock sensorhub_wake_lock;
	struct completion read_done;
	struct completion big_read_done;
	struct completion big_write_done;
	struct sensorhub_event events[LIST_SIZE];
	struct sensorhub_event big_events;
	struct sensorhub_event big_send_events;
	struct kfifo fifo;
	bool is_big_event;
	int event_number;
	int pcm_cnt;
	wait_queue_head_t sensorhub_wq;
	spinlock_t sensorhub_lock;
};

int ssp_sensorhub_pcm_dump(struct ssp_sensorhub_data *hub_data);
void ssp_sensorhub_report_notice(struct ssp_data *ssp_data, char notice);
int ssp_sensorhub_handle_data(struct ssp_data *ssp_data, char *dataframe,
				int start, int end);
int ssp_sensorhub_initialize(struct ssp_data *ssp_data);
void ssp_sensorhub_remove(struct ssp_data *ssp_data);

#endif