Required properties:
 - compatible: "marvell,orion-mdio"
-- reg: address and length of the SMI register
+- reg: address and length of the MDIO registers.  When an interrupt is
+  not present, the length is the size of the SMI register (4 bytes)
+  otherwise it must be 0x84 bytes to cover the interrupt control
+  registers.
 
 Optional properties:
 - interrupts: interrupt line number for the SMI error/done interrupt
 connected to this MDIO bus. They must have a "reg" property given the
 PHY address on the MDIO bus.
 
-Example at the SoC level:
+Example at the SoC level without an interrupt property:
 
 mdio {
        #address-cells = <1>;
        reg = <0xd0072004 0x4>;
 };
 
+Example with an interrupt property:
+
+mdio {
+       #address-cells = <1>;
+       #size-cells = <0>;
+       compatible = "marvell,orion-mdio";
+       reg = <0xd0072004 0x84>;
+       interrupts = <30>;
+};
+
 And at the board level:
 
 mdio {