blob: 83a7f77ac41f6710e5b703b60f2c9983625a8fa5 [file] [log] [blame]
Michal Simekcae39ae2018-07-13 17:00:13 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2018 Xilinx, Inc. - Michal Simek
4 */
5
6#include <common.h>
7#include <dm.h>
8#include <errno.h>
9#include <sysreset.h>
10#include <linux/err.h>
Ovidiu Panaitfc7220f2021-11-30 18:33:57 +020011#include <linux/stringify.h>
Michal Simekcae39ae2018-07-13 17:00:13 +020012
13static int microblaze_sysreset_request(struct udevice *dev,
14 enum sysreset_t type)
15{
16 puts("Microblaze soft reset sysreset\n");
Ovidiu Panaitfc7220f2021-11-30 18:33:57 +020017 __asm__ __volatile__ (
18 "mts rmsr, r0;" \
19 "brai " __stringify(CONFIG_XILINX_MICROBLAZE0_VECTOR_BASE_ADDR));
Michal Simekcae39ae2018-07-13 17:00:13 +020020
21 return -EINPROGRESS;
22}
23
24static struct sysreset_ops microblaze_sysreset = {
25 .request = microblaze_sysreset_request,
26};
27
28U_BOOT_DRIVER(sysreset_microblaze) = {
29 .id = UCLASS_SYSRESET,
30 .name = "mb_soft_reset",
31 .ops = &microblaze_sysreset,
32};