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