package: fix insmod on install
[openwrt/openwrt.git] / target / linux / ramips / patches-3.8 / 0124-MIPS-ralink-add-memory-definition-for-RT2880.patch
1 From 0151f5f0dbf43b6b3718b0d1d403c87429ac0313 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Sat, 13 Apr 2013 15:37:37 +0200
4 Subject: [PATCH 124/137] MIPS: ralink: add memory definition for RT2880
5
6 Populate struct soc_info with the data that describes our RAM window.
7
8 Signed-off-by: John Crispin <blogic@openwrt.org>
9 Patchwork: http://patchwork.linux-mips.org/patch/5181/
10 ---
11 arch/mips/include/asm/mach-ralink/rt288x.h | 4 ++++
12 arch/mips/ralink/rt288x.c | 4 ++++
13 2 files changed, 8 insertions(+)
14
15 --- a/arch/mips/include/asm/mach-ralink/rt288x.h
16 +++ b/arch/mips/include/asm/mach-ralink/rt288x.h
17 @@ -46,4 +46,8 @@
18
19 #define CLKCFG_SRAM_CS_N_WDT BIT(9)
20
21 +#define RT2880_SDRAM_BASE 0x08000000
22 +#define RT2880_MEM_SIZE_MIN 2
23 +#define RT2880_MEM_SIZE_MAX 128
24 +
25 #endif
26 --- a/arch/mips/ralink/rt288x.c
27 +++ b/arch/mips/ralink/rt288x.c
28 @@ -136,4 +136,8 @@ void prom_soc_init(struct ralink_soc_inf
29 name,
30 (id >> CHIP_ID_ID_SHIFT) & CHIP_ID_ID_MASK,
31 (id & CHIP_ID_REV_MASK));
32 +
33 + soc_info->mem_base = RT2880_SDRAM_BASE;
34 + soc_info->mem_size_min = RT2880_MEM_SIZE_MIN;
35 + soc_info->mem_size_max = RT2880_MEM_SIZE_MAX;
36 }