blob: 2cc180da38972bca7ba7e4890188f8a92b1b5a85 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "mpc86xx CPU"
2 depends on MPC86xx
3
4config SYS_CPU
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "mpc86xx"
6
7choice
8 prompt "Target select"
Joe Hershbergera26cd042015-05-12 14:46:23 -05009 optional
Masahiro Yamadadd840582014-07-30 14:08:14 +090010
11config TARGET_SBC8641D
12 bool "Support sbc8641d"
York Sun4f5554c2016-11-23 14:08:36 -080013 select ARCH_MPC8641
Simon Glassa5d67542017-01-23 13:31:20 -070014 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +090015
16config TARGET_MPC8610HPCD
17 bool "Support MPC8610HPCD"
York Sun1425a872016-11-23 14:06:21 -080018 select ARCH_MPC8610
Simon Glassa5d67542017-01-23 13:31:20 -070019 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +090020
21config TARGET_MPC8641HPCN
22 bool "Support MPC8641HPCN"
York Sun4f5554c2016-11-23 14:08:36 -080023 select ARCH_MPC8641
Simon Glassfedb4282017-06-14 21:28:21 -060024 imply SCSI
Masahiro Yamadadd840582014-07-30 14:08:14 +090025
26config TARGET_XPEDITE517X
27 bool "Support xpedite517x"
York Sun4f5554c2016-11-23 14:08:36 -080028 select ARCH_MPC8641
Masahiro Yamadadd840582014-07-30 14:08:14 +090029
30endchoice
31
York Sun1425a872016-11-23 14:06:21 -080032config ARCH_MPC8610
33 bool
York Sunf4325b42016-12-02 10:45:23 -080034 select FSL_LAW
York Sund26e34c2016-12-28 08:43:40 -080035 select SYS_FSL_HAS_DDR1
36 select SYS_FSL_HAS_DDR2
York Sun1425a872016-11-23 14:06:21 -080037
York Sun4f5554c2016-11-23 14:08:36 -080038config ARCH_MPC8641
39 bool
York Sunf4325b42016-12-02 10:45:23 -080040 select FSL_LAW
York Sund26e34c2016-12-28 08:43:40 -080041 select SYS_FSL_HAS_DDR1
42 select SYS_FSL_HAS_DDR2
York Sunf4325b42016-12-02 10:45:23 -080043
44config FSL_LAW
45 bool
46 help
47 Use Freescale common code for Local Access Window
York Sun4f5554c2016-11-23 14:08:36 -080048
York Sun4a1e6812016-12-01 13:32:46 -080049config 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.
York Sun54db3c22016-12-01 14:10:47 -080057config 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.
York Sun4a1e6812016-12-01 13:32:46 -080063
Masahiro Yamadadd840582014-07-30 14:08:14 +090064source "board/freescale/mpc8610hpcd/Kconfig"
65source "board/freescale/mpc8641hpcn/Kconfig"
66source "board/sbc8641d/Kconfig"
67source "board/xes/xpedite517x/Kconfig"
68
69endmenu