1 #include <linux/module.h>
3 #include <linux/acpi.h>
5 #include <linux/regmap.h>
9 static int bmp280_i2c_probe(struct i2c_client
*client
,
10 const struct i2c_device_id
*id
)
12 struct regmap
*regmap
;
13 const struct regmap_config
*regmap_config
;
15 switch (id
->driver_data
) {
17 regmap_config
= &bmp180_regmap_config
;
21 regmap_config
= &bmp280_regmap_config
;
27 regmap
= devm_regmap_init_i2c(client
, regmap_config
);
29 dev_err(&client
->dev
, "failed to allocate register map\n");
30 return PTR_ERR(regmap
);
33 return bmp280_common_probe(&client
->dev
,
40 static int bmp280_i2c_remove(struct i2c_client
*client
)
42 return bmp280_common_remove(&client
->dev
);
45 static const struct acpi_device_id bmp280_acpi_i2c_match
[] = {
46 {"BMP0280", BMP280_CHIP_ID
},
47 {"BMP0180", BMP180_CHIP_ID
},
48 {"BMP0085", BMP180_CHIP_ID
},
49 {"BME0280", BME280_CHIP_ID
},
52 MODULE_DEVICE_TABLE(acpi
, bmp280_acpi_i2c_match
);
55 static const struct of_device_id bmp280_of_i2c_match
[] = {
56 { .compatible
= "bosch,bme280", .data
= (void *)BME280_CHIP_ID
},
57 { .compatible
= "bosch,bmp280", .data
= (void *)BMP280_CHIP_ID
},
58 { .compatible
= "bosch,bmp180", .data
= (void *)BMP180_CHIP_ID
},
59 { .compatible
= "bosch,bmp085", .data
= (void *)BMP180_CHIP_ID
},
62 MODULE_DEVICE_TABLE(of
, bmp280_of_i2c_match
);
64 #define bmp280_of_i2c_match NULL
67 static const struct i2c_device_id bmp280_i2c_id
[] = {
68 {"bmp280", BMP280_CHIP_ID
},
69 {"bmp180", BMP180_CHIP_ID
},
70 {"bmp085", BMP180_CHIP_ID
},
71 {"bme280", BME280_CHIP_ID
},
74 MODULE_DEVICE_TABLE(i2c
, bmp280_i2c_id
);
76 static struct i2c_driver bmp280_i2c_driver
= {
79 .acpi_match_table
= ACPI_PTR(bmp280_acpi_i2c_match
),
80 .of_match_table
= of_match_ptr(bmp280_of_i2c_match
),
81 .pm
= &bmp280_dev_pm_ops
,
83 .probe
= bmp280_i2c_probe
,
84 .remove
= bmp280_i2c_remove
,
85 .id_table
= bmp280_i2c_id
,
87 module_i2c_driver(bmp280_i2c_driver
);
89 MODULE_AUTHOR("Vlad Dogaru <vlad.dogaru@intel.com>");
90 MODULE_DESCRIPTION("Driver for Bosch Sensortec BMP180/BMP280 pressure and temperature sensor");
91 MODULE_LICENSE("GPL v2");