aboutsummaryrefslogtreecommitdiffstats
path: root/include/radio.h
blob: 193a32402344547e410ff3efce58ec409254b853 (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
/**
 * This file is part of libsamsung-ipc.
 *
 * Copyright (C) 2010-2011 Joerie de Gram <j.de.gram@gmail.com>
 *
 * libsamsung-ipc 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.
 *
 * libsamsung-ipc 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 libsamsung-ipc.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#ifndef __RADIO_H__
#define __RADIO_H__

#include <stdint.h>

#include "types.h"
#include "util.h"

#define IPC_CLIENT_TYPE_CRESPO_FMT      1
#define IPC_CLIENT_TYPE_CRESPO_RFS      2
#define IPC_CLIENT_TYPE_H1              3

#define IPC_COMMAND(f)  ((f->group << 8) | f->index)
#define IPC_GROUP(m)    (m >> 8)
#define IPC_INDEX(m)    (m & 0xff)

struct ipc_header {
    unsigned short length;
    unsigned char mseq, aseq;
    unsigned char group, index, type;
} __attribute__((__packed__));

struct ipc_request {
    unsigned char mseq;
    unsigned char aseq;
    unsigned char group;
    unsigned char index;
    unsigned char type;
    unsigned int length;
    unsigned char *data;
};

struct ipc_response {
    unsigned char mseq, aseq;
    unsigned short command;
    unsigned char type;
    unsigned int data_length;
    unsigned char *data;
};

struct ipc_client;

typedef int (*ipc_client_transport_cb)(uint8_t *data, unsigned int size, void *user_data);
typedef void (*ipc_client_log_handler_cb)(const char *message, void *user_data);

struct ipc_client *ipc_client_new(int client_type);
int ipc_client_set_log_handler(struct ipc_client *client, ipc_client_log_handler_cb log_handler_cb, void *user_data);
int ipc_client_set_delegates(struct ipc_client *client, ipc_client_transport_cb write, void *write_data,
                                                        ipc_client_transport_cb read,  void *read_data);
int ipc_client_free(struct ipc_client *client);

int ipc_client_bootstrap_modem(struct ipc_client *client);
int ipc_client_open(struct ipc_client *client);
int ipc_client_close(struct ipc_client *client);

int ipc_client_recv(struct ipc_client *client, struct ipc_response *response);

/* Convenience functions for ipc_send */
void ipc_client_send(struct ipc_client *client, const unsigned short command, const char type, unsigned char *data,
                     const int length, unsigned char mseq);
void ipc_client_send_get(struct ipc_client *client, const unsigned short command, unsigned char aseq);
void ipc_client_send_exec(struct ipc_client *client, const unsigned short command, unsigned char aseq);

/* Utility functions */
const char *ipc_command_type_to_str(int command);
const char *ipc_response_type_to_str(int type);

#endif