2006-11-30 18:23:18 +03:00
/*
2008-08-05 19:14:15 +04:00
* arch / arm / mach - at91 / include / mach / at91_rstc . h
2006-11-30 18:23:18 +03:00
*
2008-09-19 00:44:20 +04:00
* Copyright ( C ) 2007 Andrew Victor
* Copyright ( C ) 2007 Atmel Corporation .
*
2006-11-30 18:23:18 +03:00
* Reset Controller ( RSTC ) - System peripherals regsters .
* Based on AT91SAM9261 datasheet revision D .
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*/
# ifndef AT91_RSTC_H
# define AT91_RSTC_H
2011-11-17 21:25:52 +04:00
# ifndef __ASSEMBLY__
extern void __iomem * at91_rstc_base ;
# define at91_rstc_read(field) \
__raw_readl ( at91_rstc_base + field )
# define at91_rstc_write(field, value) \
2013-04-07 18:49:59 +04:00
__raw_writel ( value , at91_rstc_base + field )
2011-11-17 21:25:52 +04:00
# else
. extern at91_rstc_base
# endif
# define AT91_RSTC_CR 0x00 /* Reset Controller Control Register */
2006-11-30 18:23:18 +03:00
# define AT91_RSTC_PROCRST (1 << 0) /* Processor Reset */
# define AT91_RSTC_PERRST (1 << 2) /* Peripheral Reset */
# define AT91_RSTC_EXTRST (1 << 3) /* External Reset */
2007-02-16 12:37:10 +03:00
# define AT91_RSTC_KEY (0xa5 << 24) /* KEY Password */
2006-11-30 18:23:18 +03:00
2011-11-17 21:25:52 +04:00
# define AT91_RSTC_SR 0x04 /* Reset Controller Status Register */
2006-11-30 18:23:18 +03:00
# define AT91_RSTC_URSTS (1 << 0) /* User Reset Status */
# define AT91_RSTC_RSTTYP (7 << 8) /* Reset Type */
# define AT91_RSTC_RSTTYP_GENERAL (0 << 8)
# define AT91_RSTC_RSTTYP_WAKEUP (1 << 8)
# define AT91_RSTC_RSTTYP_WATCHDOG (2 << 8)
# define AT91_RSTC_RSTTYP_SOFTWARE (3 << 8)
# define AT91_RSTC_RSTTYP_USER (4 << 8)
# define AT91_RSTC_NRSTL (1 << 16) /* NRST Pin Level */
# define AT91_RSTC_SRCMP (1 << 17) /* Software Reset Command in Progress */
2011-11-17 21:25:52 +04:00
# define AT91_RSTC_MR 0x08 /* Reset Controller Mode Register */
2006-11-30 18:23:18 +03:00
# define AT91_RSTC_URSTEN (1 << 0) /* User Reset Enable */
# define AT91_RSTC_URSTIEN (1 << 4) /* User Reset Interrupt Enable */
# define AT91_RSTC_ERSTL (0xf << 8) /* External Reset Length */
# endif