mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	Move SAM9X60's PM part under SoC config flag. This allows the building of SAM9X60 platform withouth depending on CONFIG_SOC_AT91SAM9 flag, allowing us to select only necessary config flags for SAM9X60. Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Link: https://lore.kernel.org/r/1575035505-6310-4-git-send-email-claudiu.beznea@microchip.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
		
			
				
	
	
		
			33 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-or-later
 | 
						|
/*
 | 
						|
 *  Setup code for AT91SAM9
 | 
						|
 *
 | 
						|
 *  Copyright (C) 2011 Atmel,
 | 
						|
 *                2011 Nicolas Ferre <nicolas.ferre@atmel.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/of.h>
 | 
						|
#include <linux/of_platform.h>
 | 
						|
 | 
						|
#include <asm/mach/arch.h>
 | 
						|
#include <asm/system_misc.h>
 | 
						|
 | 
						|
#include "generic.h"
 | 
						|
 | 
						|
static void __init at91sam9_init(void)
 | 
						|
{
 | 
						|
	of_platform_default_populate(NULL, NULL, NULL);
 | 
						|
 | 
						|
	at91sam9_pm_init();
 | 
						|
}
 | 
						|
 | 
						|
static const char *const at91_dt_board_compat[] __initconst = {
 | 
						|
	"atmel,at91sam9",
 | 
						|
	NULL
 | 
						|
};
 | 
						|
 | 
						|
DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
 | 
						|
	/* Maintainer: Atmel */
 | 
						|
	.init_machine	= at91sam9_init,
 | 
						|
	.dt_compat	= at91_dt_board_compat,
 | 
						|
MACHINE_END
 |