1menu "mpc86xx CPU" 2 depends on MPC86xx 3 4config SYS_CPU 5 default "mpc86xx" 6 7choice 8 prompt "Target select" 9 optional 10 11config TARGET_SBC8641D 12 bool "Support sbc8641d" 13 select ARCH_MPC8641 14 select BOARD_EARLY_INIT_F 15 16config TARGET_MPC8610HPCD 17 bool "Support MPC8610HPCD" 18 select ARCH_MPC8610 19 select BOARD_EARLY_INIT_F 20 21config TARGET_MPC8641HPCN 22 bool "Support MPC8641HPCN" 23 select ARCH_MPC8641 24 select FSL_DDR_INTERACTIVE 25 imply SCSI 26 27config TARGET_XPEDITE517X 28 bool "Support xpedite517x" 29 select ARCH_MPC8641 30 31endchoice 32 33config ARCH_MPC8610 34 bool 35 select FSL_LAW 36 select SYS_FSL_HAS_DDR1 37 select SYS_FSL_HAS_DDR2 38 39config ARCH_MPC8641 40 bool 41 select FSL_LAW 42 select SYS_FSL_HAS_DDR1 43 select SYS_FSL_HAS_DDR2 44 45config FSL_LAW 46 bool 47 help 48 Use Freescale common code for Local Access Window 49 50config SYS_CCSRBAR_DEFAULT 51 hex "Default CCSRBAR address" 52 default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641 53 help 54 Default value of CCSRBAR comes from power-on-reset. It 55 is fixed on each SoC. Some SoCs can have different value 56 if changed by pre-boot regime. The value here must match 57 the current value in SoC. If not sure, do not change. 58config SYS_FSL_NUM_LAWS 59 int "Number of local access windows" 60 default 10 if ARCH_MPC8610 || ARCH_MPC8641 61 help 62 Number of local access windows. This is fixed per SoC. 63 If not sure, do not change. 64 65source "board/freescale/mpc8610hpcd/Kconfig" 66source "board/freescale/mpc8641hpcn/Kconfig" 67source "board/sbc8641d/Kconfig" 68source "board/xes/xpedite517x/Kconfig" 69 70endmenu 71