aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/inv_mpu/compass/lsm303dlx_m.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/misc/inv_mpu/compass/lsm303dlx_m.c')
-rw-r--r--drivers/misc/inv_mpu/compass/lsm303dlx_m.c395
1 files changed, 0 insertions, 395 deletions
diff --git a/drivers/misc/inv_mpu/compass/lsm303dlx_m.c b/drivers/misc/inv_mpu/compass/lsm303dlx_m.c
deleted file mode 100644
index 32f8cdd..0000000
--- a/drivers/misc/inv_mpu/compass/lsm303dlx_m.c
+++ /dev/null
@@ -1,395 +0,0 @@
-/*
- $License:
- Copyright (C) 2011 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/>.
- $
- */
-
-/**
- * @addtogroup COMPASSDL
- *
- * @{
- * @file lsm303dlx_m.c
- * @brief Magnetometer setup and handling methods for ST LSM303
- * compass.
- * This magnetometer device is part of a combo chip with the
- * ST LIS331DLH accelerometer and the logic in entirely based
- * on the Honeywell HMC5883 magnetometer.
- */
-
-/* -------------------------------------------------------------------------- */
-
-#include <linux/i2c.h>
-#include <linux/module.h>
-#include <linux/moduleparam.h>
-#include <linux/kernel.h>
-#include <linux/errno.h>
-#include <linux/slab.h>
-#include <linux/delay.h>
-#include "mpu-dev.h"
-
-#include <log.h>
-#include <linux/mpu.h>
-#include "mlsl.h"
-#include "mldl_cfg.h"
-#undef MPL_LOG_TAG
-#define MPL_LOG_TAG "MPL-compass"
-
-/* -------------------------------------------------------------------------- */
-enum LSM_REG {
- LSM_REG_CONF_A = 0x0,
- LSM_REG_CONF_B = 0x1,
- LSM_REG_MODE = 0x2,
- LSM_REG_X_M = 0x3,
- LSM_REG_X_L = 0x4,
- LSM_REG_Z_M = 0x5,
- LSM_REG_Z_L = 0x6,
- LSM_REG_Y_M = 0x7,
- LSM_REG_Y_L = 0x8,
- LSM_REG_STATUS = 0x9,
- LSM_REG_ID_A = 0xA,
- LSM_REG_ID_B = 0xB,
- LSM_REG_ID_C = 0xC
-};
-
-enum LSM_CONF_A {
- LSM_CONF_A_DRATE_MASK = 0x1C,
- LSM_CONF_A_DRATE_0_75 = 0x00,
- LSM_CONF_A_DRATE_1_5 = 0x04,
- LSM_CONF_A_DRATE_3 = 0x08,
- LSM_CONF_A_DRATE_7_5 = 0x0C,
- LSM_CONF_A_DRATE_15 = 0x10,
- LSM_CONF_A_DRATE_30 = 0x14,
- LSM_CONF_A_DRATE_75 = 0x18,
- LSM_CONF_A_MEAS_MASK = 0x3,
- LSM_CONF_A_MEAS_NORM = 0x0,
- LSM_CONF_A_MEAS_POS = 0x1,
- LSM_CONF_A_MEAS_NEG = 0x2
-};
-
-enum LSM_CONF_B {
- LSM_CONF_B_GAIN_MASK = 0xE0,
- LSM_CONF_B_GAIN_0_9 = 0x00,
- LSM_CONF_B_GAIN_1_2 = 0x20,
- LSM_CONF_B_GAIN_1_9 = 0x40,
- LSM_CONF_B_GAIN_2_5 = 0x60,
- LSM_CONF_B_GAIN_4_0 = 0x80,
- LSM_CONF_B_GAIN_4_6 = 0xA0,
- LSM_CONF_B_GAIN_5_5 = 0xC0,
- LSM_CONF_B_GAIN_7_9 = 0xE0
-};
-
-enum LSM_MODE {
- LSM_MODE_MASK = 0x3,
- LSM_MODE_CONT = 0x0,
- LSM_MODE_SINGLE = 0x1,
- LSM_MODE_IDLE = 0x2,
- LSM_MODE_SLEEP = 0x3
-};
-
-/* -------------------------------------------------------------------------- */
-
-static int lsm303dlx_m_suspend(void *mlsl_handle,
- struct ext_slave_descr *slave,
- struct ext_slave_platform_data *pdata)
-{
- int result = INV_SUCCESS;
-
- result =
- inv_serial_single_write(mlsl_handle, pdata->address,
- LSM_REG_MODE, LSM_MODE_SLEEP);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
- msleep(3);
-
- return result;
-}
-
-static int lsm303dlx_m_resume(void *mlsl_handle,
- struct ext_slave_descr *slave,
- struct ext_slave_platform_data *pdata)
-{
- int result = INV_SUCCESS;
-
- /* Use single measurement mode. Start at sleep state. */
- result =
- inv_serial_single_write(mlsl_handle, pdata->address,
- LSM_REG_MODE, LSM_MODE_SLEEP);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
- /* Config normal measurement */
- result =
- inv_serial_single_write(mlsl_handle, pdata->address,
- LSM_REG_CONF_A, 0);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
- /* Adjust gain to 320 LSB/Gauss */
- result =
- inv_serial_single_write(mlsl_handle, pdata->address,
- LSM_REG_CONF_B, LSM_CONF_B_GAIN_5_5);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
-
- return result;
-}
-
-static int lsm303dlx_m_read(void *mlsl_handle,
- struct ext_slave_descr *slave,
- struct ext_slave_platform_data *pdata,
- unsigned char *data)
-{
- unsigned char stat;
- int result = INV_SUCCESS;
- short axis_fixed;
-
- /* Read status reg. to check if data is ready */
- result =
- inv_serial_read(mlsl_handle, pdata->address, LSM_REG_STATUS, 1,
- &stat);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
- if (stat & 0x01) {
- result =
- inv_serial_read(mlsl_handle, pdata->address,
- LSM_REG_X_M, 6, (unsigned char *)data);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
-
- /*drop data if overflows */
- if ((data[0] == 0xf0) || (data[2] == 0xf0)
- || (data[4] == 0xf0)) {
- /* trigger next measurement read */
- result =
- inv_serial_single_write(mlsl_handle,
- pdata->address,
- LSM_REG_MODE,
- LSM_MODE_SINGLE);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
- return INV_ERROR_COMPASS_DATA_OVERFLOW;
- }
- /* convert to fixed point and apply sensitivity correction for
- Z-axis */
- axis_fixed =
- (short)((unsigned short)data[5] +
- (unsigned short)data[4] * 256);
- /* scale up by 1.125 (36/32) approximate of 1.122 (320/285) */
- if (slave->id == COMPASS_ID_LSM303DLM) {
- /* NOTE/IMPORTANT:
- lsm303dlm compass axis definition doesn't
- respect the right hand rule. We invert
- the sign of the Z axis to fix that. */
- axis_fixed = (short)(-1 * axis_fixed * 36);
- } else {
- axis_fixed = (short)(axis_fixed * 36);
- }
- data[4] = axis_fixed >> 8;
- data[5] = axis_fixed & 0xFF;
-
- axis_fixed =
- (short)((unsigned short)data[3] +
- (unsigned short)data[2] * 256);
- axis_fixed = (short)(axis_fixed * 32);
- data[2] = axis_fixed >> 8;
- data[3] = axis_fixed & 0xFF;
-
- axis_fixed =
- (short)((unsigned short)data[1] +
- (unsigned short)data[0] * 256);
- axis_fixed = (short)(axis_fixed * 32);
- data[0] = axis_fixed >> 8;
- data[1] = axis_fixed & 0xFF;
-
- /* trigger next measurement read */
- result =
- inv_serial_single_write(mlsl_handle, pdata->address,
- LSM_REG_MODE, LSM_MODE_SINGLE);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
-
- return INV_SUCCESS;
- } else {
- /* trigger next measurement read */
- result =
- inv_serial_single_write(mlsl_handle, pdata->address,
- LSM_REG_MODE, LSM_MODE_SINGLE);
- if (result) {
- LOG_RESULT_LOCATION(result);
- return result;
- }
-
- return INV_ERROR_COMPASS_DATA_NOT_READY;
- }
-}
-
-static struct ext_slave_descr lsm303dlx_m_descr = {
- .init = NULL,
- .exit = NULL,
- .suspend = lsm303dlx_m_suspend,
- .resume = lsm303dlx_m_resume,
- .read = lsm303dlx_m_read,
- .config = NULL,
- .get_config = NULL,
- .name = "lsm303dlx_m",
- .type = EXT_SLAVE_TYPE_COMPASS,
- .id = ID_INVALID,
- .read_reg = 0x06,
- .read_len = 6,
- .endian = EXT_SLAVE_BIG_ENDIAN,
- .range = {10240, 0},
- .trigger = NULL,
-};
-
-static
-struct ext_slave_descr *lsm303dlx_m_get_slave_descr(void)
-{
- return &lsm303dlx_m_descr;
-}
-
-/* -------------------------------------------------------------------------- */
-struct lsm303dlx_m_mod_private_data {
- struct i2c_client *client;
- struct ext_slave_platform_data *pdata;
-};
-
-static const struct i2c_device_id lsm303dlx_m_mod_id[] = {
- { "lsm303dlh", COMPASS_ID_LSM303DLH },
- { "lsm303dlm", COMPASS_ID_LSM303DLM },
- {}
-};
-MODULE_DEVICE_TABLE(i2c, lsm303dlx_m_mod_id);
-
-static unsigned short normal_i2c[] = { I2C_CLIENT_END };
-
-static int lsm303dlx_m_mod_probe(struct i2c_client *client,
- const struct i2c_device_id *devid)
-{
- struct ext_slave_platform_data *pdata;
- struct lsm303dlx_m_mod_private_data *private_data;
- int result = 0;
-
- dev_info(&client->adapter->dev, "%s: %s\n", __func__, devid->name);
- lsm303dlx_m_descr.id = devid->driver_data;
-
- if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
- result = -ENODEV;
- goto out_no_free;
- }
-
- pdata = client->dev.platform_data;
- if (!pdata) {
- dev_err(&client->adapter->dev,
- "Missing platform data for slave %s\n", devid->name);
- result = -EFAULT;
- goto out_no_free;
- }
-
- private_data = kzalloc(sizeof(*private_data), GFP_KERNEL);
- if (!private_data) {
- result = -ENOMEM;
- goto out_no_free;
- }
-
- i2c_set_clientdata(client, private_data);
- private_data->client = client;
- private_data->pdata = pdata;
-
- result = inv_mpu_register_slave(THIS_MODULE, client, pdata,
- lsm303dlx_m_get_slave_descr);
- if (result) {
- dev_err(&client->adapter->dev,
- "Slave registration failed: %s, %d\n",
- devid->name, result);
- goto out_free_memory;
- }
-
- return result;
-
-out_free_memory:
- kfree(private_data);
-out_no_free:
- dev_err(&client->adapter->dev, "%s failed %d\n", __func__, result);
- return result;
-
-}
-
-static int lsm303dlx_m_mod_remove(struct i2c_client *client)
-{
- struct lsm303dlx_m_mod_private_data *private_data =
- i2c_get_clientdata(client);
-
- dev_dbg(&client->adapter->dev, "%s\n", __func__);
-
- inv_mpu_unregister_slave(client, private_data->pdata,
- lsm303dlx_m_get_slave_descr);
-
- kfree(private_data);
- return 0;
-}
-
-static struct i2c_driver lsm303dlx_m_mod_driver = {
- .class = I2C_CLASS_HWMON,
- .probe = lsm303dlx_m_mod_probe,
- .remove = lsm303dlx_m_mod_remove,
- .id_table = lsm303dlx_m_mod_id,
- .driver = {
- .owner = THIS_MODULE,
- .name = "lsm303dlx_m_mod",
- },
- .address_list = normal_i2c,
-};
-
-static int __init lsm303dlx_m_mod_init(void)
-{
- int res = i2c_add_driver(&lsm303dlx_m_mod_driver);
- pr_info("%s: Probe name %s\n", __func__, "lsm303dlx_m_mod");
- if (res)
- pr_err("%s failed\n", __func__);
- return res;
-}
-
-static void __exit lsm303dlx_m_mod_exit(void)
-{
- pr_info("%s\n", __func__);
- i2c_del_driver(&lsm303dlx_m_mod_driver);
-}
-
-module_init(lsm303dlx_m_mod_init);
-module_exit(lsm303dlx_m_mod_exit);
-
-MODULE_AUTHOR("Invensense Corporation");
-MODULE_DESCRIPTION("Driver to integrate lsm303dlx_m sensor with the MPU");
-MODULE_LICENSE("GPL");
-MODULE_ALIAS("lsm303dlx_m_mod");
-
-/**
- * @}
- */