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
|
// Copyright 2013-2014 Ettus Research LLC
#include "x300_init.h"
#include "x300_defs.h"
#include "x300_fw_common.h"
#include "xge_phy.h"
#include "ethernet.h"
#include "chinch.h"
#include "mdelay.h"
#include <wb_utils.h>
#include <wb_uart.h>
#include <udp_uart.h>
#include <u3_net_stack.h>
#include <link_state_route_proto.h>
#include <printf.h>
#include <string.h>
#include <print_addrs.h>
static uint32_t *shmem = (uint32_t *) X300_FW_SHMEM_BASE;
/***********************************************************************
* Setup call for udp framer
**********************************************************************/
void program_udp_framer(
const uint8_t ethno,
const uint32_t sid,
const struct ip_addr *dst_ip,
const uint16_t dst_port,
const uint16_t src_port
)
{
const eth_mac_addr_t *dst_mac = u3_net_stack_arp_cache_lookup(dst_ip);
const size_t ethbase = (ethno == 0)? SR_ETHINT0 : SR_ETHINT1;
const size_t vdest = (sid >> 16) & 0xff;
printf("handle_udp_prog_framer sid %u vdest %u\n", sid, vdest);
//setup source framer
const eth_mac_addr_t *src_mac = u3_net_stack_get_mac_addr(ethno);
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_SRC_MAC_HI),
(((uint32_t)src_mac->addr[0]) << 8) | (((uint32_t)src_mac->addr[1]) << 0));
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_SRC_MAC_LO),
(((uint32_t)src_mac->addr[2]) << 24) | (((uint32_t)src_mac->addr[3]) << 16) |
(((uint32_t)src_mac->addr[4]) << 8) | (((uint32_t)src_mac->addr[5]) << 0));
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_SRC_IP_ADDR), u3_net_stack_get_ip_addr(ethno)->addr);
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_SRC_UDP_PORT), src_port);
//setup destination framer
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_DST_RAM_ADDR), vdest);
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_DST_IP_ADDR), dst_ip->addr);
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_DST_UDP_MAC),
(((uint32_t)dst_port) << 16) |
(((uint32_t)dst_mac->addr[0]) << 8) | (((uint32_t)dst_mac->addr[1]) << 0));
wb_poke32(SR_ADDR(SET0_BASE, ethbase + ETH_FRAMER_DST_MAC_LO),
(((uint32_t)dst_mac->addr[2]) << 24) | (((uint32_t)dst_mac->addr[3]) << 16) |
(((uint32_t)dst_mac->addr[4]) << 8) | (((uint32_t)dst_mac->addr[5]) << 0));
}
/***********************************************************************
* Handler for UDP framer program packets
**********************************************************************/
void handle_udp_prog_framer(
const uint8_t ethno,
const struct ip_addr *src, const struct ip_addr *dst,
const uint16_t src_port, const uint16_t dst_port,
const void *buff, const size_t num_bytes
)
{
if (buff == NULL) {
/* We got here from ICMP_DUR undeliverable packet */
/* Future space for hooks to tear down streaming radios etc */
}
else {
const uint32_t sid = ((const uint32_t *)buff)[1];
program_udp_framer(ethno, sid, src, src_port, dst_port);
}
}
/***********************************************************************
* Handler for peek and poke host packets
**********************************************************************/
void handle_udp_fw_comms(
const uint8_t ethno,
const struct ip_addr *src, const struct ip_addr *dst,
const uint16_t src_port, const uint16_t dst_port,
const void *buff, const size_t num_bytes
)
{
if (buff == NULL) {
/* We got here from ICMP_DUR undeliverable packet */
/* Future space for hooks to tear down streaming radios etc */
} else {
const x300_fw_comms_t *request = (const x300_fw_comms_t *)buff;
x300_fw_comms_t reply; memcpy(&reply, buff, sizeof(reply));
//check for error and set error flag
if (num_bytes < sizeof(x300_fw_comms_t)) {
reply.flags |= X300_FW_COMMS_FLAGS_ERROR;
}
//otherwise, run the actions set by the flags
else {
if (request->flags & X300_FW_COMMS_FLAGS_PEEK32)
{
if (request->addr & 0x00100000) {
chinch_peek32(request->addr & 0x000FFFFF, &reply.data);
} else {
reply.data = wb_peek32(request->addr);
}
}
if (request->flags & X300_FW_COMMS_FLAGS_POKE32)
{
if (request->addr & 0x00100000) {
chinch_poke32(request->addr & 0x000FFFFF, request->data);
} else {
wb_poke32(request->addr, request->data);
}
}
}
//send a reply if ack requested
if (request->flags & X300_FW_COMMS_FLAGS_ACK) {
u3_net_stack_send_udp_pkt(ethno, src, dst_port, src_port, &reply, sizeof(reply));
}
}
}
/***********************************************************************
* Handler for FPGA programming packets
**********************************************************************/
void handle_udp_fpga_prog(
const uint8_t ethno,
const struct ip_addr *src, const struct ip_addr *dst,
const uint16_t src_port, const uint16_t dst_port,
const void *buff, const size_t num_bytes
)
{
const x300_fpga_prog_t *request = (const x300_fpga_prog_t *)buff;
x300_fpga_prog_flags_t reply = {0};
bool status = true;
if (buff == NULL) {
return;
} else if (num_bytes < offsetof(x300_fpga_prog_t, data)) {
reply.flags |= X300_FPGA_PROG_FLAGS_ERROR;
} else {
if (request->flags & X300_FPGA_PROG_FLAGS_INIT) {
STATUS_MERGE(chinch_flash_init(), status);
} else if (request->flags & X300_FPGA_PROG_FLAGS_CLEANUP) {
chinch_flash_cleanup();
} else if (request->flags & X300_FPGA_PROG_CONFIGURE) {
//This is a self-destructive operation and will most likely not return an ack.
chinch_start_config();
} else if (request->flags & X300_FPGA_PROG_CONFIG_STATUS) {
if (chinch_get_config_status() != CHINCH_CONFIG_COMPLETED)
reply.flags |= X300_FPGA_PROG_FLAGS_ERROR;
} else {
STATUS_MERGE(chinch_flash_select_sector(request->sector), status);
if (request->flags & X300_FPGA_PROG_FLAGS_ERASE)
STATUS_CHAIN(chinch_flash_erase_sector(), status);
uint32_t num_buff_writes = (request->size / CHINCH_FLASH_MAX_BUF_WRITES) +
(request->size % CHINCH_FLASH_MAX_BUF_WRITES == 0 ? 0 : 1);
uint32_t data_idx = 0;
for (uint32_t buf_wr_i = 0; (buf_wr_i < num_buff_writes) && status; buf_wr_i++) {
uint32_t wr_len = (request->size - data_idx) >= CHINCH_FLASH_MAX_BUF_WRITES ?
CHINCH_FLASH_MAX_BUF_WRITES : (request->size - data_idx);
STATUS_MERGE(chinch_flash_write_buf((request->index + data_idx)*2,
(uint16_t*)request->data+data_idx, wr_len), status);
data_idx += wr_len;
}
if (request->flags & X300_FPGA_PROG_FLAGS_VERIFY) {
uint16_t data[request->size];
STATUS_MERGE(chinch_flash_read_buf(request->index*2, data, request->size), status);
for (uint32_t i = 0; i < request->size; i++) {
status &= (data[i] == request->data[i]);
}
}
}
}
if (!status) reply.flags |= X300_FPGA_PROG_FLAGS_ERROR;
//send a reply if ack requested
if (request->flags & X300_FPGA_PROG_FLAGS_ACK)
{
u3_net_stack_send_udp_pkt(ethno, src, dst_port, src_port, &reply, sizeof(reply));
}
}
/***********************************************************************
* Handler for MTU detection
**********************************************************************/
void handle_udp_mtu_detect(
const uint8_t ethno,
const struct ip_addr *src, const struct ip_addr *dst,
const uint16_t src_port, const uint16_t dst_port,
const void *buff, const size_t num_bytes
)
{
const x300_mtu_t *request = (const x300_mtu_t *) buff;
x300_mtu_t reply;
if (buff == NULL) {
return;
} else if (!(request->flags & X300_MTU_DETECT_ECHO_REQUEST)) {
printf("DEBUG: MTU detect got unknown request\n");
reply.flags |= X300_MTU_DETECT_ERROR;
}
reply.flags |= X300_MTU_DETECT_ECHO_REPLY;
reply.size = num_bytes;
u3_net_stack_send_udp_pkt(ethno, src, dst_port, src_port, &reply, request->size);
}
/***********************************************************************
* Deal with host claims and claim timeout
**********************************************************************/
static void handle_claim(void)
{
static uint32_t last_time = 0;
static size_t timeout = 0;
//time is 0 if the claim was forfeit
if (shmem[X300_FW_SHMEM_CLAIM_TIME] == 0)
{
shmem[X300_FW_SHMEM_CLAIM_STATUS] = 0;
}
//if the time changes, reset timeout
else if (last_time != shmem[X300_FW_SHMEM_CLAIM_TIME])
{
shmem[X300_FW_SHMEM_CLAIM_STATUS] = 1;
timeout = 0;
}
//otherwise increment for timeout
else timeout++;
//always stash the last seen time
last_time = shmem[X300_FW_SHMEM_CLAIM_TIME];
//the claim has timed out after 2 seconds
if (timeout > 2000) shmem[X300_FW_SHMEM_CLAIM_STATUS] = 0;
}
/***********************************************************************
* LED blinky logic and support utilities
**********************************************************************/
static uint32_t get_xbar_total(const uint8_t port)
{
#define get_xbar_stat(in_prt, out_prt) \
wb_peek32(RB0_BASE+256+(((in_prt)*8+(out_prt))*4))
uint32_t total = 0;
for (size_t i = 0; i < 8; i++)
{
total += get_xbar_stat(port, i);
}
for (size_t i = 0; i < 8; i++)
{
total += get_xbar_stat(i, port);
}
if (port < 2) //also netstack if applicable
{
total += u3_net_stack_get_stat_counts(port);
}
return total;
}
static size_t popcntll(uint64_t num)
{
size_t total = 0;
for (size_t i = 0; i < sizeof(num)*8; i++)
{
total += (num >> i) & 0x1;
}
return total;
}
static void update_leds(void)
{
//update activity status for all ports
uint64_t activity_shreg[8];
for (size_t i = 0; i < 8; i++)
{
static uint32_t last_total[8];
const uint32_t total = get_xbar_total(i);
activity_shreg[i] <<= 1;
activity_shreg[i] |= (total == last_total[i])? 0 : 1;
last_total[i] = total;
}
static uint32_t counter = 0;
counter++;
const size_t cnt0 = popcntll(activity_shreg[0]);
const size_t cnt1 = popcntll(activity_shreg[1]);
const bool act0 = cnt0*8 > (counter % 64);
const bool act1 = cnt1*8 > (counter % 64);
const bool link0 = ethernet_get_link_up(0);
const bool link1 = ethernet_get_link_up(1);
const bool claimed = shmem[X300_FW_SHMEM_CLAIM_STATUS];
wb_poke32(SET0_BASE + SR_LEDS*4, 0
| (link0? LED_LINK2 : 0)
| (link1? LED_LINK1 : 0)
| (act0? LED_ACT2 : 0)
| (act1? LED_ACT1 : 0)
| ((act0 || act1)? LED_LINKACT : 0)
| (claimed? LED_LINKSTAT : 0)
);
}
/***********************************************************************
* Send periodic GARPs to keep network hardware informed
**********************************************************************/
static void garp(void)
{
static size_t count = 0;
if (count++ < 60000) return; //60 seconds
count = 0;
for (size_t e = 0; e < ethernet_ninterfaces(); e++)
{
if (!ethernet_get_link_up(e)) continue;
u3_net_stack_send_arp_request(e, u3_net_stack_get_ip_addr(e));
}
}
/***********************************************************************
* UART handlers - interacts between UART and SHMEM
**********************************************************************/
static void handle_uarts(void)
{
//pool allocations - always update shmem with location
#define NUM_POOL_WORDS32 64
static uint32_t rxpool[NUM_POOL_WORDS32];
static uint32_t txpool[NUM_POOL_WORDS32];
shmem[X300_FW_SHMEM_UART_RX_ADDR] = (uint32_t)rxpool;
shmem[X300_FW_SHMEM_UART_TX_ADDR] = (uint32_t)txpool;
shmem[X300_FW_SHMEM_UART_WORDS32] = NUM_POOL_WORDS32;
////////////////////////////////////////////////////////////////////
// RX UART - get available characters and post to the shmem buffer
////////////////////////////////////////////////////////////////////
static uint32_t rxoffset = 0;
for (int rxch = wb_uart_getc(UART0_BASE); rxch != -1; rxch = wb_uart_getc(UART0_BASE))
{
rxoffset++;
const int shift = ((rxoffset%4) * 8);
static uint32_t rxword32 = 0;
if (shift == 0) rxword32 = 0;
rxword32 |= ((uint32_t) rxch & 0xFF) << shift;
rxpool[(rxoffset/4) % NUM_POOL_WORDS32] = rxword32;
shmem[X300_FW_SHMEM_UART_RX_INDEX] = rxoffset;
}
////////////////////////////////////////////////////////////////////
// TX UART - check for characters in the shmem buffer and send them
////////////////////////////////////////////////////////////////////
static uint32_t txoffset = 0;
while (txoffset != shmem[X300_FW_SHMEM_UART_TX_INDEX])
{
const int shift = ((txoffset%4) * 8);
const int txch = txpool[txoffset/4] >> shift;
wb_uart_putc(UART0_BASE, txch);
txoffset = (txoffset+1) % (NUM_POOL_WORDS32*4);
}
}
/***********************************************************************
* update the link state periodic update
**********************************************************************/
static void update_forwarding(const uint8_t e)
{
/* FIXME: This code is broken.
* It blindly enables forwarding without regard to whether or not
* packets can be forwarded. If one of the Ethernet interfaces is not
* connected, data backs up until the first interface becomes unresponsive.
*
* //update forwarding rules
* uint32_t forward = 0;
* if (!link_state_route_proto_causes_cycle_cached(e, (e+1)%2))
* {
* forward |= (1 << 0); //forward bcast
* forward |= (1 << 1); //forward not mac dest
* }
* const uint32_t eth_base = (e == 0)? SR_ETHINT0 : SR_ETHINT1;
* wb_poke32(SR_ADDR(SET0_BASE, eth_base + 8 + 4), forward);
*/
}
static void handle_link_state(void)
{
//update shmem entries to keep it persistent
size_t map_len = 0;
shmem[X300_FW_SHMEM_ROUTE_MAP_ADDR] = (uint32_t)link_state_route_get_node_mapping(&map_len);
shmem[X300_FW_SHMEM_ROUTE_MAP_LEN] = map_len;
static size_t count = 0;
if (count--) return;
count = 2000; //repeat every ~2 seconds
link_state_route_proto_tick();
for (size_t e = 0; e < ethernet_ninterfaces(); e++)
{
if (ethernet_get_link_up(e))
{
link_state_route_proto_update(e);
link_state_route_proto_flood(e);
}
//update forwarding if something changed
bool before = link_state_route_proto_causes_cycle_cached(e, (e+1)%2);
link_state_route_proto_update_cycle_cache(e);
if (before != link_state_route_proto_causes_cycle_cached(e, (e+1)%2))
update_forwarding(e);
/*
printf("is there a cycle %s -> %s? %s\n",
ip_addr_to_str(u3_net_stack_get_ip_addr(e)),
ip_addr_to_str(u3_net_stack_get_ip_addr((e+1)%2)),
link_state_route_proto_causes_cycle_cached(e, (e+1)%2)? "YES" : "no");
//*/
}
}
/***********************************************************************
* Main loop runs all the handlers
**********************************************************************/
int main(void)
{
x300_init();
u3_net_stack_register_udp_handler(X300_FW_COMMS_UDP_PORT, &handle_udp_fw_comms);
u3_net_stack_register_udp_handler(X300_VITA_UDP_PORT, &handle_udp_prog_framer);
u3_net_stack_register_udp_handler(X300_FPGA_PROG_UDP_PORT, &handle_udp_fpga_prog);
u3_net_stack_register_udp_handler(X300_MTU_DETECT_UDP_PORT, &handle_udp_mtu_detect);
uint32_t last_cronjob = 0;
while(true)
{
//jobs that happen once every ms
const uint32_t ticks_now = wb_peek32(SR_ADDR(RB0_BASE, RB_COUNTER));
const uint32_t ticks_passed = ticks_now - last_cronjob;
static const uint32_t tick_delta = CPU_CLOCK/1000;
if (ticks_passed > tick_delta)
{
handle_link_state(); //deal with router table update
handle_claim(); //deal with the host claim register
update_leds(); //run the link and activity leds
garp(); //send periodic garps
xge_poll_sfpp_status(0); // Every so often poll XGE Phy to look for SFP+ hotplug events.
xge_poll_sfpp_status(1); // Every so often poll XGE Phy to look for SFP+ hotplug events.
last_cronjob = wb_peek32(SR_ADDR(RB0_BASE, RB_COUNTER));
}
//run the network stack - poll and handle
u3_net_stack_handle_one();
//run the PCIe listener - poll and fwd to wishbone
forward_pcie_user_xact_to_wb();
//run the udp uart handler for incoming serial data
handle_uarts(); //udp_uart_poll();
//always reload the compat number into the shmem to keep it persistent
shmem[X300_FW_SHMEM_COMPAT_NUM] = (X300_FW_COMPAT_MAJOR << 16) | X300_FW_COMPAT_MINOR;
}
return 0;
}
|