28ad94ec61
This patch adds the basic infrastructure for the Nomadik 8815 CPU and the "Nomadik Hardware Kit" NHK8815. This patch only includes the serial console and core stuff, no drivers. Signed-off-by: Alessandro Rubini <rubini@unipv.it> Acked-by: Andrea Gallo <andrea.gallo@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
22 lines
448 B
C
22 lines
448 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 struct sys_timer nomadik_timer;
|
|
|
|
#endif /* NOMADIK_8815 */
|
|
|
|
#endif /* __ASM_ARCH_SETUP_H */
|