2 * 3-axis magnetometer driver support following SPI Bosch-Sensortec chips:
6 * Copyright (c) 2016, Intel Corporation.
8 * This file is subject to the terms and conditions of version 2 of
9 * the GNU General Public License. See the file COPYING in the main
10 * directory of this archive for more details.
12 #include <linux/module.h>
13 #include <linux/mod_devicetable.h>
14 #include <linux/spi/spi.h>
15 #include <linux/acpi.h>
16 #include <linux/regmap.h>
18 #include "bmc150_magn.h"
20 static int bmc150_magn_spi_probe(struct spi_device
*spi
)
22 struct regmap
*regmap
;
23 const struct spi_device_id
*id
= spi_get_device_id(spi
);
25 regmap
= devm_regmap_init_spi(spi
, &bmc150_magn_regmap_config
);
27 dev_err(&spi
->dev
, "Failed to register spi regmap %d\n",
28 (int)PTR_ERR(regmap
));
29 return PTR_ERR(regmap
);
31 return bmc150_magn_probe(&spi
->dev
, regmap
, spi
->irq
, id
->name
);
34 static int bmc150_magn_spi_remove(struct spi_device
*spi
)
36 bmc150_magn_remove(&spi
->dev
);
41 static const struct spi_device_id bmc150_magn_spi_id
[] = {
46 MODULE_DEVICE_TABLE(spi
, bmc150_magn_spi_id
);
48 static const struct acpi_device_id bmc150_magn_acpi_match
[] = {
53 MODULE_DEVICE_TABLE(acpi
, bmc150_magn_acpi_match
);
55 static struct spi_driver bmc150_magn_spi_driver
= {
56 .probe
= bmc150_magn_spi_probe
,
57 .remove
= bmc150_magn_spi_remove
,
58 .id_table
= bmc150_magn_spi_id
,
60 .acpi_match_table
= ACPI_PTR(bmc150_magn_acpi_match
),
61 .name
= "bmc150_magn_spi",
64 module_spi_driver(bmc150_magn_spi_driver
);
66 MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com");
67 MODULE_DESCRIPTION("BMC150 magnetometer SPI driver");
68 MODULE_LICENSE("GPL v2");