Linux 4.1.18
[linux/fpc-iii.git] / arch / mips / ralink / common.h
blob8e7d8e618fb941cf490d39e56b5bdd0477f69278
1 /*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
6 * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
7 */
9 #ifndef _RALINK_COMMON_H__
10 #define _RALINK_COMMON_H__
12 #define RAMIPS_SYS_TYPE_LEN 32
14 struct ralink_soc_info {
15 unsigned char sys_type[RAMIPS_SYS_TYPE_LEN];
16 unsigned char *compatible;
18 unsigned long mem_base;
19 unsigned long mem_size;
20 unsigned long mem_size_min;
21 unsigned long mem_size_max;
23 extern struct ralink_soc_info soc_info;
25 extern void ralink_of_remap(void);
27 extern void ralink_clk_init(void);
28 extern void ralink_clk_add(const char *dev, unsigned long rate);
30 extern void ralink_rst_init(void);
32 extern void prom_soc_init(struct ralink_soc_info *soc_info);
34 __iomem void *plat_of_remap_node(const char *node);
36 #endif /* _RALINK_COMMON_H__ */