• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/Documentation/powerpc/dts-bindings/fsl/cpm_qe/
1* Network
2
3Currently defined compatibles:
4- fsl,cpm1-scc-enet
5- fsl,cpm2-scc-enet
6- fsl,cpm1-fec-enet
7- fsl,cpm2-fcc-enet (third resource is GFEMR)
8- fsl,qe-enet
9
10Example:
11
12	ethernet@11300 {
13		device_type = "network";
14		compatible = "fsl,mpc8272-fcc-enet",
15			     "fsl,cpm2-fcc-enet";
16		reg = <11300 20 8400 100 11390 1>;
17		local-mac-address = [ 00 00 00 00 00 00 ];
18		interrupts = <20 8>;
19		interrupt-parent = <&PIC>;
20		phy-handle = <&PHY0>;
21		fsl,cpm-command = <12000300>;
22	};
23
24* MDIO
25
26Currently defined compatibles:
27fsl,pq1-fec-mdio (reg is same as first resource of FEC device)
28fsl,cpm2-mdio-bitbang (reg is port C registers)
29
30Properties for fsl,cpm2-mdio-bitbang:
31fsl,mdio-pin : pin of port C controlling mdio data
32fsl,mdc-pin : pin of port C controlling mdio clock
33
34Example:
35	mdio@10d40 {
36		device_type = "mdio";
37		compatible = "fsl,mpc8272ads-mdio-bitbang",
38			     "fsl,mpc8272-mdio-bitbang",
39			     "fsl,cpm2-mdio-bitbang";
40		reg = <10d40 14>;
41		#address-cells = <1>;
42		#size-cells = <0>;
43		fsl,mdio-pin = <12>;
44		fsl,mdc-pin = <13>;
45	};
46