Home | History | Annotate | Download | only in dbau1x00
      1 if TARGET_DBAU1X00
      2 
      3 config SYS_BOARD
      4 	default "dbau1x00"
      5 
      6 config SYS_SOC
      7 	default "au1x00"
      8 
      9 config SYS_CONFIG_NAME
     10 	default "dbau1x00"
     11 
     12 config SYS_TEXT_BASE
     13 	default 0xbfc00000
     14 
     15 config SYS_DCACHE_SIZE
     16 	default 16384
     17 
     18 config SYS_DCACHE_LINE_SIZE
     19 	default 32
     20 
     21 config SYS_ICACHE_SIZE
     22 	default 16384
     23 
     24 config SYS_ICACHE_LINE_SIZE
     25 	default 32
     26 
     27 menu "dbau1x00 board options"
     28 
     29 choice
     30 	prompt "Select au1x00 SoC type"
     31 	optional
     32 
     33 config DBAU1100
     34 	bool "Select AU1100"
     35 
     36 config DBAU1500
     37 	bool "Select AU1500"
     38 
     39 config DBAU1550
     40 	bool "Select AU1550"
     41 
     42 endchoice
     43 
     44 endmenu
     45 
     46 endif
     47