123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- /*
- $License:
- Copyright (C) 2010 InvenSense Corporation, 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.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- $
- */
- /**
- * @brief Provides the interface to setup and handle a compass
- * connected to the primary I2C interface of the gyroscope.
- *
- * @{
- * @file hmc5883.c
- * @brief Magnetometer setup and handling methods for honeywell hmc5883
- * compass.
- */
- /* ------------------ */
- /* - Include Files. - */
- /* ------------------ */
- #ifdef __KERNEL__
- #include <linux/module.h>
- #endif
- #include "mpu.h"
- #include "mlsl.h"
- #include "mlos.h"
- #include <log.h>
- #undef MPL_LOG_TAG
- #define MPL_LOG_TAG "MPL-compass"
- /*-----HONEYWELL HMC5883 Registers ------*/
- enum HMC_REG {
- HMC_REG_CONF_A = 0x0,
- HMC_REG_CONF_B = 0x1,
- HMC_REG_MODE = 0x2,
- HMC_REG_X_M = 0x3,
- HMC_REG_X_L = 0x4,
- HMC_REG_Z_M = 0x5,
- HMC_REG_Z_L = 0x6,
- HMC_REG_Y_M = 0x7,
- HMC_REG_Y_L = 0x8,
- HMC_REG_STATUS = 0x9,
- HMC_REG_ID_A = 0xA,
- HMC_REG_ID_B = 0xB,
- HMC_REG_ID_C = 0xC
- };
- enum HMC_CONF_A {
- HMC_CONF_A_DRATE_MASK = 0x1C,
- HMC_CONF_A_DRATE_0_75 = 0x00,
- HMC_CONF_A_DRATE_1_5 = 0x04,
- HMC_CONF_A_DRATE_3 = 0x08,
- HMC_CONF_A_DRATE_7_5 = 0x0C,
- HMC_CONF_A_DRATE_15 = 0x10,
- HMC_CONF_A_DRATE_30 = 0x14,
- HMC_CONF_A_DRATE_75 = 0x18,
- HMC_CONF_A_MEAS_MASK = 0x3,
- HMC_CONF_A_MEAS_NORM = 0x0,
- HMC_CONF_A_MEAS_POS = 0x1,
- HMC_CONF_A_MEAS_NEG = 0x2
- };
- enum HMC_CONF_B{
- HMC_CONF_B_GAIN_MASK = 0xE0,
- HMC_CONF_B_GAIN_0_9 = 0x00,
- HMC_CONF_B_GAIN_1_2 = 0x20,
- HMC_CONF_B_GAIN_1_9 = 0x40,
- HMC_CONF_B_GAIN_2_5 = 0x60,
- HMC_CONF_B_GAIN_4_0 = 0x80,
- HMC_CONF_B_GAIN_4_6 = 0xA0,
- HMC_CONF_B_GAIN_5_5 = 0xC0,
- HMC_CONF_B_GAIN_7_9 = 0xE0
- };
- enum HMC_MODE {
- HMC_MODE_MASK = 0x3,
- HMC_MODE_CONT = 0x0,
- HMC_MODE_SINGLE = 0x1,
- HMC_MODE_IDLE = 0x2,
- HMC_MODE_SLEEP = 0x3
- };
- /* --------------------- */
- /* - Variables. - */
- /* --------------------- */
- /*****************************************
- Accelerometer Initialization Functions
- *****************************************/
- int hmc5883_suspend(void *mlsl_handle,
- struct ext_slave_descr *slave,
- struct ext_slave_platform_data *pdata)
- {
- int result = ML_SUCCESS;
- result =
- MLSLSerialWriteSingle(mlsl_handle, pdata->address,
- HMC_REG_MODE, HMC_MODE_SLEEP);
- ERROR_CHECK(result);
- MLOSSleep(3);
- return result;
- }
- int hmc5883_resume(void *mlsl_handle,
- struct ext_slave_descr *slave,
- struct ext_slave_platform_data *pdata)
- {
- int result = ML_SUCCESS;
- /* Use single measurement mode. Start at sleep state. */
- result =
- MLSLSerialWriteSingle(mlsl_handle, pdata->address,
- HMC_REG_MODE, HMC_MODE_SLEEP);
- ERROR_CHECK(result);
- /* Config normal measurement */
- result =
- MLSLSerialWriteSingle(mlsl_handle, pdata->address,
- HMC_REG_CONF_A, 0);
- ERROR_CHECK(result);
- /* Adjust gain to 307 LSB/Gauss */
- result =
- MLSLSerialWriteSingle(mlsl_handle, pdata->address,
- HMC_REG_CONF_B, HMC_CONF_B_GAIN_5_5);
- ERROR_CHECK(result);
- return result;
- }
- int hmc5883_read(void *mlsl_handle,
- struct ext_slave_descr *slave,
- struct ext_slave_platform_data *pdata,
- unsigned char *data)
- {
- unsigned char stat;
- tMLError result = ML_SUCCESS;
- unsigned char tmp;
- short axisFixed;
- /* Read status reg. to check if data is ready */
- result =
- MLSLSerialRead(mlsl_handle, pdata->address, HMC_REG_STATUS, 1,
- &stat);
- ERROR_CHECK(result);
- if (stat & 0x01) {
- result =
- MLSLSerialRead(mlsl_handle, pdata->address,
- HMC_REG_X_M, 6, (unsigned char *) data);
- ERROR_CHECK(result);
- /* switch YZ axis to proper position */
- tmp = data[2];
- data[2] = data[4];
- data[4] = tmp;
- tmp = data[3];
- data[3] = data[5];
- data[5] = tmp;
- /*drop data if overflows */
- if ((data[0] == 0xf0) || (data[2] == 0xf0)
- || (data[4] == 0xf0)) {
- /* trigger next measurement read */
- result =
- MLSLSerialWriteSingle(mlsl_handle,
- pdata->address,
- HMC_REG_MODE,
- HMC_MODE_SINGLE);
- ERROR_CHECK(result);
- return ML_ERROR_COMPASS_DATA_OVERFLOW;
- }
- /* convert to fixed point and apply sensitivity correction for
- Z-axis */
- axisFixed =
- (short) ((unsigned short) data[5] +
- (unsigned short) data[4] * 256);
- /* scale up by 1.125 (36/32) */
- axisFixed = (short) (axisFixed * 36);
- data[4] = axisFixed >> 8;
- data[5] = axisFixed & 0xFF;
- axisFixed =
- (short) ((unsigned short) data[3] +
- (unsigned short) data[2] * 256);
- axisFixed = (short) (axisFixed * 32);
- data[2] = axisFixed >> 8;
- data[3] = axisFixed & 0xFF;
- axisFixed =
- (short) ((unsigned short) data[1] +
- (unsigned short) data[0] * 256);
- axisFixed = (short) (axisFixed * 32);
- data[0] = axisFixed >> 8;
- data[1] = axisFixed & 0xFF;
- /* trigger next measurement read */
- result =
- MLSLSerialWriteSingle(mlsl_handle, pdata->address,
- HMC_REG_MODE, HMC_MODE_SINGLE);
- ERROR_CHECK(result);
- return ML_SUCCESS;
- } else {
- /* trigger next measurement read */
- result =
- MLSLSerialWriteSingle(mlsl_handle, pdata->address,
- HMC_REG_MODE, HMC_MODE_SINGLE);
- ERROR_CHECK(result);
- return ML_ERROR_COMPASS_DATA_NOT_READY;
- }
- }
- struct ext_slave_descr hmc5883_descr = {
- /*.init = */ NULL,
- /*.exit = */ NULL,
- /*.suspend = */ hmc5883_suspend,
- /*.resume = */ hmc5883_resume,
- /*.read = */ hmc5883_read,
- /*.config = */ NULL,
- /*.get_config = */ NULL,
- /*.name = */ "hmc5883",
- /*.type = */ EXT_SLAVE_TYPE_COMPASS,
- /*.id = */ COMPASS_ID_HMC5883,
- /*.reg = */ 0x06,
- /*.len = */ 6,
- /*.endian = */ EXT_SLAVE_BIG_ENDIAN,
- /*.range = */ {10673, 6156},
- };
- struct ext_slave_descr *hmc5883_get_slave_descr(void)
- {
- return &hmc5883_descr;
- }
- EXPORT_SYMBOL(hmc5883_get_slave_descr);
- /**
- * @}
- **/
|