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 42config TARGET_MPC8349ITX 43 bool "Support MPC8349ITX" 44 45config TARGET_MPC837XEMDS 46 bool "Support MPC837XEMDS" 47 48config TARGET_MPC837XERDB 49 bool "Support MPC837XERDB" 50 51config TARGET_IDS8313 52 bool "Support ids8313" 53 select DM 54 55config TARGET_KM8360 56 bool "Support km8360" 57 58config TARGET_SUVD3 59 bool "Support suvd3" 60 61config TARGET_TUXX1 62 bool "Support tuxx1" 63 64config TARGET_TQM834X 65 bool "Support TQM834x" 66 67config TARGET_HRCON 68 bool "Support hrcon" 69 70endchoice 71 72source "board/esd/vme8349/Kconfig" 73source "board/freescale/mpc8308rdb/Kconfig" 74source "board/freescale/mpc8313erdb/Kconfig" 75source "board/freescale/mpc8315erdb/Kconfig" 76source "board/freescale/mpc8323erdb/Kconfig" 77source "board/freescale/mpc832xemds/Kconfig" 78source "board/freescale/mpc8349emds/Kconfig" 79source "board/freescale/mpc8349itx/Kconfig" 80source "board/freescale/mpc837xemds/Kconfig" 81source "board/freescale/mpc837xerdb/Kconfig" 82source "board/ids/ids8313/Kconfig" 83source "board/keymile/km83xx/Kconfig" 84source "board/mpc8308_p1m/Kconfig" 85source "board/sbc8349/Kconfig" 86source "board/tqc/tqm834x/Kconfig" 87source "board/ve8313/Kconfig" 88source "board/gdsys/mpc8308/Kconfig" 89 90endmenu 91