summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorSylvie Barlow2018-04-20 14:58:40 +0200
committerMichael Brown2018-04-20 16:24:33 +0200
commitc239f0bff2496cefa5e9d3ef6b232f5d28a04d70 (patch)
treede517893ece5f9f5d42d5b309d694b7f2e25b652 /src/include
parent[mii] Add mii_find() (diff)
downloadipxe-c239f0bff2496cefa5e9d3ef6b232f5d28a04d70.tar.gz
ipxe-c239f0bff2496cefa5e9d3ef6b232f5d28a04d70.tar.xz
ipxe-c239f0bff2496cefa5e9d3ef6b232f5d28a04d70.zip
[mii] Add bit-bashing interface
Signed-off-by: Sylvie Barlow <sylvie.c.barlow@gmail.com> Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ipxe/mii_bit.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/include/ipxe/mii_bit.h b/src/include/ipxe/mii_bit.h
new file mode 100644
index 00000000..0f797e91
--- /dev/null
+++ b/src/include/ipxe/mii_bit.h
@@ -0,0 +1,55 @@
+#ifndef _IPXE_MII_BIT_H
+#define _IPXE_MII_BIT_H
+
+/** @file
+ *
+ * MII bit-bashing interface
+ *
+ */
+
+FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
+
+#include <ipxe/mii.h>
+#include <ipxe/bitbash.h>
+
+#define MII_BIT_START 0xffffffff /**< Start */
+#define MII_BIT_START_MASK 0x80000000 /**< Start mask */
+
+#define MII_BIT_CMD_MASK 0x00000008 /**< Command mask */
+#define MII_BIT_CMD_READ 0x00000006 /**< Command read */
+#define MII_BIT_CMD_WRITE 0x00000005 /**< Command write */
+#define MII_BIT_CMD_RW 0x00000001 /**< Command read or write */
+
+#define MII_BIT_PHY_MASK 0x00000010 /**< PHY mask */
+
+#define MII_BIT_REG_MASK 0x00000010 /**< Register mask */
+
+#define MII_BIT_SWITCH 0x00000002 /**< Switch */
+#define MII_BIT_SWITCH_MASK 0x00000002 /**< Switch mask */
+
+#define MII_BIT_DATA_MASK 0x00008000 /**< Data mask */
+
+/** A bit-bashing MII interface */
+struct mii_bit_basher {
+ /** MII interface */
+ struct mii_interface mdio;
+ /** Bit-bashing interface */
+ struct bit_basher basher;
+};
+
+/** Bit indices used for MII bit-bashing interface */
+enum {
+ /** MII clock */
+ MII_BIT_MDC = 0,
+ /** MII data */
+ MII_BIT_MDIO,
+ /** MII data direction */
+ MII_BIT_DRIVE,
+};
+
+/** Delay between MDC transitions */
+#define MII_BIT_UDELAY 1
+
+extern void init_mii_bit_basher ( struct mii_bit_basher *miibit );
+
+#endif /* _IPXE_MII_BIT_H */