diff options
Diffstat (limited to 'arch/mips/ralink/common.h')
-rw-r--r-- | arch/mips/ralink/common.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/arch/mips/ralink/common.h b/arch/mips/ralink/common.h new file mode 100644 index 000000000..4bc65b7a3 --- /dev/null +++ b/arch/mips/ralink/common.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
2 | /* | ||
3 | * | ||
4 | * Copyright (C) 2013 John Crispin <john@phrozen.org> | ||
5 | */ | ||
6 | |||
7 | #ifndef _RALINK_COMMON_H__ | ||
8 | #define _RALINK_COMMON_H__ | ||
9 | |||
10 | #define RAMIPS_SYS_TYPE_LEN 32 | ||
11 | |||
12 | struct ralink_soc_info { | ||
13 | unsigned char sys_type[RAMIPS_SYS_TYPE_LEN]; | ||
14 | unsigned char *compatible; | ||
15 | |||
16 | unsigned long mem_base; | ||
17 | unsigned long mem_size; | ||
18 | unsigned long mem_size_min; | ||
19 | unsigned long mem_size_max; | ||
20 | }; | ||
21 | extern struct ralink_soc_info soc_info; | ||
22 | |||
23 | extern void ralink_of_remap(void); | ||
24 | |||
25 | extern void ralink_clk_init(void); | ||
26 | extern void ralink_clk_add(const char *dev, unsigned long rate); | ||
27 | |||
28 | extern void ralink_rst_init(void); | ||
29 | |||
30 | extern void prom_soc_init(struct ralink_soc_info *soc_info); | ||
31 | |||
32 | __iomem void *plat_of_remap_node(const char *node); | ||
33 | |||
34 | #endif /* _RALINK_COMMON_H__ */ | ||