2 * 3-axis accelerometer driver supporting SPI Bosch-Sensortec accelerometer chip
3 * Copyright © 2015 Pengutronix, Markus Pargmann <mpa@pengutronix.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 #include <linux/device.h>
20 #include <linux/mod_devicetable.h>
21 #include <linux/module.h>
22 #include <linux/acpi.h>
23 #include <linux/regmap.h>
24 #include <linux/spi/spi.h>
26 #include "bmc150-accel.h"
28 static int bmc150_accel_probe(struct spi_device
*spi
)
30 struct regmap
*regmap
;
31 const struct spi_device_id
*id
= spi_get_device_id(spi
);
33 regmap
= devm_regmap_init_spi(spi
, &bmc150_regmap_conf
);
35 dev_err(&spi
->dev
, "Failed to initialize spi regmap\n");
36 return PTR_ERR(regmap
);
39 return bmc150_accel_core_probe(&spi
->dev
, regmap
, spi
->irq
, id
->name
,
43 static int bmc150_accel_remove(struct spi_device
*spi
)
45 return bmc150_accel_core_remove(&spi
->dev
);
48 static const struct acpi_device_id bmc150_accel_acpi_match
[] = {
58 MODULE_DEVICE_TABLE(acpi
, bmc150_accel_acpi_match
);
60 static const struct spi_device_id bmc150_accel_id
[] = {
61 {"bmc150_accel", bmc150
},
62 {"bmi055_accel", bmi055
},
69 MODULE_DEVICE_TABLE(spi
, bmc150_accel_id
);
71 static struct spi_driver bmc150_accel_driver
= {
73 .name
= "bmc150_accel_spi",
74 .acpi_match_table
= ACPI_PTR(bmc150_accel_acpi_match
),
75 .pm
= &bmc150_accel_pm_ops
,
77 .probe
= bmc150_accel_probe
,
78 .remove
= bmc150_accel_remove
,
79 .id_table
= bmc150_accel_id
,
81 module_spi_driver(bmc150_accel_driver
);
83 MODULE_AUTHOR("Markus Pargmann <mpa@pengutronix.de>");
84 MODULE_LICENSE("GPL v2");
85 MODULE_DESCRIPTION("BMC150 SPI accelerometer driver");