mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-25 11:25:17 +00:00
85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ
The code assumed names where just numbers and always prefixed 'mpc'. However newer QorIQ don't follow the mpc naming scheme. Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
This commit is contained in:
parent
2db3602fad
commit
b5190df365
1 changed files with 10 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2007 Freescale Semiconductor, Inc.
|
* Copyright 2007-2009 Freescale Semiconductor, Inc.
|
||||||
*
|
*
|
||||||
* (C) Copyright 2000
|
* (C) Copyright 2000
|
||||||
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
||||||
|
@ -27,6 +27,7 @@
|
||||||
#include <libfdt.h>
|
#include <libfdt.h>
|
||||||
#include <fdt_support.h>
|
#include <fdt_support.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
|
#include <linux/ctype.h>
|
||||||
#ifdef CONFIG_FSL_ESDHC
|
#ifdef CONFIG_FSL_ESDHC
|
||||||
#include <fsl_esdhc.h>
|
#include <fsl_esdhc.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -148,8 +149,14 @@ static inline void ft_fixup_l2cache(void *blob)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cpu) {
|
if (cpu) {
|
||||||
len = sprintf(compat_buf, "fsl,mpc%s-l2-cache-controller",
|
if (isdigit(cpu->name[0]))
|
||||||
cpu->name);
|
len = sprintf(compat_buf,
|
||||||
|
"fsl,mpc%s-l2-cache-controller", cpu->name);
|
||||||
|
else
|
||||||
|
len = sprintf(compat_buf,
|
||||||
|
"fsl,%c%s-l2-cache-controller",
|
||||||
|
tolower(cpu->name[0]), cpu->name + 1);
|
||||||
|
|
||||||
sprintf(&compat_buf[len + 1], "cache");
|
sprintf(&compat_buf[len + 1], "cache");
|
||||||
}
|
}
|
||||||
fdt_setprop(blob, off, "cache-unified", NULL, 0);
|
fdt_setprop(blob, off, "cache-unified", NULL, 0);
|
||||||
|
|
Loading…
Reference in a new issue