cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

ocelot_vcap.h (682B)


      1/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
      2/* Microsemi Ocelot Switch driver
      3 * Copyright (c) 2019 Microsemi Corporation
      4 */
      5
      6#ifndef _MSCC_OCELOT_VCAP_H_
      7#define _MSCC_OCELOT_VCAP_H_
      8
      9#include "ocelot.h"
     10#include <soc/mscc/ocelot_vcap.h>
     11#include <net/flow_offload.h>
     12
     13#define OCELOT_POLICER_DISCARD 0x17f
     14
     15int ocelot_vcap_filter_stats_update(struct ocelot *ocelot,
     16				    struct ocelot_vcap_filter *rule);
     17
     18void ocelot_detect_vcap_constants(struct ocelot *ocelot);
     19int ocelot_vcap_init(struct ocelot *ocelot);
     20
     21int ocelot_setup_tc_cls_flower(struct ocelot_port_private *priv,
     22			       struct flow_cls_offload *f,
     23			       bool ingress);
     24
     25#endif /* _MSCC_OCELOT_VCAP_H_ */