summaryrefslogtreecommitdiff
path: root/src/arch/arm64/include/arch/spintable.h
blob: 598090ac60bde6962d362cd5f193b128105c93f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * This file is part of the coreboot project.
 *
 * Copyright 2014 Google, Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#ifndef __ARCH_SPINTABLE_H__
#define __ARCH_SPINTABLE_H__

struct spintable_attributes {
	void (*entry)(void *);
	void *addr;
};

#if IS_ENABLED(CONFIG_ARM64_USE_SPINTABLE)

/* Initialize spintable with provided monitor address. */
void spintable_init(void *monitor_address);

/* Return NULL on failure, otherwise the spintable info. */
const struct spintable_attributes *spintable_get_attributes(void);

#else /* IS_ENABLED(CONFIG_ARM64_USE_SPINTABLE) */

static inline void spintable_init(void *monitor_address) {}
static inline const struct spintable_attributes *spintable_get_attributes(void)
{
	return NULL;
}

#endif /* IS_ENABLED(CONFIG_ARM64_USE_SPINTABLE) */

/* Start spinning on the non-boot CPUs. */
void spintable_start(void);

#endif /* __ARCH_SPINTABLE_H__ */