1 // SPDX-License-Identifier: GPL-2.0-only
3 * 3-axis magnetometer driver supporting following I2C Bosch-Sensortec chips:
8 * Copyright (c) 2016, Intel Corporation.
10 #include <linux/device.h>
11 #include <linux/mod_devicetable.h>
12 #include <linux/i2c.h>
13 #include <linux/module.h>
14 #include <linux/acpi.h>
15 #include <linux/regmap.h>
17 #include "bmc150_magn.h"
19 static int bmc150_magn_i2c_probe(struct i2c_client
*client
,
20 const struct i2c_device_id
*id
)
22 struct regmap
*regmap
;
23 const char *name
= NULL
;
25 regmap
= devm_regmap_init_i2c(client
, &bmc150_magn_regmap_config
);
27 dev_err(&client
->dev
, "Failed to initialize i2c regmap\n");
28 return PTR_ERR(regmap
);
34 return bmc150_magn_probe(&client
->dev
, regmap
, client
->irq
, name
);
37 static int bmc150_magn_i2c_remove(struct i2c_client
*client
)
39 return bmc150_magn_remove(&client
->dev
);
42 static const struct acpi_device_id bmc150_magn_acpi_match
[] = {
48 MODULE_DEVICE_TABLE(acpi
, bmc150_magn_acpi_match
);
50 static const struct i2c_device_id bmc150_magn_i2c_id
[] = {
56 MODULE_DEVICE_TABLE(i2c
, bmc150_magn_i2c_id
);
58 static const struct of_device_id bmc150_magn_of_match
[] = {
59 { .compatible
= "bosch,bmc150_magn" },
60 { .compatible
= "bosch,bmc156_magn" },
61 { .compatible
= "bosch,bmm150_magn" }, /* deprecated compatible */
62 { .compatible
= "bosch,bmm150" },
65 MODULE_DEVICE_TABLE(of
, bmc150_magn_of_match
);
67 static struct i2c_driver bmc150_magn_driver
= {
69 .name
= "bmc150_magn_i2c",
70 .of_match_table
= bmc150_magn_of_match
,
71 .acpi_match_table
= ACPI_PTR(bmc150_magn_acpi_match
),
72 .pm
= &bmc150_magn_pm_ops
,
74 .probe
= bmc150_magn_i2c_probe
,
75 .remove
= bmc150_magn_i2c_remove
,
76 .id_table
= bmc150_magn_i2c_id
,
78 module_i2c_driver(bmc150_magn_driver
);
80 MODULE_AUTHOR("Daniel Baluta <daniel.baluta@intel.com");
81 MODULE_LICENSE("GPL v2");
82 MODULE_DESCRIPTION("BMC150 I2C magnetometer driver");