2 * Copyright 2009-2010 Creative Product Design
3 * Marc Reilly marc@cpdesign.com.au
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License version 2 as published by the
7 * Free Software Foundation.
10 #include <linux/slab.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/mfd/core.h>
14 #include <linux/mfd/mc13xxx.h>
16 #include <linux/of_device.h>
17 #include <linux/of_gpio.h>
18 #include <linux/i2c.h>
19 #include <linux/err.h>
23 static const struct i2c_device_id mc13xxx_i2c_device_id
[] = {
26 .driver_data
= (kernel_ulong_t
)&mc13xxx_variant_mc13892
,
29 .driver_data
= (kernel_ulong_t
)&mc13xxx_variant_mc34708
,
34 MODULE_DEVICE_TABLE(i2c
, mc13xxx_i2c_device_id
);
36 static const struct of_device_id mc13xxx_dt_ids
[] = {
38 .compatible
= "fsl,mc13892",
39 .data
= &mc13xxx_variant_mc13892
,
41 .compatible
= "fsl,mc34708",
42 .data
= &mc13xxx_variant_mc34708
,
47 MODULE_DEVICE_TABLE(of
, mc13xxx_dt_ids
);
49 static const struct regmap_config mc13xxx_regmap_i2c_config
= {
53 .max_register
= MC13XXX_NUMREGS
,
55 .cache_type
= REGCACHE_NONE
,
58 static int mc13xxx_i2c_probe(struct i2c_client
*client
,
59 const struct i2c_device_id
*id
)
61 struct mc13xxx
*mc13xxx
;
64 mc13xxx
= devm_kzalloc(&client
->dev
, sizeof(*mc13xxx
), GFP_KERNEL
);
68 dev_set_drvdata(&client
->dev
, mc13xxx
);
70 mc13xxx
->irq
= client
->irq
;
72 mc13xxx
->regmap
= devm_regmap_init_i2c(client
,
73 &mc13xxx_regmap_i2c_config
);
74 if (IS_ERR(mc13xxx
->regmap
)) {
75 ret
= PTR_ERR(mc13xxx
->regmap
);
76 dev_err(&client
->dev
, "Failed to initialize regmap: %d\n", ret
);
80 if (client
->dev
.of_node
) {
81 const struct of_device_id
*of_id
=
82 of_match_device(mc13xxx_dt_ids
, &client
->dev
);
83 mc13xxx
->variant
= of_id
->data
;
85 mc13xxx
->variant
= (void *)id
->driver_data
;
88 return mc13xxx_common_init(&client
->dev
);
91 static int mc13xxx_i2c_remove(struct i2c_client
*client
)
93 return mc13xxx_common_exit(&client
->dev
);
96 static struct i2c_driver mc13xxx_i2c_driver
= {
97 .id_table
= mc13xxx_i2c_device_id
,
100 .of_match_table
= mc13xxx_dt_ids
,
102 .probe
= mc13xxx_i2c_probe
,
103 .remove
= mc13xxx_i2c_remove
,
106 static int __init
mc13xxx_i2c_init(void)
108 return i2c_add_driver(&mc13xxx_i2c_driver
);
110 subsys_initcall(mc13xxx_i2c_init
);
112 static void __exit
mc13xxx_i2c_exit(void)
114 i2c_del_driver(&mc13xxx_i2c_driver
);
116 module_exit(mc13xxx_i2c_exit
);
118 MODULE_DESCRIPTION("i2c driver for Freescale MC13XXX PMIC");
119 MODULE_AUTHOR("Marc Reilly <marc@cpdesign.com.au");
120 MODULE_LICENSE("GPL v2");