2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2009-04-01 04:02:38 +00:00
|
|
|
/*
|
2010-06-10 03:33:53 +00:00
|
|
|
* Copyright 2009-2010 Freescale Semiconductor, Inc.
|
2009-04-01 04:02:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_MP_H_
|
|
|
|
#define _ASM_MP_H_
|
|
|
|
|
|
|
|
#include <lmb.h>
|
|
|
|
|
|
|
|
void setup_mp(void);
|
|
|
|
void cpu_mp_lmb_reserve(struct lmb *lmb);
|
2012-10-08 07:44:25 +00:00
|
|
|
u32 determine_mp_bootpg(unsigned int *pagesize);
|
2010-06-10 03:33:53 +00:00
|
|
|
int is_core_disabled(int nr);
|
2009-04-01 04:02:38 +00:00
|
|
|
|
2012-08-17 08:20:26 +00:00
|
|
|
#ifdef CONFIG_E6500
|
|
|
|
#define thread_to_core(x) (x >> 1)
|
|
|
|
#else
|
|
|
|
#define thread_to_core(x) (x)
|
|
|
|
#endif
|
|
|
|
|
2009-04-01 04:02:38 +00:00
|
|
|
#endif
|