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_XPEDITE517X 17 bool "Support xpedite517x" 18 select ARCH_MPC8641 19 20endchoice 21 22config ARCH_MPC8610 23 bool 24 select FSL_LAW 25 select SYS_FSL_HAS_DDR1 26 select SYS_FSL_HAS_DDR2 27 28config ARCH_MPC8641 29 bool 30 select FSL_LAW 31 select SYS_FSL_HAS_DDR1 32 select SYS_FSL_HAS_DDR2 33 34config FSL_LAW 35 bool 36 help 37 Use Freescale common code for Local Access Window 38 39config SYS_CCSRBAR_DEFAULT 40 hex "Default CCSRBAR address" 41 default 0xff700000 if ARCH_MPC8610 || ARCH_MPC8641 42 help 43 Default value of CCSRBAR comes from power-on-reset. It 44 is fixed on each SoC. Some SoCs can have different value 45 if changed by pre-boot regime. The value here must match 46 the current value in SoC. If not sure, do not change. 47config SYS_FSL_NUM_LAWS 48 int "Number of local access windows" 49 default 10 if ARCH_MPC8610 || ARCH_MPC8641 50 help 51 Number of local access windows. This is fixed per SoC. 52 If not sure, do not change. 53 54source "board/sbc8641d/Kconfig" 55source "board/xes/xpedite517x/Kconfig" 56 57endmenu 58