MLK-10038-1: mfd: si476x-i2c: Add support of si476x-rev4.0 board
authorZidan Wang <b50113@freescale.com>
Fri, 19 Dec 2014 03:13:01 +0000 (11:13 +0800)
committerNitin Garg <nitin.garg@nxp.com>
Mon, 19 Mar 2018 19:48:14 +0000 (14:48 -0500)
Currently, si476x-rev1.0 and si476x-rev4.0 board just support A10 compatible
command set. For si476x-rev1.0 board, its firmware revision is unsupported and
will revert to A10 compatible function. For si476x-rev4.0 board, its firmware
revision is two and will use A30 function, but A30 command set function can't
work for the rev4.0 board.
So make the command set configurable in dts. If "revision-a10" is present,
set the revision to SI476X_REVISION_A10 to use A10 compatible commit set.
Otherwise, get the revision from si476x register.

Signed-off-by: Zidan Wang <b50113@freescale.com>
(cherry picked from commit b648714c3b71ee084188ae04b1e6a6f2554fe2cb)

drivers/mfd/si476x-i2c.c

index d1c7b3c..5013a98 100644 (file)
@@ -811,10 +811,14 @@ static int si476x_core_probe(struct i2c_client *client,
        core->power_state = SI476X_POWER_UP_FULL;
        si476x_core_set_power_state(core, SI476X_POWER_DOWN);
 
-       rval = si476x_core_get_revision_info(core);
-       if (rval < 0) {
-               rval = -ENODEV;
-               goto free_kfifo;
+       if (of_property_read_bool(client->dev.of_node, "revision-a10"))
+               core->revision = SI476X_REVISION_A10;
+       else {
+               rval = si476x_core_get_revision_info(core);
+               if (rval < 0) {
+                       rval = -ENODEV;
+                       goto free_kfifo;
+               }
        }
 
        cell_num = 0;