[U-Boot-Users] [PATCH v4] fdt: add crypto node handling for MPC8{3, 5}xxE processors

Kumar Gala galak at kernel.crashing.org
Tue Jun 17 15:52:16 CEST 2008


On Jun 16, 2008, at 3:55 PM, Kim Phillips wrote:

> Delete the crypto node if not on an E-processor.  If on 8360 or 834x  
> family,
> check rev and up-rev crypto node (to SEC rev. 2.4 property values)
> if on an 'EA' processor, e.g. MPC8349EA.
>
> Signed-off-by: Kim Phillips <kim.phillips at freescale.com>
> ---
> diff from v3: prepended "Delete the" to the patch commit message.
> mumble.  Thanks gvb.
>
> common/fdt_support.c        |   87 ++++++++++++++++++++++++++++++++++ 
> +++++++++
> cpu/mpc83xx/fdt.c           |   18 +++++++++
> cpu/mpc85xx/fdt.c           |    5 ++
> include/asm-ppc/processor.h |    9 ++++
> include/fdt_support.h       |    6 +++
> include/mpc83xx.h           |    7 +++-
> 6 files changed, 131 insertions(+), 1 deletions(-)

Can you fixup cpu/mpc85xx/cpu.c:

                 if (svr & 0x80000)
                         puts("E");

to be
		if (IS_E_PROCESSOR(svr)
			puts("E");

- k





More information about the U-Boot mailing list