/*
    Copyright (c) 2012-2013, Thingsquare, http://www.thingsquare.com/.
    Copyright (c) 2016, Nicholas Humfrey
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
      notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.
    3. Neither the name of the copyright holder nor the names of its
      contributors may be used to endorse or promote products derived
      from this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
    FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
    COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
    INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
    OF THE POSSIBILITY OF SUCH DAMAGE.

*/

// original sources: https://github.com/njh/EtherSia/tree/master/src/enc28j60.cpp

#include <Arduino.h>
#include <SPI.h>

#include <stdint.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>

#include "enc28j60.h"

void serial_printf(const char* fmt, ...)
{
    char    buf[128];
    va_list args;
    va_start(args, fmt);
    vsnprintf(buf, 128, fmt, args);
    va_end(args);
    Serial.print(buf);
}

#define DEBUG 0
#if DEBUG
#define PRINTF(...) printf(__VA_ARGS__)
#else
#define PRINTF(...)                                                                                \
    do                                                                                             \
    {                                                                                              \
        (void)0;                                                                                   \
    } while (0)
#endif

#define EIE 0x1b
#define EIR 0x1c
#define ESTAT 0x1d
#define ECON2 0x1e
#define ECON1 0x1f

#define ESTAT_CLKRDY 0x01
#define ESTAT_TXABRT 0x02

#define ECON1_RXEN 0x04
#define ECON1_TXRTS 0x08
#define ECON1_TXRST 0x80

#define ECON2_AUTOINC 0x80
#define ECON2_PKTDEC 0x40

#define EIR_TXIF 0x08

#define ERXTX_BANK 0x00

#define ERDPTL 0x00
#define ERDPTH 0x01
#define EWRPTL 0x02
#define EWRPTH 0x03
#define ETXSTL 0x04
#define ETXSTH 0x05
#define ETXNDL 0x06
#define ETXNDH 0x07
#define ERXSTL 0x08
#define ERXSTH 0x09
#define ERXNDL 0x0a
#define ERXNDH 0x0b
#define ERXRDPTL 0x0c
#define ERXRDPTH 0x0d

#define RX_BUF_START 0x0000
#define RX_BUF_END 0x0fff

#define TX_BUF_START 0x1200

/* MACONx registers are in bank 2 */
#define MACONX_BANK 0x02

#define MACON1 0x00
#define MACSTAT1 0x01
#define MACON3 0x02
#define MACON4 0x03
#define MABBIPG 0x04
#define MAIPGL 0x06
#define MAIPGH 0x07
#define MAMXFLL 0x0a
#define MAMXFLH 0x0b
#define MACON2 0x10
#define MACSTAT2 0x11
#define MICMD 0x12
#define MIREGADR 0x14
#define MIRDL 0x18
#define MIRDH 0x19
#define MIWRL 0x16
#define MIWRH 0x17

/* MICMD Register Bit Definitions */
#define MICMD_MIISCAN 0x02
#define MICMD_MIIRD 0x01

#define MACON1_TXPAUS 0x08
#define MACON1_RXPAUS 0x04
#define MACON1_MARXEN 0x01

#define MACON3_PADCFG_FULL 0xe0
#define MACON3_TXCRCEN 0x10
#define MACON3_FRMLNEN 0x02
#define MACON3_FULDPX 0x01

#define MAX_MAC_LENGTH 1518

#define MAADRX_BANK 0x03
#define MAADR1 0x04 /* MAADR<47:40> */
#define MAADR2 0x05 /* MAADR<39:32> */
#define MAADR3 0x02 /* MAADR<31:24> */
#define MAADR4 0x03 /* MAADR<23:16> */
#define MAADR5 0x00 /* MAADR<15:8> */
#define MAADR6 0x01 /* MAADR<7:0> */
#define MISTAT 0x0a
#define EREVID 0x12

/* MISTAT Register Bit Definitions */
#define MISTAT_BUSY 0x01

#define EPKTCNT_BANK 0x01
#define ERXFCON 0x18
#define EPKTCNT 0x19

#define ERXFCON_UCEN 0x80
#define ERXFCON_ANDOR 0x40
#define ERXFCON_CRCEN 0x20
#define ERXFCON_MCEN 0x02
#define ERXFCON_BCEN 0x01

/* 20 MHz is the silicon maximum, not a signal-integrity guarantee.  The
   controller is connected with board wiring here, so use a conservative
   clock that remains far above the traffic required by SNMP. */
static const SPISettings spiSettings(4000000, MSBFIRST, SPI_MODE0);

ENC28J60::ENC28J60(int8_t cs, SPIClass& spi, int8_t intr) : _bank(ERXTX_BANK), _cs(cs), _spi(spi)
{
    (void)intr;
}

void ENC28J60::enc28j60_arch_spi_select(void)
{
    SPI.beginTransaction(spiSettings);
    digitalWrite(_cs, LOW);
}

void ENC28J60::enc28j60_arch_spi_deselect(void)
{
    digitalWrite(_cs, HIGH);
    SPI.endTransaction();
}

/*---------------------------------------------------------------------------*/
uint8_t ENC28J60::is_mac_mii_reg(uint8_t reg)
{
    /* MAC or MII register (otherwise, ETH register)? */
    switch (_bank)
    {
    case MACONX_BANK:
        return reg < EIE;
    case MAADRX_BANK:
        return reg <= MAADR2 || reg == MISTAT;
    case ERXTX_BANK:
    case EPKTCNT_BANK:
    default:
        return 0;
    }
}
/*---------------------------------------------------------------------------*/
uint8_t ENC28J60::readreg(uint8_t reg)
{
    uint8_t r;
    enc28j60_arch_spi_select();
    SPI.transfer(0x00 | (reg & 0x1f));
    if (is_mac_mii_reg(reg))
    {
        /* MAC and MII registers require that a dummy byte be read first. */
        SPI.transfer(0);
    }
    r = SPI.transfer(0);
    enc28j60_arch_spi_deselect();
    return r;
}
/*---------------------------------------------------------------------------*/
void ENC28J60::writereg(uint8_t reg, uint8_t data)
{
    enc28j60_arch_spi_select();
    SPI.transfer(0x40 | (reg & 0x1f));
    SPI.transfer(data);
    enc28j60_arch_spi_deselect();
}
/*---------------------------------------------------------------------------*/
void ENC28J60::setregbitfield(uint8_t reg, uint8_t mask)
{
    if (is_mac_mii_reg(reg))
    {
        writereg(reg, readreg(reg) | mask);
    }
    else
    {
        enc28j60_arch_spi_select();
        SPI.transfer(0x80 | (reg & 0x1f));
        SPI.transfer(mask);
        enc28j60_arch_spi_deselect();
    }
}
/*---------------------------------------------------------------------------*/
void ENC28J60::clearregbitfield(uint8_t reg, uint8_t mask)
{
    if (is_mac_mii_reg(reg))
    {
        writereg(reg, readreg(reg) & ~mask);
    }
    else
    {
        enc28j60_arch_spi_select();
        SPI.transfer(0xa0 | (reg & 0x1f));
        SPI.transfer(mask);
        enc28j60_arch_spi_deselect();
    }
}
/*---------------------------------------------------------------------------*/
void ENC28J60::setregbank(uint8_t new_bank)
{
    writereg(ECON1, (readreg(ECON1) & 0xfc) | (new_bank & 0x03));
    _bank = new_bank;
}
/*---------------------------------------------------------------------------*/
void ENC28J60::writedata(const uint8_t* data, int datalen)
{
    int i;
    enc28j60_arch_spi_select();
    /* The Write Buffer Memory (WBM) command is 0 1 1 1 1 0 1 0  */
    SPI.transfer(0x7a);
    for (i = 0; i < datalen; i++)
    {
        SPI.transfer(data[i]);
    }
    enc28j60_arch_spi_deselect();
}
/*---------------------------------------------------------------------------*/
void ENC28J60::writedatabyte(uint8_t byte)
{
    writedata(&byte, 1);
}
/*---------------------------------------------------------------------------*/
int ENC28J60::readdata(uint8_t* buf, int len)
{
    int i;
    enc28j60_arch_spi_select();
    /* THe Read Buffer Memory (RBM) command is 0 0 1 1 1 0 1 0 */
    SPI.transfer(0x3a);
    for (i = 0; i < len; i++)
    {
        buf[i] = SPI.transfer(0);
    }
    enc28j60_arch_spi_deselect();
    return i;
}
/*---------------------------------------------------------------------------*/
uint8_t ENC28J60::readdatabyte(void)
{
    uint8_t r;
    readdata(&r, 1);
    return r;
}

/*---------------------------------------------------------------------------*/
void ENC28J60::softreset(void)
{
    enc28j60_arch_spi_select();
    /* The System Command (soft reset) is 1 1 1 1 1 1 1 1 */
    SPI.transfer(0xff);
    enc28j60_arch_spi_deselect();
    _bank = ERXTX_BANK;
}

/*---------------------------------------------------------------------------*/
//#if DEBUG
uint8_t ENC28J60::readrev(void)
{
    uint8_t rev;
    setregbank(MAADRX_BANK);
    rev = readreg(EREVID);
    switch (rev)
    {
    case 2:
        return 1;
    case 6:
        return 7;
    default:
        return rev;
    }
}
//#endif

/*---------------------------------------------------------------------------*/

bool ENC28J60::reset(void)
{
    PRINTF("enc28j60: resetting chip\n");

    pinMode(_cs, OUTPUT);
    digitalWrite(_cs, HIGH);
    SPI.begin();

    /*
        6.0 INITIALIZATION

        Before the ENC28J60 can be used to transmit and receive packets,
        certain device settings must be initialized. Depending on the
        application, some configuration options may need to be
        changed. Normally, these tasks may be accomplished once after
        Reset and do not need to be changed thereafter.

        6.1 Receive Buffer

        Before receiving any packets, the receive buffer must be
        initialized by programming the ERXST and ERXND pointers. All
        memory between and including the ERXST and ERXND addresses will be
        dedicated to the receive hardware. It is recommended that the
        ERXST pointer be programmed with an even address.

        Applications expecting large amounts of data and frequent packet
        delivery may wish to allocate most of the memory as the receive
        buffer. Applications that may need to save older packets or have
        several packets ready for transmission should allocate less
        memory.

        When programming the ERXST pointer, the ERXWRPT registers will
        automatically be updated with the same values. The address in
        ERXWRPT will be used as the starting location when the receive
        hardware begins writing received data. For tracking purposes, the
        ERXRDPT registers should additionally be programmed with the same
        value. To program ERXRDPT, the host controller must write to
        ERXRDPTL first, followed by ERXRDPTH.  See Section 7.2.4 “Freeing
        Receive Buffer Space for more information

        6.2 Transmission Buffer

        All memory which is not used by the receive buffer is considered
        the transmission buffer. Data which is to be transmitted should be
        written into any unused space.  After a packet is transmitted,
        however, the hardware will write a seven-byte status vector into
        memory after the last byte in the packet. Therefore, the host
        controller should leave at least seven bytes between each packet
        and the beginning of the receive buffer. No explicit action is
        required to initialize the transmission buffer.

        6.3 Receive Filters

        The appropriate receive filters should be enabled or disabled by
        writing to the ERXFCON register. See Section 8.0 “Receive Filters
        for information on how to configure it.

        6.4 Waiting For OST

        If the initialization procedure is being executed immediately
        following a Power-on Reset, the ESTAT.CLKRDY bit should be polled
        to make certain that enough time has elapsed before proceeding to
        modify the MAC and PHY registers. For more information on the OST,
        see Section 2.2 “Oscillator Start-up Timer.
    */

    softreset();

    /* Workaround for erratum #2. */
    delayMicroseconds(1000);

    /* Wait for OST */
    PRINTF("waiting for ESTAT_CLKRDY\n");
    while ((readreg(ESTAT) & ESTAT_CLKRDY) == 0) { };
    PRINTF("ESTAT_CLKRDY\n");

    setregbank(ERXTX_BANK);
    /* Set up receive buffer */
    writereg(ERXSTL, RX_BUF_START & 0xff);
    writereg(ERXSTH, RX_BUF_START >> 8);
    writereg(ERXNDL, RX_BUF_END & 0xff);
    writereg(ERXNDH, RX_BUF_END >> 8);
    writereg(ERDPTL, RX_BUF_START & 0xff);
    writereg(ERDPTH, RX_BUF_START >> 8);
    writereg(ERXRDPTL, RX_BUF_END & 0xff);
    writereg(ERXRDPTH, RX_BUF_END >> 8);

    /* Receive filters */
    setregbank(EPKTCNT_BANK);
    /* ARP and DHCP begin as Ethernet broadcasts.  Without BCEN the hardware
       discards those frames before lwIP can answer them. */
    writereg(ERXFCON, ERXFCON_UCEN | ERXFCON_CRCEN | ERXFCON_MCEN | ERXFCON_BCEN);

    /*
        6.5 MAC Initialization Settings

        Several of the MAC registers require configuration during
        initialization. This only needs to be done once; the order of
        programming is unimportant.

        1. Set the MARXEN bit in MACON1 to enable the MAC to receive
        frames. If using full duplex, most applications should also set
        TXPAUS and RXPAUS to allow IEEE defined flow control to function.

        2. Configure the PADCFG, TXCRCEN and FULDPX bits of MACON3. Most
        applications should enable automatic padding to at least 60 bytes
        and always append a valid CRC. For convenience, many applications
        may wish to set the FRMLNEN bit as well to enable frame length
        status reporting. The FULDPX bit should be set if the application
        will be connected to a full-duplex configured remote node;
        otherwise, it should be left clear.

        3. Configure the bits in MACON4. For conformance to the IEEE 802.3
        standard, set the DEFER bit.

        4. Program the MAMXFL registers with the maximum frame length to
        be permitted to be received or transmitted. Normal network nodes
        are designed to handle packets that are 1518 bytes or less.

        5. Configure the Back-to-Back Inter-Packet Gap register,
        MABBIPG. Most applications will program this register with 15h
        when Full-Duplex mode is used and 12h when Half-Duplex mode is
        used.

        6. Configure the Non-Back-to-Back Inter-Packet Gap register low
        byte, MAIPGL. Most applications will program this register with
        12h.

        7. If half duplex is used, the Non-Back-to-Back Inter-Packet Gap
        register high byte, MAIPGH, should be programmed. Most
        applications will program this register to 0Ch.

        8. If Half-Duplex mode is used, program the Retransmission and
        Collision Window registers, MACLCON1 and MACLCON2. Most
        applications will not need to change the default Reset values.  If
        the network is spread over exceptionally long cables, the default
        value of MACLCON2 may need to be increased.

        9. Program the local MAC address into the MAADR1:MAADR6 registers.
    */

    setregbank(MACONX_BANK);

    /* Preserve the board's proven MAC/PHY duplex startup configuration. */
    setregbitfield(MACON1, MACON1_MARXEN | MACON1_TXPAUS | MACON1_RXPAUS);

    /* Set padding, CRC, frame-length checking and full duplex. */
    setregbitfield(MACON3, MACON3_PADCFG_FULL | MACON3_TXCRCEN | MACON3_FULDPX | MACON3_FRMLNEN);

    /* Don't modify MACON4 */

    /* Set maximum frame length in MAMXFL */
    writereg(MAMXFLL, MAX_MAC_LENGTH & 0xff);
    writereg(MAMXFLH, MAX_MAC_LENGTH >> 8);

    /* Set back-to-back inter packet gap */
    writereg(MABBIPG, 0x15);

    /* Set non-back-to-back packet gap */
    writereg(MAIPGL, 0x12);

    /* Set MAC address */
    setregbank(MAADRX_BANK);
    writereg(MAADR6, _localMac[5]);
    writereg(MAADR5, _localMac[4]);
    writereg(MAADR4, _localMac[3]);
    writereg(MAADR3, _localMac[2]);
    writereg(MAADR2, _localMac[1]);
    writereg(MAADR1, _localMac[0]);

    /*
        6.6 PHY Initialization Settings

        Depending on the application, bits in three of the PHY module’s
        registers may also require configuration.  The PHCON1.PDPXMD bit
        partially controls the device’s half/full-duplex
        configuration. Normally, this bit is initialized correctly by the
        external circuitry (see Section 2.6 “LED Configuration). If the
        external circuitry is not present or incorrect, however, the host
        controller must program the bit properly. Alternatively, for an
        externally configurable system, the PDPXMD bit may be read and the
        FULDPX bit be programmed to match.

        For proper duplex operation, the PHCON1.PDPXMD bit must also match
        the value of the MACON3.FULDPX bit.

        If using half duplex, the host controller may wish to set the
        PHCON2.HDLDIS bit to prevent automatic loopback of the data which
        is transmitted.  The PHY register, PHLCON, controls the outputs of
        LEDA and LEDB. If an application requires a LED configuration
        other than the default, PHLCON must be altered to match the new
        requirements. The settings for LED operation are discussed in
        Section 2.6 “LED Configuration. The PHLCON register is shown in
        Register 2-2 (page 9).
    */

    /* Do not rewrite PHY duplex here.  Some modules strap PDPXMD through the
       LED circuitry, and blocking on a failed MII write prevents Ethernet
       startup entirely.  The broadcast-filter fix above is independent. */

    /* Turn on autoincrement for buffer access */
    setregbitfield(ECON2, ECON2_AUTOINC);

    /* Turn on reception */
    writereg(ECON1, ECON1_RXEN);

    return true;
}
/*---------------------------------------------------------------------------*/
boolean ENC28J60::begin(const uint8_t* address)
{
    _localMac = address;

    bool    ret = reset();
    uint8_t rev = readrev();

    Serial.print("ENC28J60 silicon revision: B");
    Serial.println(rev);

    PRINTF("ENC28J60 rev. B%d\n", rev);

    return ret && rev != 255;
}

/*---------------------------------------------------------------------------*/

uint16_t ENC28J60::sendFrame(const uint8_t* data, uint16_t datalen)
{
    uint16_t dataend;

    /*
        1. Appropriately program the ETXST pointer to point to an unused
         location in memory. It will point to the per packet control
         byte. In the example, it would be programmed to 0120h. It is
         recommended that an even address be used for ETXST.

        2. Use the WBM SPI command to write the per packet control byte,
         the destination address, the source MAC address, the
         type/length and the data payload.

        3. Appropriately program the ETXND pointer. It should point to the
         last byte in the data payload.  In the example, it would be
         programmed to 0156h.

        4. Clear EIR.TXIF, set EIE.TXIE and set EIE.INTIE to enable an
         interrupt when done (if desired).

        5. Start the transmission process by setting
         ECON1.TXRTS.
    */

    setregbank(ERXTX_BANK);
    /* Recover from a previous aborted transmission (ENC28J60 errata). */
    if (readreg(ECON1) & ECON1_TXRTS)
    {
        setregbitfield(ECON1, ECON1_TXRST);
        clearregbitfield(ECON1, ECON1_TXRST);
        clearregbitfield(ECON1, ECON1_TXRTS);
    }
    /* Set up the transmit buffer pointer */
    writereg(ETXSTL, TX_BUF_START & 0xff);
    writereg(ETXSTH, TX_BUF_START >> 8);
    writereg(EWRPTL, TX_BUF_START & 0xff);
    writereg(EWRPTH, TX_BUF_START >> 8);

    /*  Write the transmission control register as the first byte of the
        output packet. We write 0x00 to indicate that the default
        configuration (the values in MACON3) will be used.  */
    writedatabyte(0x00); /* MACON3 */

    writedata(data, datalen);

    /* Write a pointer to the last data byte. */
    dataend = TX_BUF_START + datalen;
    writereg(ETXNDL, dataend & 0xff);
    writereg(ETXNDH, dataend >> 8);

    /* Clear EIR.TXIF */
    clearregbitfield(EIR, EIR_TXIF);

    /* Don't care about interrupts for now */

    /* Send the packet */
    setregbitfield(ECON1, ECON1_TXRTS);
    unsigned long txDeadline = micros() + 25000UL;
    while ((readreg(ECON1) & ECON1_TXRTS) > 0)
    {
        if ((long)(micros() - txDeadline) >= 0)
        {
            setregbitfield(ECON1, ECON1_TXRST);
            clearregbitfield(ECON1, ECON1_TXRST);
            clearregbitfield(ECON1, ECON1_TXRTS);
            return 0;
        }
        delayMicroseconds(10);
    }

    if ((readreg(ESTAT) & ESTAT_TXABRT) != 0)
    {
        setregbitfield(ECON1, ECON1_TXRST);
        clearregbitfield(ECON1, ECON1_TXRST);
        return 0;
    }

#if DEBUG
    if ((readreg(ESTAT) & ESTAT_TXABRT) != 0)
    {
        uint16_t erdpt;
        uint8_t  tsv[7];
        erdpt = (readreg(ERDPTH) << 8) | readreg(ERDPTL);
        writereg(ERDPTL, (dataend + 1) & 0xff);
        writereg(ERDPTH, (dataend + 1) >> 8);
        readdata(tsv, sizeof(tsv));
        writereg(ERDPTL, erdpt & 0xff);
        writereg(ERDPTH, erdpt >> 8);
        PRINTF("enc28j60: tx err: %d: %02x:%02x:%02x:%02x:%02x:%02x\n"
               "                  tsv: %02x%02x%02x%02x%02x%02x%02x\n",
               datalen, 0xff & data[0], 0xff & data[1], 0xff & data[2], 0xff & data[3],
               0xff & data[4], 0xff & data[5], tsv[6], tsv[5], tsv[4], tsv[3], tsv[2], tsv[1],
               tsv[0]);
    }
    else
    {
        PRINTF("enc28j60: tx: %d: %02x:%02x:%02x:%02x:%02x:%02x\n", datalen, 0xff & data[0],
               0xff & data[1], 0xff & data[2], 0xff & data[3], 0xff & data[4], 0xff & data[5]);
    }
#endif

    // sent_packets++;
    // PRINTF("enc28j60: sent_packets %d\n", sent_packets);
    return datalen;
}

/*---------------------------------------------------------------------------*/

uint16_t ENC28J60::readFrame(uint8_t* buffer, uint16_t bufsize)
{
    if (!readFrameSize())
    {
        return 0;
    }
    return readFrameData(buffer, bufsize);
}

uint16_t ENC28J60::readFrameSize()
{
    uint8_t n;

    uint8_t nxtpkt[2];
    uint8_t status[2];
    uint8_t length[2];

    setregbank(EPKTCNT_BANK);
    n = readreg(EPKTCNT);

    if (n == 0)
    {
        return 0;
    }

    PRINTF("enc28j60: EPKTCNT 0x%02x\n", n);

    setregbank(ERXTX_BANK);
    /* Read the next packet pointer */
    nxtpkt[0] = readdatabyte();
    nxtpkt[1] = readdatabyte();
    _next     = (nxtpkt[1] << 8) + nxtpkt[0];

    PRINTF("enc28j60: nxtpkt 0x%02x%02x\n", _nxtpkt[1], _nxtpkt[0]);

    length[0] = readdatabyte();
    length[1] = readdatabyte();
    _len      = (length[1] << 8) + length[0];

    PRINTF("enc28j60: length 0x%02x%02x\n", length[1], length[0]);

    status[0] = readdatabyte();
    status[1] = readdatabyte();

    /* This statement is just to avoid a compiler warning: */
    (void)status[0];
    PRINTF("enc28j60: status 0x%02x%02x\n", status[1], status[0]);

    return _len;
}

void ENC28J60::discardFrame(uint16_t framesize)
{
    (void)framesize;
    (void)readFrameData(nullptr, 0);
}

uint16_t ENC28J60::readFrameData(uint8_t* buffer, uint16_t framesize)
{
    if (framesize < _len)
    {
        buffer = nullptr;

        /* flush rx fifo */
        for (uint16_t i = 0; i < _len; i++)
        {
            readdatabyte();
        }
    }
    else
    {
        readdata(buffer, _len);
    }

    /* Read an additional byte at odd lengths, to avoid FIFO corruption */
    if ((_len % 2) != 0)
    {
        readdatabyte();
    }

    /* Errata #14 */
    if (_next == RX_BUF_START)
    {
        _next = RX_BUF_END;
    }
    else
    {
        _next = _next - 1;
    }
    writereg(ERXRDPTL, _next & 0xff);
    writereg(ERXRDPTH, _next >> 8);

    setregbitfield(ECON2, ECON2_PKTDEC);

    if (!buffer)
    {
        PRINTF("enc28j60: rx err: flushed %d\n", _len);
        return 0;
    }
    PRINTF("enc28j60: rx: %d: %02x:%02x:%02x:%02x:%02x:%02x\n", _len, 0xff & buffer[0],
           0xff & buffer[1], 0xff & buffer[2], 0xff & buffer[3], 0xff & buffer[4],
           0xff & buffer[5]);

    // received_packets++;
    // PRINTF("enc28j60: received_packets %d\n", received_packets);

    return _len;
}

void ENC28J60::phywrite(uint8_t reg, uint16_t value)
{
    setregbank(MACONX_BANK);
    writereg(MIREGADR, reg);
    writereg(MIWRL, value & 0xff);
    writereg(MIWRH, value >> 8);
    setregbank(MAADRX_BANK);
    while (readreg(MISTAT) & MISTAT_BUSY)
    {
        delayMicroseconds(15);
    }
}

uint16_t ENC28J60::phyread(uint8_t reg)
{
    // ( https://github.com/JAndrassy/EthernetENC/tree/master/src/utility/enc28j60.h )

    setregbank(MACONX_BANK);
    writereg(MIREGADR, reg);
    writereg(MICMD, MICMD_MIIRD);
    // wait until the PHY read completes
    setregbank(MAADRX_BANK);
    while (readreg(MISTAT) & MISTAT_BUSY)
    {
        delayMicroseconds(15);
    }
    setregbank(MACONX_BANK);
    writereg(MICMD, 0);
    return (readreg(MIRDL) | readreg(MIRDH) << 8);
}

bool ENC28J60::isLinked()
{
    // ( https://github.com/JAndrassy/EthernetENC/tree/master/src/utility/enc28j60.h )

    return !!(phyread(MACSTAT2) & 0x400);
}
