diff options
| author | Paul Kocialkowski <[email protected]> | 2019-11-28 15:27:50 +0100 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2019-12-05 23:53:07 +0800 |
| commit | b0c5e37d0e8aaaadec6298fc7932797b1eb38d9c (patch) | |
| tree | d670cfba52001190b406866551bad20e89318914 | |
| parent | 1b8114ac1e69e2e43337e594edee3e021d12ed85 (diff) | |
rockchip: px30: Fixup PMUGRF registers layout order
According to the PX30 TRM, the iomux registers come first, before the pull
and strength control registers.
Signed-off-by: Paul Kocialkowski <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
Reviewed-by: Heiko Stuebner <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/arch-rockchip/grf_px30.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/arm/include/asm/arch-rockchip/grf_px30.h b/arch/arm/include/asm/arch-rockchip/grf_px30.h index c167bb42fac..3d2a8770322 100644 --- a/arch/arm/include/asm/arch-rockchip/grf_px30.h +++ b/arch/arm/include/asm/arch-rockchip/grf_px30.h @@ -112,18 +112,18 @@ struct px30_grf { check_member(px30_grf, mac_con1, 0x904); struct px30_pmugrf { - unsigned int gpio0a_e; - unsigned int gpio0b_e; - unsigned int gpio0c_e; - unsigned int gpio0d_e; - unsigned int gpio0a_p; - unsigned int gpio0b_p; - unsigned int gpio0c_p; - unsigned int gpio0d_p; unsigned int gpio0al_iomux; unsigned int gpio0bl_iomux; unsigned int gpio0cl_iomux; unsigned int gpio0dl_iomux; + unsigned int gpio0a_p; + unsigned int gpio0b_p; + unsigned int gpio0c_p; + unsigned int gpio0d_p; + unsigned int gpio0a_e; + unsigned int gpio0b_e; + unsigned int gpio0c_e; + unsigned int gpio0d_e; unsigned int gpio0l_sr; unsigned int gpio0h_sr; unsigned int gpio0l_smt; |
