aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/devices/aries/aries.c
blob: cbc0edea9481463d416a77e1a7a4c628a02687c4 (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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
/*
 * This file is part of libsamsung-ipc.
 *
 * Copyright (C) 2011 Joerie de Gram <j.de.gram@gmail.com>
 * Copyright (C) 2011 Simon Busch <morphis@gravedo.de>
 * Copyright (C) 2011 Igor Almeida <igor.contato@gmail.com>
 * Copyright (C) 2011-2014 Paul Kocialkowski <contact@paulk.fr>
 *
 * 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 2 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/>.
 */

#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <net/if.h>

#include <samsung-ipc.h>
#include <ipc.h>

#include "onedram.h"
#include "phonet.h"

#include "xmm616.h"
#include "aries.h"

int aries_boot(struct ipc_client *client)
{
    void *modem_image_data = NULL;
    void *onedram_address = NULL;
    unsigned int onedram_init;
    unsigned int onedram_magic;
    unsigned int onedram_deinit;
    int onedram_fd = -1;
    int serial_fd = -1;
    struct timeval timeout;
    fd_set fds;
    unsigned char *p;
    unsigned char *pp;
    int rc;
    int i;

    if (client == NULL || client->handlers == NULL || client->handlers->power_on == NULL || client->handlers->power_off == NULL)
        return -1;

    ipc_client_log(client, "Starting aries modem boot");

    modem_image_data = file_data_read(ARIES_MODEM_IMAGE_DEVICE, ARIES_MODEM_IMAGE_SIZE, 0x1000, 0);
    if (modem_image_data == NULL) {
        ipc_client_log(client, "Reading modem image data failed");
        goto error;
    }
    ipc_client_log(client, "Read modem image data");

    onedram_fd = open(ARIES_ONEDRAM_DEVICE, O_RDWR);
    if (onedram_fd < 0) {
        ipc_client_log(client, "Opening onedram failed");
        goto error;
    }
    ipc_client_log(client, "Opened onedram");

    rc = network_iface_down(ARIES_MODEM_IFACE, AF_PHONET, SOCK_DGRAM);
    if (rc < 0) {
        ipc_client_log(client, "Turning modem network iface down failed");
        goto error;
    }
    ipc_client_log(client, "Turned modem network iface down");

    rc = client->handlers->power_on(client->handlers->power_data);
    if (rc < 0) {
        ipc_client_log(client, "Powering the modem off failed");
        goto error;
    }
    ipc_client_log(client, "Powered the modem off");

    usleep(1000);

    rc = client->handlers->power_off(client->handlers->power_data);
    if (rc < 0) {
        ipc_client_log(client, "Powering the modem on failed");
        goto error;
    }
    ipc_client_log(client, "Powered the modem on");

    serial_fd = open(ARIES_MODEM_SERIAL_DEVICE, O_RDWR | O_NDELAY);
    if (serial_fd < 0) {
        ipc_client_log(client, "Opening serial failed");
        goto error;
    }
    ipc_client_log(client, "Opened serial");

    usleep(100000);

    p = (unsigned char *) modem_image_data;

    rc = xmm616_psi_send(client, serial_fd, (void *) p, ARIES_PSI_SIZE);
    if (rc < 0) {
        ipc_client_log(client, "Sending XMM616 PSI failed");
        goto error;
    }
    ipc_client_log(client, "Sent XMM616 PSI");

    p += ARIES_PSI_SIZE;

    onedram_init = 0;

    FD_ZERO(&fds);
    FD_SET(onedram_fd, &fds);

    timeout.tv_sec = 4;
    timeout.tv_usec = 0;

    i = 0;
    do {
        rc = select(onedram_fd + 1, &fds, NULL, NULL, &timeout);
        if (rc <= 0) {
            ipc_client_log(client, "Reading onedram init failed");
            goto error;
        }

        rc = read(onedram_fd, &onedram_init, sizeof(onedram_init));
        if (rc < (int) sizeof(onedram_init)) {
            ipc_client_log(client, "Reading onedram init failed");
            goto error;
        }

        if (i++ > 50) {
            ipc_client_log(client, "Reading onedram init failed");
            goto error;
        }
    } while (onedram_init != ARIES_ONEDRAM_INIT);
    ipc_client_log(client, "Read onedram init (0x%x)", onedram_init);

    onedram_address = mmap(NULL, ARIES_ONEDRAM_MEMORY_SIZE, PROT_READ|PROT_WRITE, MAP_SHARED, onedram_fd, 0);
    if (onedram_address == NULL || onedram_address == (void *) 0xffffffff) {
            ipc_client_log(client, "Mapping onedram to memory failed");
            goto error;
    }
    ipc_client_log(client, "Mapped onedram to memory");

    pp = (unsigned char *) onedram_address;

    rc = xmm616_firmware_send(client, -1, (void *) pp, (void *) p, ARIES_MODEM_IMAGE_SIZE - ARIES_PSI_SIZE);
    if (rc < 0) {
        ipc_client_log(client, "Sending XMM616 firmware failed");
        goto error;
    }
    ipc_client_log(client, "Sent XMM616 firmware");

    pp = (unsigned char *) onedram_address + ARIES_ONEDRAM_NV_DATA_OFFSET;

    rc = xmm616_nv_data_send(client, -1, pp);
    if (rc < 0) {
        ipc_client_log(client, "Sending XMM616 nv_data failed");
        goto error;
    }
    ipc_client_log(client, "Sent XMM616 nv_data");

    munmap(onedram_address, ARIES_ONEDRAM_MEMORY_SIZE);
    onedram_address = NULL;

    rc = ioctl(onedram_fd, ONEDRAM_REL_SEM);
    if (rc < 0)
        goto error;

    onedram_magic = ARIES_ONEDRAM_MAGIC;
    rc = write(onedram_fd, &onedram_magic, sizeof(onedram_magic));
    if (rc < (int) sizeof(onedram_magic)) {
        ipc_client_log(client, "Writing onedram magic failed");
        goto error;
    }
    ipc_client_log(client, "Wrote onedram magic");

    FD_ZERO(&fds);
    FD_SET(onedram_fd, &fds);

    timeout.tv_sec = 4;
    timeout.tv_usec = 0;

    i = 0;
    do {
        rc = select(onedram_fd + 1, &fds, NULL, NULL, &timeout);
        if (rc <= 0) {
            ipc_client_log(client, "Reading onedram deinit failed");
            goto error;
        }

        rc = read(onedram_fd, &onedram_deinit, sizeof(onedram_deinit));
        if (rc < (int) sizeof(onedram_deinit)) {
            ipc_client_log(client, "Reading onedram deinit failed");
            goto error;
        }

        if (i++ > 50) {
            ipc_client_log(client, "Reading onedram deinit failed");
            goto error;
        }
    } while (onedram_deinit != ARIES_ONEDRAM_DEINIT);
    ipc_client_log(client, "Read onedram deinit (0x%x)", onedram_deinit);

    rc = 0;
    goto complete;

error:
    rc = -1;

complete:
    if (modem_image_data != NULL)
        free(modem_image_data);

    if (serial_fd >= 0)
        close(serial_fd);

    if (onedram_address != NULL)
        munmap(onedram_address, ARIES_ONEDRAM_MEMORY_SIZE);

    if (onedram_fd >= 0)
        close(onedram_fd);

    return rc;
}

int aries_fmt_send(struct ipc_client *client, struct ipc_message *message)
{
    struct ipc_fmt_header header;
    void *buffer;
    size_t length;
    size_t count = 0;
    size_t chunk;
    unsigned char *p;
    int rc;

    if (client == NULL || client->handlers == NULL || client->handlers->write == NULL || message == NULL)
        return -1;

    ipc_fmt_header_setup(&header, message);

    length = header.length;
    buffer = calloc(1, length);

    memcpy(buffer, &header, sizeof(struct ipc_fmt_header));

    if (message->data != NULL && message->size > 0) {
        p = (unsigned char *) buffer + sizeof(header);
        memcpy(p, message->data, message->size);
    }

    ipc_client_log_send(client, message, __func__);

    p = (unsigned char *) buffer;

    while (count < length) {
        chunk = length - count < ARIES_BUFFER_LENGTH ? length - count : ARIES_BUFFER_LENGTH;

        rc = client->handlers->write(client->handlers->transport_data, p, chunk);
        if (rc < 0) {
            ipc_client_log(client, "Writing FMT data failed");
            goto error;
        }

        count += rc;
        p += rc;
    }

    rc = 0;
    goto complete;

error:
    rc = -1;

complete:
    if (buffer != NULL)
        free(buffer);

    return rc;
}

int aries_fmt_recv(struct ipc_client *client, struct ipc_message *message)
{
    struct ipc_fmt_header *header;
    void *buffer;
    size_t length;
    size_t count = 0;
    size_t chunk;
    unsigned char *p;
    int rc;

    if (client == NULL || client->handlers == NULL || client->handlers->read == NULL || message == NULL)
        return -1;

    length = ARIES_BUFFER_LENGTH;
    buffer = calloc(1, length);

    rc = client->handlers->read(client->handlers->transport_data, buffer, length);
    if (rc < (int) sizeof(struct ipc_fmt_header)) {
        ipc_client_log(client, "Reading FMT header failed");
        goto error;
    }

    header = (struct ipc_fmt_header *) buffer;

    ipc_fmt_message_setup(header, message);

    length = header->length - sizeof(struct ipc_fmt_header);
    if (length > 0) {
        message->size = length;
        message->data = calloc(1, length);

        count = rc - sizeof(struct ipc_fmt_header);
        if (count > 0) {
            p = (unsigned char *) buffer + sizeof(struct ipc_fmt_header);
            memcpy(message->data, p, count);
        }
    }

    p = (unsigned char *) message->data + count;

    while (count < length) {
        chunk = length - count < ARIES_BUFFER_LENGTH ? length - count : ARIES_BUFFER_LENGTH;

        rc = client->handlers->read(client->handlers->transport_data, p, chunk);
        if (rc < 0) {
            ipc_client_log(client, "Reading FMT data failed");
            goto error;
        }

        count += rc;
        p += rc;
    }

    ipc_client_log_recv(client, message, __func__);

    rc = 0;
    goto complete;

error:
    rc = -1;

complete:
    if (buffer != NULL)
        free(buffer);

    return rc;
}

int aries_rfs_send(struct ipc_client *client, struct ipc_message *message)
{
    struct ipc_rfs_header header;
    void *buffer;
    size_t length;
    size_t count = 0;
    size_t chunk;
    unsigned char *p;
    int rc;

    if (client == NULL || client->handlers == NULL || client->handlers->write == NULL || message == NULL)
        return -1;

    ipc_rfs_header_setup(&header, message);

    length = header.length;
    buffer = calloc(1, length);

    memcpy(buffer, &header, sizeof(header));
    if (message->data != NULL && message->size > 0) {
        p = (unsigned char *) buffer + sizeof(header);
        memcpy(p, message->data, message->size);
    }

    ipc_client_log_send(client, message, __func__);

    p = (unsigned char *) buffer;

    while (count < length) {
        chunk = length - count < ARIES_BUFFER_LENGTH ? length - count : ARIES_BUFFER_LENGTH;

        rc = client->handlers->write(client->handlers->transport_data, p, chunk);
        if (rc < 0) {
            ipc_client_log(client, "Writing RFS data failed");
            goto error;
        }

        count += rc;
        p += rc;
    }

    rc = 0;
    goto complete;

error:
    rc = -1;

complete:
    if (buffer != NULL)
        free(buffer);

    return rc;
}

int aries_rfs_recv(struct ipc_client *client, struct ipc_message *message)
{
    struct ipc_rfs_header *header;
    void *buffer;
    size_t length;
    size_t count = 0;
    size_t chunk;
    unsigned char *p;
    int rc;

    if (client == NULL || client->handlers == NULL || client->handlers->read == NULL || message == NULL)
        return -1;

    length = ARIES_BUFFER_LENGTH;
    buffer = calloc(1, length);

    rc = client->handlers->read(client->handlers->transport_data, buffer, length);
    if (rc < (int) sizeof(struct ipc_rfs_header)) {
        ipc_client_log(client, "Reading RFS header failed");
        goto error;
    }

    header = (struct ipc_rfs_header *) buffer;
    if (header->length > ARIES_DATA_SIZE_LIMIT) {
        ipc_client_log(client, "Invalid RFS header length: %u", header->length);
        goto error;
    }

    ipc_rfs_message_setup(header, message);

    length = header->length - sizeof(struct ipc_rfs_header);
    if (length > 0) {
        message->size = length;
        message->data = calloc(1, length);

        count = rc - sizeof(struct ipc_rfs_header);
        if (count > 0) {
            p = (unsigned char *) buffer + sizeof(struct ipc_rfs_header);
            memcpy(message->data, p, count);
        }
    }

    p = (unsigned char *) message->data + count;

    while (count < length) {
        chunk = length - count < ARIES_BUFFER_LENGTH ? length - count : ARIES_BUFFER_LENGTH;

        rc = client->handlers->read(client->handlers->transport_data, p, chunk);
        if (rc < 0) {
            ipc_client_log(client, "Reading RFS data failed");
            goto error;
        }

        count += rc;
        p += rc;
    }

    ipc_client_log_recv(client, message, __func__);

    rc = 0;
    goto complete;

error:
    rc = -1;

complete:
    if (buffer != NULL)
        free(buffer);

    return rc;
}

int aries_open(void *data, int type)
{
    struct aries_transport_data *transport_data;
    struct sockaddr_pn *spn;
    struct ifreq ifr;
    int reuse;
    int socket_rfs_magic;
    int fd;
    int rc;

    if (data == NULL)
        return -1;

    transport_data = (struct aries_transport_data *) data;
    memset(data, 0, sizeof(struct aries_transport_data));

    spn = &transport_data->spn;

    memset(&ifr, 0, sizeof(ifr));
    strncpy(ifr.ifr_name, ARIES_MODEM_IFACE, IFNAMSIZ);

    spn->spn_family = AF_PHONET;
    spn->spn_dev = 0;

    switch (type) {
        case IPC_CLIENT_TYPE_FMT:
            spn->spn_resource = ARIES_MODEM_FMT_SPN;
            break;
        case IPC_CLIENT_TYPE_RFS:
            spn->spn_resource = ARIES_MODEM_RFS_SPN;
            break;
        default:
            break;
    }

    fd = socket(AF_PHONET, SOCK_DGRAM, 0);
    if (fd < 0)
        return -1;

    rc = setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, ifr.ifr_name, IFNAMSIZ);
    if (rc < 0)
        return -1;

    rc = ioctl(fd, SIOCGIFINDEX, &ifr);
    if (rc < 0)
        return -1;

    reuse = 1;
    rc = setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse));
    if (rc < 0)
        return -1;

    rc = bind(fd, (const struct sockaddr *) spn, sizeof(struct sockaddr_pn));
    if (rc < 0)
        return -1;

    transport_data->fd = fd;

    if (type == IPC_CLIENT_TYPE_RFS)
    {
        socket_rfs_magic = ARIES_SOCKET_RFS_MAGIC;
        rc = setsockopt(fd, SOL_SOCKET, SO_IPC_RFS, &socket_rfs_magic, sizeof(socket_rfs_magic));
        if (rc < 0)
            return -1;
    }

    rc = network_iface_up(ARIES_MODEM_IFACE, AF_PHONET, SOCK_DGRAM);
    if (rc < 0)
        return -1;

    return 0;
}

int aries_close(void *data)
{
    struct aries_transport_data *transport_data;
    int fd;

    if (data == NULL)
        return -1;

    transport_data = (struct aries_transport_data *) data;

    fd = transport_data->fd;
    if (fd < 0)
        return -1;

    transport_data->fd = -1;
    close(fd);

    return 0;
}

int aries_read(void *data, void *buffer, size_t length)
{
    struct aries_transport_data *transport_data;
    int spn_size;
    int fd;
    int rc;

    if (data == NULL || buffer == NULL || length == 0)
        return -1;

    transport_data = (struct aries_transport_data *) data;

    fd = transport_data->fd;
    if (fd < 0)
        return -1;

    spn_size = sizeof(struct sockaddr_pn);

    rc = recvfrom(fd, buffer, length, 0, (struct sockaddr *) &transport_data->spn, &spn_size);

    return rc;
}

int aries_write(void *data, const void *buffer, size_t length)
{
    struct aries_transport_data *transport_data;
    int spn_size;
    int fd;
    int rc;

    if (data == NULL || buffer == NULL || length == 0)
        return -1;

    transport_data = (struct aries_transport_data *) data;

    fd = transport_data->fd;
    if (fd < 0)
        return -1;

    spn_size = sizeof(struct sockaddr_pn);

    rc = sendto(fd, buffer, length, 0, (const struct sockaddr *) &transport_data->spn, spn_size);

    return rc;
}

int aries_poll(void *data, struct ipc_poll_fds *fds, struct timeval *timeout)
{
    struct aries_transport_data *transport_data;
    fd_set set;
    int fd;
    int fd_max;
    unsigned int i;
    unsigned int count;
    int rc;

    if (data == NULL)
        return -1;

    transport_data = (struct aries_transport_data *) data;

    fd = transport_data->fd;
    if (fd < 0)
        return -1;

    FD_ZERO(&set);
    FD_SET(fd, &set);

    fd_max = fd;

    if (fds != NULL && fds->fds != NULL && fds->count > 0) {
        for (i = 0; i < fds->count; i++) {
            if (fds->fds[i] >= 0) {
                FD_SET(fds->fds[i], &set);

                if (fds->fds[i] > fd_max)
                    fd_max = fds->fds[i];
            }
        }
    }

    rc = select(fd_max + 1, &set, NULL, NULL, timeout);

    if (fds != NULL && fds->fds != NULL && fds->count > 0) {
        count = fds->count;

        for (i = 0; i < fds->count; i++) {
            if (!FD_ISSET(fds->fds[i], &set)) {
                fds->fds[i] = -1;
                count--;
            }
        }

        fds->count = count;
    }

    return rc;
}

int aries_power_on(void *data)
{
    char buffer[] = "on\n";
    int value;
    int rc;

    value = sysfs_value_read(ARIES_MODEMCTL_STATUS_SYSFS);
    if (value < 0)
        return -1;

    // The modem is already on
    if (value == 1)
        return 0;

    rc = sysfs_string_write(ARIES_MODEMCTL_CONTROL_SYSFS, (char *) &buffer, strlen(buffer));
    if (rc < 0)
        return -1;

    return 0;
}

int aries_power_off(void *data)
{
    char buffer[] = "off\n";
    int value;
    int rc;

    value = sysfs_value_read(ARIES_MODEMCTL_STATUS_SYSFS);
    if (value < 0)
        return -1;

    // The modem is already off
    if (value == 0)
        return 0;

    rc = sysfs_string_write(ARIES_MODEMCTL_CONTROL_SYSFS, (char *) &buffer, strlen(buffer));
    if (rc < 0)
        return -1;

    return 0;
}

int aries_data_create(void **transport_data, void **power_data,
    void **gprs_data)
{
    if (transport_data == NULL)
        return -1;

    *transport_data = calloc(1, sizeof(struct aries_transport_data));

    return 0;
}

int aries_data_destroy(void *transport_data, void *power_data, void *gprs_data)
{
    if (transport_data == NULL)
        return -1;

    free(transport_data);

    return 0;
}

int aries_gprs_activate(void *data, unsigned int cid)
{
    int rc;

    rc = sysfs_value_write(ARIES_MODEM_PDP_ACTIVATE_SYSFS, cid);
    if (rc < 0)
        return -1;

    return 0;
}

int aries_gprs_deactivate(void *data, unsigned int cid)
{
    int rc;

    rc = sysfs_value_write(ARIES_MODEM_PDP_DEACTIVATE_SYSFS, cid);
    if (rc < 0)
        return -1;

    return 0;
}

char *aries_gprs_get_iface(unsigned int cid)
{
    char *iface = NULL;

    if (cid > ARIES_GPRS_IFACE_COUNT)
        return NULL;

    asprintf(&iface, "%s%d", ARIES_GPRS_IFACE_PREFIX, cid - 1);

    return iface;
}

int aries_gprs_get_capabilities(struct ipc_client_gprs_capabilities *capabilities)
{
    if (capabilities == NULL)
        return -1;

    capabilities->cid_count = ARIES_GPRS_IFACE_COUNT;

    return 0;
}

struct ipc_client_ops aries_fmt_ops = {
    .boot = aries_boot,
    .send = aries_fmt_send,
    .recv = aries_fmt_recv,
};

struct ipc_client_ops aries_rfs_ops = {
    .boot = NULL,
    .send = aries_rfs_send,
    .recv = aries_rfs_recv,
};

struct ipc_client_handlers aries_handlers = {
    .open = aries_open,
    .close = aries_close,
    .read = aries_read,
    .write = aries_write,
    .poll = aries_poll,
    .transport_data = NULL,
    .power_on = aries_power_on,
    .power_off = aries_power_off,
    .power_data = NULL,
    .gprs_activate = aries_gprs_activate,
    .gprs_deactivate = aries_gprs_deactivate,
    .gprs_data = NULL,
    .data_create = aries_data_create,
    .data_destroy = aries_data_destroy,
};

struct ipc_client_gprs_specs aries_gprs_specs = {
    .gprs_get_iface = aries_gprs_get_iface,
    .gprs_get_capabilities = aries_gprs_get_capabilities,
};

struct ipc_client_nv_data_specs aries_nv_data_specs = {
    .nv_data_path = XMM616_NV_DATA_PATH,
    .nv_data_md5_path = XMM616_NV_DATA_MD5_PATH,
    .nv_data_backup_path = XMM616_NV_DATA_BACKUP_PATH,
    .nv_data_backup_md5_path = XMM616_NV_DATA_BACKUP_MD5_PATH,
    .nv_data_secret = XMM616_NV_DATA_SECRET,
    .nv_data_size = XMM616_NV_DATA_SIZE,
    .nv_data_chunk_size = XMM616_NV_DATA_CHUNK_SIZE,
};

// vim:ts=4:sw=4:expandtab