mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
spmi: msm: correct max_channels for v5 controllers
Commitee1d8aa5ec
("spmi: msm: support controller version 7") broke support for channels > 128 on v5 controllers, resulting in some peripherals (like the power button / pon) working but others (like gpios) reading bogus data. Correct max_channels for v5 controllers. Fixes:ee1d8aa5ec
("spmi: msm: support controller version 7") Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
This commit is contained in:
@@ -271,7 +271,7 @@ static int msm_spmi_probe(struct udevice *dev)
|
||||
} else if (hw_ver < PMIC_ARB_VERSION_V7_MIN) {
|
||||
priv->arb_ver = V5;
|
||||
priv->arb_chnl = core_addr + APID_MAP_OFFSET_V5;
|
||||
priv->max_channels = SPMI_MAX_CHANNELS;
|
||||
priv->max_channels = SPMI_MAX_CHANNELS_V5;
|
||||
priv->spmi_cnfg = dev_read_addr_name(dev, "cnfg");
|
||||
} else {
|
||||
/* TOFIX: handle second bus */
|
||||
|
Reference in New Issue
Block a user