blob: f5d69dbf97ee69a72cc7d5afdc7118b8476d2dbc [file] [log] [blame]
Simon Glass31f88f42014-11-14 18:18:27 -07001/*
2 * From coreboot file of the same name
3 *
4 * Copyright (C) 2010 coresystems GmbH
5 *
6 * SPDX-License-Identifier: GPL-2.0
7 */
8
9#ifndef __ASM_IOAPIC_H
10#define __ASM_IOAPIC_H
11
12#define IO_APIC_ADDR 0xfec00000
Simon Glass31f88f42014-11-14 18:18:27 -070013
Bin Meng964a3a32015-06-23 12:18:48 +080014/* Direct addressed register */
15#define IO_APIC_INDEX (IO_APIC_ADDR + 0x00)
16#define IO_APIC_DATA (IO_APIC_ADDR + 0x10)
Simon Glass31f88f42014-11-14 18:18:27 -070017
18#endif