1menu "mpc83xx CPU" 2 depends on MPC83xx 3 4config SYS_CPU 5 default "mpc83xx" 6 7choice 8 prompt "Target select" 9 optional 10 11config TARGET_MPC8308_P1M 12 bool "Support mpc8308_p1m" 13 14config TARGET_SBC8349 15 bool "Support sbc8349" 16 17config TARGET_VE8313 18 bool "Support ve8313" 19 20config TARGET_VME8349 21 bool "Support vme8349" 22 23config TARGET_MPC8308RDB 24 bool "Support MPC8308RDB" 25 26config TARGET_MPC8313ERDB 27 bool "Support MPC8313ERDB" 28 select SUPPORT_SPL 29 30config TARGET_MPC8315ERDB 31 bool "Support MPC8315ERDB" 32 33config TARGET_MPC8323ERDB 34 bool "Support MPC8323ERDB" 35 36config TARGET_MPC832XEMDS 37 bool "Support MPC832XEMDS" 38 39config TARGET_MPC8349EMDS 40 bool "Support MPC8349EMDS" 41 select SYS_FSL_DDR 42 select SYS_FSL_HAS_DDR2 43 select SYS_FSL_DDR_BE 44 45config TARGET_MPC8349ITX 46 bool "Support MPC8349ITX" 47 48config TARGET_MPC837XEMDS 49 bool "Support MPC837XEMDS" 50 51config TARGET_MPC837XERDB 52 bool "Support MPC837XERDB" 53 54config TARGET_IDS8313 55 bool "Support ids8313" 56 select DM 57 58config TARGET_KM8360 59 bool "Support km8360" 60 61config TARGET_SUVD3 62 bool "Support suvd3" 63 64config TARGET_TUXX1 65 bool "Support tuxx1" 66 67config TARGET_TQM834X 68 bool "Support TQM834x" 69 70config TARGET_HRCON 71 bool "Support hrcon" 72 73config TARGET_STRIDER 74 bool "Support strider" 75 76endchoice 77 78source "board/esd/vme8349/Kconfig" 79source "board/freescale/mpc8308rdb/Kconfig" 80source "board/freescale/mpc8313erdb/Kconfig" 81source "board/freescale/mpc8315erdb/Kconfig" 82source "board/freescale/mpc8323erdb/Kconfig" 83source "board/freescale/mpc832xemds/Kconfig" 84source "board/freescale/mpc8349emds/Kconfig" 85source "board/freescale/mpc8349itx/Kconfig" 86source "board/freescale/mpc837xemds/Kconfig" 87source "board/freescale/mpc837xerdb/Kconfig" 88source "board/ids/ids8313/Kconfig" 89source "board/keymile/km83xx/Kconfig" 90source "board/mpc8308_p1m/Kconfig" 91source "board/sbc8349/Kconfig" 92source "board/tqc/tqm834x/Kconfig" 93source "board/ve8313/Kconfig" 94source "board/gdsys/mpc8308/Kconfig" 95 96endmenu 97