summaryrefslogtreecommitdiffstats
path: root/include/samsung-ril-socket.h
blob: d231e6244a8bc34ad211d85b0d8cc471a5427a6f (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * This file is part of Samsung-RIL.
 *
 * Copyright (C) 2011-2013 Paul Kocialkowski <contact@oaulk.fr>
 *
 * Samsung-RIL is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Samsung-RIL 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with Samsung-RIL.  If not, see <http://www.gnu.org/licenses/>.
 */

/* Samsung RIL Socket protocol defines */

#ifndef _SAMSUNG_RIL_SOCKET_H_
#define _SAMSUNG_RIL_SOCKET_H_

#define SRS_COMMAND(f)  ((f->group << 8) | f->index)
#define SRS_GROUP(m)    (m >> 8)
#define SRS_INDEX(m)    (m & 0xff)

#define SRS_SOCKET_NAME			"samsung-ril-socket"
#define SRS_DATA_MAX_SIZE		0x1000

#define SRS_CONTROL			0x01
#define SRS_CONTROL_PING		0x0101

#define SRS_SND				0x02
#define SRS_SND_SET_CALL_VOLUME		0x0201
#define SRS_SND_SET_CALL_AUDIO_PATH	0x0202
#define SRS_SND_SET_CALL_CLOCK_SYNC	0x0203

#define SRS_CONTROL_CAFFE		0xCAFFE

struct srs_header {
	unsigned int length;
	unsigned char group;
	unsigned char index;
} __attribute__((__packed__));

struct srs_message {
	unsigned short command;
	int length;
	void *data;
};


enum srs_snd_type {
	SRS_SND_TYPE_VOICE,
	SRS_SND_TYPE_SPEAKER,
	SRS_SND_TYPE_HEADSET,
	SRS_SND_TYPE_BTVOICE
};

enum srs_snd_path {
	SRS_SND_PATH_HANDSET,
	SRS_SND_PATH_HEADSET,
	SRS_SND_PATH_SPEAKER,
	SRS_SND_PATH_BLUETOOTH,
	SRS_SND_PATH_BLUETOOTH_NO_NR,
	SRS_SND_PATH_HEADPHONE
};

enum srs_snd_clock {
	SND_CLOCK_STOP,
	SND_CLOCK_START
};

struct srs_snd_call_volume {
	enum srs_snd_type type;
	int volume;
} __attribute__((__packed__));

struct srs_snd_call_audio_path {
	enum srs_snd_path path;
} __attribute__((__packed__));

struct srs_snd_call_clock_sync {
	unsigned char sync;
} __attribute__((__packed__));

struct srs_control_ping {
	int caffe;
} __attribute__((__packed__));

#endif