MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / asm-arm / arch-s5c7375 / blkmem.h
blob435191bf1c130ebabbba6bddcbc52308031f9b24
1 /*
2 * linux/include/asm-armnommu/arch-s5c7375/blkmem.h
4 * Copyright (c) 2003 Hyok S. Choi, Samsung Electronics Co.,Ltd.
5 * <hyok.choi@samsung.com>
7 * Contains configuration settings for the blkmem driver.
8 */
9 #ifndef __ASM_ARCH_BLKMEM_H
10 #define __ASM_ARCH_BLKMEM_H
12 #define CAT_ROMARRAY
15 #ifndef HYOK_ROMFS_BOOT
16 extern char _end[];
17 #define FIXUP_ARENAS \
18 arena[0].address = ((unsigned long)_end + DRAM_BASE + 0x2000); // ram
19 #else
20 extern char __bss_start[];
21 #define FIXUP_ARENAS \
22 arena[0].address = ((unsigned long)__bss_start + FLASH_MEM_BASE); // rom
23 #endif
25 #endif