* BCM RPC EDAC node

EDAC node is defined to describe on-chip error detection and correction.
The follow error types are supported:

  memory controller	- Memory controller

The following section describes the EDAC DT node binding.

Required properties:
- compatible		: Shall be "brcm,bcm-rpc-edac".
- rpc-channel		: itc-rpc communication channel establishment, this node is must
  without which the driver can't control the registers.

Required properties for memory controller subnode:
- compatible		: Shall be "brcm,rpc-edac-mc".
- memory-controller	: Instance number of the memory controller.

Example:
	edac {
		compatible = "brcm,bcm-rpc-edac";
		rpc-channel = <&rpcrgsmc>;

		edacmc@0 {
			compatible = "brcm,rpc-edac-mc";
			memory-controller = <0>;
		};

		edacmc@1 {
			compatible = "brcm,rpc-edac-mc";
			memory-controller = <1>;
		};
	};
