aboutsummaryrefslogtreecommitdiff
path: root/product/rddaniel/scp_ramfw/config_sideband.c
blob: 734e542d6434e3765b2e240ccb612084a55e8cc8 (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
#include <fwk_assert.h>
#include <fwk_element.h>
#include <fwk_id.h>
#include <fwk_module.h>
#include <fwk_module_idx.h>
#include <mod_sideband.h>
#include <mod_sid.h>

//type 0 indicates MHU2,

/* Configuration for Chip 0 */
struct remote_instance remote_instances0[] = {
    [0] = {
        .process = {
            .remote_instance_id =  1,
            .read_address = 0xA4001000 + 0x400,
        },
        .transport = {
             .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
             .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
             .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
             .type = 0,
        },
    },
    [1] = {
        .process = {
            .remote_instance_id = 2,
            .read_address = 0xA4001000 + 0x400 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .type = 0,
        },
    },
    [2] = {
        .process = {
            .remote_instance_id = 3,
            .read_address = 0xA4001000 + 0x400 + 0x400 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .type = 0,
        },
    }
};

/* Configuration for Chip 1 */
struct remote_instance remote_instances1[] = {
    [0] = {
        .process = {
            .remote_instance_id = 0,
            .read_address = 0xA4001000,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
            .type = 0,
        },
    },
    [1] = {
        .process = {
            .remote_instance_id = 2,
            .read_address = 0xA4001000 + 0x400 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .type = 0,
        },
    },
    [2] = {
        .process = {
            .remote_instance_id = 3,
            .read_address = 0xA4001000 + 0x400 + 0x400 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .type = 0,
        },
    }
};

/* Configuration for Chip 2 */
struct remote_instance remote_instances2[] = {
    [0] = {
        .process = {
            .remote_instance_id = 0,
            .read_address = 0xA4001000,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
            .type = 0,
        },
    },
    [1] = {
        .process = {
            .remote_instance_id = 1,
            .read_address = 0xA4001000 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .type = 0,
        },
    },
    [2] = {
        .process = {
            .remote_instance_id = 3,
            .read_address = 0xA4001000 + 0x400 + 0x400 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .type = 0,
        },
    }
};

/* Configuration for Chip 3 */
struct remote_instance remote_instances3[] = {
    [0] = {
        .process = {
            .remote_instance_id = 0,
            .read_address = 0xA4001000,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 2, 0),
            .type = 0,
        },
    },
    [1] = {
        .process = {
            .remote_instance_id = 1,
            .read_address = 0xA4001000 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 3, 0),
            .type = 0,
        },
    },
    [2] = {
        .process = {
            .remote_instance_id = 2,
            .read_address = 0xA4001000 + 0x400 + 0x400,
        },
        .transport = {
            .driver_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .driver_api_id = FWK_ID_API_INIT(FWK_MODULE_IDX_MHU2, 0),
            .element_id = FWK_ID_SUB_ELEMENT_INIT(FWK_MODULE_IDX_MHU2, 4, 0),
            .type = 0,
        },
    }
};

static const struct fwk_element instance_table0[] = {
    [0] = {
        .name = "INSTANCE0",
        .data = &((struct instance_ctx) {
                .write_base_address = 0xA4001000,
                .write_max_size = 0x400,
                .instance_id = 0,
                .remote_instances = remote_instances0,
                .no_of_instances = 3,
                })
    },
    [1] = {0},
};

static const struct fwk_element instance_table1[] = {
    [0] = {
        .name = "INSTANCE1",
        .data = &((struct instance_ctx) {
                .write_base_address = 0xA4001000 + 0x400,
                .write_max_size = 0x400,
                .instance_id = 1,
                .remote_instances = remote_instances1,
                .no_of_instances = 3,
                })
    },
    [1] = {0},
};

static const struct fwk_element instance_table2[] = {
    [0] = {
        .name = "INSTANCE2",
        .data = &((struct instance_ctx) {
                .write_base_address = 0xA4001000 + 0x400 + 0x400,
                .write_max_size = 0x400,
                .instance_id = 2,
                .remote_instances = remote_instances2,
                .no_of_instances = 3,
                })
    },
    [1] = {0},
};

static const struct fwk_element instance_table3[] = {
    [0] = {
        .name = "INSTANCE3",
        .data = &((struct instance_ctx) {
                .write_base_address = 0xA4001000 + 0x400 + 0x400 + 0x400,
                .write_max_size = 0x400,
                .instance_id = 3,
                .remote_instances = remote_instances3,
                .no_of_instances = 3,
                })
    },
    [1] = {0},
};

static const struct fwk_element *sideband_get_element_table(fwk_id_t module_id)
{
   const struct mod_sid_info *sid_info;
   int status;
   status = mod_sid_get_system_info(&sid_info);
     if (status != FWK_SUCCESS)
         assert(false);
     if (sid_info->node_number == 0)
         return instance_table0;
     else
         if (sid_info->node_number == 1)
            return instance_table1;
         else
             if (sid_info->node_number == 2)
                 return instance_table2;
             else
                 return instance_table3;
}

const struct fwk_module_config config_sideband = {
   .get_element_table = sideband_get_element_table,
};