Path: blob/master/drivers/crypto/cavium/nitrox/nitrox_hal.h
26285 views
/* SPDX-License-Identifier: GPL-2.0 */1#ifndef __NITROX_HAL_H2#define __NITROX_HAL_H34#include "nitrox_dev.h"56void nitrox_config_aqm_rings(struct nitrox_device *ndev);7void nitrox_config_aqm_unit(struct nitrox_device *ndev);8void nitrox_config_emu_unit(struct nitrox_device *ndev);9void nitrox_config_pkt_input_rings(struct nitrox_device *ndev);10void nitrox_config_pkt_solicit_ports(struct nitrox_device *ndev);11void nitrox_config_nps_core_unit(struct nitrox_device *ndev);12void nitrox_config_nps_pkt_unit(struct nitrox_device *ndev);13void nitrox_config_pom_unit(struct nitrox_device *ndev);14void nitrox_config_rand_unit(struct nitrox_device *ndev);15void nitrox_config_efl_unit(struct nitrox_device *ndev);16void nitrox_config_bmi_unit(struct nitrox_device *ndev);17void nitrox_config_bmo_unit(struct nitrox_device *ndev);18void nitrox_config_lbc_unit(struct nitrox_device *ndev);19void invalidate_lbc(struct nitrox_device *ndev);20void enable_aqm_ring(struct nitrox_device *ndev, int qno);21void enable_pkt_input_ring(struct nitrox_device *ndev, int ring);22void enable_pkt_solicit_port(struct nitrox_device *ndev, int port);23void config_nps_core_vfcfg_mode(struct nitrox_device *ndev, enum vf_mode mode);24void nitrox_get_hwinfo(struct nitrox_device *ndev);25void enable_pf2vf_mbox_interrupts(struct nitrox_device *ndev);26void disable_pf2vf_mbox_interrupts(struct nitrox_device *ndev);2728#endif /* __NITROX_HAL_H */293031