MIPS: ralink: add memory definition to struct ralink_soc_info
authorJohn Crispin <blogic@openwrt.org>
Sat, 13 Apr 2013 13:10:14 +0000 (15:10 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 7 May 2013 23:19:11 +0000 (01:19 +0200)
Depending on the actual SoC we have a different base address as well as minimum
and maximum size for RAM. Add these fields to the per SoC structure.

Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/5179/

arch/mips/ralink/common.h

index 299119b294ca90fabf9048d5333dd8887c877078..83144c3fc5acc32c0b619b7b7f4ac9949a4e4e1e 100644 (file)
@@ -33,6 +33,11 @@ extern struct ralink_pinmux rt_gpio_pinmux;
 struct ralink_soc_info {
        unsigned char sys_type[RAMIPS_SYS_TYPE_LEN];
        unsigned char *compatible;
+
+       unsigned long mem_base;
+       unsigned long mem_size;
+       unsigned long mem_size_min;
+       unsigned long mem_size_max;
 };
 extern struct ralink_soc_info soc_info;