aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/ipc_devices.c
blob: 98581367d666f9a8e7964697ba87d8deb4786b49 (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
/**
 * This file is part of libsamsung-ipc.
 *
 * Copyright (C) 2012 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 <radio.h>

#include "ipc_devices.h"

struct ipc_device_desc ipc_devices[] = {
    {
        .name = "crespo",
        .board_name = "herring",
        .kernel_version = "2.6.35",
        .fmt_ops = &crespo_fmt_ops,
        .rfs_ops = &crespo_rfs_ops,
        .handlers = &crespo_default_handlers,
        .gprs_specs = &crespo_2_6_35_gprs_specs,
        .nv_data_specs = NULL,
    },
    {
        .name = "crespo",
        .board_name = "herring",
        .kernel_version = "3.0",
        .fmt_ops = &crespo_fmt_ops,
        .rfs_ops = &crespo_rfs_ops,
        .handlers = &crespo_default_handlers,
        .gprs_specs = &crespo_3_0_gprs_specs,
        .nv_data_specs = NULL,
    },
    {
        .name = "aries",
        .board_name = "aries",
        .kernel_version = NULL,
        .fmt_ops = &aries_fmt_ops,
        .rfs_ops = &aries_rfs_ops,
        .handlers = &aries_default_handlers,
        .gprs_specs = &aries_gprs_specs,
        .nv_data_specs = NULL,
    },
    {
        .name = "aries",
        .board_name = "gt-p1000",
        .kernel_version = NULL,
        .fmt_ops = &aries_fmt_ops,
        .rfs_ops = &aries_rfs_ops,
        .handlers = &aries_default_handlers,
        .gprs_specs = &aries_gprs_specs,
        .nv_data_specs = NULL,
    },
    {   
        .name = "galaxys2",
        .board_name = "i9100",
        .kernel_version = NULL,
        .fmt_ops = &galaxys2_fmt_ops,
        .rfs_ops = &galaxys2_rfs_ops,
        .handlers = &galaxys2_default_handlers,
        .gprs_specs = &galaxys2_gprs_specs,
        .nv_data_specs = NULL,
    },
    {   
        .name = "galaxys2",
        .board_name = "smdk4210",
        .kernel_version = NULL,
        .fmt_ops = &galaxys2_fmt_ops,
        .rfs_ops = &galaxys2_rfs_ops,
        .handlers = &galaxys2_default_handlers,
        .gprs_specs = &galaxys2_gprs_specs,
        .nv_data_specs = NULL,
    },
    {
        .name = "maguro",
        .board_name = "tuna",
        .kernel_version = NULL,
        .fmt_ops = &maguro_fmt_ops,
        .rfs_ops = &maguro_rfs_ops,
        .handlers = &maguro_default_handlers,
        .gprs_specs = &maguro_gprs_specs,
        .nv_data_specs = &maguro_nv_data_specs,
    },
    {
        .name = "piranha",
        .board_name = "espresso10",
        .kernel_version = NULL,
        .fmt_ops = &piranha_fmt_ops,
        .rfs_ops = &piranha_rfs_ops,
        .handlers = &piranha_default_handlers,
        .gprs_specs = &piranha_gprs_specs,
        .nv_data_specs = NULL,
    },
    {
        .name = "piranha",
        .board_name = "espresso",
        .kernel_version = NULL,
        .fmt_ops = &piranha_fmt_ops,
        .rfs_ops = &piranha_rfs_ops,
        .handlers = &piranha_default_handlers,
        .gprs_specs = &piranha_gprs_specs,
        .nv_data_specs = NULL,
    }
};

int ipc_devices_count = sizeof(ipc_devices) / sizeof(struct ipc_device_desc);

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