blob: 13d73577023d23c6f86e776026f1ac3067632950 [file] [log] [blame]
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00001/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00005 */
6
7#ifndef _RESET_MANAGER_H_
8#define _RESET_MANAGER_H_
9
10void reset_cpu(ulong addr);
11void reset_deassert_peripherals_handoff(void);
12
13struct socfpga_reset_manager {
14 u32 padding1;
15 u32 ctrl;
16 u32 padding2;
17 u32 padding3;
18 u32 mpu_mod_reset;
19 u32 per_mod_reset;
20 u32 per2_mod_reset;
21 u32 brg_mod_reset;
22};
23
24#define RSTMGR_CTRL_SWWARMRSTREQ_LSB 1
25
26#endif /* _RESET_MANAGER_H_ */