blob: 06eb7462c32ea4ebfddb7f9566f5df1bd04fe601 [file] [log] [blame]
Patrick Georgi02363b52020-05-05 20:48:50 +02001/* This file is part of the coreboot project. */
Patrick Georgiac959032020-05-05 22:49:26 +02002/* SPDX-License-Identifier: GPL-2.0-or-later */
Damien Zammit43a1f782015-08-19 15:16:59 +10003
4#ifndef X4X_IOMAP_H
5#define X4X_IOMAP_H
6
Damien Zammit43a1f782015-08-19 15:16:59 +10007#define DEFAULT_MCHBAR 0xfed14000 /* 16 KB */
8#define DEFAULT_DMIBAR 0xfed18000 /* 4 KB */
9#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
10#define DEFAULT_HECIBAR 0xfed10000
11
Martin Rothcbe38922016-01-05 19:40:41 -070012#define TPMBASE 0xfed40000
Arthur Heymans70a1dda2017-03-09 01:58:24 +010013#define TPM32(x) (*((volatile u32 *)(TPMBASE + (x))))
Martin Rothcbe38922016-01-05 19:40:41 -070014
Damien Zammit43a1f782015-08-19 15:16:59 +100015#endif /* X4X_IOMAP_H */