feat(allwinner): h616: add support for AXP313 PMIC

Many newer boards with the H616 and its sibling H618 are now paired
with the X-Powers AXP313 PMIC. This is a simpler PMIC, with only a few
voltage rails and no extra functionality except the power key support.
In contrast to the AXP305 it can only be controlled via I2C.

Add a check to look for the AXP313 compatible string in the devicetree,
and set the PMIC type and I2C address accordingly, if one is found.
With only very few voltage rails available, all of them are mostly in
use and are thus enabled at reset already, so we can skip the regulator
setup entirely.

Change-Id: I01962854109e43793b4f56553c1ca9e1f752e30d
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
diff --git a/plat/allwinner/sun50i_h616/sunxi_power.c b/plat/allwinner/sun50i_h616/sunxi_power.c
index 9a130c4..ac8a68e 100644
--- a/plat/allwinner/sun50i_h616/sunxi_power.c
+++ b/plat/allwinner/sun50i_h616/sunxi_power.c
@@ -33,6 +33,7 @@
 static enum pmic_type {
 	UNKNOWN,
 	AXP305,
+	AXP313,
 } pmic;
 
 static uint8_t get_rsb_rt_address(uint16_t hw_addr)
@@ -147,6 +148,13 @@
 	}
 
 	if (pmic == UNKNOWN) {
+		node = fdt_node_offset_by_compatible(fdt, 0, "x-powers,axp313a");
+		if (node >= 0) {
+			pmic = AXP313;
+		}
+	}
+
+	if (pmic == UNKNOWN) {
 		INFO("PMIC: No known PMIC in DT, skipping setup.\n");
 		return -ENODEV;
 	}
@@ -185,6 +193,16 @@
 			pmic = UNKNOWN;
 		}
 		break;
+	case 0x48:				/* AXP1530 */
+	case 0x4b:				/* AXP313A */
+	case 0x4c:				/* AXP313B */
+		if (pmic == AXP313) {
+			INFO("PMIC: found AXP313\n");
+			/* no regulators to set up */
+		} else {
+			pmic = UNKNOWN;
+		}
+		break;
 	}
 
 	if (is_using_rsb()) {
@@ -218,6 +236,9 @@
 	case AXP305:
 		axp_setbits(0x32, BIT(7));
 		break;
+	case AXP313:
+		axp_setbits(0x1a, BIT(7));
+		break;
 	default:
 		break;
 	}