You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
12 years ago
|
From 438579e0fd477cec8584bdf012ea51cf4ad8e05c Mon Sep 17 00:00:00 2001
|
||
12 years ago
|
From: John Crispin <blogic@openwrt.org>
|
||
|
Date: Sat, 13 Apr 2013 15:10:14 +0200
|
||
12 years ago
|
Subject: [PATCH 122/164] MIPS: ralink: add memory definition to struct
|
||
12 years ago
|
ralink_soc_info
|
||
|
|
||
|
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 | 5 +++++
|
||
|
1 file changed, 5 insertions(+)
|
||
|
|
||
12 years ago
|
diff --git a/arch/mips/ralink/common.h b/arch/mips/ralink/common.h
|
||
|
index 299119b..83144c3 100644
|
||
12 years ago
|
--- a/arch/mips/ralink/common.h
|
||
|
+++ b/arch/mips/ralink/common.h
|
||
12 years ago
|
@@ -33,6 +33,11 @@ extern struct ralink_pinmux rt_gpio_pinmux;
|
||
12 years ago
|
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;
|
||
|
|
||
12 years ago
|
--
|
||
|
1.7.10.4
|
||
|
|