Re: [PATCH v3 5/5] pmic: qcom: dont use dev_read_addr to get USID

2023-11-17 Thread Sumit Garg
On Tue, 14 Nov 2023 at 19:18, Caleb Connolly wrote: > > Linux DTs stuff a value indicating if the USID is a USID or a GSID in the > reg property, the Linux SPMI driver then reads the two address cells > separately. U-boot's dev_read_addr() doesn't know how to handle this, so > use ofnode_read_u32_

[PATCH v3 5/5] pmic: qcom: dont use dev_read_addr to get USID

2023-11-14 Thread Caleb Connolly
Linux DTs stuff a value indicating if the USID is a USID or a GSID in the reg property, the Linux SPMI driver then reads the two address cells separately. U-boot's dev_read_addr() doesn't know how to handle this, so use ofnode_read_u32_index() to get just the USID. The Qcom pmic driver doesn't hav