51 lines
2.2 KiB
C
Executable File
51 lines
2.2 KiB
C
Executable File
/* For AllWinner android platform.
|
|
*
|
|
* mir3da.h - Linux kernel modules for 3-Axis Accelerometer
|
|
*
|
|
* Copyright (C) 2011-2013 MiraMEMS Sensing Technology Co., Ltd.
|
|
*
|
|
* 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 __MIR3DA_STANDARD_H__
|
|
#define __MIR3DA_STANDARD_H__
|
|
|
|
#include <linux/ioctl.h>
|
|
|
|
#define DRI_VER "1.0"
|
|
|
|
#define MIR3DA_I2C_ADDR 0x27//0x26<-> SD0=GND;0x27<-> SD0=High
|
|
|
|
#define ALLWINNER_A13 0
|
|
#define ALLWINNER_A23 1
|
|
#define ALLWINNER_A13_42 2
|
|
#define ALLWINNER_OTHER 10
|
|
|
|
#define PLATFORM ALLWINNER_OTHER
|
|
|
|
#define MIR3DA_ACC_IOCTL_BASE 88
|
|
#define IOCTL_INDEX_BASE 0x00
|
|
|
|
#define MIR3DA_ACC_IOCTL_SET_DELAY _IOW(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE, int)
|
|
#define MIR3DA_ACC_IOCTL_GET_DELAY _IOR(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+1, int)
|
|
#define MIR3DA_ACC_IOCTL_SET_ENABLE _IOW(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+2, int)
|
|
#define MIR3DA_ACC_IOCTL_GET_ENABLE _IOR(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+3, int)
|
|
#define MIR3DA_ACC_IOCTL_SET_G_RANGE _IOW(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+4, int)
|
|
#define MIR3DA_ACC_IOCTL_GET_G_RANGE _IOR(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+5, int)
|
|
|
|
#define MIR3DA_ACC_IOCTL_GET_COOR_XYZ _IOW(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+22, int)
|
|
#define MIR3DA_ACC_IOCTL_CALIBRATION _IOW(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+23, int)
|
|
#define MIR3DA_ACC_IOCTL_UPDATE_OFFSET _IOW(MIR3DA_ACC_IOCTL_BASE, IOCTL_INDEX_BASE+24, int)
|
|
|
|
#endif /* !__MIR3DA_STANDARD_H__ */
|
|
|
|
|