ramips: rt305x: use different memory size setup for RT3352
SVN-Revision: 31400
This commit is contained in:
parent
818aeba960
commit
fb69e28eaf
2 changed files with 13 additions and 2 deletions
|
@ -54,6 +54,9 @@ static inline int soc_is_rt3352(void)
|
|||
#define RT305X_MEM_SIZE_MIN (2 * 1024 * 1024)
|
||||
#define RT305X_MEM_SIZE_MAX (64 * 1024 * 1024)
|
||||
|
||||
#define RT3352_MEM_SIZE_MIN (2 * 1024 * 1024)
|
||||
#define RT3352_MEM_SIZE_MAX (256 * 1024 * 1024)
|
||||
|
||||
#define RT305X_CPU_IRQ_BASE 0
|
||||
#define RT305X_INTC_IRQ_BASE 8
|
||||
#define RT305X_INTC_IRQ_COUNT 32
|
||||
|
|
|
@ -67,8 +67,16 @@ void __init ramips_soc_prom_init(void)
|
|||
(id & CHIP_ID_REV_MASK));
|
||||
|
||||
ramips_mem_base = RT305X_SDRAM_BASE;
|
||||
ramips_mem_size_min = RT305X_MEM_SIZE_MIN;
|
||||
ramips_mem_size_max = RT305X_MEM_SIZE_MAX;
|
||||
|
||||
if (soc_is_rt305x() || soc_is_rt3350()) {
|
||||
ramips_mem_size_min = RT305X_MEM_SIZE_MIN;
|
||||
ramips_mem_size_max = RT305X_MEM_SIZE_MAX;
|
||||
} else if (soc_is_rt3352()) {
|
||||
ramips_mem_size_min = RT3352_MEM_SIZE_MIN;
|
||||
ramips_mem_size_max = RT3352_MEM_SIZE_MAX;
|
||||
} else {
|
||||
BUG();
|
||||
}
|
||||
}
|
||||
|
||||
static struct ramips_gpio_chip rt305x_gpio_chips[] = {
|
||||
|
|
Loading…
Reference in a new issue