summaryrefslogtreecommitdiff
path: root/drivers/spi/ich.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-12-19 20:39:59 +0300
committerSimon Glass <sjg@chromium.org>2021-01-05 22:24:41 +0300
commita53f6fad7ea20f6ccde21f68e3b44ab7fe8bf6cd (patch)
treeb2a9471c7d821aa79586d0a61c8acfb471c9ad12 /drivers/spi/ich.h
parentf6257f7914858cd99219feb3185c679137857b60 (diff)
downloadu-boot-a53f6fad7ea20f6ccde21f68e3b44ab7fe8bf6cd.tar.xz
x86: spl: Move priv/plat structs to headers
With the new of-platdata, these need to be available to dt_platdata.c so must be in header files. Move them. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/spi/ich.h')
-rw-r--r--drivers/spi/ich.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/spi/ich.h b/drivers/spi/ich.h
index 23c7827740..8fd150d44a 100644
--- a/drivers/spi/ich.h
+++ b/drivers/spi/ich.h
@@ -230,4 +230,15 @@ struct ich_spi_priv {
struct udevice *pch; /* PCH, used to control SPI access */
};
+struct ich_spi_plat {
+#if CONFIG_IS_ENABLED(OF_PLATDATA)
+ struct dtd_intel_fast_spi dtplat;
+#endif
+ enum ich_version ich_version; /* Controller version, 7 or 9 */
+ bool lockdown; /* lock down controller settings? */
+ ulong mmio_base; /* Base of MMIO registers */
+ pci_dev_t bdf; /* PCI address used by of-platdata */
+ bool hwseq; /* Use hardware sequencing (not s/w) */
+};
+
#endif /* _ICH_H_ */