diff options
| author | Hadli, Manjunath <manjunath.hadli@ti.com> | 2012-02-06 00:30:44 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-12 10:11:32 +0100 | 
| commit | 8f5d468721ef3931e4c6f9c6555348f26acdec19 (patch) | |
| tree | 991231570cd059ac3c5dd545648c0619421aa01e /arch/arm/include/asm/u-boot.h | |
| parent | 6678cebc09226f9d34fb7e5e0631d0009689918b (diff) | |
| download | olio-uboot-2014.01-8f5d468721ef3931e4c6f9c6555348f26acdec19.tar.xz olio-uboot-2014.01-8f5d468721ef3931e4c6f9c6555348f26acdec19.zip | |
davinci: add support for printing clock frequency
add support for printing various clock frequency info found
in SOC such as ARM core frequency, DSP core frequency and DDR
frequency as part of bdinfo command.
Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/include/asm/u-boot.h')
| -rw-r--r-- | arch/arm/include/asm/u-boot.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/arch/arm/include/asm/u-boot.h b/arch/arm/include/asm/u-boot.h index f30b9fc96..20e165393 100644 --- a/arch/arm/include/asm/u-boot.h +++ b/arch/arm/include/asm/u-boot.h @@ -41,6 +41,9 @@ typedef struct bd_info {      unsigned long	bi_ip_addr;	/* IP Address */      ulong	        bi_arch_number;	/* unique id for this board */      ulong	        bi_boot_params;	/* where this board expects params */ +	unsigned long	bi_arm_freq; /* arm frequency */ +	unsigned long	bi_dsp_freq; /* dsp core frequency */ +	unsigned long	bi_ddr_freq; /* ddr frequency */      struct				/* RAM configuration */      {  	ulong start; |