blob: 4ce1017055825c5e8791f0a051c4ad1b27d7244c [file] [log] [blame]
Simon Glass7c4ae822019-12-06 21:42:56 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2017 Intel Corporation.
4 * Take from coreboot project file of the same name
5 */
6
7#ifndef _ASM_ARCH_IOMAP_H
8#define _ASM_ARCH_IOMAP_H
9
10#define R_ACPI_PM1_TMR 0x8
11
12/* Put p2sb at 0xd0000000 in TPL */
13#define IOMAP_P2SB_BAR 0xd0000000
14
15#define IOMAP_SPI_BASE 0xfe010000
16
17#define IOMAP_ACPI_BASE 0x400
18#define IOMAP_ACPI_SIZE 0x100
19
20/*
21 * Use UART2. To use UART1 you need to set '2' to '1', change device tree serial
22 * node name and 'reg' property, and update CONFIG_DEBUG_UART_BASE.
23 */
24#define PCH_DEV_UART PCI_BDF(0, 0x18, 2)
25
26#define PCH_DEV_LPC PCI_BDF(0, 0x1f, 0)
27#define PCH_DEV_SPI PCI_BDF(0, 0x0d, 2)
28
29#endif