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 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  *  definitions for external memory segment support
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  *  Copyright IBM Corp. 2003
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #ifndef _ASM_S390X_DCSS_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) #define _ASM_S390X_DCSS_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) #ifndef __ASSEMBLY__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) /* possible values for segment type as returned by segment_info */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #define SEG_TYPE_SW 0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) #define SEG_TYPE_EW 1
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #define SEG_TYPE_SR 2
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #define SEG_TYPE_ER 3
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #define SEG_TYPE_SN 4
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #define SEG_TYPE_EN 5
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) #define SEG_TYPE_SC 6
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #define SEG_TYPE_EWEN 7
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) #define SEGMENT_SHARED 0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) #define SEGMENT_EXCLUSIVE 1
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) int segment_load (char *name, int segtype, unsigned long *addr, unsigned long *length);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) void segment_unload(char *name);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) void segment_save(char *name);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) int segment_type (char* name);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) int segment_modify_shared (char *name, int do_nonshared);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) void segment_warning(int rc, char *seg_name);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) #endif