mirror of
https://github.com/torvalds/linux.git
synced 2026-05-04 14:32:27 -04:00
The current codebase makes use of the zero-length array language
extension to the C90 standard, but the preferred mechanism to declare
variable-length types such as these ones is a flexible array member[1][2],
introduced in C99:
struct foo {
int stuff;
struct boo array[];
};
By making use of the mechanism above, we will get a compiler warning
in case the flexible array does not occur last in the structure, which
will help us prevent some kind of undefined behavior bugs from being
inadvertently introduced[3] to the codebase from now on.
Also, notice that, dynamic memory allocations won't be affected by
this change:
"Flexible array members have incomplete type, and so the sizeof operator
may not be applied. As a quirk of the original implementation of
zero-length arrays, sizeof evaluates to zero."[1]
This issue was found with the help of Coccinelle.
[1] https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html
[2] https://github.com/KSPP/linux/issues/21
[3] commit 7649773293 ("cxgb3/l2t: Fix undefined behaviour")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
120 lines
3.3 KiB
C
120 lines
3.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (c) 2014-2015 Hisilicon Limited.
|
|
*/
|
|
|
|
#ifndef _HNS_DSAF_PPE_H
|
|
#define _HNS_DSAF_PPE_H
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include "hns_dsaf_main.h"
|
|
#include "hns_dsaf_mac.h"
|
|
#include "hns_dsaf_rcb.h"
|
|
|
|
#define HNS_PPE_SERVICE_NW_ENGINE_NUM DSAF_COMM_CHN
|
|
#define HNS_PPE_DEBUG_NW_ENGINE_NUM 1
|
|
#define HNS_PPE_COM_NUM DSAF_COMM_DEV_NUM
|
|
|
|
#define PPE_COMMON_REG_OFFSET 0x70000
|
|
#define PPE_REG_OFFSET 0x10000
|
|
|
|
#define ETH_PPE_DUMP_NUM 576
|
|
#define ETH_PPE_STATIC_NUM 12
|
|
|
|
#define HNS_PPEV2_RSS_IND_TBL_SIZE 256
|
|
#define HNS_PPEV2_RSS_KEY_SIZE 40 /* in bytes or 320 bits */
|
|
#define HNS_PPEV2_RSS_KEY_NUM (HNS_PPEV2_RSS_KEY_SIZE / sizeof(u32))
|
|
|
|
#define HNS_PPEV2_MAX_FRAME_LEN 0X980
|
|
|
|
enum ppe_qid_mode {
|
|
PPE_QID_MODE0 = 0, /* fixed queue id mode */
|
|
PPE_QID_MODE1, /* switch:128VM non switch:6Port/4VM/4TC */
|
|
PPE_QID_MODE2, /* switch:32VM/4TC non switch:6Port/16VM */
|
|
PPE_QID_MODE3, /* switch:4TC/8RSS non switch:2Port/64VM */
|
|
PPE_QID_MODE4, /* switch:8VM/16RSS non switch:2Port/16VM/4TC */
|
|
PPE_QID_MODE5, /* switch:16VM/8TC non switch:6Port/16RSS */
|
|
PPE_QID_MODE6, /* switch:32VM/4RSS non switch:6Port/2VM/8TC */
|
|
PPE_QID_MODE7, /* switch:32RSS non switch:2Port/8VM/8TC */
|
|
PPE_QID_MODE8, /* switch:6VM/4TC/4RSS non switch:2Port/16VM/4RSS */
|
|
PPE_QID_MODE9, /* non switch:2Port/32VM/2RSS */
|
|
PPE_QID_MODE10, /* non switch:2Port/32RSS */
|
|
PPE_QID_MODE11, /* non switch:2Port/4TC/16RSS */
|
|
};
|
|
|
|
enum ppe_port_mode {
|
|
PPE_MODE_GE = 0,
|
|
PPE_MODE_XGE,
|
|
};
|
|
|
|
enum ppe_common_mode {
|
|
PPE_COMMON_MODE_DEBUG = 0,
|
|
PPE_COMMON_MODE_SERVICE,
|
|
PPE_COMMON_MODE_MAX
|
|
};
|
|
|
|
struct hns_ppe_hw_stats {
|
|
u64 rx_pkts_from_sw;
|
|
u64 rx_pkts;
|
|
u64 rx_drop_no_bd;
|
|
u64 rx_alloc_buf_fail;
|
|
u64 rx_alloc_buf_wait;
|
|
u64 rx_drop_no_buf;
|
|
u64 rx_err_fifo_full;
|
|
u64 tx_bd_form_rcb;
|
|
u64 tx_pkts_from_rcb;
|
|
u64 tx_pkts;
|
|
u64 tx_err_fifo_empty;
|
|
u64 tx_err_checksum;
|
|
};
|
|
|
|
struct hns_ppe_cb {
|
|
struct device *dev;
|
|
struct hns_ppe_cb *next; /* pointer to next ppe device */
|
|
struct ppe_common_cb *ppe_common_cb; /* belong to */
|
|
struct hns_ppe_hw_stats hw_stats;
|
|
|
|
u8 index; /* index in a ppe common device */
|
|
u8 __iomem *io_base;
|
|
int virq;
|
|
u32 rss_indir_table[HNS_PPEV2_RSS_IND_TBL_SIZE]; /*shadow indir tab */
|
|
u32 rss_key[HNS_PPEV2_RSS_KEY_NUM]; /* rss hash key */
|
|
};
|
|
|
|
struct ppe_common_cb {
|
|
struct device *dev;
|
|
struct dsaf_device *dsaf_dev;
|
|
u8 __iomem *io_base;
|
|
|
|
enum ppe_common_mode ppe_mode;
|
|
|
|
u8 comm_index; /*ppe_common index*/
|
|
|
|
u32 ppe_num;
|
|
struct hns_ppe_cb ppe_cb[];
|
|
|
|
};
|
|
|
|
int hns_ppe_wait_tx_fifo_clean(struct hns_ppe_cb *ppe_cb);
|
|
int hns_ppe_init(struct dsaf_device *dsaf_dev);
|
|
|
|
void hns_ppe_uninit(struct dsaf_device *dsaf_dev);
|
|
|
|
void hns_ppe_reset_common(struct dsaf_device *dsaf_dev, u8 ppe_common_index);
|
|
|
|
void hns_ppe_update_stats(struct hns_ppe_cb *ppe_cb);
|
|
|
|
int hns_ppe_get_sset_count(int stringset);
|
|
int hns_ppe_get_regs_count(void);
|
|
void hns_ppe_get_regs(struct hns_ppe_cb *ppe_cb, void *data);
|
|
|
|
void hns_ppe_get_strings(struct hns_ppe_cb *ppe_cb, int stringset, u8 *data);
|
|
void hns_ppe_get_stats(struct hns_ppe_cb *ppe_cb, u64 *data);
|
|
void hns_ppe_set_tso_enable(struct hns_ppe_cb *ppe_cb, u32 value);
|
|
void hns_ppe_set_rss_key(struct hns_ppe_cb *ppe_cb,
|
|
const u32 rss_key[HNS_PPEV2_RSS_KEY_NUM]);
|
|
void hns_ppe_set_indir_table(struct hns_ppe_cb *ppe_cb,
|
|
const u32 rss_tab[HNS_PPEV2_RSS_IND_TBL_SIZE]);
|
|
#endif /* _HNS_DSAF_PPE_H */
|