lin
2025-02-25 a02983e50ab34c3e7366b27cdeca427a327faebd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* include/linux/msm_adsp.h
 *
 * Copyright (C) 2007 Google, Inc.
 * Author: Iliyan Malchev <ibm@android.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */
#ifndef __LINUX_MSM_ADSP_H
#define __LINUX_MSM_ADSP_H
 
#include <linux/types.h>
#include <linux/ioctl.h>
 
#define ADSP_IOCTL_MAGIC 'q'
 
/* ADSP_IOCTL_WRITE_COMMAND */
struct adsp_command_t {
   uint16_t queue;
   uint32_t len;        /* bytes */
   uint8_t *data;
};
 
/* ADSP_IOCTL_GET_EVENT */
struct adsp_event_t {
   uint16_t type;        /* 1 == event (RPC), 0 == message (adsp) */
   uint32_t timeout_ms;    /* -1 for infinite, 0 for immediate return */
   uint16_t msg_id;
   uint16_t flags;        /* 1 == 16--bit event, 0 == 32-bit event */
   uint32_t len;        /* size in, number of bytes out */
   uint8_t *data;
};
 
#define ADSP_IOCTL_ENABLE \
   _IOR(ADSP_IOCTL_MAGIC, 1, unsigned)
 
#define ADSP_IOCTL_DISABLE \
   _IOR(ADSP_IOCTL_MAGIC, 2, unsigned)
 
#define ADSP_IOCTL_DISABLE_ACK \
   _IOR(ADSP_IOCTL_MAGIC, 3, unsigned)
 
#define ADSP_IOCTL_WRITE_COMMAND \
   _IOR(ADSP_IOCTL_MAGIC, 4, struct adsp_command_t *)
 
#define ADSP_IOCTL_GET_EVENT \
   _IOWR(ADSP_IOCTL_MAGIC, 5, struct adsp_event_data_t *)
 
#define ADSP_IOCTL_SET_CLKRATE \
   _IOR(ADSP_IOCTL_MAGIC, 6, unsigned)
 
#define ADSP_IOCTL_DISABLE_EVENT_RSP \
   _IOR(ADSP_IOCTL_MAGIC, 10, unsigned)
 
#define ADSP_IOCTL_REGISTER_PMEM \
   _IOW(ADSP_IOCTL_MAGIC, 13, unsigned)
 
#define ADSP_IOCTL_UNREGISTER_PMEM \
   _IOW(ADSP_IOCTL_MAGIC, 14, unsigned)
 
/* Cause any further GET_EVENT ioctls to fail (-ENODEV)
 * until the device is closed and reopened.  Useful for
 * terminating event dispatch threads
 */
#define ADSP_IOCTL_ABORT_EVENT_READ \
   _IOW(ADSP_IOCTL_MAGIC, 15, unsigned)
 
#define ADSP_IOCTL_LINK_TASK \
   _IOW(ADSP_IOCTL_MAGIC, 16, unsigned)
 
#endif