blob: f5d69dbf97ee69a72cc7d5afdc7118b8476d2dbc [file] [log] [blame]
Simon Glassa2f5d092014-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
Bin Mengba9091f2015-06-23 12:18:48 +080013
14/* Direct addressed register */
15#define IO_APIC_INDEX (IO_APIC_ADDR + 0x00)
Simon Glassa2f5d092014-11-14 18:18:27 -070016#define IO_APIC_DATA (IO_APIC_ADDR + 0x10)
Simon Glassa2f5d092014-11-14 18:18:27 -070017
18#endif