ae6aefaf57
Major changes: * Finally tracked down the flow control setting that seems to have been causing TX stalls and watchdog timeouts * RX and TX paths now share a lot more code * TX interrupt is no longer used; we instead GC finished tx queue entries at the bottom of the start routine. * TX start now queues fragmented packets directly; it only invokes defrag() for occasional very fragmented packets. * "sysctl dev.cpsw" dumps controller statistics and queue counts * Host Error Interrupt will give extensive debugging information if the controller chokes on the queued data.
125 lines
3.9 KiB
C
125 lines
3.9 KiB
C
/*-
|
|
* Copyright (c) 2012 Damjan Marion <dmarion@Freebsd.org>
|
|
* 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.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef _IF_CPSWVAR_H
|
|
#define _IF_CPSWVAR_H
|
|
|
|
#define CPSW_INTR_COUNT 4
|
|
|
|
/* MII BUS */
|
|
#define CPSW_MIIBUS_RETRIES 5
|
|
#define CPSW_MIIBUS_DELAY 1000
|
|
|
|
#define CPSW_MAX_ALE_ENTRIES 1024
|
|
|
|
#define CPSW_SYSCTL_COUNT 34
|
|
|
|
struct cpsw_slot {
|
|
uint32_t bd_offset; /* Offset of corresponding BD within CPPI RAM. */
|
|
bus_dmamap_t dmamap;
|
|
struct mbuf *mbuf;
|
|
STAILQ_ENTRY(cpsw_slot) next;
|
|
};
|
|
STAILQ_HEAD(cpsw_slots, cpsw_slot);
|
|
|
|
struct cpsw_queue {
|
|
struct mtx lock;
|
|
int running;
|
|
struct cpsw_slots active;
|
|
struct cpsw_slots avail;
|
|
uint32_t queue_adds; /* total bufs added */
|
|
uint32_t queue_removes; /* total bufs removed */
|
|
uint32_t queue_removes_at_last_tick; /* Used by watchdog */
|
|
int queue_slots;
|
|
int active_queue_len;
|
|
int max_active_queue_len;
|
|
int avail_queue_len;
|
|
int max_avail_queue_len;
|
|
int longest_chain; /* Largest # segments in a single packet. */
|
|
int hdp_offset;
|
|
};
|
|
|
|
struct cpsw_softc {
|
|
struct ifnet *ifp;
|
|
phandle_t node;
|
|
device_t dev;
|
|
struct bintime attach_uptime; /* system uptime when attach happened. */
|
|
struct bintime init_uptime; /* system uptime when init happened. */
|
|
|
|
/* TODO: We should set up a child structure for each port;
|
|
store mac, phy information, etc, in that structure. */
|
|
uint8_t mac_addr[ETHER_ADDR_LEN];
|
|
|
|
device_t miibus;
|
|
struct mii_data *mii;
|
|
/* We expect 1 memory resource and 4 interrupts from the device tree. */
|
|
struct resource *res[1 + CPSW_INTR_COUNT];
|
|
|
|
/* Interrupts get recorded here as we initialize them. */
|
|
/* Interrupt teardown just walks this list. */
|
|
struct {
|
|
struct resource *res;
|
|
void *ih_cookie;
|
|
const char *description;
|
|
} interrupts[CPSW_INTR_COUNT];
|
|
int interrupt_count;
|
|
|
|
uint32_t cpsw_if_flags;
|
|
int cpsw_media_status;
|
|
|
|
struct {
|
|
int resets;
|
|
int timer;
|
|
struct callout callout;
|
|
} watchdog;
|
|
|
|
bus_dma_tag_t mbuf_dtag;
|
|
|
|
/* An mbuf full of nulls for TX padding. */
|
|
bus_dmamap_t null_mbuf_dmamap;
|
|
struct mbuf *null_mbuf;
|
|
bus_addr_t null_mbuf_paddr;
|
|
|
|
/* RX and TX buffer tracking */
|
|
struct cpsw_queue rx, tx;
|
|
|
|
/* 64-bit versions of 32-bit hardware statistics counters */
|
|
uint64_t shadow_stats[CPSW_SYSCTL_COUNT];
|
|
|
|
/* CPPI STATERAM has 512 slots for building TX/RX queues. */
|
|
/* TODO: Size here supposedly varies with different versions
|
|
of the controller. Check DaVinci specs and find a good
|
|
way to adjust this. One option is to have a separate
|
|
Device Tree parameter for number slots; another option
|
|
is to calculate it from the memory size in the device tree. */
|
|
struct cpsw_slot _slots[CPSW_CPPI_RAM_SIZE / sizeof(struct cpsw_cpdma_bd)];
|
|
struct cpsw_slots avail;
|
|
};
|
|
|
|
#endif /*_IF_CPSWVAR_H */
|