Commit 0e2e8777 authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: pcf85063: differentiate pcf85063a and pcf85063tp

As stated in a comment pcf85063a and pcf85063tp don't have the same number
of registers. Especially, pcf85063tp doesn't have alarm support.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent e89b60d0
* NXP PCF85063 Real Time Clock * NXP PCF85063 Real Time Clock
Required properties: Required properties:
- compatible: Should contain "nxp,pcf85063". - compatible: Should one of contain:
"nxp,pcf85063",
"nxp,pcf85063a",
"nxp,pcf85063tp"
- reg: I2C address for chip. - reg: I2C address for chip.
Optional property: Optional property:
......
...@@ -30,6 +30,10 @@ ...@@ -30,6 +30,10 @@
#define PCF85063_REG_SC 0x04 /* datetime */ #define PCF85063_REG_SC 0x04 /* datetime */
#define PCF85063_REG_SC_OS 0x80 #define PCF85063_REG_SC_OS 0x80
struct pcf85063_config {
struct regmap_config regmap;
};
struct pcf85063 { struct pcf85063 {
struct rtc_device *rtc; struct rtc_device *rtc;
struct regmap *regmap; struct regmap *regmap;
...@@ -147,10 +151,20 @@ static int pcf85063_load_capacitance(struct pcf85063 *pcf85063, ...@@ -147,10 +151,20 @@ static int pcf85063_load_capacitance(struct pcf85063 *pcf85063,
PCF85063_REG_CTRL1_CAP_SEL, reg); PCF85063_REG_CTRL1_CAP_SEL, reg);
} }
static const struct regmap_config regmap_config = { static const struct pcf85063_config pcf85063a_config = {
.reg_bits = 8, .regmap = {
.val_bits = 8, .reg_bits = 8,
.max_register = 0x11, .val_bits = 8,
.max_register = 0x11,
},
};
static const struct pcf85063_config pcf85063tp_config = {
.regmap = {
.reg_bits = 8,
.val_bits = 8,
.max_register = 0x0a,
},
}; };
static int pcf85063_probe(struct i2c_client *client) static int pcf85063_probe(struct i2c_client *client)
...@@ -158,6 +172,8 @@ static int pcf85063_probe(struct i2c_client *client) ...@@ -158,6 +172,8 @@ static int pcf85063_probe(struct i2c_client *client)
struct pcf85063 *pcf85063; struct pcf85063 *pcf85063;
unsigned int tmp; unsigned int tmp;
int err; int err;
const struct pcf85063_config *config = &pcf85063tp_config;
const void *data = of_device_get_match_data(&client->dev);
dev_dbg(&client->dev, "%s\n", __func__); dev_dbg(&client->dev, "%s\n", __func__);
...@@ -166,7 +182,10 @@ static int pcf85063_probe(struct i2c_client *client) ...@@ -166,7 +182,10 @@ static int pcf85063_probe(struct i2c_client *client)
if (!pcf85063) if (!pcf85063)
return -ENOMEM; return -ENOMEM;
pcf85063->regmap = devm_regmap_init_i2c(client, &regmap_config); if (data)
config = data;
pcf85063->regmap = devm_regmap_init_i2c(client, &config->regmap);
if (IS_ERR(pcf85063->regmap)) if (IS_ERR(pcf85063->regmap))
return PTR_ERR(pcf85063->regmap); return PTR_ERR(pcf85063->regmap);
...@@ -196,7 +215,9 @@ static int pcf85063_probe(struct i2c_client *client) ...@@ -196,7 +215,9 @@ static int pcf85063_probe(struct i2c_client *client)
#ifdef CONFIG_OF #ifdef CONFIG_OF
static const struct of_device_id pcf85063_of_match[] = { static const struct of_device_id pcf85063_of_match[] = {
{ .compatible = "nxp,pcf85063" }, { .compatible = "nxp,pcf85063", .data = &pcf85063tp_config },
{ .compatible = "nxp,pcf85063tp", .data = &pcf85063tp_config },
{ .compatible = "nxp,pcf85063a", .data = &pcf85063a_config },
{} {}
}; };
MODULE_DEVICE_TABLE(of, pcf85063_of_match); MODULE_DEVICE_TABLE(of, pcf85063_of_match);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment