aboutsummaryrefslogtreecommitdiffstats
path: root/include/dm
diff options
context:
space:
mode:
authorChuanhua Han <chuanhua.han@nxp.com>2020-06-04 23:16:30 +0800
committerJagan Teki <jagan@amarulasolutions.com>2020-06-18 21:47:08 +0530
commit8d50551dc77bc87dc6c6b3474e094d9203a24144 (patch)
tree92832e67ba5034173557dddd4621b6f8b90f6ff3 /include/dm
parent47df4b5f2aa789d0e0685742397808d2a626584c (diff)
downloadplatform_external_u-boot-8d50551dc77bc87dc6c6b3474e094d9203a24144.tar.gz
platform_external_u-boot-8d50551dc77bc87dc6c6b3474e094d9203a24144.tar.bz2
platform_external_u-boot-8d50551dc77bc87dc6c6b3474e094d9203a24144.zip
dm: spi: Convert Freescale ESPI driver to driver model
Modify the Freescale ESPI driver to support the driver model. Also resolved the following problems: ===================== WARNING ====================== This board does not use CONFIG_DM_SPI. Please update the board before v2019.04 for no dm conversion and v2019.07 for partially dm converted drivers. Failure to update can lead to driver/board removal See doc/driver-model/MIGRATION.txt for more info. ==================================================== ===================== WARNING ====================== This board does not use CONFIG_DM_SPI_FLASH. Please update the board to use CONFIG_SPI_FLASH before the v2019.07 release. Failure to update by the deadline may result in board removal. See doc/driver-model/MIGRATION.txt for more info. ==================================================== Signed-off-by: Chuanhua Han <chuanhua.han@nxp.com> Signed-off-by: Xiaowei Bao <xiaowei.bao@nxp.com> Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'include/dm')
-rw-r--r--include/dm/platform_data/fsl_espi.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/dm/platform_data/fsl_espi.h b/include/dm/platform_data/fsl_espi.h
new file mode 100644
index 0000000000..812933f51c
--- /dev/null
+++ b/include/dm/platform_data/fsl_espi.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright 2019 NXP
+ */
+
+#ifndef __fsl_espi_h
+#define __fsl_espi_h
+
+struct fsl_espi_platdata {
+ uint flags;
+ uint speed_hz;
+ uint num_chipselect;
+ fdt_addr_t regs_addr;
+};
+
+#endif /* __fsl_espi_h */