1 /* 2 * This file is auto-generated. Modifications will be lost. 3 * 4 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/ 5 * for more information. 6 */ 7 #ifndef _UAPI_LINUX_PG_H 8 #define _UAPI_LINUX_PG_H 9 #define PG_MAGIC 'P' 10 #define PG_RESET 'Z' 11 #define PG_COMMAND 'C' 12 #define PG_MAX_DATA 32768 13 struct pg_write_hdr { 14 char magic; 15 char func; 16 int dlen; 17 int timeout; 18 char packet[12]; 19 }; 20 struct pg_read_hdr { 21 char magic; 22 char scsi; 23 int dlen; 24 int duration; 25 char pad[12]; 26 }; 27 #endif 28