mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
1753e74ed8
Add interrupts initialization and handling routines, also add AHB bus error interrupt handlers for both SoCs families. Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com> Cc: Linux MIPS <linux-mips@linux-mips.org> Patchwork: https://patchwork.linux-mips.org/patch/8240/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
19 lines
356 B
C
19 lines
356 B
C
#ifndef __AR2315_H
|
|
#define __AR2315_H
|
|
|
|
#ifdef CONFIG_SOC_AR2315
|
|
|
|
void ar2315_arch_init_irq(void);
|
|
void ar2315_plat_time_init(void);
|
|
void ar2315_plat_mem_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void ar2315_arch_init_irq(void) {}
|
|
static inline void ar2315_plat_time_init(void) {}
|
|
static inline void ar2315_plat_mem_setup(void) {}
|
|
|
|
#endif
|
|
|
|
#endif /* __AR2315_H */
|