mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 08:21:36 +01:00 
			
		
		
		
	In preparation of DM watchdog, move basic actions into drivers/watchdog Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
		
			
				
	
	
		
			47 lines
		
	
	
		
			797 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			797 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| menu "PowerPC architecture"
 | |
| 	depends on PPC
 | |
| 
 | |
| config SYS_ARCH
 | |
| 	default "powerpc"
 | |
| 
 | |
| choice
 | |
| 	prompt "CPU select"
 | |
| 	optional
 | |
| 
 | |
| config MPC83xx
 | |
| 	bool "MPC83xx"
 | |
| 	select CREATE_ARCH_SYMLINK
 | |
| 	select SYS_FSL_HAS_SEC
 | |
| 	select SYS_FSL_SEC_BE
 | |
| 	select SYS_FSL_SEC_COMPAT_2
 | |
| 
 | |
| config MPC85xx
 | |
| 	bool "MPC85xx"
 | |
| 	select CREATE_ARCH_SYMLINK
 | |
| 	select SYS_FSL_DDR
 | |
| 	select SYS_FSL_DDR_BE
 | |
| 	imply USB_EHCI_HCD if USB
 | |
| 	imply CMD_HASH
 | |
| 	imply CMD_IRQ
 | |
| 
 | |
| config MPC86xx
 | |
| 	bool "MPC86xx"
 | |
| 	select SYS_FSL_DDR
 | |
| 	select SYS_FSL_DDR_BE
 | |
| 	imply CMD_REGINFO
 | |
| 
 | |
| config MPC8xx
 | |
| 	bool "MPC8xx"
 | |
| 	select BOARD_EARLY_INIT_F
 | |
| 	imply CMD_REGINFO
 | |
| 	imply MPC8xx_WATCHDOG
 | |
| 
 | |
| endchoice
 | |
| 
 | |
| source "arch/powerpc/cpu/mpc83xx/Kconfig"
 | |
| source "arch/powerpc/cpu/mpc85xx/Kconfig"
 | |
| source "arch/powerpc/cpu/mpc86xx/Kconfig"
 | |
| source "arch/powerpc/cpu/mpc8xx/Kconfig"
 | |
| 
 | |
| endmenu
 |