mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-11-04 05:50:17 +00:00 
			
		
		
		
	This is the proper fix for a missing closing brace in the function ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com. The ft_cpu_setup() function in mpc8641hpcn.c should have been removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE, but was missed. Only, the sbc8641d was nominally still using it. It all got ripped out, and the funcality that was in ft_board_setup() was refactored to remove the CPU portions into the new file cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now. Based loosely on an original patch from joe.hamman@embeddedspecialties.com Signed-off-by: Jon Loeliger <jdl@freescale.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright 2008 Freescale Semiconductor, Inc.
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or
 | 
						|
 * modify it under the terms of the GNU General Public License
 | 
						|
 * Version 2 as published by the Free Software Foundation.
 | 
						|
 */
 | 
						|
 | 
						|
#include <common.h>
 | 
						|
#include <libfdt.h>
 | 
						|
#include <fdt_support.h>
 | 
						|
 | 
						|
void ft_cpu_setup(void *blob, bd_t *bd)
 | 
						|
{
 | 
						|
	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
 | 
						|
			     "timebase-frequency", bd->bi_busfreq / 4, 1);
 | 
						|
	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
 | 
						|
			     "bus-frequency", bd->bi_busfreq, 1);
 | 
						|
	do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
 | 
						|
			     "clock-frequency", bd->bi_intfreq, 1);
 | 
						|
	do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
 | 
						|
			     "bus-frequency", bd->bi_busfreq, 1);
 | 
						|
 | 
						|
	fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
 | 
						|
 | 
						|
#if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) \
 | 
						|
    || defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3)
 | 
						|
	fdt_fixup_ethernet(blob, bd);
 | 
						|
#endif
 | 
						|
 | 
						|
#ifdef CFG_NS16550
 | 
						|
	do_fixup_by_compat_u32(blob, "ns16550",
 | 
						|
			       "clock-frequency", bd->bi_busfreq, 1);
 | 
						|
#endif
 | 
						|
}
 |