mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 01:57:15 +07:00
3b12308f33
Add basic support for Atheros AR5312/AR2312 SoCs: registers definition file and initial setup code. 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/8238/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
17 lines
274 B
C
17 lines
274 B
C
#ifndef __AR5312_H
|
|
#define __AR5312_H
|
|
|
|
#ifdef CONFIG_SOC_AR5312
|
|
|
|
void ar5312_plat_time_init(void);
|
|
void ar5312_plat_mem_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void ar5312_plat_time_init(void) {}
|
|
static inline void ar5312_plat_mem_setup(void) {}
|
|
|
|
#endif
|
|
|
|
#endif /* __AR5312_H */
|