mpc5121.h 664 B

123456789101112131415161718192021222324
  1. /*
  2. * MPC5121 Prototypes and definitions
  3. *
  4. * This file is licensed under the terms of the GNU General Public
  5. * License version 2.
  6. */
  7. #ifndef __ASM_POWERPC_MPC5121_H__
  8. #define __ASM_POWERPC_MPC5121_H__
  9. /* MPC512x Reset module registers */
  10. struct mpc512x_reset_module {
  11. u32 rcwlr; /* Reset Configuration Word Low Register */
  12. u32 rcwhr; /* Reset Configuration Word High Register */
  13. u32 reserved1;
  14. u32 reserved2;
  15. u32 rsr; /* Reset Status Register */
  16. u32 rmr; /* Reset Mode Register */
  17. u32 rpr; /* Reset Protection Register */
  18. u32 rcr; /* Reset Control Register */
  19. u32 rcer; /* Reset Control Enable Register */
  20. };
  21. #endif /* __ASM_POWERPC_MPC5121_H__ */