Skip to content

Commit

Permalink
MIPS: ralink: add memory definition to struct ralink_soc_info
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
John Crispin authored and Ralf Baechle committed May 7, 2013
1 parent 4d9f77d commit 629e39e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/mips/ralink/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 629e39e

Please sign in to comment.