Bryan O'Donoghue | 3fb5b42 | 2018-05-25 16:43:22 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef IMX_AIPS_H |
| 8 | #define IMX_AIPS_H |
Bryan O'Donoghue | 3fb5b42 | 2018-05-25 16:43:22 +0100 | [diff] [blame] | 9 | |
| 10 | #include <stdint.h> |
| 11 | |
| 12 | #define AIPSTZ_OAPCR_COUNT 0x05 |
| 13 | |
| 14 | struct aipstz_regs { |
| 15 | uint32_t aipstz_mpr; |
| 16 | uint32_t res[15]; |
| 17 | uint32_t aipstz_opacr[AIPSTZ_OAPCR_COUNT]; |
| 18 | }; |
| 19 | |
| 20 | void imx_aips_init(void); |
| 21 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 22 | #endif /* IMX_AIPS_H */ |