/**************************************************************************** * arch/arm/include/cxd56xx/geofence.h * * Copyright 2018 Sony Semiconductor Solutions Corporation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name of Sony Semiconductor Solutions Corporation nor * the names of its contributors may be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************/ #ifndef __ARCH_ARM_INCLUDE_CXD56XX_GEOFENCE_H #define __ARCH_ARM_INCLUDE_CXD56XX_GEOFENCE_H #ifdef __cplusplus #define EXTERN extern "C" extern "C" { #else #define EXTERN extern #endif /* Start geofence monitoring. * This command is used to start the geofence monitoring. * * param arg * Parameter is Unnecessary. Set Zero. */ #define CXD56_GEOFENCE_IOCTL_START 1 /* Stop geofence monitoring. * This command is used to stop the geofence monitoring. * * param arg * Parameter is Unnecessary. Set Zero. */ #define CXD56_GEOFENCE_IOCTL_STOP 2 /* Add region. * This command is used to add the region. * * param arg * Parameter is struct cxd56_geofence_region_s. */ #define CXD56_GEOFENCE_IOCTL_ADD 3 /* Modify region. * This command is used to modify the region. * * param arg * Parameter is struct cxd56_geofence_region_s. */ #define CXD56_GEOFENCE_IOCTL_MODIFY 4 /* Delete region. * This command is used to delete the region. * * param arg * Parameter is region id. */ #define CXD56_GEOFENCE_IOCTL_DELETE 5 /* Delete all region. * This command is used to delete all region. * * param arg * Parameter is Unnecessary. Set Zero. */ #define CXD56_GEOFENCE_IOCTL_ALL_DELETE 6 /* Get region data. * This command is used to get region data. * * param arg * Parameter is struct cxd56_geofence_region_s pointer * Latitude and longitude and radius data of specified id is stored. */ #define CXD56_GEOFENCE_IOCTL_GET_REGION_DATA 7 /* Get used id. * This command is used to get used region id. * * param arg * Parameter is uint32_t data pointer. * The used id is represented by bit field. * For example, when ID0 and ID19 are used, * since bit0 and bit19 are set, the return value is 0x00080001. */ #define CXD56_GEOFENCE_IOCTL_GET_USED_ID 8 /* Get all status. * This command is used to get all region status. * * param arg * Parameter is Unnecessary. Set Zero. * All region status will stored in next read data. */ #define CXD56_GEOFENCE_IOCTL_GET_ALL_STATUS 9 /* Set goefence operation mode * This command is used to set operation mode. * * param arg * Parameter is struct cxd56_geofence_mode_s. */ #define CXD56_GEOFENCE_IOCTL_SET_MODE 10 /* check macros for GNSS commands */ #define CXD56_GEOFENCE_IOCTL_INVAL 0 #define CXD56_GEOFENCE_IOCTL_MAX 11 /* The transition type indicating that the user exits the region. */ #define CXD56_GEOFENCE_TRANSITION_EXIT 0 /* The transition type indicating that the user enters the region. */ #define CXD56_GEOFENCE_TRANSITION_ENTER 1 /* The transition type indicating that the user enters and * dwells in region for a given period of time. */ #define CXD56_GEOFENCE_TRANSITION_DWELL 2 /* MAX number of region on the CXD56xx. */ #define CXD56_GEOFENCE_REGION_CAPACITY 20 /* Region center point and radius data * * The latitude and longtitude data format is * integer value multiplied by 1000000. * Example: When latitude is 35.123456, specify 35123456. */ struct cxd56_geofence_region_s { /* Region ID The range of ID is 0 to 19. */ uint8_t id; /* Latitude (degree) of the center position of the region. */ long latitude; /* Longitude (degree) of the center position of the region. */ long longitude; /* Radius (m) of the region. */ uint16_t radius; }; /* Geofence mode setting parameter */ struct cxd56_geofence_mode_s { uint16_t deadzone; /* dead zone [meter] */ uint16_t dwell_detecttime; /* Dewlling period time [sec] */ }; /* The transition data */ struct cxd56_geofence_trans_s { /* Region ID */ uint8_t id; /* Transition status. * The status is #CXD56_GEOFENCE_TRANSITION_EXIT or * #CXD56_GEOFENCE_TRANSITION_ENTER or #CXD56_GEOFENCE_TRANSITION_DWELL. */ uint8_t status; }; /* Geofence output data structure. */ struct cxd56_geofence_status_s { /* Updated region ID count */ uint8_t update; /* The detail data of updated region ID */ struct cxd56_geofence_trans_s status[CXD56_GEOFENCE_REGION_CAPACITY]; }; #undef EXTERN #ifdef __cplusplus } #endif #endif /* __ARCH_ARM_INCLUDE_CXD56XX_GEOFENCE_H */