2017-01-11 05:55:18 +08:00
|
|
|
/*
|
|
|
|
* STMicroelectronics st_lsm6dsx spi driver
|
|
|
|
*
|
|
|
|
* Copyright 2016 STMicroelectronics Inc.
|
|
|
|
*
|
|
|
|
* Lorenzo Bianconi <lorenzo.bianconi@st.com>
|
|
|
|
* Denis Ciocca <denis.ciocca@st.com>
|
|
|
|
*
|
|
|
|
* Licensed under the GPL-2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/spi/spi.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/of.h>
|
2018-01-02 02:54:44 +08:00
|
|
|
#include <linux/regmap.h>
|
2017-01-11 05:55:18 +08:00
|
|
|
|
|
|
|
#include "st_lsm6dsx.h"
|
|
|
|
|
2018-01-02 02:54:44 +08:00
|
|
|
static const struct regmap_config st_lsm6dsx_spi_regmap_config = {
|
|
|
|
.reg_bits = 8,
|
|
|
|
.val_bits = 8,
|
2017-01-11 05:55:18 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int st_lsm6dsx_spi_probe(struct spi_device *spi)
|
|
|
|
{
|
|
|
|
const struct spi_device_id *id = spi_get_device_id(spi);
|
2018-01-02 02:54:44 +08:00
|
|
|
int hw_id = id->driver_data;
|
|
|
|
struct regmap *regmap;
|
|
|
|
|
|
|
|
regmap = devm_regmap_init_spi(spi, &st_lsm6dsx_spi_regmap_config);
|
|
|
|
if (IS_ERR(regmap)) {
|
|
|
|
dev_err(&spi->dev, "Failed to register spi regmap %d\n",
|
|
|
|
(int)PTR_ERR(regmap));
|
|
|
|
return PTR_ERR(regmap);
|
|
|
|
}
|
2017-01-11 05:55:18 +08:00
|
|
|
|
|
|
|
return st_lsm6dsx_probe(&spi->dev, spi->irq,
|
2018-01-02 02:54:44 +08:00
|
|
|
hw_id, id->name, regmap);
|
2017-01-11 05:55:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct of_device_id st_lsm6dsx_spi_of_match[] = {
|
|
|
|
{
|
|
|
|
.compatible = "st,lsm6ds3",
|
|
|
|
.data = (void *)ST_LSM6DS3_ID,
|
|
|
|
},
|
2017-01-29 18:49:27 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,lsm6ds3h",
|
|
|
|
.data = (void *)ST_LSM6DS3H_ID,
|
|
|
|
},
|
2017-01-29 18:49:25 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,lsm6dsl",
|
|
|
|
.data = (void *)ST_LSM6DSL_ID,
|
|
|
|
},
|
2017-01-11 05:55:18 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,lsm6dsm",
|
|
|
|
.data = (void *)ST_LSM6DSM_ID,
|
|
|
|
},
|
2018-03-31 04:33:50 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,ism330dlc",
|
|
|
|
.data = (void *)ST_ISM330DLC_ID,
|
|
|
|
},
|
2018-08-31 04:52:58 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,lsm6dso",
|
|
|
|
.data = (void *)ST_LSM6DSO_ID,
|
|
|
|
},
|
2019-02-21 23:20:20 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,asm330lhh",
|
|
|
|
.data = (void *)ST_ASM330LHH_ID,
|
|
|
|
},
|
2019-03-15 18:08:24 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,lsm6dsox",
|
|
|
|
.data = (void *)ST_LSM6DSOX_ID,
|
|
|
|
},
|
2019-04-05 00:02:34 +08:00
|
|
|
{
|
|
|
|
.compatible = "st,lsm6dsr",
|
|
|
|
.data = (void *)ST_LSM6DSR_ID,
|
|
|
|
},
|
2017-01-11 05:55:18 +08:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, st_lsm6dsx_spi_of_match);
|
|
|
|
|
|
|
|
static const struct spi_device_id st_lsm6dsx_spi_id_table[] = {
|
|
|
|
{ ST_LSM6DS3_DEV_NAME, ST_LSM6DS3_ID },
|
2017-01-29 18:49:27 +08:00
|
|
|
{ ST_LSM6DS3H_DEV_NAME, ST_LSM6DS3H_ID },
|
2017-01-29 18:49:25 +08:00
|
|
|
{ ST_LSM6DSL_DEV_NAME, ST_LSM6DSL_ID },
|
2017-01-11 05:55:18 +08:00
|
|
|
{ ST_LSM6DSM_DEV_NAME, ST_LSM6DSM_ID },
|
2018-03-31 04:33:50 +08:00
|
|
|
{ ST_ISM330DLC_DEV_NAME, ST_ISM330DLC_ID },
|
2018-08-31 04:52:58 +08:00
|
|
|
{ ST_LSM6DSO_DEV_NAME, ST_LSM6DSO_ID },
|
2019-02-21 23:20:20 +08:00
|
|
|
{ ST_ASM330LHH_DEV_NAME, ST_ASM330LHH_ID },
|
2019-03-15 18:08:24 +08:00
|
|
|
{ ST_LSM6DSOX_DEV_NAME, ST_LSM6DSOX_ID },
|
2019-04-05 00:02:34 +08:00
|
|
|
{ ST_LSM6DSR_DEV_NAME, ST_LSM6DSR_ID },
|
2017-01-11 05:55:18 +08:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(spi, st_lsm6dsx_spi_id_table);
|
|
|
|
|
|
|
|
static struct spi_driver st_lsm6dsx_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "st_lsm6dsx_spi",
|
2017-04-28 04:31:56 +08:00
|
|
|
.pm = &st_lsm6dsx_pm_ops,
|
2017-01-11 05:55:18 +08:00
|
|
|
.of_match_table = of_match_ptr(st_lsm6dsx_spi_of_match),
|
|
|
|
},
|
|
|
|
.probe = st_lsm6dsx_spi_probe,
|
|
|
|
.id_table = st_lsm6dsx_spi_id_table,
|
|
|
|
};
|
|
|
|
module_spi_driver(st_lsm6dsx_driver);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Lorenzo Bianconi <lorenzo.bianconi@st.com>");
|
|
|
|
MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>");
|
|
|
|
MODULE_DESCRIPTION("STMicroelectronics st_lsm6dsx spi driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|