2 * FUJITSU Extended Socket Network Device driver
3 * Copyright (c) 2015 FUJITSU LIMITED
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, see <http://www.gnu.org/licenses/>.
17 * The full GNU General Public License is included in this distribution in
18 * the file called "COPYING".
25 #include <linux/netdevice.h>
26 #include <linux/if_vlan.h>
27 #include <linux/vmalloc.h>
29 #include "fjes_regs.h"
33 #define EP_BUFFER_SUPPORT_VLAN_MAX 4
34 #define EP_BUFFER_INFO_SIZE 4096
36 #define FJES_DEVICE_RESET_TIMEOUT ((17 + 1) * 3 * 8) /* sec */
37 #define FJES_COMMAND_REQ_TIMEOUT ((5 + 1) * 3 * 8) /* sec */
38 #define FJES_COMMAND_REQ_BUFF_TIMEOUT (60 * 3) /* sec */
39 #define FJES_COMMAND_EPSTOP_WAIT_TIMEOUT (1) /* sec */
41 #define FJES_CMD_REQ_ERR_INFO_PARAM (0x0001)
42 #define FJES_CMD_REQ_ERR_INFO_STATUS (0x0002)
44 #define FJES_CMD_REQ_RES_CODE_NORMAL (0)
45 #define FJES_CMD_REQ_RES_CODE_BUSY (1)
47 #define FJES_ZONING_STATUS_DISABLE (0x00)
48 #define FJES_ZONING_STATUS_ENABLE (0x01)
49 #define FJES_ZONING_STATUS_INVALID (0xFF)
51 #define FJES_ZONING_ZONE_TYPE_NONE (0xFF)
53 #define FJES_TX_DELAY_SEND_NONE (0)
54 #define FJES_TX_DELAY_SEND_PENDING (1)
56 #define FJES_RX_STOP_REQ_NONE (0x0)
57 #define FJES_RX_STOP_REQ_DONE (0x1)
58 #define FJES_RX_STOP_REQ_REQUEST (0x2)
59 #define FJES_RX_POLL_WORK (0x4)
60 #define FJES_RX_MTU_CHANGING_DONE (0x8)
62 #define EP_BUFFER_SIZE \
63 (((sizeof(union ep_buffer_info) + (128 * (64 * 1024))) \
64 / EP_BUFFER_INFO_SIZE) * EP_BUFFER_INFO_SIZE)
66 #define EP_RING_NUM(buffer_size, frame_size) \
67 (u32)((buffer_size) / (frame_size))
68 #define EP_RING_INDEX(_num, _max) (((_num) + (_max)) % (_max))
69 #define EP_RING_INDEX_INC(_num, _max) \
70 ((_num) = EP_RING_INDEX((_num) + 1, (_max)))
71 #define EP_RING_FULL(_head, _tail, _max) \
72 (0 == EP_RING_INDEX(((_tail) - (_head)), (_max)))
73 #define EP_RING_EMPTY(_head, _tail, _max) \
74 (1 == EP_RING_INDEX(((_tail) - (_head)), (_max)))
76 #define FJES_MTU_TO_BUFFER_SIZE(mtu) \
77 (ETH_HLEN + VLAN_HLEN + (mtu) + ETH_FCS_LEN)
78 #define FJES_MTU_TO_FRAME_SIZE(mtu) \
79 (sizeof(struct esmem_frame) + FJES_MTU_TO_BUFFER_SIZE(mtu))
80 #define FJES_MTU_DEFINE(size) \
81 ((size) - sizeof(struct esmem_frame) - \
82 (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN))
84 #define FJES_DEV_COMMAND_INFO_REQ_LEN (4)
85 #define FJES_DEV_COMMAND_INFO_RES_LEN(epnum) (8 + 2 * (epnum))
86 #define FJES_DEV_COMMAND_SHARE_BUFFER_REQ_LEN(txb, rxb) \
87 (24 + (8 * ((txb) / EP_BUFFER_INFO_SIZE + (rxb) / EP_BUFFER_INFO_SIZE)))
88 #define FJES_DEV_COMMAND_SHARE_BUFFER_RES_LEN (8)
89 #define FJES_DEV_COMMAND_UNSHARE_BUFFER_REQ_LEN (8)
90 #define FJES_DEV_COMMAND_UNSHARE_BUFFER_RES_LEN (8)
92 #define FJES_DEV_REQ_BUF_SIZE(maxep) \
93 FJES_DEV_COMMAND_SHARE_BUFFER_REQ_LEN(EP_BUFFER_SIZE, EP_BUFFER_SIZE)
94 #define FJES_DEV_RES_BUF_SIZE(maxep) \
95 FJES_DEV_COMMAND_INFO_RES_LEN(maxep)
103 /* EP partner status */
104 enum ep_partner_status
{
109 EP_PARTNER_STATUS_MAX
,
112 /* shared status region */
113 struct fjes_device_shared_info
{
118 /* structures for command control request data*/
119 union fjes_device_command_req
{
143 /* structures for command control response data */
144 union fjes_device_command_res
{
171 /* request command type */
172 enum fjes_dev_command_request_type
{
173 FJES_CMD_REQ_INFO
= 0x0001,
174 FJES_CMD_REQ_SHARE_BUFFER
= 0x0002,
175 FJES_CMD_REQ_UNSHARE_BUFFER
= 0x0004,
178 /* parameter for command control */
179 struct fjes_device_command_param
{
181 phys_addr_t req_start
;
183 phys_addr_t res_start
;
184 phys_addr_t share_start
;
187 /* error code for command control */
188 enum fjes_dev_command_response_e
{
189 FJES_CMD_STATUS_UNKNOWN
,
190 FJES_CMD_STATUS_NORMAL
,
191 FJES_CMD_STATUS_TIMEOUT
,
192 FJES_CMD_STATUS_ERROR_PARAM
,
193 FJES_CMD_STATUS_ERROR_STATUS
,
196 /* EP buffer information */
197 union ep_buffer_info
{
198 u8 raw
[EP_BUFFER_INFO_SIZE
];
200 struct _ep_buffer_info_common_t
{
204 struct _ep_buffer_info_v1_t
{
214 u8 mac_addr
[ETH_ALEN
];
225 u16 vlan_id
[EP_BUFFER_SUPPORT_VLAN_MAX
];
231 /* buffer pair for Extended Partition */
232 struct ep_share_mem_info
{
233 struct epbuf_handler
{
236 union ep_buffer_info
*info
;
240 struct rtnl_link_stats64 net_stats
;
248 struct es_device_trace
{
262 struct fjes_hw_info
{
263 struct fjes_device_shared_info
*share
;
264 union fjes_device_command_req
*req_buf
;
266 union fjes_device_command_res
*res_buf
;
272 struct es_device_trace
*trace
;
275 struct mutex lock
; /* buffer lock*/
277 unsigned long buffer_share_bit
;
278 unsigned long buffer_unshare_reserve_bit
;
284 unsigned long txrx_stop_req_bit
;
285 unsigned long epstop_req_bit
;
286 struct work_struct update_zone_task
;
287 struct work_struct epstop_task
;
292 struct ep_share_mem_info
*ep_shm_info
;
294 struct fjes_hw_resource
{
302 struct fjes_hw_info hw_info
;
304 spinlock_t rx_status_lock
; /* spinlock for rx_status */
307 int fjes_hw_init(struct fjes_hw
*);
308 void fjes_hw_exit(struct fjes_hw
*);
309 int fjes_hw_reset(struct fjes_hw
*);
310 int fjes_hw_request_info(struct fjes_hw
*);
311 int fjes_hw_register_buff_addr(struct fjes_hw
*, int,
312 struct ep_share_mem_info
*);
313 int fjes_hw_unregister_buff_addr(struct fjes_hw
*, int);
314 void fjes_hw_init_command_registers(struct fjes_hw
*,
315 struct fjes_device_command_param
*);
316 void fjes_hw_setup_epbuf(struct epbuf_handler
*, u8
*, u32
);
317 int fjes_hw_raise_interrupt(struct fjes_hw
*, int, enum REG_ICTL_MASK
);
318 void fjes_hw_set_irqmask(struct fjes_hw
*, enum REG_ICTL_MASK
, bool);
319 u32
fjes_hw_capture_interrupt_status(struct fjes_hw
*);
320 void fjes_hw_raise_epstop(struct fjes_hw
*);
321 int fjes_hw_wait_epstop(struct fjes_hw
*);
322 enum ep_partner_status
323 fjes_hw_get_partner_ep_status(struct fjes_hw
*, int);
325 bool fjes_hw_epid_is_same_zone(struct fjes_hw
*, int);
326 int fjes_hw_epid_is_shared(struct fjes_device_shared_info
*, int);
327 bool fjes_hw_check_epbuf_version(struct epbuf_handler
*, u32
);
328 bool fjes_hw_check_mtu(struct epbuf_handler
*, u32
);
329 bool fjes_hw_check_vlan_id(struct epbuf_handler
*, u16
);
330 bool fjes_hw_set_vlan_id(struct epbuf_handler
*, u16
);
331 void fjes_hw_del_vlan_id(struct epbuf_handler
*, u16
);
332 bool fjes_hw_epbuf_rx_is_empty(struct epbuf_handler
*);
333 void *fjes_hw_epbuf_rx_curpkt_get_addr(struct epbuf_handler
*, size_t *);
334 void fjes_hw_epbuf_rx_curpkt_drop(struct epbuf_handler
*);
335 int fjes_hw_epbuf_tx_pkt_send(struct epbuf_handler
*, void *, size_t);
337 #endif /* FJES_HW_H_ */