/* $NetBSD: octeon_pko.c,v 1.7 2021/09/17 08:13:06 andvar 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 __KERNEL_RCSID(0, "$NetBSD: octeon_pko.c,v 1.7 2021/09/17 08:13:06 andvar Exp $"); #include #include #include #include #include #include #include #include #include #include static inline void octpko_op_store(uint64_t, uint64_t); #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)) /* ----- gloal functions */ /* XXX */ void octpko_init(struct octpko_attach_args *aa, struct octpko_softc **rsc) { struct octpko_softc *sc; int status; sc = kmem_zalloc(sizeof(*sc), KM_SLEEP); 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; } int octpko_enable(struct octpko_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; } void octpko_config(struct octpko_softc *sc) { uint64_t reg_cmd_buf = 0; SET(reg_cmd_buf, __SHIFTIN(sc->sc_cmd_buf_pool, PKO_REG_CMD_BUF_POOL)); SET(reg_cmd_buf, __SHIFTIN(sc->sc_cmd_buf_size, PKO_REG_CMD_BUF_SIZE)); _PKO_WR8(sc, PKO_REG_CMD_BUF_OFFSET, reg_cmd_buf); } int octpko_port_enable(struct octpko_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 mapped one port */ /* Enable packet output by enabling all queues for this port */ mem_queue_qos = 0; SET(mem_queue_qos, __SHIFTIN(sc->sc_port, PKO_MEM_QUEUE_QOS_PID)); SET(mem_queue_qos, __SHIFTIN(sc->sc_port, PKO_MEM_QUEUE_QOS_QID)); SET(mem_queue_qos, enable ? PKO_MEM_QUEUE_QOS_QOS_MASK : 0); _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 octpko_port_config(struct octpko_softc *sc) { paddr_t buf_ptr = 0; uint64_t mem_queue_ptrs; KASSERT(sc->sc_port < 32); buf_ptr = octfpa_load(FPA_COMMAND_BUFFER_POOL); if (buf_ptr == 0) return 1; KASSERT(buf_ptr != 0); /* assume one queue mapped one port */ mem_queue_ptrs = 0; SET(mem_queue_ptrs, PKO_MEM_QUEUE_PTRS_TAIL); SET(mem_queue_ptrs, __SHIFTIN(0, PKO_MEM_QUEUE_PTRS_IDX)); SET(mem_queue_ptrs, __SHIFTIN(sc->sc_port, PKO_MEM_QUEUE_PTRS_PID)); SET(mem_queue_ptrs, __SHIFTIN(sc->sc_port, PKO_MEM_QUEUE_PTRS_QID)); SET(mem_queue_ptrs, __SHIFTIN(0xff, PKO_MEM_QUEUE_PTRS_QOS_MASK)); SET(mem_queue_ptrs, __SHIFTIN(buf_ptr, 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; }