mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
ba91034503
Add basic support for Atheros AR2315+ 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/8239/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
17 lines
274 B
C
17 lines
274 B
C
#ifndef __AR2315_H
|
|
#define __AR2315_H
|
|
|
|
#ifdef CONFIG_SOC_AR2315
|
|
|
|
void ar2315_plat_time_init(void);
|
|
void ar2315_plat_mem_setup(void);
|
|
|
|
#else
|
|
|
|
static inline void ar2315_plat_time_init(void) {}
|
|
static inline void ar2315_plat_mem_setup(void) {}
|
|
|
|
#endif
|
|
|
|
#endif /* __AR2315_H */
|