mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
a747371748
All boards based on AR5312/AR2315 SoC have a special structure located at the end of flash. This structure contains board-specific data such as Ethernet and Wireless MAC addresses. The flash is mapped to the memmory at predefined location. 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/8243/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
23 lines
510 B
C
23 lines
510 B
C
#ifndef __AR2315_H
|
|
#define __AR2315_H
|
|
|
|
#ifdef CONFIG_SOC_AR2315
|
|
|
|
void ar2315_arch_init_irq(void);
|
|
void ar2315_init_devices(void);
|
|
void ar2315_plat_time_init(void);
|
|
void ar2315_plat_mem_setup(void);
|
|
void ar2315_arch_init(void);
|
|
|
|
#else
|
|
|
|
static inline void ar2315_arch_init_irq(void) {}
|
|
static inline void ar2315_init_devices(void) {}
|
|
static inline void ar2315_plat_time_init(void) {}
|
|
static inline void ar2315_plat_mem_setup(void) {}
|
|
static inline void ar2315_arch_init(void) {}
|
|
|
|
#endif
|
|
|
|
#endif /* __AR2315_H */
|