Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Marek Vasut | 8da06a4 | 2014-09-15 06:28:01 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Marek Vasut <marex@denx.de> |
Marek Vasut | 8da06a4 | 2014-09-15 06:28:01 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __SOCFPGA_SCU_H__ |
| 7 | #define __SOCFPGA_SCU_H__ |
| 8 | |
| 9 | struct scu_registers { |
| 10 | u32 ctrl; /* 0x00 */ |
| 11 | u32 cfg; |
| 12 | u32 cpsr; |
| 13 | u32 iassr; |
| 14 | u32 _pad_0x10_0x3c[12]; /* 0x10 */ |
| 15 | u32 fsar; /* 0x40 */ |
| 16 | u32 fear; |
Ben Kalo | d5fba89 | 2018-05-15 19:45:37 +0300 | [diff] [blame] | 17 | u32 _pad_0x48_0x4c[2]; |
| 18 | u32 acr; /* 0x50 */ |
Marek Vasut | 8da06a4 | 2014-09-15 06:28:01 +0200 | [diff] [blame] | 19 | u32 sacr; |
| 20 | }; |
| 21 | |
| 22 | #endif /* __SOCFPGA_SCU_H__ */ |