]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/qemu-mips/Kconfig
Merge branch 'master' of git://git.denx.de/u-boot
[people/ms/u-boot.git] / board / qemu-mips / Kconfig
1 if TARGET_QEMU_MIPS
2
3 config SYS_BOARD
4 default "qemu-mips"
5
6 config SYS_CONFIG_NAME
7 default "qemu-mips" if 32BIT
8 default "qemu-mips64" if 64BIT
9
10 config SYS_TEXT_BASE
11 default 0xbfc00000 if 32BIT
12 default 0xffffffffbfc00000 if 64BIT
13
14 config SYS_DCACHE_SIZE
15 default 16384
16
17 config SYS_DCACHE_LINE_SIZE
18 default 32
19
20 config SYS_ICACHE_SIZE
21 default 16384
22
23 config SYS_ICACHE_LINE_SIZE
24 default 32
25
26 endif