mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 16:46:33 -04:00
254 lines
7.0 KiB
C
254 lines
7.0 KiB
C
/* $NetBSD: octeon_pko.c,v 1.1 2015/04/29 08:32:01 hikaru Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 2007 Internet Initiative Japan, Inc.
|
|
* 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 REGENTS 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 REGENTS 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.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: octeon_pko.c,v 1.1 2015/04/29 08:32:01 hikaru Exp $");
|
|
|
|
#include "opt_octeon.h"
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/malloc.h>
|
|
#include <mips/locore.h>
|
|
#include <mips/cavium/octeonvar.h>
|
|
#include <mips/cavium/dev/octeon_faureg.h>
|
|
#include <mips/cavium/dev/octeon_fpavar.h>
|
|
#include <mips/cavium/dev/octeon_pkoreg.h>
|
|
#include <mips/cavium/dev/octeon_pkovar.h>
|
|
|
|
static inline void octeon_pko_op_store(uint64_t, uint64_t);
|
|
|
|
#ifdef OCTEON_ETH_DEBUG
|
|
void octeon_pko_intr_evcnt_attach(struct octeon_pko_softc *);
|
|
void octeon_pko_intr_rml(void *);
|
|
#endif
|
|
|
|
#define _PKO_RD8(sc, off) \
|
|
bus_space_read_8((sc)->sc_regt, (sc)->sc_regh, (off))
|
|
#define _PKO_WR8(sc, off, v) \
|
|
bus_space_write_8((sc)->sc_regt, (sc)->sc_regh, (off), (v))
|
|
|
|
#ifdef OCTEON_ETH_DEBUG
|
|
struct octeon_pko_softc *__octeon_pko_softc;
|
|
#endif
|
|
|
|
/* ----- gloal functions */
|
|
|
|
/* XXX */
|
|
void
|
|
octeon_pko_init(struct octeon_pko_attach_args *aa,
|
|
struct octeon_pko_softc **rsc)
|
|
{
|
|
struct octeon_pko_softc *sc;
|
|
int status;
|
|
|
|
sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK | M_ZERO);
|
|
if (sc == NULL)
|
|
panic("can't allocate memory: %s", __func__);
|
|
|
|
sc->sc_port = aa->aa_port;
|
|
sc->sc_regt = aa->aa_regt;
|
|
sc->sc_cmdptr = aa->aa_cmdptr;
|
|
sc->sc_cmd_buf_pool = aa->aa_cmd_buf_pool;
|
|
sc->sc_cmd_buf_size = aa->aa_cmd_buf_size;
|
|
|
|
status = bus_space_map(sc->sc_regt, PKO_BASE, PKO_SIZE, 0,
|
|
&sc->sc_regh);
|
|
if (status != 0)
|
|
panic("can't map %s space", "pko register");
|
|
|
|
*rsc = sc;
|
|
|
|
#ifdef OCTEON_ETH_DEBUG
|
|
octeon_pko_intr_evcnt_attach(sc);
|
|
__octeon_pko_softc = sc;
|
|
#endif
|
|
}
|
|
|
|
int
|
|
octeon_pko_enable(struct octeon_pko_softc *sc)
|
|
{
|
|
uint64_t reg_flags;
|
|
|
|
reg_flags = _PKO_RD8(sc, PKO_REG_FLAGS_OFFSET);
|
|
/* PKO_REG_FLAGS_RESET=0 */
|
|
/* PKO_REG_FLAGS_STORE_BE=0 */
|
|
SET(reg_flags, PKO_REG_FLAGS_ENA_DWB);
|
|
SET(reg_flags, PKO_REG_FLAGS_ENA_PKO);
|
|
/* XXX */
|
|
OCTEON_SYNCW;
|
|
_PKO_WR8(sc, PKO_REG_FLAGS_OFFSET, reg_flags);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#if 0
|
|
void
|
|
octeon_pko_reset(octeon_pko_softc *sc)
|
|
{
|
|
uint64_t reg_flags;
|
|
|
|
reg_flags = _PKO_RD8(sc, PKO_REG_FLAGS_OFFSET);
|
|
SET(reg_flags, PKO_REG_FLAGS_RESET);
|
|
_PKO_WR8(sc, PKO_REG_FLAGS_OFFSET, reg_flags);
|
|
}
|
|
#endif
|
|
|
|
void
|
|
octeon_pko_config(struct octeon_pko_softc *sc)
|
|
{
|
|
uint64_t reg_cmd_buf = 0;
|
|
|
|
SET(reg_cmd_buf, (sc->sc_cmd_buf_pool << 20) & PKO_REG_CMD_BUF_POOL);
|
|
SET(reg_cmd_buf, sc->sc_cmd_buf_size & PKO_REG_CMD_BUF_SIZE);
|
|
_PKO_WR8(sc, PKO_REG_CMD_BUF_OFFSET, reg_cmd_buf);
|
|
|
|
#ifdef OCTEON_ETH_DEBUG
|
|
octeon_pko_int_enable(sc, 1);
|
|
#endif
|
|
}
|
|
|
|
int
|
|
octeon_pko_port_enable(struct octeon_pko_softc *sc, int enable)
|
|
{
|
|
uint64_t reg_read_idx;
|
|
uint64_t mem_queue_qos;
|
|
|
|
reg_read_idx = 0;
|
|
SET(reg_read_idx, sc->sc_port & PKO_REG_READ_IDX_IDX);
|
|
|
|
/* XXX assume one queue maped one port */
|
|
/* Enable packet output by enabling all queues for this port */
|
|
mem_queue_qos = 0;
|
|
SET(mem_queue_qos, ((uint64_t)sc->sc_port << 7) & PKO_MEM_QUEUE_QOS_PID);
|
|
SET(mem_queue_qos, sc->sc_port & PKO_MEM_QUEUE_QOS_QID);
|
|
SET(mem_queue_qos, ((enable ? 0xffULL : 0x00ULL) << 53) &
|
|
PKO_MEM_QUEUE_QOS_QOS_MASK);
|
|
|
|
_PKO_WR8(sc, PKO_REG_READ_IDX_OFFSET, reg_read_idx);
|
|
_PKO_WR8(sc, PKO_MEM_QUEUE_QOS_OFFSET, mem_queue_qos);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int pko_queue_map_init[32];
|
|
|
|
int
|
|
octeon_pko_port_config(struct octeon_pko_softc *sc)
|
|
{
|
|
paddr_t buf_ptr = 0;
|
|
uint64_t mem_queue_ptrs;
|
|
|
|
KASSERT(sc->sc_port < 32);
|
|
|
|
buf_ptr = octeon_fpa_load(FPA_COMMAND_BUFFER_POOL);
|
|
if (buf_ptr == 0)
|
|
return 1;
|
|
|
|
KASSERT(buf_ptr != 0);
|
|
|
|
/* assume one queue maped one port */
|
|
mem_queue_ptrs = 0;
|
|
SET(mem_queue_ptrs, PKO_MEM_QUEUE_PTRS_TAIL);
|
|
SET(mem_queue_ptrs, ((uint64_t)0 << 13) & PKO_MEM_QUEUE_PTRS_IDX);
|
|
SET(mem_queue_ptrs, ((uint64_t)sc->sc_port << 7) & PKO_MEM_QUEUE_PTRS_PID);
|
|
SET(mem_queue_ptrs, sc->sc_port & PKO_MEM_QUEUE_PTRS_QID);
|
|
SET(mem_queue_ptrs, ((uint64_t)0xff << 53) & PKO_MEM_QUEUE_PTRS_QOS_MASK);
|
|
SET(mem_queue_ptrs, ((uint64_t)buf_ptr << 17) & PKO_MEM_QUEUE_PTRS_BUF_PTR);
|
|
OCTEON_SYNCW;
|
|
_PKO_WR8(sc, PKO_MEM_QUEUE_PTRS_OFFSET, mem_queue_ptrs);
|
|
|
|
/*
|
|
* Set initial command buffer address and index
|
|
* for queue.
|
|
*/
|
|
sc->sc_cmdptr->cmdptr = (uint64_t)buf_ptr;
|
|
sc->sc_cmdptr->cmdptr_idx = 0;
|
|
|
|
pko_queue_map_init[sc->sc_port] = 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef OCTEON_ETH_DEBUG
|
|
int octeon_pko_intr_rml_verbose;
|
|
struct evcnt octeon_pko_intr_evcnt;
|
|
|
|
static const struct octeon_evcnt_entry octeon_pko_intr_evcnt_entries[] = {
|
|
#define _ENTRY(name, type, parent, descr) \
|
|
OCTEON_EVCNT_ENTRY(struct octeon_pko_softc, name, type, parent, descr)
|
|
_ENTRY(pkoerrdbell, MISC, NULL, "pko doorbell overflow"),
|
|
_ENTRY(pkoerrparity, MISC, NULL, "pko parity error")
|
|
#undef _ENTRY
|
|
};
|
|
|
|
void
|
|
octeon_pko_intr_evcnt_attach(struct octeon_pko_softc *sc)
|
|
{
|
|
OCTEON_EVCNT_ATTACH_EVCNTS(sc, octeon_pko_intr_evcnt_entries, "pko0");
|
|
}
|
|
|
|
void
|
|
octeon_pko_intr_rml(void *arg)
|
|
{
|
|
struct octeon_pko_softc *sc;
|
|
uint64_t reg;
|
|
|
|
octeon_pko_intr_evcnt.ev_count++;
|
|
sc = __octeon_pko_softc;
|
|
KASSERT(sc != NULL);
|
|
reg = octeon_pko_int_summary(sc);
|
|
if (octeon_pko_intr_rml_verbose)
|
|
printf("%s: PKO_REG_ERROR=0x%016" PRIx64 "\n", __func__, reg);
|
|
if (reg & PKO_REG_ERROR_DOORBELL)
|
|
OCTEON_EVCNT_INC(sc, pkoerrdbell);
|
|
if (reg & PKO_REG_ERROR_PARITY)
|
|
OCTEON_EVCNT_INC(sc, pkoerrparity);
|
|
}
|
|
|
|
void
|
|
octeon_pko_int_enable(struct octeon_pko_softc *sc, int enable)
|
|
{
|
|
uint64_t pko_int_xxx = 0;
|
|
|
|
pko_int_xxx = PKO_REG_ERROR_DOORBELL | PKO_REG_ERROR_PARITY;
|
|
_PKO_WR8(sc, PKO_REG_ERROR_OFFSET, pko_int_xxx);
|
|
_PKO_WR8(sc, PKO_REG_INT_MASK_OFFSET, enable ? pko_int_xxx : 0);
|
|
}
|
|
|
|
uint64_t
|
|
octeon_pko_int_summary(struct octeon_pko_softc *sc)
|
|
{
|
|
uint64_t summary;
|
|
|
|
summary = _PKO_RD8(sc, PKO_REG_ERROR_OFFSET);
|
|
_PKO_WR8(sc, PKO_REG_ERROR_OFFSET, summary);
|
|
return summary;
|
|
}
|
|
#endif
|