diff options
| author | Tom Rini <trini@ti.com> | 2013-09-06 20:25:35 -0400 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-09-06 20:25:35 -0400 | 
| commit | 47f75cf2e1d8648e3438630f3a4bddf9b5caa25d (patch) | |
| tree | 1d0f8f8943d44245381f255a059e258c696bc5a8 /arch/arm/include/asm/arch-socfpga/reset_manager.h | |
| parent | 1affd4d4a3fe512050e1ad1636d9360c670da531 (diff) | |
| parent | 68e1747f9c0506159e8ecc9a4feb58e9c65a7b39 (diff) | |
| download | olio-uboot-2014.01-47f75cf2e1d8648e3438630f3a4bddf9b5caa25d.tar.xz olio-uboot-2014.01-47f75cf2e1d8648e3438630f3a4bddf9b5caa25d.zip | |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'arch/arm/include/asm/arch-socfpga/reset_manager.h')
| -rw-r--r-- | arch/arm/include/asm/arch-socfpga/reset_manager.h | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/arch/arm/include/asm/arch-socfpga/reset_manager.h b/arch/arm/include/asm/arch-socfpga/reset_manager.h index 13d735770..3e9547682 100644 --- a/arch/arm/include/asm/arch-socfpga/reset_manager.h +++ b/arch/arm/include/asm/arch-socfpga/reset_manager.h @@ -11,16 +11,20 @@ void reset_cpu(ulong addr);  void reset_deassert_peripherals_handoff(void);  struct socfpga_reset_manager { -	u32	padding1; +	u32	status;  	u32	ctrl; -	u32	padding2; -	u32	padding3; +	u32	counts; +	u32	padding1;  	u32	mpu_mod_reset;  	u32	per_mod_reset;  	u32	per2_mod_reset;  	u32	brg_mod_reset;  }; +#if defined(CONFIG_SOCFPGA_VIRTUAL_TARGET) +#define RSTMGR_CTRL_SWWARMRSTREQ_LSB 2 +#else  #define RSTMGR_CTRL_SWWARMRSTREQ_LSB 1 +#endif  #endif /* _RESET_MANAGER_H_ */ |