Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * STMicroelectronics accelerometers driver |
| 3 | * |
| 4 | * Copyright 2012-2013 STMicroelectronics Inc. |
| 5 | * |
| 6 | * Denis Ciocca <denis.ciocca@st.com> |
| 7 | * |
| 8 | * Licensed under the GPL-2. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/spi/spi.h> |
| 15 | #include <linux/iio/iio.h> |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 16 | |
| 17 | #include <linux/iio/common/st_sensors.h> |
| 18 | #include <linux/iio/common/st_sensors_spi.h> |
| 19 | #include "st_accel.h" |
| 20 | |
| 21 | static int st_accel_spi_probe(struct spi_device *spi) |
| 22 | { |
| 23 | struct iio_dev *indio_dev; |
| 24 | struct st_sensor_data *adata; |
| 25 | int err; |
| 26 | |
Sachin Kamat | 6b7e0a9 | 2013-07-23 07:47:00 +0100 | [diff] [blame] | 27 | indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*adata)); |
| 28 | if (!indio_dev) |
| 29 | return -ENOMEM; |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 30 | |
| 31 | adata = iio_priv(indio_dev); |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 32 | |
| 33 | st_sensors_spi_configure(indio_dev, spi, adata); |
| 34 | |
Denis CIOCCA | b6e6bda6 | 2014-10-03 17:35:36 +0200 | [diff] [blame] | 35 | err = st_accel_common_probe(indio_dev); |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 36 | if (err < 0) |
Sachin Kamat | 6b7e0a9 | 2013-07-23 07:47:00 +0100 | [diff] [blame] | 37 | return err; |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 38 | |
| 39 | return 0; |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | static int st_accel_spi_remove(struct spi_device *spi) |
| 43 | { |
| 44 | st_accel_common_remove(spi_get_drvdata(spi)); |
| 45 | |
| 46 | return 0; |
| 47 | } |
| 48 | |
| 49 | static const struct spi_device_id st_accel_id_table[] = { |
| 50 | { LSM303DLH_ACCEL_DEV_NAME }, |
| 51 | { LSM303DLHC_ACCEL_DEV_NAME }, |
| 52 | { LIS3DH_ACCEL_DEV_NAME }, |
| 53 | { LSM330D_ACCEL_DEV_NAME }, |
| 54 | { LSM330DL_ACCEL_DEV_NAME }, |
| 55 | { LSM330DLC_ACCEL_DEV_NAME }, |
| 56 | { LIS331DLH_ACCEL_DEV_NAME }, |
| 57 | { LSM303DL_ACCEL_DEV_NAME }, |
| 58 | { LSM303DLM_ACCEL_DEV_NAME }, |
| 59 | { LSM330_ACCEL_DEV_NAME }, |
Giuseppe Barba | ddc05fa | 2015-07-21 10:35:44 +0200 | [diff] [blame] | 60 | { LSM303AGR_ACCEL_DEV_NAME }, |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 61 | {}, |
| 62 | }; |
| 63 | MODULE_DEVICE_TABLE(spi, st_accel_id_table); |
| 64 | |
| 65 | static struct spi_driver st_accel_driver = { |
| 66 | .driver = { |
Denis Ciocca | d625116 | 2013-01-25 23:44:00 +0000 | [diff] [blame] | 67 | .name = "st-accel-spi", |
| 68 | }, |
| 69 | .probe = st_accel_spi_probe, |
| 70 | .remove = st_accel_spi_remove, |
| 71 | .id_table = st_accel_id_table, |
| 72 | }; |
| 73 | module_spi_driver(st_accel_driver); |
| 74 | |
| 75 | MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>"); |
| 76 | MODULE_DESCRIPTION("STMicroelectronics accelerometers spi driver"); |
| 77 | MODULE_LICENSE("GPL v2"); |