upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
443 B
31 lines
443 B
15 years ago
|
/*
|
||
|
* Copyright (C) 2009 Jens Scharsig (js_at_ng@scharsoft.de)
|
||
|
*
|
||
12 years ago
|
* SPDX-License-Identifier: GPL-2.0+
|
||
15 years ago
|
*/
|
||
|
|
||
|
#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;
|
||
14 years ago
|
} at91_st_t ;
|
||
15 years ago
|
|
||
|
#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
|