Simon Glass | f6257f7 | 2020-12-19 10:39:58 -0700 | [diff] [blame] | 1 | /* 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 */ | ||||
10 | struct 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 */ |