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