summaryrefslogtreecommitdiffstats
path: root/include/platform_data
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-04-12 09:59:51 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-04-15 08:44:41 +0200
commita1c43792a53a14732ad903d279a8ae87ef8a7662 (patch)
treea57e87fe7ffb08abdd7bfd2239fad1495093a9e9 /include/platform_data
parent472e36c752de840404ae43d76e2aef865c5a8a9e (diff)
downloadbarebox-a1c43792a53a14732ad903d279a8ae87ef8a7662.tar.gz
barebox-a1c43792a53a14732ad903d279a8ae87ef8a7662.tar.xz
include: Move smc91111 eth platform_data to include/platform_data
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/platform_data')
-rw-r--r--include/platform_data/eth-smc91111.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/platform_data/eth-smc91111.h b/include/platform_data/eth-smc91111.h
new file mode 100644
index 0000000000..72193bf972
--- /dev/null
+++ b/include/platform_data/eth-smc91111.h
@@ -0,0 +1,19 @@
+/*
+ * Copyright (C) 2013 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
+ *
+ * Under GPLv2 only
+ */
+
+#ifndef __SMC91111_H__
+#define __SMC91111_H__
+
+struct smc91c111_pdata {
+ int qemu_fixup;
+ int addr_shift;
+ int bus_width;
+ bool word_aligned_short_writes;
+ int config_setup;
+ int control_setup;
+};
+
+#endif /* __SMC91111_H__ */