blob: 7de42b5f257635819dca1bcf672fa2c337abf583 [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "mpc86xx CPU"
2 depends on MPC86xx
3
4config SYS_CPU
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "mpc86xx"
6
7choice
8 prompt "Target select"
Joe Hershbergerf0699602015-05-12 14:46:23 -05009 optional
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090010
11config TARGET_SBC8641D
12 bool "Support sbc8641d"
York Sunefc30b62016-11-23 14:08:36 -080013 select ARCH_MPC8641
Simon Glass7a99a872017-01-23 13:31:20 -070014 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090015
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090016config TARGET_XPEDITE517X
17 bool "Support xpedite517x"
York Sunefc30b62016-11-23 14:08:36 -080018 select ARCH_MPC8641
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090019
20endchoice
21
York Sunf48436a2016-11-23 14:06:21 -080022config ARCH_MPC8610
23 bool
York Sunfc01f552016-12-02 10:45:23 -080024 select FSL_LAW
York Sund297d392016-12-28 08:43:40 -080025 select SYS_FSL_HAS_DDR1
26 select SYS_FSL_HAS_DDR2
York Sunf48436a2016-11-23 14:06:21 -080027
York Sunefc30b62016-11-23 14:08:36 -080028config ARCH_MPC8641
29 bool
York Sunfc01f552016-12-02 10:45:23 -080030 select FSL_LAW
York Sund297d392016-12-28 08:43:40 -080031 select SYS_FSL_HAS_DDR1
32 select SYS_FSL_HAS_DDR2
York Sunfc01f552016-12-02 10:45:23 -080033
34config FSL_LAW
35 bool
36 help
37 Use Freescale common code for Local Access Window
York Sunefc30b62016-11-23 14:08:36 -080038
York Sun9c62e7b2016-12-01 13:32:46 -080039config 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.
York Sun32839332016-12-01 14:10:47 -080047config 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.
York Sun9c62e7b2016-12-01 13:32:46 -080053
Masahiro Yamadad3ae6782014-07-30 14:08:14 +090054source "board/sbc8641d/Kconfig"
55source "board/xes/xpedite517x/Kconfig"
56
57endmenu