mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-14 19:26:58 +02:00
The last usage of the DV_TIMER_ and DV_WDT_ definitions were removed in commits8d77576371
("ARM: davinci: remove support for cam_enc_4xx") andcef443c166
("arm: davinci: remove leftover code for dm* SoCs"), respectively. Signed-off-by: Emil Kronborg <emil.kronborg@protonmail.com> Reviewed-by: Stefan Roese <sr@denx.de>
24 lines
425 B
C
24 lines
425 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2011 DENX Software Engineering GmbH
|
|
* Heiko Schocher <hs@denx.de>
|
|
*/
|
|
#ifndef _TIMER_DEFS_H_
|
|
#define _TIMER_DEFS_H_
|
|
|
|
struct davinci_timer {
|
|
u_int32_t pid12;
|
|
u_int32_t emumgt;
|
|
u_int32_t na1;
|
|
u_int32_t na2;
|
|
u_int32_t tim12;
|
|
u_int32_t tim34;
|
|
u_int32_t prd12;
|
|
u_int32_t prd34;
|
|
u_int32_t tcr;
|
|
u_int32_t tgcr;
|
|
u_int32_t wdtcr;
|
|
};
|
|
|
|
#endif /* _TIMER_DEFS_H_ */
|