mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	Provide missing default implementation for platform_init and drop copies of default platform_init, platform_setup and platform_heartbeet from platforms/*/setup.c Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * arch/xtensa/kernel/platform.c
 | 
						|
 *
 | 
						|
 * Default platform functions.
 | 
						|
 *
 | 
						|
 * This file is subject to the terms and conditions of the GNU General Public
 | 
						|
 * License.  See the file "COPYING" in the main directory of this archive
 | 
						|
 * for more details.
 | 
						|
 *
 | 
						|
 * Copyright (C) 2005 Tensilica Inc.
 | 
						|
 *
 | 
						|
 * Chris Zankel <chris@zankel.net>
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/printk.h>
 | 
						|
#include <linux/types.h>
 | 
						|
#include <asm/platform.h>
 | 
						|
#include <asm/timex.h>
 | 
						|
 | 
						|
#define _F(r,f,a,b)							\
 | 
						|
	r __platform_##f a b;                                   	\
 | 
						|
	r platform_##f a __attribute__((weak, alias("__platform_"#f)))
 | 
						|
 | 
						|
/*
 | 
						|
 * Default functions that are used if no platform specific function is defined.
 | 
						|
 * (Please, refer to include/asm-xtensa/platform.h for more information)
 | 
						|
 */
 | 
						|
 | 
						|
_F(void, init, (bp_tag_t *first), { });
 | 
						|
_F(void, setup, (char** cmd), { });
 | 
						|
_F(void, restart, (void), { while(1); });
 | 
						|
_F(void, halt, (void), { while(1); });
 | 
						|
_F(void, power_off, (void), { while(1); });
 | 
						|
_F(void, idle, (void), { __asm__ __volatile__ ("waiti 0" ::: "memory"); });
 | 
						|
_F(void, heartbeat, (void), { });
 | 
						|
 | 
						|
#ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT
 | 
						|
_F(void, calibrate_ccount, (void),
 | 
						|
{
 | 
						|
	pr_err("ERROR: Cannot calibrate cpu frequency! Assuming 10MHz.\n");
 | 
						|
	ccount_freq = 10 * 1000000UL;
 | 
						|
});
 | 
						|
#endif
 |