hmc5843_i2c.c 2.9 KB
Newer Older
1
/*
2
 * i2c driver for hmc5843/5843/5883/5883l/5983
3 4 5 6 7 8 9
 *
 * Split from hmc5843.c
 * Copyright (C) Josef Gajdusek <atx@atx.name>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
10
 */
11 12 13 14 15 16 17 18 19 20

#include <linux/module.h>
#include <linux/i2c.h>
#include <linux/regmap.h>
#include <linux/iio/iio.h>
#include <linux/iio/triggered_buffer.h>

#include "hmc5843.h"

static const struct regmap_range hmc5843_readable_ranges[] = {
21
	regmap_reg_range(0, HMC5843_ID_END),
22 23
};

24
static const struct regmap_access_table hmc5843_readable_table = {
25 26
	.yes_ranges = hmc5843_readable_ranges,
	.n_yes_ranges = ARRAY_SIZE(hmc5843_readable_ranges),
27 28 29
};

static const struct regmap_range hmc5843_writable_ranges[] = {
30
	regmap_reg_range(0, HMC5843_MODE_REG),
31 32
};

33
static const struct regmap_access_table hmc5843_writable_table = {
34 35
	.yes_ranges = hmc5843_writable_ranges,
	.n_yes_ranges = ARRAY_SIZE(hmc5843_writable_ranges),
36 37 38
};

static const struct regmap_range hmc5843_volatile_ranges[] = {
39
	regmap_reg_range(HMC5843_DATA_OUT_MSB_REGS, HMC5843_STATUS_REG),
40 41
};

42
static const struct regmap_access_table hmc5843_volatile_table = {
43 44
	.yes_ranges = hmc5843_volatile_ranges,
	.n_yes_ranges = ARRAY_SIZE(hmc5843_volatile_ranges),
45 46
};

47
static const struct regmap_config hmc5843_i2c_regmap_config = {
48 49
	.reg_bits = 8,
	.val_bits = 8,
50

51 52 53
	.rd_table = &hmc5843_readable_table,
	.wr_table = &hmc5843_writable_table,
	.volatile_table = &hmc5843_volatile_table,
54

55
	.cache_type = REGCACHE_RBTREE,
56 57
};

58
static int hmc5843_i2c_probe(struct i2c_client *cli,
59
			     const struct i2c_device_id *id)
60
{
61 62 63 64 65
	struct regmap *regmap = devm_regmap_init_i2c(cli,
			&hmc5843_i2c_regmap_config);
	if (IS_ERR(regmap))
		return PTR_ERR(regmap);

66
	return hmc5843_common_probe(&cli->dev,
67
			regmap,
68
			id->driver_data, id->name);
69 70 71 72 73 74 75 76 77 78 79
}

static int hmc5843_i2c_remove(struct i2c_client *client)
{
	return hmc5843_common_remove(&client->dev);
}

static const struct i2c_device_id hmc5843_id[] = {
	{ "hmc5843", HMC5843_ID },
	{ "hmc5883", HMC5883_ID },
	{ "hmc5883l", HMC5883L_ID },
80
	{ "hmc5983", HMC5983_ID },
81 82 83 84 85 86 87 88
	{ }
};
MODULE_DEVICE_TABLE(i2c, hmc5843_id);

static const struct of_device_id hmc5843_of_match[] = {
	{ .compatible = "honeywell,hmc5843", .data = (void *)HMC5843_ID },
	{ .compatible = "honeywell,hmc5883", .data = (void *)HMC5883_ID },
	{ .compatible = "honeywell,hmc5883l", .data = (void *)HMC5883L_ID },
89
	{ .compatible = "honeywell,hmc5983", .data = (void *)HMC5983_ID },
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
	{}
};
MODULE_DEVICE_TABLE(of, hmc5843_of_match);

static struct i2c_driver hmc5843_driver = {
	.driver = {
		.name	= "hmc5843",
		.pm	= HMC5843_PM_OPS,
		.of_match_table = hmc5843_of_match,
	},
	.id_table	= hmc5843_id,
	.probe		= hmc5843_i2c_probe,
	.remove		= hmc5843_i2c_remove,
};
module_i2c_driver(hmc5843_driver);

MODULE_AUTHOR("Josef Gajdusek <atx@atx.name>");
107
MODULE_DESCRIPTION("HMC5843/5883/5883L/5983 i2c driver");
108
MODULE_LICENSE("GPL");