ixgbe_mbx.h revision 247822
1215911Sjfv/******************************************************************************
2215911Sjfv
3247822Sjfv  Copyright (c) 2001-2013, Intel Corporation
4215911Sjfv  All rights reserved.
5215911Sjfv
6215911Sjfv  Redistribution and use in source and binary forms, with or without
7215911Sjfv  modification, are permitted provided that the following conditions are met:
8215911Sjfv
9215911Sjfv   1. Redistributions of source code must retain the above copyright notice,
10215911Sjfv      this list of conditions and the following disclaimer.
11215911Sjfv
12215911Sjfv   2. Redistributions in binary form must reproduce the above copyright
13215911Sjfv      notice, this list of conditions and the following disclaimer in the
14215911Sjfv      documentation and/or other materials provided with the distribution.
15215911Sjfv
16215911Sjfv   3. Neither the name of the Intel Corporation nor the names of its
17215911Sjfv      contributors may be used to endorse or promote products derived from
18215911Sjfv      this software without specific prior written permission.
19215911Sjfv
20215911Sjfv  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21215911Sjfv  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22215911Sjfv  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23215911Sjfv  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24215911Sjfv  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25215911Sjfv  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26215911Sjfv  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27215911Sjfv  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28215911Sjfv  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29215911Sjfv  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30215911Sjfv  POSSIBILITY OF SUCH DAMAGE.
31215911Sjfv
32215911Sjfv******************************************************************************/
33215911Sjfv/*$FreeBSD: head/sys/dev/ixgbe/ixgbe_mbx.h 247822 2013-03-04 23:07:40Z jfv $*/
34215911Sjfv
35215911Sjfv#ifndef _IXGBE_MBX_H_
36215911Sjfv#define _IXGBE_MBX_H_
37215911Sjfv
38215911Sjfv#include "ixgbe_type.h"
39215911Sjfv
40230775Sjfv#define IXGBE_VFMAILBOX_SIZE	16 /* 16 32 bit words - 64 bytes */
41230775Sjfv#define IXGBE_ERR_MBX		-100
42215911Sjfv
43230775Sjfv#define IXGBE_VFMAILBOX		0x002FC
44230775Sjfv#define IXGBE_VFMBMEM		0x00200
45215911Sjfv
46215911Sjfv/* Define mailbox register bits */
47230775Sjfv#define IXGBE_VFMAILBOX_REQ	0x00000001 /* Request for PF Ready bit */
48230775Sjfv#define IXGBE_VFMAILBOX_ACK	0x00000002 /* Ack PF message received */
49230775Sjfv#define IXGBE_VFMAILBOX_VFU	0x00000004 /* VF owns the mailbox buffer */
50230775Sjfv#define IXGBE_VFMAILBOX_PFU	0x00000008 /* PF owns the mailbox buffer */
51230775Sjfv#define IXGBE_VFMAILBOX_PFSTS	0x00000010 /* PF wrote a message in the MB */
52230775Sjfv#define IXGBE_VFMAILBOX_PFACK	0x00000020 /* PF ack the previous VF msg */
53230775Sjfv#define IXGBE_VFMAILBOX_RSTI	0x00000040 /* PF has reset indication */
54230775Sjfv#define IXGBE_VFMAILBOX_RSTD	0x00000080 /* PF has indicated reset done */
55230775Sjfv#define IXGBE_VFMAILBOX_R2C_BITS	0x000000B0 /* All read to clear bits */
56215911Sjfv
57230775Sjfv#define IXGBE_PFMAILBOX_STS	0x00000001 /* Initiate message send to VF */
58230775Sjfv#define IXGBE_PFMAILBOX_ACK	0x00000002 /* Ack message recv'd from VF */
59230775Sjfv#define IXGBE_PFMAILBOX_VFU	0x00000004 /* VF owns the mailbox buffer */
60230775Sjfv#define IXGBE_PFMAILBOX_PFU	0x00000008 /* PF owns the mailbox buffer */
61230775Sjfv#define IXGBE_PFMAILBOX_RVFU	0x00000010 /* Reset VFU - used when VF stuck */
62215911Sjfv
63230775Sjfv#define IXGBE_MBVFICR_VFREQ_MASK	0x0000FFFF /* bits for VF messages */
64230775Sjfv#define IXGBE_MBVFICR_VFREQ_VF1		0x00000001 /* bit for VF 1 message */
65230775Sjfv#define IXGBE_MBVFICR_VFACK_MASK	0xFFFF0000 /* bits for VF acks */
66230775Sjfv#define IXGBE_MBVFICR_VFACK_VF1		0x00010000 /* bit for VF 1 ack */
67215911Sjfv
68215911Sjfv
69215911Sjfv/* If it's a IXGBE_VF_* msg then it originates in the VF and is sent to the
70215911Sjfv * PF.  The reverse is TRUE if it is IXGBE_PF_*.
71215911Sjfv * Message ACK's are the value or'd with 0xF0000000
72215911Sjfv */
73230775Sjfv#define IXGBE_VT_MSGTYPE_ACK	0x80000000 /* Messages below or'd with
74230775Sjfv					    * this are the ACK */
75230775Sjfv#define IXGBE_VT_MSGTYPE_NACK	0x40000000 /* Messages below or'd with
76230775Sjfv					    * this are the NACK */
77230775Sjfv#define IXGBE_VT_MSGTYPE_CTS	0x20000000 /* Indicates that VF is still
78230775Sjfv					    * clear to send requests */
79230775Sjfv#define IXGBE_VT_MSGINFO_SHIFT	16
80230775Sjfv/* bits 23:16 are used for extra info for certain messages */
81230775Sjfv#define IXGBE_VT_MSGINFO_MASK	(0xFF << IXGBE_VT_MSGINFO_SHIFT)
82215911Sjfv
83230775Sjfv#define IXGBE_VF_RESET		0x01 /* VF requests reset */
84230775Sjfv#define IXGBE_VF_SET_MAC_ADDR	0x02 /* VF requests PF to set MAC addr */
85230775Sjfv#define IXGBE_VF_SET_MULTICAST	0x03 /* VF requests PF to set MC addr */
86230775Sjfv#define IXGBE_VF_SET_VLAN	0x04 /* VF requests PF to set VLAN */
87247822Sjfv
88247822Sjfv/* mailbox API, version 1.0 VF requests */
89230775Sjfv#define IXGBE_VF_SET_LPE	0x05 /* VF requests PF to set VMOLR.LPE */
90230775Sjfv#define IXGBE_VF_SET_MACVLAN	0x06 /* VF requests PF for unicast filter */
91247822Sjfv#define IXGBE_VF_API_NEGOTIATE	0x08 /* negotiate API version */
92215911Sjfv
93247822Sjfv/* mailbox API, version 1.1 VF requests */
94247822Sjfv#define IXGBE_VF_GET_QUEUES	0x09 /* get queue configuration */
95247822Sjfv
96247822Sjfv/* GET_QUEUES return data indices within the mailbox */
97247822Sjfv#define IXGBE_VF_TX_QUEUES	1	/* number of Tx queues supported */
98247822Sjfv#define IXGBE_VF_RX_QUEUES	2	/* number of Rx queues supported */
99247822Sjfv#define IXGBE_VF_TRANS_VLAN	3	/* Indication of port vlan */
100247822Sjfv#define IXGBE_VF_DEF_QUEUE	4	/* Default queue offset */
101247822Sjfv
102215911Sjfv/* length of permanent address message returned from PF */
103230775Sjfv#define IXGBE_VF_PERMADDR_MSG_LEN	4
104215911Sjfv/* word in permanent address message with the current multicast type */
105230775Sjfv#define IXGBE_VF_MC_TYPE_WORD		3
106215911Sjfv
107230775Sjfv#define IXGBE_PF_CONTROL_MSG		0x0100 /* PF control message */
108215911Sjfv
109215911Sjfv
110230775Sjfv#define IXGBE_VF_MBX_INIT_TIMEOUT	2000 /* number of retries on mailbox */
111230775Sjfv#define IXGBE_VF_MBX_INIT_DELAY		500  /* microseconds between retries */
112230775Sjfv
113215911Sjfvs32 ixgbe_read_mbx(struct ixgbe_hw *, u32 *, u16, u16);
114215911Sjfvs32 ixgbe_write_mbx(struct ixgbe_hw *, u32 *, u16, u16);
115215911Sjfvs32 ixgbe_read_posted_mbx(struct ixgbe_hw *, u32 *, u16, u16);
116215911Sjfvs32 ixgbe_write_posted_mbx(struct ixgbe_hw *, u32 *, u16, u16);
117215911Sjfvs32 ixgbe_check_for_msg(struct ixgbe_hw *, u16);
118215911Sjfvs32 ixgbe_check_for_ack(struct ixgbe_hw *, u16);
119215911Sjfvs32 ixgbe_check_for_rst(struct ixgbe_hw *, u16);
120215911Sjfvvoid ixgbe_init_mbx_ops_generic(struct ixgbe_hw *hw);
121215911Sjfvvoid ixgbe_init_mbx_params_vf(struct ixgbe_hw *);
122215911Sjfvvoid ixgbe_init_mbx_params_pf(struct ixgbe_hw *);
123215911Sjfv
124215911Sjfv#endif /* _IXGBE_MBX_H_ */
125