hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* 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 */