ioapic.h 338 B

123456789101112131415161718
  1. /*
  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. #ifndef __ASM_IOAPIC_H
  9. #define __ASM_IOAPIC_H
  10. #define IO_APIC_ADDR 0xfec00000
  11. /* Direct addressed register */
  12. #define IO_APIC_INDEX (IO_APIC_ADDR + 0x00)
  13. #define IO_APIC_DATA (IO_APIC_ADDR + 0x10)
  14. #endif