blob: 05d7c4cb94737cf570385e9a3209eb9b00ff3df5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* arch/arm/include/asm/bL_switcher.h
*
* Created by: Nicolas Pitre, April 2012
* Copyright: (C) 2012-2013 Linaro Limited
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef ASM_BL_SWITCHER_H
#define ASM_BL_SWITCHER_H
int bL_switch_request(unsigned int cpu, unsigned int new_cluster_id);
bool bL_switcher_get_enabled(void);
void bL_switcher_put_enabled(void);
#endif
|