blob: 6128ab82f31aee1609d76b55216368f5be9eae84 [file] [log] [blame]
Elliott Hughes180edef2023-11-02 00:08:05 +00001/*
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 */
Christopher Ferris9584fa42019-12-09 15:36:13 -08007#ifndef _UAPI_LINUX_PG_H
8#define _UAPI_LINUX_PG_H
Ben Cheng655a7c02013-10-16 16:09:24 -07009#define PG_MAGIC 'P'
10#define PG_RESET 'Z'
11#define PG_COMMAND 'C'
12#define PG_MAX_DATA 32768
Ben Cheng655a7c02013-10-16 16:09:24 -070013struct pg_write_hdr {
Tao Baod7db5942015-01-28 10:07:51 -080014 char magic;
15 char func;
16 int dlen;
Tao Baod7db5942015-01-28 10:07:51 -080017 int timeout;
18 char packet[12];
Ben Cheng655a7c02013-10-16 16:09:24 -070019};
20struct pg_read_hdr {
Tao Baod7db5942015-01-28 10:07:51 -080021 char magic;
22 char scsi;
23 int dlen;
24 int duration;
Tao Baod7db5942015-01-28 10:07:51 -080025 char pad[12];
Ben Cheng655a7c02013-10-16 16:09:24 -070026};
Christopher Ferris9584fa42019-12-09 15:36:13 -080027#endif