imx_aips.h 380 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef IMX_AIPS_H
  7. #define IMX_AIPS_H
  8. #include <stdint.h>
  9. #define AIPSTZ_OAPCR_COUNT 0x05
  10. struct aipstz_regs {
  11. uint32_t aipstz_mpr;
  12. uint32_t res[15];
  13. uint32_t aipstz_opacr[AIPSTZ_OAPCR_COUNT];
  14. };
  15. void imx_aips_init(void);
  16. #endif /* IMX_AIPS_H */