blob: 0c6a13043f913d1698c19d63123ef6bf374d356b [file] [log] [blame]
Stefan Bosch48397f12020-07-10 19:07:25 +02001/* SPDX-License-Identifier: GPL-2.0+
2 *
3 * (C) Copyright 2016 Nexell
4 * Youngbok, Park <ybpark@nexell.co.kr>
5 */
6
7#ifndef __NEXELL_RESET__
8#define __NEXELL_RESET__
9
Tom Rinidec7ea02024-05-20 13:35:03 -060010#include <linux/types.h>
11
Stefan Bosch48397f12020-07-10 19:07:25 +020012#define NUMBER_OF_RESET_MODULE_PIN 69
13
14enum rstcon {
15 RSTCON_ASSERT = 0UL,
16 RSTCON_NEGATE = 1UL
17};
18
19void nx_rstcon_setrst(u32 rstindex, enum rstcon status);
20
21#endif /* __NEXELL_RESET__ */