blob: a2cd6543625c43967f2b71520b054af9cd48f999 [file] [log] [blame]
/*
* e1.c
*
* Copyright (C) 2019-2020 Sylvain Munaut <tnt@246tNt.com>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include "config.h"
#include "console.h"
#include "e1.h"
#include "e1_hw.h"
#include "dma.h"
#include "led.h" // FIXME
#include "misc.h" // needed to get the E1 tick for "LOS" detection
static volatile struct e1_core * const e1_regs = (void *)(E1_CORE_BASE);
static volatile uint8_t * const e1_data = (void *)(E1_DATA_BASE);
unsigned int
e1_data_ofs(int mf, int frame, int ts)
{
return (mf << 9) | (frame << 5) | ts;
}
volatile uint8_t *
e1_data_ptr(int mf, int frame, int ts)
{
return &e1_data[e1_data_ofs(mf, frame, ts)];
}
// FIFOs
// -----
/* Note: FIFO works at 'frame' level (i.e. 32 bytes) */
struct e1_fifo {
/* Buffer zone associated with the FIFO */
unsigned int base;
unsigned int mask;
/* Pointers / Levels */
unsigned int wptr[2]; /* 0=committed 1=allocated */
unsigned int rptr[2]; /* 0=discared 1=peeked */
};
/* Utils */
static void
e1f_reset(struct e1_fifo *fifo, unsigned int base, unsigned int len)
{
memset(fifo, 0x00, sizeof(struct e1_fifo));
fifo->base = base;
fifo->mask = len - 1;
}
static unsigned int
e1f_allocd_frames(struct e1_fifo *fifo)
{
/* Number of frames that are allocated (i.e. where we can't write to) */
return (fifo->wptr[1] - fifo->rptr[0]) & fifo->mask;
}
static unsigned int
e1f_valid_frames(struct e1_fifo *fifo)
{
/* Number of valid frames */
return (fifo->wptr[0] - fifo->rptr[0]) & fifo->mask;
}
static unsigned int
e1f_unseen_frames(struct e1_fifo *fifo)
{
/* Number of valid frames that haven't been peeked yet */
return (fifo->wptr[0] - fifo->rptr[1]) & fifo->mask;
}
static unsigned int
e1f_free_frames(struct e1_fifo *fifo)
{
/* Number of frames that aren't allocated */
return (fifo->rptr[0] - fifo->wptr[1] - 1) & fifo->mask;
}
static unsigned int
e1f_ofs_to_dma(unsigned int ofs)
{
/* DMA address are 32-bits word address. Offsets are 32 byte address */
return (ofs << 3);
}
static unsigned int
e1f_ofs_to_mf(unsigned int ofs)
{
/* E1 Buffer Descriptors are always multiframe aligned */
return (ofs >> 4);
}
/* Debug */
static void
e1f_debug(struct e1_fifo *fifo, const char *name)
{
unsigned int la, lv, lu, lf;
la = e1f_allocd_frames(fifo);
lv = e1f_valid_frames(fifo);
lu = e1f_unseen_frames(fifo);
lf = e1f_free_frames(fifo);
printf("%s: R: %u / %u | W: %u / %u | A:%u V:%u U:%u F:%u\n",
name,
fifo->rptr[0], fifo->rptr[1], fifo->wptr[0], fifo->wptr[1],
la, lv, lu, lf
);
}
/* Frame level read/write */
static unsigned int
e1f_frame_write(struct e1_fifo *fifo, unsigned int *ofs, unsigned int max_frames)
{
unsigned int lf, le;
lf = e1f_free_frames(fifo);
le = fifo->mask - fifo->wptr[0] + 1;
if (max_frames > le)
max_frames = le;
if (max_frames > lf)
max_frames = lf;
*ofs = fifo->base + fifo->wptr[0];
fifo->wptr[1] = fifo->wptr[0] = (fifo->wptr[0] + max_frames) & fifo->mask;
return max_frames;
}
static unsigned int
e1f_frame_read(struct e1_fifo *fifo, unsigned int *ofs, unsigned int max_frames)
{
unsigned int lu, le;
lu = e1f_unseen_frames(fifo);
le = fifo->mask - fifo->rptr[1] + 1;
if (max_frames > le)
max_frames = le;
if (max_frames > lu)
max_frames = lu;
*ofs = fifo->base + fifo->rptr[1];
fifo->rptr[0] = fifo->rptr[1] = (fifo->rptr[1] + max_frames) & fifo->mask;
return max_frames;
}
/* MultiFrame level split read/write */
static bool
e1f_multiframe_write_prepare(struct e1_fifo *fifo, unsigned int *ofs)
{
unsigned int lf;
lf = e1f_free_frames(fifo);
if (lf < 16)
return false;
*ofs = fifo->base + fifo->wptr[1];
fifo->wptr[1] = (fifo->wptr[1] + 16) & fifo->mask;
return true;
}
static void
e1f_multiframe_write_commit(struct e1_fifo *fifo)
{
fifo->wptr[0] = (fifo->wptr[0] + 16) & fifo->mask;
}
static bool
e1f_multiframe_read_peek(struct e1_fifo *fifo, unsigned int *ofs)
{
unsigned int lu;
lu = e1f_unseen_frames(fifo);
if (lu < 16)
return false;
*ofs = fifo->base + fifo->rptr[1];
fifo->rptr[1] = (fifo->rptr[1] + 16) & fifo->mask;
return true;
}
static void
e1f_multiframe_read_discard(struct e1_fifo *fifo)
{
fifo->rptr[0] = (fifo->rptr[0] + 16) & fifo->mask;
}
static void
e1f_multiframe_empty(struct e1_fifo *fifo)
{
fifo->rptr[0] = fifo->rptr[1] = (fifo->wptr[0] & ~15);
}
// Main logic
// ----------
enum e1_pipe_state {
IDLE = 0, /* not yet initialized */
BOOT = 1, /* after e1_init(), regiters are programmed */
RUN = 2, /* normal operation */
RECOVER = 3, /* after underflow, overflow or alignment error */
};
static struct {
struct {
uint32_t cr;
struct e1_fifo fifo;
int in_flight;
enum e1_pipe_state state;
uint16_t last_tick;
} rx;
struct {
uint32_t cr;
struct e1_fifo fifo;
int in_flight;
enum e1_pipe_state state;
} tx;
struct e1_error_count errors;
} g_e1;
void
e1_init(uint16_t rx_cr, uint16_t tx_cr)
{
/* Global state init */
memset(&g_e1, 0x00, sizeof(g_e1));
/* Reset FIFOs */
e1f_reset(&g_e1.rx.fifo, 0, 128);
e1f_reset(&g_e1.tx.fifo, 128, 128);
/* Enable Rx */
g_e1.rx.cr = E1_RX_CR_ENABLE | rx_cr;
e1_regs->rx.csr = E1_RX_CR_OVFL_CLR | g_e1.rx.cr;
/* Enable Tx */
g_e1.tx.cr = E1_TX_CR_ENABLE | tx_cr;
e1_regs->tx.csr = E1_TX_CR_UNFL_CLR | g_e1.tx.cr;
/* State */
g_e1.rx.state = BOOT;
g_e1.tx.state = BOOT;
}
#define TXCR_PERMITTED ( \
E1_TX_CR_MODE_TS0_CRC_E | \
E1_TX_CR_TICK_REMOTE | \
E1_TX_CR_ALARM | \
E1_TX_CR_LOOPBACK | \
E1_TX_CR_LOOPBACK_CROSS )
void
e1_tx_config(uint16_t cr)
{
g_e1.tx.cr = (cr & TXCR_PERMITTED);
e1_regs->tx.csr = (e1_regs->tx.csr & ~TXCR_PERMITTED) | g_e1.tx.cr;
}
#define RXCR_PERMITTED ( \
E1_RX_CR_MODE_MFA )
void
e1_rx_config(uint16_t cr)
{
g_e1.rx.cr = (cr & RXCR_PERMITTED);
e1_regs->rx.csr = (e1_regs->rx.csr & ~RXCR_PERMITTED) | g_e1.rx.cr;
}
#include "dma.h"
unsigned int
e1_rx_need_data(unsigned int usb_addr, unsigned int max_frames, unsigned int *pos)
{
unsigned int ofs;
int tot_frames = 0;
int n_frames;
while (max_frames) {
/* Get some data from the FIFO */
n_frames = e1f_frame_read(&g_e1.rx.fifo, &ofs, max_frames);
if (!n_frames)
break;
/* Give pos */
if (pos) {
*pos = ofs & g_e1.rx.fifo.mask;
pos = NULL;
}
/* Copy from FIFO to USB */
dma_exec(e1f_ofs_to_dma(ofs), usb_addr, n_frames * (32 / 4), false, NULL, NULL);
/* Prepare Next */
usb_addr += n_frames * (32 / 4);
max_frames -= n_frames;
tot_frames += n_frames;
/* Wait for DMA completion */
while (dma_poll());
}
return tot_frames;
}
unsigned int
e1_tx_feed_data(unsigned int usb_addr, unsigned int frames)
{
unsigned int ofs;
int n_frames;
while (frames) {
/* Get some space in FIFO */
n_frames = e1f_frame_write(&g_e1.tx.fifo, &ofs, frames);
if (!n_frames) {
printf("[!] TX FIFO Overflow %d %d\n", frames, n_frames);
break;
}
/* Copy from USB to FIFO */
dma_exec(e1f_ofs_to_dma(ofs), usb_addr, n_frames * (32 / 4), true, NULL, NULL);
/* Prepare next */
usb_addr += n_frames * (32 / 4);
frames -= n_frames;
/* Wait for DMA completion */
while (dma_poll());
}
return frames;
}
unsigned int
e1_tx_level(void)
{
return e1f_valid_frames(&g_e1.tx.fifo);
}
unsigned int
e1_rx_level(void)
{
return e1f_valid_frames(&g_e1.rx.fifo);
}
const struct e1_error_count *
e1_get_error_count(void)
{
return &g_e1.errors;
}
void
e1_poll(void)
{
uint32_t bd;
unsigned int ofs;
/* Active ? */
if ((g_e1.rx.state == IDLE) && (g_e1.tx.state == IDLE))
return;
/* HACK: LED link status */
if (e1_regs->rx.csr & E1_RX_SR_ALIGNED) {
e1_platform_led_set(0, E1P_LED_GREEN, E1P_LED_ST_ON);
led_color(0, 48, 0);
g_e1.errors.flags &= ~(E1_ERR_F_LOS|E1_ERR_F_ALIGN_ERR);
} else {
uint16_t cur_tick = e1_tick_read_rx(0);
if (g_e1.rx.last_tick == cur_tick) {
e1_platform_led_set(0, E1P_LED_GREEN, E1P_LED_ST_OFF);
/* FIXME: this is very flaky, we are probably getting some noise
* at the Rx tick counter if the cable is disconnected? */
//g_e1.errors.flags |= E1_ERR_F_LOS;
} else {
e1_platform_led_set(0, E1P_LED_GREEN, E1P_LED_ST_BLINK);
g_e1.errors.flags &= ~E1_ERR_F_LOS;
}
g_e1.rx.last_tick = cur_tick;
led_color(48, 0, 0);
g_e1.errors.flags |= E1_ERR_F_ALIGN_ERR;
/* TODO: completely off if rx tick counter not incrementing */
}
/* Recover any done TX BD */
while ( (bd = e1_regs->tx.bd) & E1_BD_VALID ) {
e1f_multiframe_read_discard(&g_e1.tx.fifo);
g_e1.tx.in_flight--;
}
/* Recover any done RX BD */
while ( (bd = e1_regs->rx.bd) & E1_BD_VALID ) {
/* FIXME: CRC status ? */
e1f_multiframe_write_commit(&g_e1.rx.fifo);
if ((bd & (E1_BD_CRC0 | E1_BD_CRC1)) != (E1_BD_CRC0 | E1_BD_CRC1)) {
printf("b: %03x\n", bd);
g_e1.errors.crc++;
}
g_e1.rx.in_flight--;
}
/* Boot procedure */
if (g_e1.tx.state == BOOT) {
if (e1f_unseen_frames(&g_e1.tx.fifo) < (16 * 5))
return;
/* HACK: LED flow status */
led_blink(true, 200, 1000);
led_breathe(true, 100, 200);
}
/* Handle RX */
/* Misalign ? */
if (g_e1.rx.state == RUN) {
if (!(e1_regs->rx.csr & E1_RX_SR_ALIGNED)) {
printf("[!] E1 rx misalign\n");
g_e1.rx.state = RECOVER;
g_e1.errors.align++;
}
}
/* Overflow ? */
if (g_e1.rx.state == RUN) {
if (e1_regs->rx.csr & E1_RX_SR_OVFL) {
printf("[!] E1 overflow %d\n", g_e1.rx.in_flight);
g_e1.rx.state = RECOVER;
g_e1.errors.ovfl++;
}
}
/* Recover ready ? */
if (g_e1.rx.state == RECOVER) {
if (g_e1.rx.in_flight != 0)
goto done_rx;
e1f_multiframe_empty(&g_e1.rx.fifo);
}
/* Fill new RX BD */
while (g_e1.rx.in_flight < 4) {
if (!e1f_multiframe_write_prepare(&g_e1.rx.fifo, &ofs))
break;
e1_regs->rx.bd = e1f_ofs_to_mf(ofs);
g_e1.rx.in_flight++;
}
/* Clear overflow if needed */
if (g_e1.rx.state != RUN) {
e1_regs->rx.csr = g_e1.rx.cr | E1_RX_CR_OVFL_CLR;
g_e1.rx.state = RUN;
}
done_rx:
/* Handle TX */
/* Underflow ? */
if (g_e1.tx.state == RUN) {
if (e1_regs->tx.csr & E1_TX_SR_UNFL) {
printf("[!] E1 underflow %d\n", g_e1.tx.in_flight);
g_e1.tx.state = RECOVER;
g_e1.errors.unfl++;
}
}
/* Recover ready ? */
if (g_e1.tx.state == RECOVER) {
if (e1f_unseen_frames(&g_e1.tx.fifo) < (16 * 5))
return;
}
/* Fill new TX BD */
while (g_e1.tx.in_flight < 4) {
if (!e1f_multiframe_read_peek(&g_e1.tx.fifo, &ofs))
break;
e1_regs->tx.bd = e1f_ofs_to_mf(ofs);
g_e1.tx.in_flight++;
}
/* Clear underflow if needed */
if (g_e1.tx.state != RUN) {
e1_regs->tx.csr = g_e1.tx.cr | E1_TX_CR_UNFL_CLR;
g_e1.tx.state = RUN;
}
}
void
e1_debug_print(bool data)
{
volatile uint8_t *p;
puts("E1\n");
printf("CSR: Rx %04x / Tx %04x\n", e1_regs->rx.csr, e1_regs->tx.csr);
printf("InF: Rx %d / Tx %d\n", g_e1.rx.in_flight, g_e1.tx.in_flight);
printf("Sta: Rx %d / Tx %d\n", g_e1.rx.state, g_e1.tx.state);
e1f_debug(&g_e1.rx.fifo, "Rx FIFO");
e1f_debug(&g_e1.tx.fifo, "Tx FIFO");
if (data) {
puts("\nE1 Data\n");
for (int f=0; f<16; f++) {
p = e1_data_ptr(0, f, 0);
for (int ts=0; ts<32; ts++)
printf(" %02x", p[ts]);
printf("\n");
}
}
}