mpc8313, bootcount: mpc8313 has no qe muram
mpc831x has no muram, so muram cannot be used for bootcounter function. Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
This commit is contained in:
parent
e7e9090108
commit
99509695db
@ -19,7 +19,7 @@
|
|||||||
#include <tsec.h>
|
#include <tsec.h>
|
||||||
#include <netdev.h>
|
#include <netdev.h>
|
||||||
#include <fsl_esdhc.h>
|
#include <fsl_esdhc.h>
|
||||||
#ifdef CONFIG_BOOTCOUNT_LIMIT
|
#if defined(CONFIG_BOOTCOUNT_LIMIT) && !defined(CONFIG_MPC831x)
|
||||||
#include <asm/immap_qe.h>
|
#include <asm/immap_qe.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#endif
|
#endif
|
||||||
|
@ -17,7 +17,7 @@ extern void ft_qe_setup(void *blob);
|
|||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
|
#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
|
||||||
(defined(CONFIG_QE))
|
(defined(CONFIG_QE) && !defined(CONFIG_MPC831x))
|
||||||
#include <asm/immap_qe.h>
|
#include <asm/immap_qe.h>
|
||||||
|
|
||||||
void fdt_fixup_muram (void *blob)
|
void fdt_fixup_muram (void *blob)
|
||||||
@ -124,7 +124,8 @@ void ft_cpu_setup(void *blob, bd_t *bd)
|
|||||||
|
|
||||||
fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
|
fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
|
||||||
|
|
||||||
#if defined(CONFIG_BOOTCOUNT_LIMIT)
|
#if defined(CONFIG_BOOTCOUNT_LIMIT) && \
|
||||||
|
(defined(CONFIG_QE) && !defined(CONFIG_MPC831x))
|
||||||
fdt_fixup_muram (blob);
|
fdt_fixup_muram (blob);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user