1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * STMicroelectronics magnetometers driver 4 * 5 * Copyright 2012-2013 STMicroelectronics Inc. 6 * 7 * Denis Ciocca <denis.ciocca@st.com> 8 */ 9 10 #include <linux/kernel.h> 11 #include <linux/module.h> 12 #include <linux/mod_devicetable.h> 13 #include <linux/i2c.h> 14 #include <linux/iio/iio.h> 15 16 #include <linux/iio/common/st_sensors.h> 17 #include <linux/iio/common/st_sensors_i2c.h> 18 #include "st_magn.h" 19 20 static const struct of_device_id st_magn_of_match[] = { 21 { 22 .compatible = "st,lsm303dlh-magn", 23 .data = LSM303DLH_MAGN_DEV_NAME, 24 }, 25 { 26 .compatible = "st,lsm303dlhc-magn", 27 .data = LSM303DLHC_MAGN_DEV_NAME, 28 }, 29 { 30 .compatible = "st,lsm303dlm-magn", 31 .data = LSM303DLM_MAGN_DEV_NAME, 32 }, 33 { 34 .compatible = "st,lis3mdl-magn", 35 .data = LIS3MDL_MAGN_DEV_NAME, 36 }, 37 { 38 .compatible = "st,lsm303agr-magn", 39 .data = LSM303AGR_MAGN_DEV_NAME, 40 }, 41 { 42 .compatible = "st,lis2mdl", 43 .data = LIS2MDL_MAGN_DEV_NAME, 44 }, 45 { 46 .compatible = "st,lsm9ds1-magn", 47 .data = LSM9DS1_MAGN_DEV_NAME, 48 }, 49 { 50 .compatible = "st,iis2mdc", 51 .data = IIS2MDC_MAGN_DEV_NAME, 52 }, 53 {}, 54 }; 55 MODULE_DEVICE_TABLE(of, st_magn_of_match); 56 57 static int st_magn_i2c_probe(struct i2c_client *client) 58 { 59 const struct st_sensor_settings *settings; 60 struct st_sensor_data *mdata; 61 struct iio_dev *indio_dev; 62 int err; 63 64 st_sensors_dev_name_probe(&client->dev, client->name, sizeof(client->name)); 65 66 settings = st_magn_get_settings(client->name); 67 if (!settings) { 68 dev_err(&client->dev, "device name %s not recognized.\n", 69 client->name); 70 return -ENODEV; 71 } 72 73 indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*mdata)); 74 if (!indio_dev) 75 return -ENOMEM; 76 77 mdata = iio_priv(indio_dev); 78 mdata->sensor_settings = (struct st_sensor_settings *)settings; 79 80 err = st_sensors_i2c_configure(indio_dev, client); 81 if (err < 0) 82 return err; 83 84 err = st_sensors_power_enable(indio_dev); 85 if (err) 86 return err; 87 88 return st_magn_common_probe(indio_dev); 89 } 90 91 static const struct i2c_device_id st_magn_id_table[] = { 92 { LSM303DLH_MAGN_DEV_NAME }, 93 { LSM303DLHC_MAGN_DEV_NAME }, 94 { LSM303DLM_MAGN_DEV_NAME }, 95 { LIS3MDL_MAGN_DEV_NAME }, 96 { LSM303AGR_MAGN_DEV_NAME }, 97 { LIS2MDL_MAGN_DEV_NAME }, 98 { LSM9DS1_MAGN_DEV_NAME }, 99 { IIS2MDC_MAGN_DEV_NAME }, 100 {}, 101 }; 102 MODULE_DEVICE_TABLE(i2c, st_magn_id_table); 103 104 static struct i2c_driver st_magn_driver = { 105 .driver = { 106 .name = "st-magn-i2c", 107 .of_match_table = st_magn_of_match, 108 }, 109 .probe_new = st_magn_i2c_probe, 110 .id_table = st_magn_id_table, 111 }; 112 module_i2c_driver(st_magn_driver); 113 114 MODULE_AUTHOR("Denis Ciocca <denis.ciocca@st.com>"); 115 MODULE_DESCRIPTION("STMicroelectronics magnetometers i2c driver"); 116 MODULE_LICENSE("GPL v2"); 117 MODULE_IMPORT_NS(IIO_ST_SENSORS); 118