59b559d7a3
Introduce the plat-nomadik folder for ST-Ericsson machines including the existing nomadik 8815 architecture. This also moves the existing MTU (MultiTimerUnit) of nomadik 8815 to the proposed plat-nomadik and adds HAS_MTU. The patch has been re-based to 2.6.32-rc6 Signed-off-by: srinidhi kasagar <srinidhi.kasagar@stericsson.com> Acked-by: Alessandro Rubini <rubini@unipv.it> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
23 lines
444 B
C
23 lines
444 B
C
|
|
/*
|
|
* 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
|
|
|
|
#include <asm/mach/time.h>
|
|
#include <linux/init.h>
|
|
|
|
#ifdef CONFIG_NOMADIK_8815
|
|
|
|
extern void cpu8815_map_io(void);
|
|
extern void cpu8815_platform_init(void);
|
|
extern void cpu8815_init_irq(void);
|
|
extern void nmdk_timer_init(void);
|
|
|
|
#endif /* NOMADIK_8815 */
|
|
|
|
#endif /* __ASM_ARCH_SETUP_H */
|