aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/simple-mfd-i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mfd/simple-mfd-i2c.c')
-rw-r--r--drivers/mfd/simple-mfd-i2c.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/mfd/simple-mfd-i2c.c b/drivers/mfd/simple-mfd-i2c.c
index 0a607a1e3ca1..5074a94fda5b 100644
--- a/drivers/mfd/simple-mfd-i2c.c
+++ b/drivers/mfd/simple-mfd-i2c.c
@@ -29,6 +29,15 @@ static const struct regmap_config regmap_config_8r_8v = {
.val_bits = 8,
};
+static const struct regmap_config regmap_config_16r_8v = {
+ .reg_bits = 16,
+ .val_bits = 8,
+};
+
+static const struct simple_mfd_data rpi_poe_core = {
+ .regmap_config = &regmap_config_16r_8v,
+};
+
static int simple_mfd_i2c_probe(struct i2c_client *i2c)
{
const struct simple_mfd_data *simple_mfd_data;
@@ -117,6 +126,8 @@ static const struct of_device_id simple_mfd_i2c_of_match[] = {
{ .compatible = "maxim,max5970", .data = &maxim_max5970},
{ .compatible = "maxim,max5978", .data = &maxim_max5970},
{ .compatible = "maxim,max77705-battery", .data = &maxim_mon_max77705},
+ { .compatible = "raspberrypi,poe-core", &rpi_poe_core },
+ { .compatible = "raspberrypi,sensehat" },
{ .compatible = "silergy,sy7636a", .data = &silergy_sy7636a},
{ .compatible = "spacemit,p1", .data = &spacemit_p1, },
{}