我是靠谱客的博主 勤恳音响,最近开发中收集的这篇文章主要介绍g-sensor唤醒系统,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/* For AllWinner android platform.
 *
 * mir3da.c - Linux kernel modules for 3-Axis Accelerometer
 *
 * Copyright (C) 2011-2013 MiraMEMS Sensing Technology Co., Ltd.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * 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.
 *
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/i2c.h>
#include <linux/mutex.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/hwmon-sysfs.h>
#include <linux/err.h>
#include <linux/input-polldev.h>
#include <linux/miscdevice.h>
#include <linux/fs.h>
#include <linux/stat.h>
#include <linux/syscalls.h>
#include <asm/uaccess.h>
#include <linux/kernel.h>
#include <linux/gpio.h>

#include <linux/of_gpio.h>
#include <linux/hwmon.h>
#include <linux/hwmon-sysfs.h>
#include <linux/hwmon-vid.h>

#include "mir3da_core.h"
#include "mir3da_cust.h"
#include <linux/proc_fs.h>
#include <linux/slab.h>
#include <linux/wakelock.h>

#include <linux/workqueue.h>
#ifdef CONFIG_HAS_EARLYSUSPEND
#include <linux/earlysuspend.h>
#endif
#if defined(CONFIG_HAS_EARLYSUSPEND) || defined(CONFIG_PM)
#include <linux/pm.h>
#endif

#define MIR3DA_DRV_NAME                 	"da380"
#define MIR3DA_INPUT_DEV_NAME     			MIR3DA_DRV_NAME
#define MIR3DA_MISC_NAME                	MIR3DA_DRV_NAME

#define POLL_INTERVAL_MAX               	500
#define POLL_INTERVAL                   	50
#define INPUT_FUZZ                      	0
#define INPUT_FLAT                      	0

static int wake_threshold = 10;
static u32 int_handle;
static struct input_polled_dev *mir3da_idev;
//static struct device *hwmon_dev;
static MIR_HANDLE mir_handle;
static unsigned int slope_th;
#ifdef CONFIG_HAS_EARLYSUSPEND
static struct early_suspend early_suspend;
#endif
extern int wakeup_by_gpio;

//static unsigned char twi_id = 0;

extern int Log_level;
static int int2_enable = 0;
static int int2_statu = 0;

static int irq_gpio = 0;
struct wake_lock gsensor_wakelock;
struct delayed_work gsensor_work;



#define MI_DATA(format, ...)         	if(DEBUG_DATA&Log_level){printk(KERN_ERR MI_TAG format "n", ## __VA_ARGS__);}
#define MI_MSG(format, ...)             if(DEBUG_MSG&Log_level){printk(KERN_ERR MI_TAG format "n", ## __VA_ARGS__);}
#define MI_ERR(format, ...)             	if(DEBUG_ERR&Log_level){printk(KERN_ERR MI_TAG format "n", ## __VA_ARGS__);}
#define MI_FUN                          	if(DEBUG_FUNC&Log_level){printk(KERN_ERR MI_TAG "%s is called, line: %dn", __FUNCTION__,__LINE__);}
#define MI_ASSERT(expr)                 
	if (!(expr)) {
		printk(KERN_ERR "Assertion failed! %s,%d,%s,%sn",
			__FILE__, __LINE__, __func__, #expr);
	}

/*----------------------------------------------------------------------------*/
#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
static char OffsetFileName[] = "/data/misc/miraGSensorOffset.txt";
#define OFFSET_STRING_LEN               26
struct work_info {
	char tst1[20];
	char tst2[20];
	char buffer[OFFSET_STRING_LEN];
	struct workqueue_struct *wq;
	struct delayed_work read_work;
	struct delayed_work write_work;
	struct completion completion;
	int len;
	int rst;
};

static struct work_info m_work_info = { {0} };

/*----------------------------------------------------------------------------*/
static void sensor_write_work(struct work_struct *work)
{
	struct work_info *pWorkInfo;
	struct file *filep;
	u32 orgfs;
	int ret;

	orgfs = get_fs();
	set_fs(KERNEL_DS);

	pWorkInfo = container_of((struct delayed_work *)work, struct work_info, write_work);
	if (pWorkInfo == NULL) {
		MI_ERR("get pWorkInfo failed!");
		return;
	}

	filep = filp_open(OffsetFileName, O_RDWR | O_CREAT, 0600);
	if (IS_ERR(filep)) {
		MI_ERR("write, sys_open %s error!!.n", OffsetFileName);
		ret = -1;
	} else {
		filep->f_op->write(filep, pWorkInfo->buffer, pWorkInfo->len, &filep->f_pos);
		filp_close(filep, NULL);
		ret = 0;
	}

	set_fs(orgfs);
	pWorkInfo->rst = ret;
	complete(&pWorkInfo->completion);
}

/*----------------------------------------------------------------------------*/
static void sensor_read_work(struct work_struct *work)
{
	u32 orgfs;
	struct file *filep;
	int ret;
	struct work_info *pWorkInfo;

	orgfs = get_fs();
	set_fs(KERNEL_DS);

	pWorkInfo = container_of((struct delayed_work *)work, struct work_info, read_work);
	if (pWorkInfo == NULL) {
		MI_ERR("get pWorkInfo failed!");
		return;
	}

	filep = filp_open(OffsetFileName, O_RDONLY, 0600);
	if (IS_ERR(filep)) {
		MI_ERR("read, sys_open %s error!!.n", OffsetFileName);
		set_fs(orgfs);
		ret = -1;
	} else {
		filep->f_op->read(filep, pWorkInfo->buffer, sizeof(pWorkInfo->buffer), &filep->f_pos);
		filp_close(filep, NULL);
		set_fs(orgfs);
		ret = 0;
	}

	pWorkInfo->rst = ret;
	complete(&(pWorkInfo->completion));
}

/*----------------------------------------------------------------------------*/
static int sensor_sync_read(u8 *offset)
{
	int err;
	int off[MIR3DA_OFFSET_LEN] = { 0 };
	struct work_info *pWorkInfo = &m_work_info;

	init_completion(&pWorkInfo->completion);
	queue_delayed_work(pWorkInfo->wq, &pWorkInfo->read_work, msecs_to_jiffies(0));
	err = wait_for_completion_timeout(&pWorkInfo->completion, msecs_to_jiffies(2000));
	if (err == 0) {
		MI_ERR("wait_for_completion_timeout TIMEOUT");
		return -1;
	}

	if (pWorkInfo->rst != 0) {
		MI_ERR("work_info.rst  not equal 0");
		return pWorkInfo->rst;
	}

	sscanf(m_work_info.buffer, "%x,%x,%x,%x,%x,%x,%x,%x,%x", &off[0], &off[1], &off[2], &off[3], &off[4], &off[5], &off[6], &off[7], &off[8]);

	offset[0] = (u8) off[0];
	offset[1] = (u8) off[1];
	offset[2] = (u8) off[2];
	offset[3] = (u8) off[3];
	offset[4] = (u8) off[4];
	offset[5] = (u8) off[5];
	offset[6] = (u8) off[6];
	offset[7] = (u8) off[7];
	offset[8] = (u8) off[8];

	return 0;
}

/*----------------------------------------------------------------------------*/
static int sensor_sync_write(u8 *off)
{
	int err = 0;
	struct work_info *pWorkInfo = &m_work_info;

	init_completion(&pWorkInfo->completion);

	sprintf(m_work_info.buffer, "%x,%x,%x,%x,%x,%x,%x,%x,%xn", off[0], off[1], off[2], off[3], off[4], off[5], off[6], off[7], off[8]);

	pWorkInfo->len = sizeof(m_work_info.buffer);

	queue_delayed_work(pWorkInfo->wq, &pWorkInfo->write_work, msecs_to_jiffies(0));
	err = wait_for_completion_timeout(&pWorkInfo->completion, msecs_to_jiffies(2000));
	if (err == 0) {
		MI_ERR("wait_for_completion_timeout TIMEOUT");
		return -1;
	}

	if (pWorkInfo->rst != 0) {
		MI_ERR("work_info.rst  not equal 0");
		return pWorkInfo->rst;
	}

	return 0;
}
#endif
/*----------------------------------------------------------------------------*/
#ifdef MIR3DA_AUTO_CALIBRAE
static bool check_califile_exist(void)
{
	u32 orgfs = 0;
	struct file *filep;

	orgfs = get_fs();
	set_fs(KERNEL_DS);

	filep = filp_open(OffsetFileName, O_RDONLY, 0600);
	if (IS_ERR(filep)) {
		MI_MSG("%s read, sys_open %s error!!.n", __func__, OffsetFileName);
		set_fs(orgfs);
		return false;
	}

	filp_close(filep, NULL);
	set_fs(orgfs);

	return true;
}
#endif
/*----------------------------------------------------------------------------*/
static void report_abs(void)
{
	short x = 0, y = 0, z = 0;
	MIR_HANDLE handle = mir_handle;

	if (mir3da_read_data(handle, &x, &y, &z) != 0) {
		MI_ERR("MIR3DA data read failed!n");
		return;
	}

	input_report_abs(mir3da_idev->input, ABS_X, x);
	input_report_abs(mir3da_idev->input, ABS_Y, y);
	input_report_abs(mir3da_idev->input, ABS_Z, z);
	input_sync(mir3da_idev->input);
}

/*----------------------------------------------------------------------------*/
static void mir3da_dev_poll(struct input_polled_dev *dev)
{
	report_abs();
}

/*----------------------------------------------------------------------------*/
static long mir3da_misc_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
{
	void __user *argp = (void __user *)arg;
	int err = 0;
	int interval = 0;
	char bEnable = 0;

	short xyz[3] = { 0 };
	MIR_HANDLE handle = mir_handle;

	if (_IOC_DIR(cmd) & _IOC_READ) {
		err = !access_ok(VERIFY_WRITE, (void __user *)arg, _IOC_SIZE(cmd));
	} else if (_IOC_DIR(cmd) & _IOC_WRITE) {
		err = !access_ok(VERIFY_READ, (void __user *)arg, _IOC_SIZE(cmd));
	}

	if (err) {
		return -EFAULT;
	}

	switch (cmd) {
	case MIR3DA_ACC_IOCTL_GET_DELAY:
		interval = POLL_INTERVAL;
		if (copy_to_user(argp, &interval, sizeof(interval)))
			return -EFAULT;
		break;

	case MIR3DA_ACC_IOCTL_SET_DELAY:
		if (copy_from_user(&interval, argp, sizeof(interval)))
			return -EFAULT;

		if (interval < 0 || interval > 1000)
			return -EINVAL;
		if ((interval <= 30) && (interval > 10)) {
			interval = 10;
		}
		mir3da_idev->poll_interval = interval;
		break;

	case MIR3DA_ACC_IOCTL_SET_ENABLE:
		if (copy_from_user(&bEnable, argp, sizeof(bEnable)))
			return -EFAULT;

		err = mir3da_set_enable(handle, bEnable);

		if (err < 0)
			return EINVAL;
		break;

	case MIR3DA_ACC_IOCTL_GET_ENABLE:
		err = mir3da_get_enable(handle, &bEnable);
		if (err < 0) {
			return -EINVAL;
		}

		if (copy_to_user(argp, &bEnable, sizeof(bEnable)))
			return -EINVAL;
		break;

#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
	case MIR3DA_ACC_IOCTL_CALIBRATION:
		if (copy_from_user(&z_dir, argp, sizeof(z_dir)))
			return -EFAULT;

		if (mir3da_calibrate(handle, z_dir)) {
			return -EFAULT;
		}

		if (copy_to_user(argp, &z_dir, sizeof(z_dir)))
			return -EFAULT;
		break;

	case MIR3DA_ACC_IOCTL_UPDATE_OFFSET:
		manual_load_cali_file(handle);
		break;
#endif

	case MIR3DA_ACC_IOCTL_GET_COOR_XYZ:

		if (mir3da_read_data(handle, &xyz[0], &xyz[1], &xyz[2]))
			return -EFAULT;

		if (copy_to_user((void __user *)arg, xyz, sizeof(xyz)))
			return -EFAULT;
		break;

	default:
		printk("mir3da_misc_ioctl defaultn");
		return -EINVAL;
	}

	return 0;
}

/*----------------------------------------------------------------------------*/
static const struct file_operations mir3da_misc_fops = {
	.owner = THIS_MODULE,
	.unlocked_ioctl = mir3da_misc_ioctl,
};

static struct miscdevice misc_mir3da = {
	.minor = MISC_DYNAMIC_MINOR,
	.name = MIR3DA_MISC_NAME,
	.fops = &mir3da_misc_fops,
};

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_enable_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret;
	char bEnable;
	MIR_HANDLE handle = mir_handle;

	ret = mir3da_get_enable(handle, &bEnable);
	if (ret < 0) {
		ret = -EINVAL;
	} else {
		ret = sprintf(buf, "%dn", bEnable);
	}

	return ret;
}

static int flags = 0;
/*----------------------------------------------------------------------------*/
static ssize_t mir3da_enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	int ret;
	char bEnable;
	unsigned long enable;
	MIR_HANDLE handle = mir_handle;

	if (buf == NULL) {
		return -1;
	}

	if (flags == 1)
		return 0;

	enable = simple_strtoul(buf, NULL, 10);
	bEnable = (enable > 0) ? 1 : 0;

	ret = mir3da_set_enable(handle, bEnable);
	if (ret < 0) {
		ret = -EINVAL;
	} else {
		ret = count;
	}

	return ret;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_delay_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	return sprintf(buf, "%dn", mir3da_idev->poll_interval);
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_delay_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	int interval = 0;

	interval = simple_strtoul(buf, NULL, 10);

	if (interval < 0 || interval > 1000)
		return -EINVAL;

	if ((interval <= 30) && (interval > 10)) {
		interval = 10;
	}

	mir3da_idev->poll_interval = interval;

	return count;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_axis_data_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int result;
	short x, y, z;
	int count = 0;
	MIR_HANDLE handle = mir_handle;

	result = mir3da_read_data(handle, &x, &y, &z);
	if (result == 0)
		count += sprintf(buf + count, "x= %d;y=%d;z=%dn", x, y, z);
	else
		count += sprintf(buf + count, "reading failed!");

	return count;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_reg_data_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	int addr, data;
	int result;
	MIR_HANDLE handle = mir_handle;

	sscanf(buf, "0x%x, 0x%xn", &addr, &data);

	result = mir3da_register_write(handle, addr, data);

	MI_ASSERT(result == 0);

	return count;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_reg_data_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	MIR_HANDLE handle = mir_handle;

	return mir3da_get_reg_data(handle, buf);
}

/*----------------------------------------------------------------------------*/
#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
static ssize_t mir3da_offset_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	ssize_t count = 0;
	int rst = 0;
	u8 off[9] = { 0 };
	MIR_HANDLE handle = mir_handle;

	rst = mir3da_read_offset(handle, off);
	if (!rst) {
		count = sprintf(buf, "%d,%d,%d,%d,%d,%d,%d,%d,%dn", off[0], off[1], off[2], off[3], off[4], off[5], off[6], off[7], off[8]);
	}
	return count;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_offset_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	int off[9] = { 0 };
	u8 offset[9] = { 0 };
	int rst = 0;
	MIR_HANDLE handle = mir_handle;

	sscanf(buf, "%d,%d,%d,%d,%d,%d,%d,%d,%dn", &off[0], &off[1], &off[2], &off[3], &off[4], &off[5], &off[6], &off[7], &off[8]);

	offset[0] = (u8) off[0];
	offset[1] = (u8) off[1];
	offset[2] = (u8) off[2];
	offset[3] = (u8) off[3];
	offset[4] = (u8) off[4];
	offset[5] = (u8) off[5];
	offset[6] = (u8) off[6];
	offset[7] = (u8) off[7];
	offset[8] = (u8) off[8];

	rst = mir3da_write_offset(handle, offset);
	return count;
}
#endif

static int int_status = 0;
static ssize_t mir3da_status_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret = 0;

	ret = sprintf(buf, "%dn", int_status);
	int_status = 0;
	return ret;
}

static ssize_t mir3da_status_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	//int_status = simple_strtol(buf,NULL,10);
	return count;
}

/*----------------------------------------------------------------------------*/
#if FILTER_AVERAGE_ENHANCE
static ssize_t mir3da_average_enhance_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret = 0;
	struct mir3da_filter_param_s param = { 0 };

	ret = mir3da_get_filter_param(&param);
	ret |= sprintf(buf, "%d %d %dn", param.filter_param_l, param.filter_param_h, param.filter_threhold);

	return ret;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_average_enhance_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	int ret = 0;
	struct mir3da_filter_param_s param = { 0 };

	sscanf(buf, "%d %d %dn", &param.filter_param_l, &param.filter_param_h, &param.filter_threhold);

	ret = mir3da_set_filter_param(&param);

	return count;
}
#endif
/*----------------------------------------------------------------------------*/
#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
int bCaliResult = -1;
static ssize_t mir3da_calibrate_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret;

	ret = sprintf(buf, "%dn", bCaliResult);
	return ret;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_calibrate_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	s8 z_dir = 0;
	MIR_HANDLE handle = mir_handle;

	z_dir = simple_strtol(buf, NULL, 10);
	bCaliResult = mir3da_calibrate(handle, z_dir);

	return count;
}
#endif
/*----------------------------------------------------------------------------*/
static ssize_t mir3da_log_level_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret;

	ret = sprintf(buf, "%dn", Log_level);

	return ret;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_log_level_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	Log_level = simple_strtoul(buf, NULL, 10);

	return count;
}

static int mir3da_int2_set_onoff(struct device *dev, int onoff)
{
	int res = 0;
	MIR_HANDLE handle = mir_handle;
	int2_enable = onoff;
	MI_ERR("mir3da_int2_enable_store num:%d onoff:%d slope 0x%xn", MIR3DA_TYPE, onoff, slope_th);
	res |= mir3da_register_mask_write(handle, NSA_REG_INT_LATCH, 0x8F, slope_th);
	// 83 1s 84 2s 85 4s  86 8s  8f 
	res |= mir3da_register_mask_write(handle, NSA_REG_ACTIVE_DURATION, 0xff, 0x03);
	res |= mir3da_register_mask_write(handle, NSA_REG_ACTIVE_THRESHOLD, 0xff, wake_threshold);
	if (onoff) {
		res |= mir3da_register_mask_write(handle, NSA_REG_INTERRUPT_SETTINGS1, 0xff, 0x03);
		switch (MIR3DA_TYPE) {

		case 0:
			res |= mir3da_register_mask_write(handle, NSA_REG_INTERRUPT_MAPPING1, 0xff, 0x04);
			break;

		case 1:
			res |= mir3da_register_mask_write(handle, NSA_REG_INTERRUPT_MAPPING3, 0xff, 0x04);
			break;
		}
	} else {
		res |= mir3da_register_mask_write(handle, NSA_REG_INTERRUPT_SETTINGS1, 0xff, 0x00);
		res |= mir3da_register_mask_write(handle, NSA_REG_INTERRUPT_MAPPING1, 0xff, 0x00);
		res |= mir3da_register_mask_write(handle, NSA_REG_INTERRUPT_MAPPING3, 0xff, 0x00);
	}
	return 0;
}

static ssize_t mir3da_int2_enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	int2_enable = simple_strtoul(buf, NULL, 10);

	mir3da_int2_set_onoff(dev, int2_enable);

	return count;
}

static ssize_t mir3da_int2_enable_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret;

	ret = sprintf(buf, "%dn", int2_enable);
	printk(" mir3da_int2_enable_show ret [ %d ]n", ret);
	return ret;
}

static ssize_t mir3da_int2_clear_enable_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{

	MIR_HANDLE handle = mir_handle;

	printk(" mir3da_int2_clear_enable_store int2_clean n");
	mir3da_clear_intterrupt(handle);

	return count;
}

static ssize_t mir3da_wake_threshold_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret;

	ret = sprintf(buf, "%dn", wake_threshold);
	printk(" wake_threshold [ %d ]n", wake_threshold);
	return ret;
}

static ssize_t mir3da_wake_threshold_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	wake_threshold = simple_strtoul(buf, NULL, 10);

	if (wake_threshold < 0)
		wake_threshold = 0;
	if (wake_threshold > 250)
		wake_threshold = 250;

	printk(" wake_threshold [ %d ]n", wake_threshold);
	return count;
}

static ssize_t mir3da_int2_clear_enable_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret = 0;

	//ret = sprintf(buf, "%dn", int2_enable);
	//printk(" mir3da_int2_clear_enable_show ret [ %d ]n",ret);
	return ret;
}

static ssize_t mir3da_int2_start_statu_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{

	//MIR_HANDLE      handle = mir_handle;

	int2_statu = simple_strtoul(buf, NULL, 10);

	return count;
}

static ssize_t mir3da_int2_start_statu_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	int ret;
	//MIR_HANDLE      handle = mir_handle;

	//int2_statu =  mir3da_read_int_status( handle);

	ret = sprintf(buf, "%dn", int2_statu);
	printk(" mir3da_int2_enable_show ret [ %d ]n", ret);
	return ret;
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_primary_offset_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	MIR_HANDLE handle = mir_handle;
	int x = 0, y = 0, z = 0;

	mir3da_get_primary_offset(handle, &x, &y, &z);

	return sprintf(buf, "x=%d ,y=%d ,z=%dn", x, y, z);

}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_version_show(struct device *dev, struct device_attribute *attr, char *buf)
{

	return sprintf(buf, "%s_%sn", DRI_VER, CORE_VER);
}

/*----------------------------------------------------------------------------*/
static ssize_t mir3da_vendor_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	return sprintf(buf, "%sn", "MiraMEMS");
}

static ssize_t mir3da_slope_th_show(struct device *dev, struct device_attribute *attr, char *buf)
{
	return sprintf(buf, "0x%xn", slope_th);
}

static ssize_t mir3da_slope_th_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
{
	unsigned long data;
	int error = 0;
	error = kstrtoul(buf, 16, &data);
	if (error)
		return error;
	if (data == 0x3) {	//high
		data = 0x84;
	} else if (data == 0xf) {	//low
		data = 0x86;
	} else if (data == 0x5) {	//mid
		data = 0x85;
	}
	printk("set slope 0x%lxn", data);
	slope_th = data;
	return count;
}

/*----------------------------------------------------------------------------*/
static DEVICE_ATTR(enable, S_IRUGO, mir3da_enable_show, mir3da_enable_store);
static DEVICE_ATTR(delay, S_IRUGO, mir3da_delay_show, mir3da_delay_store);
static DEVICE_ATTR(axis_data, S_IRUGO, mir3da_axis_data_show, NULL);
static DEVICE_ATTR(reg_data, S_IRUGO, mir3da_reg_data_show, mir3da_reg_data_store);
static DEVICE_ATTR(log_level, S_IRUGO, mir3da_log_level_show, mir3da_log_level_store);
#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
static DEVICE_ATTR(offset, S_IRUGO, mir3da_offset_show, mir3da_offset_store);
static DEVICE_ATTR(calibrate_miraGSensor, S_IRUGO, mir3da_calibrate_show, mir3da_calibrate_store);
#endif
#ifdef FILTER_AVERAGE_ENHANCE
static DEVICE_ATTR(average_enhance, S_IRUGO, mir3da_average_enhance_show, mir3da_average_enhance_store);
#endif
// aad cz
static DEVICE_ATTR(int2_enable, S_IRUGO | S_IWUSR, mir3da_int2_enable_show, mir3da_int2_enable_store);
static DEVICE_ATTR(int2_clear, S_IRUGO, mir3da_int2_clear_enable_show, mir3da_int2_clear_enable_store);
static DEVICE_ATTR(int2_start_status, S_IRUGO, mir3da_int2_start_statu_show, mir3da_int2_start_statu_store);

static DEVICE_ATTR(threshold, S_IRUGO | S_IWUSR, mir3da_wake_threshold_show, mir3da_wake_threshold_store);
static DEVICE_ATTR(status, S_IRUGO, mir3da_status_show, mir3da_status_store);
static DEVICE_ATTR(primary_offset, S_IRUGO, mir3da_primary_offset_show, NULL);
static DEVICE_ATTR(version, S_IRUGO, mir3da_version_show, NULL);
static DEVICE_ATTR(vendor, S_IRUGO, mir3da_vendor_show, NULL);
static DEVICE_ATTR(slope_th, S_IRUGO, mir3da_slope_th_show, mir3da_slope_th_store);

/*----------------------------------------------------------------------------*/
static struct attribute *mir3da_attributes[] = {
	&dev_attr_enable.attr,
	&dev_attr_delay.attr,
	&dev_attr_axis_data.attr,
	&dev_attr_reg_data.attr,
	&dev_attr_log_level.attr,
#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
	&dev_attr_offset.attr,
	&dev_attr_calibrate_miraGSensor.attr,
//  &dev_attr_primary_offset.attr,
#endif
#ifdef FILTER_AVERAGE_ENHANCE
	&dev_attr_average_enhance.attr,
#endif /* ! FILTER_AVERAGE_ENHANCE */
	&dev_attr_int2_enable.attr,
	&dev_attr_int2_clear.attr,
	&dev_attr_int2_start_status.attr,
	&dev_attr_threshold.attr,
	&dev_attr_status.attr,
	&dev_attr_primary_offset.attr,
	&dev_attr_version.attr,
	&dev_attr_vendor.attr,
	&dev_attr_slope_th.attr,
	NULL
};

static const struct attribute_group mir3da_attr_group = {
	.attrs = mir3da_attributes,
};

/*----------------------------------------------------------------------------*/
int i2c_smbus_read(PLAT_HANDLE handle, u8 addr, u8 * data)
{
	int res = 0;
	struct i2c_client *client = (struct i2c_client *)handle;

	*data = i2c_smbus_read_byte_data(client, addr);

	return res;
}

/*----------------------------------------------------------------------------*/
int i2c_smbus_read_block(PLAT_HANDLE handle, u8 addr, u8 count, u8 * data)
{
	int res = 0;
	struct i2c_client *client = (struct i2c_client *)handle;

	res = i2c_smbus_read_i2c_block_data(client, addr, count, data);

	return res;
}

/*----------------------------------------------------------------------------*/
int i2c_smbus_write(PLAT_HANDLE handle, u8 addr, u8 data)
{
	int res = 0;
	struct i2c_client *client = (struct i2c_client *)handle;

	res = i2c_smbus_write_byte_data(client, addr, data);

	return res;
}

/*----------------------------------------------------------------------------*/
void msdelay(int ms)
{
	mdelay(ms);
}

#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
MIR_GENERAL_OPS_DECLARE(ops_handle, i2c_smbus_read, i2c_smbus_read_block, i2c_smbus_write, sensor_sync_write, sensor_sync_read, msdelay, printk, sprintf);
#else
MIR_GENERAL_OPS_DECLARE(ops_handle, i2c_smbus_read, i2c_smbus_read_block, i2c_smbus_write, NULL, NULL, msdelay, printk, sprintf);
#endif
/*----------------------------------------------------------------------------*/
static int sleep_status=0;
static int mir3da_suspend(struct i2c_client *client)
{
	MIR_HANDLE handle = mir_handle;

	MI_FUN;
	flags = 1;
	printk(KERN_ERR "=============== mir3da  suspend=========================n");
#if 1
	mir3da_register_write(handle, NSA_REG_POWERMODE_BW, 0x0E);
	mir3da_register_write(handle, NSA_REG_INT_PIN_CONFIG, 0x05);
	mir3da_register_write(handle, NSA_REG_INT_LATCH, slope_th);
	mir3da_register_write(handle, NSA_REG_INTERRUPT_SETTINGS1, 0x03);
	mir3da_register_write(handle, NSA_REG_ACTIVE_DURATION, 0x03);
	mir3da_register_write(handle, NSA_REG_ACTIVE_THRESHOLD, wake_threshold);
	mir3da_register_write(handle, NSA_REG_INTERRUPT_MAPPING1, 0x04);
#endif
	mir3da_idev->input->close(mir3da_idev->input);
	sleep_status=1;

	return 0;
}

static int mir3da_resume(struct i2c_client *client)
{

	MI_FUN;
	printk(KERN_ERR "=============== mir3da  resume=========================n");

	mir3da_int2_set_onoff(NULL, 0);
	mir3da_idev->input->open(mir3da_idev->input);
	flags = 0;
	return 0;
}
static int gsensor_wakeup_proc_show(struct seq_file *m, void *v)
{	
	if(wakeup_by_gpio)
		seq_printf(m, "%s",(sleep_status==0)?"gsensor_wakeup":"nowakeup");
	else{
		seq_printf(m, "%s",  "nowakeup");
		}
	return 0;
}

static int gsensor_wakeup_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, gsensor_wakeup_proc_show, NULL);
}

ssize_t gsensor_write (struct file *file, const char __user *buffer,
			     size_t count, loff_t *ppos)
{	
	unsigned long val;
	int err = kstrtoul_from_user(buffer, count, 0, &val);
	
	if (err)
		return err;
	if(val){
		 wakeup_by_gpio=0;
		}
	return count;
}

static const struct file_operations gsensor_wakeup_proc_fops = {
	.open		= gsensor_wakeup_proc_open,
	.write		=gsensor_write,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

static void gsensor_delay_worker_func(struct work_struct *work)
{
	printk("[haibo] %s,%dn",__FUNCTION__,__LINE__);

 	wake_unlock(&gsensor_wakelock);
}

static u32 gsensor_irq_func(int irq, void *para)
{
	printk("[haibo] mir gsensor into irq funcn");
	int_status = 1;
	sleep_status=0;
	wake_lock(&gsensor_wakelock);
	schedule_delayed_work(&gsensor_work,msecs_to_jiffies(10000));
	return 0;
}

static int mir3da_detect(struct i2c_client *new_client);

static int mir3da_probe(struct i2c_client *client, const struct i2c_device_id *id)
{
	int result = 0;
	int ret;
	struct device_node *np = client->dev.of_node;
	struct input_dev *idev;

	printk("mir3da_proben");
	ret = mir3da_detect(client);
	if(ret != 0)
		goto err_detach_client;
#ifdef MIR3DA_OFFSET_TEMP_SOLUTION
	m_work_info.wq = create_singlethread_workqueue("oo");
	if (NULL == m_work_info.wq) {
		MI_ERR("Failed to create workqueue !");
		goto err_detach_client;
	}

	INIT_DELAYED_WORK(&m_work_info.read_work, sensor_read_work);
	INIT_DELAYED_WORK(&m_work_info.write_work, sensor_write_work);
#endif

	int2_statu = mir3da_read_int_status((PLAT_HANDLE) client);
	printk("ParkMonitor powerOn status is %dn", int2_statu);

	/* Initialize the MIR3DA chip */
	mir_handle = mir3da_core_init((PLAT_HANDLE) client);
	if (NULL == mir_handle) {
		MI_ERR("chip init failed !n");
		goto err_detach_client;
	}
	mir3da_set_enable(mir_handle, 0);
	//hwmon_dev = hwmon_device_register(&client->dev);
	//MI_ASSERT(!(IS_ERR(hwmon_dev)));

	/* input poll device register */
	mir3da_idev = input_allocate_polled_device();
	if (!mir3da_idev) {
		MI_ERR("alloc poll device failed!n");
		result = -ENOMEM;
		goto err_hwmon_device_unregister;
	}

	mir3da_idev->poll = mir3da_dev_poll;
	mir3da_idev->poll_interval = POLL_INTERVAL;
	mir3da_idev->poll_interval_max = POLL_INTERVAL_MAX;
	idev = mir3da_idev->input;

	idev->name = MIR3DA_INPUT_DEV_NAME;
	idev->id.bustype = BUS_I2C;
	idev->evbit[0] = BIT_MASK(EV_ABS);

	input_set_abs_params(idev, ABS_X, -16384, 16383, INPUT_FUZZ, INPUT_FLAT);
	input_set_abs_params(idev, ABS_Y, -16384, 16383, INPUT_FUZZ, INPUT_FLAT);
	input_set_abs_params(idev, ABS_Z, -16384, 16383, INPUT_FUZZ, INPUT_FLAT);

	result = input_register_polled_device(mir3da_idev);
	if (result) {
		MI_ERR("register poll device failed!n");
		goto err_free_polled_device;
	}

	/*the gpio is cpu gpio*/

	irq_gpio = of_get_gpio(np, 0);

	pr_info("request cpu gpio irqn");
	int_handle = gpio_to_irq(irq_gpio);
	ret = request_irq(int_handle, gsensor_irq_func, IRQF_NO_SUSPEND | IRQF_TRIGGER_RISING, "sensor da380", NULL);
	if (IS_ERR_VALUE(ret)) {
		printk("[haibo] mir gsensor request irq failed!n");
		goto err_unregister_polled_device;
	}

	//enable_wakeup_src(CPUS_GPIO_SRC, irq_gpio);

	/* Sys Attribute Register */
	result = sysfs_create_group(&idev->dev.kobj, &mir3da_attr_group);
	if (result) {
		MI_ERR("create device file failed!n");
		result = -EINVAL;
		goto err_unregister_polled_device;
	}

	/* Misc device interface Register */
	result = misc_register(&misc_mir3da);
	if (result) {
		MI_ERR("%s: mir3da_dev register failed", __func__);
		goto err_remove_sysfs_group;
	}
	slope_th = 0x83;
#ifdef CONFIG_HAS_EARLYSUSPEND
	early_suspend.level = EARLY_SUSPEND_LEVEL_BLANK_SCREEN + 1;
	early_suspend.suspend = mir3da_early_suspend;
	early_suspend.resume = mir3da_late_resume;
	register_early_suspend(&early_suspend);
#endif
	return result;

err_remove_sysfs_group:
	sysfs_remove_group(&idev->dev.kobj, &mir3da_attr_group);
err_unregister_polled_device:
	free_irq(irq_gpio, NULL);
	input_unregister_polled_device(mir3da_idev);
err_free_polled_device:
	input_free_polled_device(mir3da_idev);
err_hwmon_device_unregister:
	//hwmon_device_unregister(&client->dev);
err_detach_client:
	return result;
}

/*----------------------------------------------------------------------------*/
static int mir3da_remove(struct i2c_client *client)
{
	MIR_HANDLE handle = mir_handle;

	mir3da_set_enable(handle, 0);

	misc_deregister(&misc_mir3da);

	sysfs_remove_group(&mir3da_idev->input->dev.kobj, &mir3da_attr_group);

	input_unregister_polled_device(mir3da_idev);

	input_free_polled_device(mir3da_idev);

#ifdef  MIR3DA_OFFSET_TEMP_SOLUTION
	flush_workqueue(m_work_info.wq);
	destroy_workqueue(m_work_info.wq);
#endif
	wake_lock_destroy(&gsensor_wakelock);

	//hwmon_device_unregister(hwmon_dev);

	return 0;
}


static int mir3da_detect(struct i2c_client *new_client)
{
	//struct i2c_adapter *adapter = new_client->adapter;

	//MI_MSG("%s:bus[%d] addr[0x%x]n", __func__, adapter->nr, new_client->addr);

	printk("richard mir3da_detect");

	//if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
	//	return -ENODEV;

	if (1) {
		if (mir3da_install_general_ops(&ops_handle)) {
			MI_ERR("Install ops failed !n");
			return -ENODEV;
		}
		if (mir3da_module_detect((PLAT_HANDLE) new_client)) {
			MI_ERR("Can't find Mir3da gsensor!!");
		} else {
			MI_ERR("'Find Mir3da gsensor!!");
			return 0;
		}
	}

	return -ENODEV;
}

static const struct i2c_device_id mir3da_id[] = {
	{MIR3DA_DRV_NAME, 0},
	{}
};

static const struct of_device_id da380_table[] = {
		{.compatible = "da,da380",},
		{ },
};

#ifdef CONFIG_PM
static int da380_suspend(struct device *dev)
{
		sleep_status=1;
		wakeup_by_gpio=0;

        return mir3da_suspend(to_i2c_client(dev));
}

static int da380_resume(struct device *dev)
{
        return mir3da_resume(to_i2c_client(dev));
}

static const struct dev_pm_ops da380_pm_ops = {
        SET_SYSTEM_SLEEP_PM_OPS(da380_suspend, da380_resume)
};

#define DA380_PM_OPS          (&da380_pm_ops)
#else /* CONFIG_PM */
#define DA380_PM_OPS          NULL
#endif /* CONFIG_PM */


//MODULE_DEVICE_TABLE(i2c, mir3da_id);
static struct i2c_driver mir3da_driver = {
	.probe = mir3da_probe,
	.remove = mir3da_remove,
	.id_table = mir3da_id,
	.driver = {
		   .name = MIR3DA_DRV_NAME,
		   .owner = THIS_MODULE,
		   .pm = DA380_PM_OPS,
		   .of_match_table = da380_table,
		   },
};

/*----------------------------------------------------------------------------*/
static int __init mir3da_init(void)
{
	int ret;

	MI_FUN;
	printk("mir3da_initn");
	ret = i2c_add_driver(&mir3da_driver);
	if (ret < 0) {
		printk("add mir3da i2c driver failedn");
		return -ENODEV;
	}
	wake_lock_init(&gsensor_wakelock, WAKE_LOCK_SUSPEND,
	 	       "Gsensor Wake Lock");
	INIT_DELAYED_WORK(&gsensor_work,gsensor_delay_worker_func);
	proc_create("gsensor_wakeup", 0666, NULL, &gsensor_wakeup_proc_fops);
	printk("mir3da_init successn");
	return (ret);
}

/*----------------------------------------------------------------------------*/
static void __exit mir3da_exit(void)
{
	MI_FUN;

	i2c_del_driver(&mir3da_driver);
}

/*----------------------------------------------------------------------------*/
MODULE_AUTHOR("MiraMEMS <lschen@miramems.com>");
MODULE_DESCRIPTION("MIR3DA 3-Axis Accelerometer driver");
MODULE_LICENSE("GPL");
MODULE_VERSION("1.0");

module_init(mir3da_init);
module_exit(mir3da_exit);

 

最后

以上就是勤恳音响为你收集整理的g-sensor唤醒系统的全部内容,希望文章能够帮你解决g-sensor唤醒系统所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部