mirror of https://gitee.com/openkylin/linux.git
ARM: shmobile: rcar-gen2: Add watchdog support
This patch adds watchdog support by installing shmobile_boot_vector_gen2 to ICRAM1 when enough memory is available, in which case we also keep a copy of MPIDR to complete the reset vector logic. Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com> Signed-off-by: Ramesh Shanmugasundaram <ramesh.shanmugasundaram@bp.renesas.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
This commit is contained in:
parent
58adf1ba0d
commit
01d675f159
|
@ -191,6 +191,7 @@ static void __init shmobile_smp_apmu_setup_boot(void)
|
||||||
{
|
{
|
||||||
/* install boot code shared by all CPUs */
|
/* install boot code shared by all CPUs */
|
||||||
shmobile_boot_fn = __pa_symbol(shmobile_smp_boot);
|
shmobile_boot_fn = __pa_symbol(shmobile_smp_boot);
|
||||||
|
shmobile_boot_fn_gen2 = shmobile_boot_fn;
|
||||||
}
|
}
|
||||||
|
|
||||||
void __init shmobile_smp_apmu_prepare_cpus(unsigned int max_cpus,
|
void __init shmobile_smp_apmu_prepare_cpus(unsigned int max_cpus,
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
#include <linux/soc/renesas/rcar-sysc.h>
|
#include <linux/soc/renesas/rcar-sysc.h>
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
#include <asm/cputype.h>
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "rcar-gen2.h"
|
#include "rcar-gen2.h"
|
||||||
|
|
||||||
|
@ -37,7 +38,6 @@
|
||||||
#define CA7RESCNT_CODE 0x5a5a0000
|
#define CA7RESCNT_CODE 0x5a5a0000
|
||||||
#define CA7RESCNT_CPUS 0xf /* CPU0-3 */
|
#define CA7RESCNT_CPUS 0xf /* CPU0-3 */
|
||||||
|
|
||||||
|
|
||||||
/* On-chip RAM */
|
/* On-chip RAM */
|
||||||
#define ICRAM1 0xe63c0000 /* Inter Connect RAM1 (4 KiB) */
|
#define ICRAM1 0xe63c0000 /* Inter Connect RAM1 (4 KiB) */
|
||||||
|
|
||||||
|
@ -119,8 +119,17 @@ void __init rcar_gen2_pm_init(void)
|
||||||
p = ioremap(res.start, resource_size(&res));
|
p = ioremap(res.start, resource_size(&res));
|
||||||
if (!p)
|
if (!p)
|
||||||
return;
|
return;
|
||||||
|
/*
|
||||||
memcpy_toio(p, shmobile_boot_vector, shmobile_boot_size);
|
* install the reset vector, use the largest version if we have enough
|
||||||
|
* memory available
|
||||||
|
*/
|
||||||
|
if (resource_size(&res) >= shmobile_boot_size_gen2) {
|
||||||
|
shmobile_boot_cpu_gen2 = read_cpuid_mpidr();
|
||||||
|
memcpy_toio(p, shmobile_boot_vector_gen2,
|
||||||
|
shmobile_boot_size_gen2);
|
||||||
|
} else {
|
||||||
|
memcpy_toio(p, shmobile_boot_vector, shmobile_boot_size);
|
||||||
|
}
|
||||||
iounmap(p);
|
iounmap(p);
|
||||||
|
|
||||||
/* setup reset vectors */
|
/* setup reset vectors */
|
||||||
|
|
Loading…
Reference in New Issue