xref: /rk3399_rockchip-uboot/arch/powerpc/include/asm/mp.h (revision a47a12becf66f02a56da91c161e2edb625e9f20c)
1*a47a12beSStefan Roese /*
2*a47a12beSStefan Roese  * Copyright 2009 Freescale Semiconductor, Inc.
3*a47a12beSStefan Roese  *
4*a47a12beSStefan Roese  * This program is free software; you can redistribute it and/or
5*a47a12beSStefan Roese  * modify it under the terms of the GNU General Public License as
6*a47a12beSStefan Roese  * published by the Free Software Foundation; either version 2 of
7*a47a12beSStefan Roese  * the License, or (at your option) any later version.
8*a47a12beSStefan Roese  *
9*a47a12beSStefan Roese  * This program is distributed in the hope that it will be useful,
10*a47a12beSStefan Roese  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11*a47a12beSStefan Roese  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the
12*a47a12beSStefan Roese  * GNU General Public License for more details.
13*a47a12beSStefan Roese  *
14*a47a12beSStefan Roese  * You should have received a copy of the GNU General Public License
15*a47a12beSStefan Roese  * along with this program; if not, write to the Free Software
16*a47a12beSStefan Roese  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17*a47a12beSStefan Roese  * MA 02111-1307 USA
18*a47a12beSStefan Roese  *
19*a47a12beSStefan Roese  */
20*a47a12beSStefan Roese 
21*a47a12beSStefan Roese #ifndef _ASM_MP_H_
22*a47a12beSStefan Roese #define _ASM_MP_H_
23*a47a12beSStefan Roese 
24*a47a12beSStefan Roese #include <lmb.h>
25*a47a12beSStefan Roese 
26*a47a12beSStefan Roese void setup_mp(void);
27*a47a12beSStefan Roese void cpu_mp_lmb_reserve(struct lmb *lmb);
28*a47a12beSStefan Roese u32 determine_mp_bootpg(void);
29*a47a12beSStefan Roese 
30*a47a12beSStefan Roese #endif
31