mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-31 23:27:20 +00:00

Commitda15c78b56
("liquidio CN23XX: VF register access") declared cn23xx_dump_vf_initialized_regs() but never implemented it. octeon_dump_soft_command() is never implemented and used since introduction in commit35878618c9
("liquidio: Added delayed work for periodically updating the link statistics."). And finally, a few other declarations were never implenmented since introduction in commitf21fb3ed36
("Add support of Cavium Liquidio ethernet adapters"). Signed-off-by: Yue Haibing <yuehaibing@huawei.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20240824083107.3639602-1-yuehaibing@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
46 lines
1.5 KiB
C
46 lines
1.5 KiB
C
/**********************************************************************
|
|
* Author: Cavium, Inc.
|
|
*
|
|
* Contact: support@cavium.com
|
|
* Please include "LiquidIO" in the subject.
|
|
*
|
|
* Copyright (c) 2003-2016 Cavium, Inc.
|
|
*
|
|
* This file is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License, Version 2, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This file is distributed in the hope that it will be useful, but
|
|
* AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
|
|
* NONINFRINGEMENT. See the GNU General Public License for more details.
|
|
***********************************************************************/
|
|
/*! \file cn23xx_device.h
|
|
* \brief Host Driver: Routines that perform CN23XX specific operations.
|
|
*/
|
|
|
|
#ifndef __CN23XX_VF_DEVICE_H__
|
|
#define __CN23XX_VF_DEVICE_H__
|
|
|
|
#include "cn23xx_vf_regs.h"
|
|
|
|
/* Register address and configuration for a CN23XX devices.
|
|
* If device specific changes need to be made then add a struct to include
|
|
* device specific fields as shown in the commented section
|
|
*/
|
|
struct octeon_cn23xx_vf {
|
|
struct octeon_config *conf;
|
|
};
|
|
|
|
#define BUSY_READING_REG_VF_LOOP_COUNT 10000
|
|
|
|
#define CN23XX_MAILBOX_MSGPARAM_SIZE 6
|
|
|
|
void cn23xx_vf_ask_pf_to_do_flr(struct octeon_device *oct);
|
|
|
|
int cn23xx_octeon_pfvf_handshake(struct octeon_device *oct);
|
|
|
|
int cn23xx_setup_octeon_vf_device(struct octeon_device *oct);
|
|
|
|
u32 cn23xx_vf_get_oq_ticks(struct octeon_device *oct, u32 time_intr_in_us);
|
|
#endif
|