/*
  * SH7722 Setup
  *
- *  Copyright (C) 2006  Paul Mundt
+ *  Copyright (C) 2006 - 2007  Paul Mundt
  *
  * This file is subject to the terms and conditions of the GNU General Public
  * License.  See the file "COPYING" in the main directory of this archive
 #include <linux/platform_device.h>
 #include <linux/init.h>
 #include <linux/serial.h>
+#include <linux/mm.h>
 #include <asm/sci.h>
 
 static struct plat_sci_port sci_platform_data[] = {
 {
        make_ipr_irq(sh7722_ipr_map, ARRAY_SIZE(sh7722_ipr_map));
 }
+
+void __init plat_mem_setup(void)
+{
+       /* Register the URAM space as Node 1 */
+       setup_bootmem_node(1, 0x055f0000, 0x05610000);
+}
 
        select CPU_SH4AL_DSP
        select CPU_SHX2
        select CPU_HAS_IPR_IRQ
+       select ARCH_SPARSEMEM_ENABLE
 
 endchoice
 
 
 config MAX_ACTIVE_REGIONS
        int
+       default "2" if (CPU_SUBTYPE_SH7722 && SPARSEMEM)
        default "1"
 
 config ARCH_POPULATES_NODE_MAP