Skip to content
Snippets Groups Projects
Commit 79866880 authored by Scott Branden's avatar Scott Branden Committed by Tom Rini
Browse files

arm: bcmcygnus: Add bcmcygnus u-architecture


Base support for the Broadcom Cygnus SoC.
Based on iproc-common and the SoC specific reset function.

Signed-off-by: default avatarScott Branden <sbranden@broadcom.com>
Signed-off-by: default avatarSteve Rae <srae@broadcom.com>
parent c4b45009
No related branches found
No related tags found
No related merge requests found
#
# Copyright 2014 Broadcom Corporation.
#
# SPDX-License-Identifier: GPL-2.0+
#
obj-y += reset.o
/*
* Copyright 2014 Broadcom Corporation.
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <asm/io.h>
#define CRMU_MAIL_BOX1 0x03024028
#define CRMU_SOFT_RESET_CMD 0xFFFFFFFF
void reset_cpu(ulong ignored)
{
/* Send soft reset command via Mailbox. */
writel(CRMU_SOFT_RESET_CMD, CRMU_MAIL_BOX1);
while (1)
; /* loop forever till reset */
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment