Files
Linux_Drivers/u-boot-2021.10/arch/arm/mach-at91/include/mach/at91_st.h
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

30 lines
443 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* Copyright (C) 2009 Jens Scharsig (js_at_ng@scharsoft.de)
*/
#ifndef AT91_ST_H
#define AT91_ST_H
typedef struct at91_st {
u32 cr;
u32 pimr;
u32 wdmr;
u32 rtmr;
u32 sr;
u32 ier;
u32 idr;
u32 imr;
u32 rtar;
u32 crtr;
} at91_st_t ;
#define AT91_ST_CR_WDRST 1
#define AT91_ST_WDMR_WDV(x) (x & 0xFFFF)
#define AT91_ST_WDMR_RSTEN 0x00010000
#define AT91_ST_WDMR_EXTEN 0x00020000
#endif