summaryrefslogtreecommitdiff
path: root/include/dm/platform_data/pfe_dm_eth.h
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2018-03-22 16:35:43 -0400
committerTom Rini <[email protected]>2018-03-22 16:35:43 -0400
commitb0af10443afcb9e0dcfe18a7b8a013b230df9e39 (patch)
treee71473827f67e5407b0e378cb87f4927674df5f3 /include/dm/platform_data/pfe_dm_eth.h
parentd6d8c4d4cc4bc59c17eabc5ffa43a4d304daa535 (diff)
parentd04791dfa5e14183148c4b966a392de7a9869a10 (diff)
Merge git://git.denx.de/u-boot-net
Diffstat (limited to 'include/dm/platform_data/pfe_dm_eth.h')
-rw-r--r--include/dm/platform_data/pfe_dm_eth.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/dm/platform_data/pfe_dm_eth.h b/include/dm/platform_data/pfe_dm_eth.h
new file mode 100644
index 00000000000..7943c676885
--- /dev/null
+++ b/include/dm/platform_data/pfe_dm_eth.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2015-2016 Freescale Semiconductor, Inc.
+ * Copyright 2017 NXP
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef __PFE_DM_ETH_H__
+#define __PFE_DM_ETH_H__
+#include <net.h>
+
+struct pfe_ddr_address {
+ void *ddr_pfe_baseaddr;
+ unsigned long ddr_pfe_phys_baseaddr;
+};
+
+struct pfe_eth_pdata {
+ struct eth_pdata pfe_eth_pdata_mac;
+ struct pfe_ddr_address pfe_ddr_addr;
+};
+#endif /* __PFE_DM_ETH_H__ */