1menu "mpc85xx CPU" 2 depends on MPC85xx 3 4config SYS_CPU 5 default "mpc85xx" 6 7choice 8 prompt "Target select" 9 optional 10 11config TARGET_SBC8548 12 bool "Support sbc8548" 13 14config TARGET_SOCRATES 15 bool "Support socrates" 16 17config TARGET_B4860QDS 18 bool "Support B4860QDS" 19 select SUPPORT_SPL 20 select PHYS_64BIT 21 22config TARGET_BSC9131RDB 23 bool "Support BSC9131RDB" 24 select SUPPORT_SPL 25 26config TARGET_BSC9132QDS 27 bool "Support BSC9132QDS" 28 select SUPPORT_SPL 29 30config TARGET_C29XPCIE 31 bool "Support C29XPCIE" 32 select SUPPORT_SPL 33 select SUPPORT_TPL 34 select PHYS_64BIT 35 36config TARGET_P3041DS 37 bool "Support P3041DS" 38 select PHYS_64BIT 39 40config TARGET_P4080DS 41 bool "Support P4080DS" 42 select PHYS_64BIT 43 44config TARGET_P5020DS 45 bool "Support P5020DS" 46 select PHYS_64BIT 47 48config TARGET_P5040DS 49 bool "Support P5040DS" 50 select PHYS_64BIT 51 52config TARGET_MPC8536DS 53 bool "Support MPC8536DS" 54 55config TARGET_MPC8540ADS 56 bool "Support MPC8540ADS" 57 58config TARGET_MPC8541CDS 59 bool "Support MPC8541CDS" 60 61config TARGET_MPC8544DS 62 bool "Support MPC8544DS" 63 64config TARGET_MPC8548CDS 65 bool "Support MPC8548CDS" 66 67config TARGET_MPC8555CDS 68 bool "Support MPC8555CDS" 69 70config TARGET_MPC8560ADS 71 bool "Support MPC8560ADS" 72 73config TARGET_MPC8568MDS 74 bool "Support MPC8568MDS" 75 76config TARGET_MPC8569MDS 77 bool "Support MPC8569MDS" 78 79config TARGET_MPC8572DS 80 bool "Support MPC8572DS" 81 82config TARGET_P1010RDB 83 bool "Support P1010RDB" 84 select SUPPORT_SPL 85 select SUPPORT_TPL 86 87config TARGET_P1022DS 88 bool "Support P1022DS" 89 select SUPPORT_SPL 90 select SUPPORT_TPL 91 92config TARGET_P1023RDB 93 bool "Support P1023RDB" 94 95config TARGET_P1_P2_RDB_PC 96 bool "Support p1_p2_rdb_pc" 97 select SUPPORT_SPL 98 select SUPPORT_TPL 99 100config TARGET_P1_TWR 101 bool "Support p1_twr" 102 103config TARGET_P2041RDB 104 bool "Support P2041RDB" 105 select PHYS_64BIT 106 107config TARGET_QEMU_PPCE500 108 bool "Support qemu-ppce500" 109 select PHYS_64BIT 110 111config TARGET_T102XQDS 112 bool "Support T102xQDS" 113 select SUPPORT_SPL 114 select PHYS_64BIT 115 116config TARGET_T102XRDB 117 bool "Support T102xRDB" 118 select SUPPORT_SPL 119 select PHYS_64BIT 120 121config TARGET_T1040QDS 122 bool "Support T1040QDS" 123 select PHYS_64BIT 124 125config TARGET_T104XRDB 126 bool "Support T104xRDB" 127 select SUPPORT_SPL 128 select PHYS_64BIT 129 130config TARGET_T208XQDS 131 bool "Support T208xQDS" 132 select SUPPORT_SPL 133 select PHYS_64BIT 134 135config TARGET_T208XRDB 136 bool "Support T208xRDB" 137 select SUPPORT_SPL 138 select PHYS_64BIT 139 140config TARGET_T4240QDS 141 bool "Support T4240QDS" 142 select SUPPORT_SPL 143 select PHYS_64BIT 144 145config TARGET_T4240RDB 146 bool "Support T4240RDB" 147 select SUPPORT_SPL 148 select PHYS_64BIT 149 150config TARGET_CONTROLCENTERD 151 bool "Support controlcenterd" 152 153config TARGET_KMP204X 154 bool "Support kmp204x" 155 select PHYS_64BIT 156 157config TARGET_XPEDITE520X 158 bool "Support xpedite520x" 159 160config TARGET_XPEDITE537X 161 bool "Support xpedite537x" 162 163config TARGET_XPEDITE550X 164 bool "Support xpedite550x" 165 166config TARGET_UCP1020 167 bool "Support uCP1020" 168 169config TARGET_CYRUS 170 bool "Support Varisys Cyrus" 171 select PHYS_64BIT 172 173endchoice 174 175source "board/freescale/b4860qds/Kconfig" 176source "board/freescale/bsc9131rdb/Kconfig" 177source "board/freescale/bsc9132qds/Kconfig" 178source "board/freescale/c29xpcie/Kconfig" 179source "board/freescale/corenet_ds/Kconfig" 180source "board/freescale/mpc8536ds/Kconfig" 181source "board/freescale/mpc8540ads/Kconfig" 182source "board/freescale/mpc8541cds/Kconfig" 183source "board/freescale/mpc8544ds/Kconfig" 184source "board/freescale/mpc8548cds/Kconfig" 185source "board/freescale/mpc8555cds/Kconfig" 186source "board/freescale/mpc8560ads/Kconfig" 187source "board/freescale/mpc8568mds/Kconfig" 188source "board/freescale/mpc8569mds/Kconfig" 189source "board/freescale/mpc8572ds/Kconfig" 190source "board/freescale/p1010rdb/Kconfig" 191source "board/freescale/p1022ds/Kconfig" 192source "board/freescale/p1023rdb/Kconfig" 193source "board/freescale/p1_p2_rdb_pc/Kconfig" 194source "board/freescale/p1_twr/Kconfig" 195source "board/freescale/p2041rdb/Kconfig" 196source "board/freescale/qemu-ppce500/Kconfig" 197source "board/freescale/t102xqds/Kconfig" 198source "board/freescale/t102xrdb/Kconfig" 199source "board/freescale/t1040qds/Kconfig" 200source "board/freescale/t104xrdb/Kconfig" 201source "board/freescale/t208xqds/Kconfig" 202source "board/freescale/t208xrdb/Kconfig" 203source "board/freescale/t4qds/Kconfig" 204source "board/freescale/t4rdb/Kconfig" 205source "board/gdsys/p1022/Kconfig" 206source "board/keymile/kmp204x/Kconfig" 207source "board/sbc8548/Kconfig" 208source "board/socrates/Kconfig" 209source "board/varisys/cyrus/Kconfig" 210source "board/xes/xpedite520x/Kconfig" 211source "board/xes/xpedite537x/Kconfig" 212source "board/xes/xpedite550x/Kconfig" 213source "board/Arcturus/ucp1020/Kconfig" 214 215endmenu 216