Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0-or-later */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * TI Syscon Reset definitions
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  * Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #ifndef __DT_BINDINGS_RESET_TI_SYSCON_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) #define __DT_BINDINGS_RESET_TI_SYSCON_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)  * The reset does not support the feature and corresponding
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13)  * values are not valid
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #define ASSERT_NONE	(1 << 0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #define DEASSERT_NONE	(1 << 1)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #define STATUS_NONE	(1 << 2)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) /* When set this function is activated by setting(vs clearing) this bit */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) #define ASSERT_SET	(1 << 3)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #define DEASSERT_SET	(1 << 4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #define STATUS_SET	(1 << 5)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) /* The following are the inverse of the above and are added for consistency */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) #define ASSERT_CLEAR	(0 << 3)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) #define DEASSERT_CLEAR	(0 << 4)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) #define STATUS_CLEAR	(0 << 5)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) #endif