Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Heiko Schocher | 420cd0a | 2011-09-14 19:44:00 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 DENX Software Engineering GmbH |
| 4 | * Heiko Schocher <hs@denx.de> |
Heiko Schocher | 420cd0a | 2011-09-14 19:44:00 +0000 | [diff] [blame] | 5 | */ |
| 6 | #ifndef _TIMER_DEFS_H_ |
| 7 | #define _TIMER_DEFS_H_ |
| 8 | |
| 9 | struct davinci_timer { |
| 10 | u_int32_t pid12; |
| 11 | u_int32_t emumgt; |
| 12 | u_int32_t na1; |
| 13 | u_int32_t na2; |
| 14 | u_int32_t tim12; |
| 15 | u_int32_t tim34; |
| 16 | u_int32_t prd12; |
| 17 | u_int32_t prd34; |
| 18 | u_int32_t tcr; |
| 19 | u_int32_t tgcr; |
| 20 | u_int32_t wdtcr; |
| 21 | }; |
| 22 | |
Heiko Schocher | 420cd0a | 2011-09-14 19:44:00 +0000 | [diff] [blame] | 23 | #endif /* _TIMER_DEFS_H_ */ |