aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/irqchip/arm-gic-acpi.h
blob: de3419ed3937c323a36a189cc8624caee4831960 (plain) (blame)
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
/*
 * Copyright (C) 2014, Linaro Ltd.
 *	Author: Tomasz Nowicki <tomasz.nowicki@linaro.org>
 *
 * 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 ARM_GIC_ACPI_H_
#define ARM_GIC_ACPI_H_

#ifdef CONFIG_ACPI

/*
 * Hard code here, we can not get memory size from MADT (but FDT does),
 * Actually no need to do that, because this size can be inferred
 * from GIC spec.
 */
#define ACPI_GICV2_DIST_MEM_SIZE	(SZ_4K)
#define ACPI_GIC_CPU_IF_MEM_SIZE	(SZ_8K)

struct acpi_table_header;

int gic_v2_acpi_init(struct acpi_table_header *table);
void acpi_gic_init(void);
#else
static inline void acpi_gic_init(void) { }
#endif

#endif /* ARM_GIC_ACPI_H_ */