2014-07-04 23:49:08 +08:00
|
|
|
#include <stdio.h>
|
2014-09-15 22:40:33 +08:00
|
|
|
#include <string.h>
|
2016-01-10 21:04:55 +08:00
|
|
|
#include <alloc.h>
|
2014-07-04 23:49:08 +08:00
|
|
|
#include <irq.h>
|
|
|
|
#include <uart.h>
|
2015-03-12 05:02:19 +08:00
|
|
|
#include <console.h>
|
2014-07-04 23:49:08 +08:00
|
|
|
#include <system.h>
|
2014-09-15 22:56:23 +08:00
|
|
|
#include <generated/csr.h>
|
2015-04-22 15:01:32 +08:00
|
|
|
#include <hw/flags.h>
|
|
|
|
|
|
|
|
#include <lwip/init.h>
|
|
|
|
#include <lwip/ip4_addr.h>
|
|
|
|
#include <lwip/netif.h>
|
2016-12-05 12:35:02 +08:00
|
|
|
#include <lwip/timeouts.h>
|
2015-04-22 15:01:32 +08:00
|
|
|
#include <lwip/tcp.h>
|
2015-06-28 05:02:43 +08:00
|
|
|
#ifdef CSR_ETHMAC_BASE
|
2015-11-04 00:35:03 +08:00
|
|
|
#include <netif/etharp.h>
|
|
|
|
#include <liteethif.h>
|
2015-06-28 05:02:43 +08:00
|
|
|
#else
|
|
|
|
#include <netif/ppp/ppp.h>
|
|
|
|
#include <netif/ppp/pppos.h>
|
2015-04-22 15:01:32 +08:00
|
|
|
#endif
|
2014-07-04 23:49:08 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
#include "flash_storage.h"
|
2015-06-28 05:02:43 +08:00
|
|
|
|
2015-04-22 15:01:32 +08:00
|
|
|
static struct netif netif;
|
|
|
|
|
2015-06-28 05:02:43 +08:00
|
|
|
#ifndef CSR_ETHMAC_BASE
|
|
|
|
static ppp_pcb *ppp;
|
|
|
|
#endif
|
|
|
|
|
2016-12-05 12:35:02 +08:00
|
|
|
void lwip_service(void);
|
2016-09-07 00:42:13 +08:00
|
|
|
void lwip_service(void)
|
2015-04-22 15:01:32 +08:00
|
|
|
{
|
|
|
|
sys_check_timeouts();
|
2015-06-28 05:02:43 +08:00
|
|
|
#ifdef CSR_ETHMAC_BASE
|
2016-05-07 17:42:22 +08:00
|
|
|
liteeth_input(&netif);
|
2015-06-28 05:02:43 +08:00
|
|
|
#else
|
|
|
|
if(uart_read_nonblock()) {
|
|
|
|
u8_t c;
|
|
|
|
c = uart_read();
|
|
|
|
pppos_input(ppp, &c, 1);
|
|
|
|
}
|
|
|
|
#endif
|
2015-04-22 15:01:32 +08:00
|
|
|
}
|
|
|
|
|
2015-06-28 05:02:43 +08:00
|
|
|
#ifdef CSR_ETHMAC_BASE
|
2015-05-01 12:34:47 +08:00
|
|
|
unsigned char macadr[6];
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
static int hex2nib(int c)
|
2015-04-23 23:22:40 +08:00
|
|
|
{
|
2015-05-01 12:34:47 +08:00
|
|
|
if((c >= '0') && (c <= '9'))
|
|
|
|
return c - '0';
|
|
|
|
if((c >= 'a') && (c <= 'f'))
|
|
|
|
return c - 'a' + 10;
|
|
|
|
if((c >= 'A') && (c <= 'F'))
|
|
|
|
return c - 'A' + 10;
|
|
|
|
return -1;
|
2015-04-23 23:22:40 +08:00
|
|
|
}
|
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
static void init_macadr(void)
|
2015-04-23 23:22:40 +08:00
|
|
|
{
|
2015-05-01 12:34:47 +08:00
|
|
|
static const unsigned char default_macadr[6] = {0x10, 0xe2, 0xd5, 0x32, 0x50, 0x00};
|
2015-12-04 15:57:39 +08:00
|
|
|
#if (defined CSR_SPIFLASH_BASE && defined CONFIG_SPIFLASH_PAGE_SIZE)
|
2015-05-01 12:34:47 +08:00
|
|
|
char b[32];
|
|
|
|
char fs_macadr[6];
|
|
|
|
int i, r, s;
|
2015-05-02 12:20:20 +08:00
|
|
|
#endif
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
memcpy(macadr, default_macadr, 6);
|
2015-12-04 15:57:39 +08:00
|
|
|
#if (defined CSR_SPIFLASH_BASE && defined CONFIG_SPIFLASH_PAGE_SIZE)
|
2015-05-01 12:34:47 +08:00
|
|
|
r = fs_read("mac", b, sizeof(b) - 1, NULL);
|
|
|
|
if(r <= 0)
|
|
|
|
return;
|
|
|
|
b[r] = 0;
|
|
|
|
for(i=0;i<6;i++) {
|
|
|
|
r = hex2nib(b[3*i]);
|
|
|
|
s = hex2nib(b[3*i + 1]);
|
|
|
|
if((r < 0) || (s < 0))
|
|
|
|
return;
|
|
|
|
fs_macadr[i] = (r << 4) | s;
|
2015-04-23 23:22:40 +08:00
|
|
|
}
|
2015-05-01 12:34:47 +08:00
|
|
|
for(i=0;i<5;i++)
|
|
|
|
if(b[3*i + 2] != ':')
|
|
|
|
return;
|
|
|
|
memcpy(macadr, fs_macadr, 6);
|
2015-05-02 12:20:20 +08:00
|
|
|
#endif
|
2015-04-23 23:22:40 +08:00
|
|
|
}
|
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
static void fsip_or_default(struct ip4_addr *d, char *key, int i1, int i2, int i3, int i4)
|
2015-04-23 23:22:40 +08:00
|
|
|
{
|
|
|
|
int r;
|
2015-12-04 15:57:39 +08:00
|
|
|
#if (defined CSR_SPIFLASH_BASE && defined CONFIG_SPIFLASH_PAGE_SIZE)
|
2015-05-01 12:34:47 +08:00
|
|
|
char cp[32];
|
2015-05-02 12:20:20 +08:00
|
|
|
#endif
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
IP4_ADDR(d, i1, i2, i3, i4);
|
2015-12-04 15:57:39 +08:00
|
|
|
#if (defined CSR_SPIFLASH_BASE && defined CONFIG_SPIFLASH_PAGE_SIZE)
|
2015-05-01 12:34:47 +08:00
|
|
|
r = fs_read(key, cp, sizeof(cp) - 1, NULL);
|
|
|
|
if(r <= 0)
|
|
|
|
return;
|
|
|
|
cp[r] = 0;
|
|
|
|
if(!ip4addr_aton(cp, d))
|
|
|
|
return;
|
2015-05-02 12:20:20 +08:00
|
|
|
#endif
|
2015-04-23 23:22:40 +08:00
|
|
|
}
|
|
|
|
|
2016-12-05 12:35:02 +08:00
|
|
|
void network_init(void);
|
2016-09-07 00:42:13 +08:00
|
|
|
void network_init(void)
|
2015-04-23 23:22:40 +08:00
|
|
|
{
|
2015-05-01 12:34:47 +08:00
|
|
|
struct ip4_addr local_ip;
|
|
|
|
struct ip4_addr netmask;
|
|
|
|
struct ip4_addr gateway_ip;
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
init_macadr();
|
2016-02-29 21:35:23 +08:00
|
|
|
fsip_or_default(&local_ip, "ip", 192, 168, 1, 50);
|
2015-05-01 12:34:47 +08:00
|
|
|
fsip_or_default(&netmask, "netmask", 255, 255, 255, 0);
|
2016-02-29 21:35:23 +08:00
|
|
|
fsip_or_default(&gateway_ip, "gateway", 192, 168, 1, 1);
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
lwip_init();
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2015-05-01 12:34:47 +08:00
|
|
|
netif_add(&netif, &local_ip, &netmask, &gateway_ip, 0, liteeth_init, ethernet_input);
|
|
|
|
netif_set_default(&netif);
|
|
|
|
netif_set_up(&netif);
|
|
|
|
netif_set_link_up(&netif);
|
2015-04-23 23:22:40 +08:00
|
|
|
}
|
2015-06-28 05:02:43 +08:00
|
|
|
#else /* CSR_ETHMAC_BASE */
|
|
|
|
|
2016-01-19 12:04:51 +08:00
|
|
|
static int ppp_connected;
|
|
|
|
|
2016-07-08 17:26:45 +08:00
|
|
|
static u32_t ppp_output_cb(ppp_pcb *pcb, u8_t *data, u32_t len, void *ctx)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < len; i++)
|
|
|
|
uart_write(data[i]);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2015-06-28 05:02:43 +08:00
|
|
|
static void ppp_status_cb(ppp_pcb *pcb, int err_code, void *ctx)
|
|
|
|
{
|
2016-01-26 04:38:58 +08:00
|
|
|
if (err_code == PPPERR_NONE) {
|
|
|
|
ppp_connected = 1;
|
|
|
|
return;
|
|
|
|
} else if (err_code == PPPERR_USER) {
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
ppp_connect(pcb, 1);
|
|
|
|
}
|
2015-06-28 05:02:43 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 00:42:13 +08:00
|
|
|
void network_init(void)
|
2015-06-28 05:02:43 +08:00
|
|
|
{
|
2016-01-19 12:04:51 +08:00
|
|
|
lwip_init();
|
|
|
|
|
|
|
|
ppp_connected = 0;
|
2016-07-08 17:26:45 +08:00
|
|
|
ppp = pppos_create(&netif, ppp_output_cb, ppp_status_cb, NULL);
|
2015-06-28 05:02:43 +08:00
|
|
|
ppp_set_auth(ppp, PPPAUTHTYPE_NONE, "", "");
|
|
|
|
ppp_set_default(ppp);
|
|
|
|
ppp_connect(ppp, 0);
|
2016-01-19 12:04:51 +08:00
|
|
|
|
|
|
|
while (!ppp_connected)
|
|
|
|
lwip_service();
|
2015-06-28 05:02:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CSR_ETHMAC_BASE */
|
|
|
|
|
2015-04-23 23:22:40 +08:00
|
|
|
|
2016-01-10 21:04:55 +08:00
|
|
|
extern void _fheap, _eheap;
|
|
|
|
|
2016-08-17 16:39:05 +08:00
|
|
|
extern void rust_main();
|
|
|
|
|
2016-12-05 12:35:02 +08:00
|
|
|
u16_t tcp_sndbuf_(struct tcp_pcb *pcb);
|
2016-09-07 00:42:13 +08:00
|
|
|
u16_t tcp_sndbuf_(struct tcp_pcb *pcb) {
|
|
|
|
return tcp_sndbuf(pcb);
|
|
|
|
}
|
|
|
|
|
2016-12-05 12:35:02 +08:00
|
|
|
u8_t* tcp_so_options_(struct tcp_pcb *pcb);
|
2016-10-04 14:40:38 +08:00
|
|
|
u8_t* tcp_so_options_(struct tcp_pcb *pcb) {
|
|
|
|
return &pcb->so_options;
|
|
|
|
}
|
|
|
|
|
2016-12-05 12:35:02 +08:00
|
|
|
void tcp_nagle_disable_(struct tcp_pcb *pcb);
|
2016-11-13 08:33:24 +08:00
|
|
|
void tcp_nagle_disable_(struct tcp_pcb *pcb) {
|
|
|
|
tcp_nagle_disable(pcb);
|
|
|
|
}
|
|
|
|
|
2014-09-15 22:40:33 +08:00
|
|
|
int main(void)
|
|
|
|
{
|
2014-09-05 12:03:22 +08:00
|
|
|
irq_setmask(0);
|
|
|
|
irq_setie(1);
|
|
|
|
uart_init();
|
2014-09-22 13:18:48 +08:00
|
|
|
|
2016-01-10 21:04:55 +08:00
|
|
|
alloc_give(&_fheap, &_eheap - &_fheap);
|
2015-03-12 05:02:19 +08:00
|
|
|
|
2016-10-06 23:35:43 +08:00
|
|
|
rust_main();
|
2016-09-29 22:48:26 +08:00
|
|
|
|
2014-09-05 12:03:22 +08:00
|
|
|
return 0;
|
2014-07-04 23:49:08 +08:00
|
|
|
}
|