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