doc: whitespace changes in licenses
[dpdk.git] / examples / quota_watermark / qw / init.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <fcntl.h>
35 #include <unistd.h>
36 #include <sys/mman.h>
37
38 #include <rte_eal.h>
39
40 #include <rte_common.h>
41 #include <rte_errno.h>
42 #include <rte_ethdev.h>
43 #include <rte_memzone.h>
44 #include <rte_ring.h>
45 #include <rte_string_fns.h>
46
47 #include "args.h"
48 #include "init.h"
49 #include "main.h"
50 #include "../include/conf.h"
51
52
53 static const struct rte_eth_conf port_conf = {
54         .rxmode = {
55                 .split_hdr_size = 0,
56                 .header_split   = 0, /**< Header Split disabled */
57                 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
58                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
59                 .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
60                 .hw_strip_crc   = 0, /**< CRC stripped by hardware */
61         },
62         .txmode = {
63                 .mq_mode = ETH_DCB_NONE,
64         },
65 };
66
67 static const struct rte_eth_rxconf rx_conf = {
68     .rx_thresh = {
69         .pthresh = 8,
70         .hthresh = 8,
71         .wthresh = 4,
72     },
73 };
74
75 static const struct rte_eth_txconf tx_conf = {
76     .tx_thresh = {
77         .pthresh = 36,
78         .hthresh = 0,
79         .wthresh = 0,
80     },
81     .tx_free_thresh = 0,
82     .tx_rs_thresh = 0,
83 };
84
85 static struct rte_eth_fc_conf fc_conf = {
86     .mode       = RTE_FC_TX_PAUSE,
87     .high_water = 80 * 510 / 100,
88     .low_water  = 60 * 510 / 100,
89     .pause_time = 1337,
90     .send_xon   = 0,
91 };
92
93
94 void configure_eth_port(uint8_t port_id)
95 {
96     int ret;
97
98     rte_eth_dev_stop(port_id);
99
100     ret = rte_eth_dev_configure(port_id, 1, 1, &port_conf);
101     if (ret < 0)
102         rte_exit(EXIT_FAILURE, "Cannot configure port %u (error %d)\n",
103                                (unsigned) port_id, ret);
104
105     /* Initialize the port's RX queue */
106     ret = rte_eth_rx_queue_setup(port_id, 0, RX_DESC_PER_QUEUE,
107                                  rte_eth_dev_socket_id(port_id), &rx_conf,
108                                  mbuf_pool);
109     if (ret < 0)
110         rte_exit(EXIT_FAILURE, "Failed to setup RX queue on "
111                                "port %u (error %d)\n", (unsigned) port_id, ret);
112
113     /* Initialize the port's TX queue */
114     ret = rte_eth_tx_queue_setup(port_id, 0, TX_DESC_PER_QUEUE,
115                                  rte_eth_dev_socket_id(port_id), &tx_conf);
116     if (ret < 0)
117         rte_exit(EXIT_FAILURE, "Failed to setup TX queue on "
118                                "port %u (error %d)\n", (unsigned) port_id, ret);
119
120     /* Initialize the port's flow control */
121     ret = rte_eth_dev_flow_ctrl_set(port_id, &fc_conf);
122     if (ret < 0)
123         rte_exit(EXIT_FAILURE, "Failed to setup hardware flow control on "
124                                "port %u (error %d)\n", (unsigned) port_id, ret);
125
126     /* Start the port */
127     ret = rte_eth_dev_start(port_id);
128     if (ret < 0)
129         rte_exit(EXIT_FAILURE, "Failed to start port %u (error %d)\n",
130                                (unsigned) port_id, ret);
131
132     /* Put it in promiscuous mode */
133     rte_eth_promiscuous_enable(port_id);
134 }
135
136 void
137 init_dpdk(void)
138 {
139     int ret;
140
141     /* Initialize the PMD */
142     ret = rte_pmd_init_all();
143     if (ret < 0)
144         rte_exit(EXIT_FAILURE, "Failed to initialize poll mode drivers (error %d)\n", ret);
145
146     /* Bind the drivers to usable devices */
147     ret = rte_eal_pci_probe();
148     if (ret < 0)
149         rte_exit(EXIT_FAILURE, "rte_eal_pci_probe(): error %d\n", ret);
150
151     if (rte_eth_dev_count() < 2)
152         rte_exit(EXIT_FAILURE, "Not enough ethernet port available\n");
153 }
154
155 void init_ring(int lcore_id, uint8_t port_id)
156 {
157     struct rte_ring *ring;
158     char ring_name[RTE_RING_NAMESIZE];
159
160     rte_snprintf(ring_name, RTE_RING_NAMESIZE,
161                 "core%d_port%d", lcore_id, port_id);
162     ring = rte_ring_create(ring_name, RING_SIZE, rte_socket_id(),
163                            RING_F_SP_ENQ | RING_F_SC_DEQ);
164
165     if (ring == NULL)
166         rte_exit(EXIT_FAILURE, "%s\n", rte_strerror(rte_errno));
167
168     rte_ring_set_water_mark(ring, 80 * RING_SIZE / 100);
169
170     rings[lcore_id][port_id] = ring;
171 }
172
173 void
174 pair_ports(void)
175 {
176     uint8_t i, j;
177
178     /* Pair ports with their "closest neighbour" in the portmask */
179     for (i = 0; i < RTE_MAX_ETHPORTS; i++)
180         if (is_bit_set(i, portmask))
181             for (j = (uint8_t) (i + 1); j < RTE_MAX_ETHPORTS; j++)
182                 if (is_bit_set(j, portmask)) {
183                     port_pairs[i] = j;
184                     port_pairs[j] = i;
185                     i = j;
186                     break;
187                 }
188 }
189
190 void
191 setup_shared_variables(void)
192 {
193     const struct rte_memzone *qw_memzone;
194
195     qw_memzone = rte_memzone_reserve(QUOTA_WATERMARK_MEMZONE_NAME, 2 * sizeof(int),
196                                      rte_socket_id(), RTE_MEMZONE_2MB);
197     if (qw_memzone == NULL)
198         rte_exit(EXIT_FAILURE, "%s\n", rte_strerror(rte_errno));
199
200     quota = qw_memzone->addr;
201     low_watermark = (unsigned int *) qw_memzone->addr + sizeof(int);
202 }