2009-11-28 10:17:18 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 ST-Ericsson.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* These symbols are needed for board-specific files to call their
|
|
|
|
* own cpu-specific files
|
|
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SETUP_H
|
|
|
|
#define __ASM_ARCH_SETUP_H
|
|
|
|
|
2013-06-14 17:22:40 +04:00
|
|
|
#include <asm/mach/arch.h>
|
2009-11-28 10:17:18 +03:00
|
|
|
#include <asm/mach/time.h>
|
|
|
|
#include <linux/init.h>
|
2012-07-06 14:46:23 +04:00
|
|
|
#include <linux/mfd/abx500/ab8500.h>
|
2009-11-28 10:17:18 +03:00
|
|
|
|
2013-06-14 17:22:40 +04:00
|
|
|
void ux500_restart(enum reboot_mode mode, const char *cmd);
|
|
|
|
|
2015-05-14 11:37:05 +03:00
|
|
|
void __init ux500_setup_id(void);
|
2010-05-03 10:46:56 +04:00
|
|
|
|
2010-05-03 10:39:02 +04:00
|
|
|
extern void __init ux500_init_irq(void);
|
2010-12-05 14:49:03 +03:00
|
|
|
|
2012-02-06 23:22:24 +04:00
|
|
|
extern struct device *ux500_soc_device_init(const char *soc_id);
|
2010-12-05 15:35:12 +03:00
|
|
|
|
2012-11-08 23:40:59 +04:00
|
|
|
extern void ux500_timer_init(void);
|
2010-03-01 07:03:31 +03:00
|
|
|
|
2011-09-08 16:15:22 +04:00
|
|
|
extern void ux500_cpu_die(unsigned int cpu);
|
|
|
|
|
2009-11-28 10:17:18 +03:00
|
|
|
#endif /* __ASM_ARCH_SETUP_H */
|