mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
8e56130dcb
Linux runs in non-secure mode on highbank, so we need secure monitor calls to enable and disable the PL310. Rather than invent new smc calls, the same calling convention used by OMAP is used here. Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Olof Johansson <olof@lixom.net>
12 lines
372 B
C
12 lines
372 B
C
extern void highbank_set_cpu_jump(int cpu, void *jump_addr);
|
|
extern void highbank_clocks_init(void);
|
|
extern void highbank_restart(char, const char *);
|
|
extern void __iomem *scu_base_addr;
|
|
#ifdef CONFIG_DEBUG_HIGHBANK_UART
|
|
extern void highbank_lluart_map_io(void);
|
|
#else
|
|
static inline void highbank_lluart_map_io(void) {}
|
|
#endif
|
|
|
|
extern void highbank_smc1(int fn, int arg);
|