first public release
[dpdk.git] / lib / librte_eal / common / eal_common_launch.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2012 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  *  version: DPDK.L.1.2.3-3
34  */
35
36 #include <errno.h>
37 #include <stdint.h>
38 #include <stdio.h>
39 #include <sys/queue.h>
40
41 #include <rte_launch.h>
42 #include <rte_memory.h>
43 #include <rte_memzone.h>
44 #include <rte_tailq.h>
45 #include <rte_eal.h>
46 #include <rte_atomic.h>
47 #include <rte_per_lcore.h>
48 #include <rte_lcore.h>
49
50 /*
51  * Wait until a lcore finished its job.
52  */
53 int
54 rte_eal_wait_lcore(unsigned slave_id)
55 {
56         if (lcore_config[slave_id].state == WAIT)
57                 return 0;
58
59         while (lcore_config[slave_id].state != WAIT &&
60                lcore_config[slave_id].state != FINISHED);
61
62         rte_rmb();
63
64         /* we are in finished state, go to wait state */
65         lcore_config[slave_id].state = WAIT;
66         return lcore_config[slave_id].ret;
67 }
68
69 /*
70  * Check that every SLAVE lcores are in WAIT state, then call
71  * rte_eal_remote_launch() for all of them. If call_master is true
72  * (set to CALL_MASTER), also call the function on the master lcore.
73  */
74 int
75 rte_eal_mp_remote_launch(int (*f)(void *), void *arg,
76                          enum rte_rmt_call_master_t call_master)
77 {
78         int lcore_id;
79         int master = rte_get_master_lcore();
80
81         /* check state of lcores */
82         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
83                 if (lcore_config[lcore_id].state != WAIT)
84                         return -EBUSY;
85         }
86
87         /* send messages to cores */
88         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
89                 rte_eal_remote_launch(f, arg, lcore_id);
90         }
91
92         if (call_master == CALL_MASTER) {
93                 lcore_config[master].ret = f(arg);
94                 lcore_config[master].state = FINISHED;
95         }
96
97         return 0;
98 }
99
100 /*
101  * Return the state of the lcore identified by slave_id.
102  */
103 enum rte_lcore_state_t
104 rte_eal_get_lcore_state(unsigned lcore_id)
105 {
106         return lcore_config[lcore_id].state;
107 }
108
109 /*
110  * Do a rte_eal_wait_lcore() for every lcore. The return values are
111  * ignored.
112  */
113 void
114 rte_eal_mp_wait_lcore(void)
115 {
116         unsigned lcore_id;
117
118         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
119                 rte_eal_wait_lcore(lcore_id);
120         }
121 }
122