 6de714c21a
			
		
	
	
	6de714c21a
	
	
	
		
			
			Make sure the RTC-interrupts are masked at boot by adding a new helper function to be used at SOC-init. This fixes hanged boot on all AT91 SOCs with an RTC (but RM9200), for example, after a reset during an RTC-update or if an RTC-alarm goes off after shutdown (e.g. when using RTC wakeup). The RTC and RTT-peripherals are powered by backup power (VDDBU) (on all AT91 SOCs but RM9200) and are not reset on wake-up, user, watchdog or software reset. This means that their interrupts may be enabled during early boot if, for example, they where not disabled during a previous shutdown (e.g. due to a buggy driver or a non-clean shutdown such as a user reset). Furthermore, an RTC or RTT-alarm may also be active. The RTC and RTT-interrupts use the shared system-interrupt line, which is also used by the PIT, and if an interrupt occurs before a handler (e.g. RTC-driver) has been installed this leads to the system interrupt being disabled and prevents the system from booting. Note that when boot hangs due to an early RTC or RTT-interrupt, the only way to get the system to start again is to remove the backup power (e.g. battery) or to disable the interrupt manually from the bootloader. In particular, a user reset is not sufficient. Signed-off-by: Johan Hovold <jhovold@gmail.com> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Cc: stable@vger.kernel.org # 3.11.x
		
			
				
	
	
		
			71 lines
		
	
	
	
		
			2.6 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			2.6 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Chip-specific header file for the AT91SAM9x5 family
 | |
|  *
 | |
|  *  Copyright (C) 2009-2012 Atmel Corporation.
 | |
|  *
 | |
|  * Common definitions.
 | |
|  * Based on AT91SAM9x5 datasheet.
 | |
|  *
 | |
|  * Licensed under GPLv2 or later.
 | |
|  */
 | |
| 
 | |
| #ifndef AT91SAM9X5_H
 | |
| #define AT91SAM9X5_H
 | |
| 
 | |
| /*
 | |
|  * Peripheral identifiers/interrupts.
 | |
|  */
 | |
| #define AT91SAM9X5_ID_PIOAB	2	/* Parallel I/O Controller A and B */
 | |
| #define AT91SAM9X5_ID_PIOCD	3	/* Parallel I/O Controller C and D */
 | |
| #define AT91SAM9X5_ID_SMD	4	/* SMD Soft Modem (SMD) */
 | |
| #define AT91SAM9X5_ID_USART0	5	/* USART 0 */
 | |
| #define AT91SAM9X5_ID_USART1	6	/* USART 1 */
 | |
| #define AT91SAM9X5_ID_USART2	7	/* USART 2 */
 | |
| #define AT91SAM9X5_ID_USART3	8	/* USART 3 */
 | |
| #define AT91SAM9X5_ID_TWI0	9	/* Two-Wire Interface 0 */
 | |
| #define AT91SAM9X5_ID_TWI1	10	/* Two-Wire Interface 1 */
 | |
| #define AT91SAM9X5_ID_TWI2	11	/* Two-Wire Interface 2 */
 | |
| #define AT91SAM9X5_ID_MCI0	12	/* High Speed Multimedia Card Interface 0 */
 | |
| #define AT91SAM9X5_ID_SPI0	13	/* Serial Peripheral Interface 0 */
 | |
| #define AT91SAM9X5_ID_SPI1	14	/* Serial Peripheral Interface 1 */
 | |
| #define AT91SAM9X5_ID_UART0	15	/* UART 0 */
 | |
| #define AT91SAM9X5_ID_UART1	16	/* UART 1 */
 | |
| #define AT91SAM9X5_ID_TCB	17	/* Timer Counter 0, 1, 2, 3, 4 and 5 */
 | |
| #define AT91SAM9X5_ID_PWM	18	/* Pulse Width Modulation Controller */
 | |
| #define AT91SAM9X5_ID_ADC	19	/* ADC Controller */
 | |
| #define AT91SAM9X5_ID_DMA0	20	/* DMA Controller 0 */
 | |
| #define AT91SAM9X5_ID_DMA1	21	/* DMA Controller 1 */
 | |
| #define AT91SAM9X5_ID_UHPHS	22	/* USB Host High Speed */
 | |
| #define AT91SAM9X5_ID_UDPHS	23	/* USB Device High Speed */
 | |
| #define AT91SAM9X5_ID_EMAC0	24	/* Ethernet MAC0 */
 | |
| #define AT91SAM9X5_ID_LCDC	25	/* LCD Controller */
 | |
| #define AT91SAM9X5_ID_ISI	25	/* Image Sensor Interface */
 | |
| #define AT91SAM9X5_ID_MCI1	26	/* High Speed Multimedia Card Interface 1 */
 | |
| #define AT91SAM9X5_ID_EMAC1	27	/* Ethernet MAC1 */
 | |
| #define AT91SAM9X5_ID_SSC	28	/* Synchronous Serial Controller */
 | |
| #define AT91SAM9X5_ID_CAN0	29	/* CAN Controller 0 */
 | |
| #define AT91SAM9X5_ID_CAN1	30	/* CAN Controller 1 */
 | |
| #define AT91SAM9X5_ID_IRQ0	31	/* Advanced Interrupt Controller */
 | |
| 
 | |
| /*
 | |
|  * User Peripheral physical base addresses.
 | |
|  */
 | |
| #define AT91SAM9X5_BASE_USART0	0xf801c000
 | |
| #define AT91SAM9X5_BASE_USART1	0xf8020000
 | |
| #define AT91SAM9X5_BASE_USART2	0xf8024000
 | |
| 
 | |
| /*
 | |
|  * System Peripherals
 | |
|  */
 | |
| #define AT91SAM9X5_BASE_RTC	0xfffffeb0
 | |
| 
 | |
| /*
 | |
|  * Internal Memory.
 | |
|  */
 | |
| #define AT91SAM9X5_SRAM_BASE	0x00300000	/* Internal SRAM base address */
 | |
| #define AT91SAM9X5_SRAM_SIZE	SZ_32K		/* Internal SRAM size (32Kb) */
 | |
| 
 | |
| #define AT91SAM9X5_ROM_BASE	0x00400000	/* Internal ROM base address */
 | |
| #define AT91SAM9X5_ROM_SIZE	SZ_64K		/* Internal ROM size (64Kb) */
 | |
| 
 | |
| #endif
 |