 ba62a8593d
			
		
	
	
	ba62a8593d
	
	
	
		
			
			All functions declared in this file are gone. Signed-off-by: Arnd Bergmann <arnd@arndb.de> [nicolas.ferre@atmel.com: re-order patches so modify board-dt-sam9] Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			814 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			814 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  *  Setup code for AT91SAM Evaluation Kits with Device Tree support
 | |
|  *
 | |
|  *  Copyright (C) 2011 Atmel,
 | |
|  *                2011 Nicolas Ferre <nicolas.ferre@atmel.com>
 | |
|  *
 | |
|  * Licensed under GPLv2 or later.
 | |
|  */
 | |
| 
 | |
| #include <linux/types.h>
 | |
| #include <linux/init.h>
 | |
| #include <linux/module.h>
 | |
| #include <linux/gpio.h>
 | |
| #include <linux/of.h>
 | |
| #include <linux/of_irq.h>
 | |
| #include <linux/clk-provider.h>
 | |
| 
 | |
| #include <asm/setup.h>
 | |
| #include <asm/irq.h>
 | |
| #include <asm/mach/arch.h>
 | |
| #include <asm/mach/map.h>
 | |
| #include <asm/mach/irq.h>
 | |
| 
 | |
| #include "generic.h"
 | |
| 
 | |
| static const char *at91_dt_board_compat[] __initdata = {
 | |
| 	"atmel,at91sam9",
 | |
| 	NULL
 | |
| };
 | |
| 
 | |
| DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM (Device Tree)")
 | |
| 	/* Maintainer: Atmel */
 | |
| 	.map_io		= at91_map_io,
 | |
| 	.init_early	= at91_dt_initialize,
 | |
| 	.dt_compat	= at91_dt_board_compat,
 | |
| MACHINE_END
 |