blob: 6f63eae8e274730d20cb773f7709ac9666e5d923 [file] [log] [blame]
Simon Glassf6257f72020-12-19 10:39:58 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2020 Google LLC
4 */
5
6#ifndef ASM_P2SB_H
7#define ASM_P2SB_H
8
9/* Platform data for the P2SB */
10struct p2sb_plat {
11#if CONFIG_IS_ENABLED(OF_PLATDATA)
12 struct dtd_intel_p2sb dtplat;
13#endif
14 ulong mmio_base;
15 pci_dev_t bdf;
16};
17
18#endif /* ASM_P2SB_H */