xref: /rk3399_rockchip-uboot/board/qemu-mips/Kconfig (revision c74b8fcdd7193cfcaf8b3c6dab9a59c6feb8a49a)
1if TARGET_QEMU_MIPS
2
3config SYS_BOARD
4	default "qemu-mips"
5
6config SYS_CONFIG_NAME
7	default "qemu-mips" if 32BIT
8	default "qemu-mips64" if 64BIT
9
10config SYS_TEXT_BASE
11	default 0xbfc00000 if 32BIT
12	default 0xffffffffbfc00000 if 64BIT
13
14config SYS_DCACHE_SIZE
15	default 16384
16
17config SYS_DCACHE_LINE_SIZE
18	default 32
19
20config SYS_ICACHE_SIZE
21	default 16384
22
23config SYS_ICACHE_LINE_SIZE
24	default 32
25
26endif
27