2012-07-17 00:34:24 +00:00
* Texas Instruments Davinci EMAC
This file provides information, what the device node
for the davinci_emac interface contains.
Required properties:
2015-01-15 14:45:14 -08:00
- compatible: "ti,davinci-dm6467-emac", "ti,am3517-emac" or
"ti,dm816-emac"
2012-07-17 00:34:24 +00:00
- reg: Offset and length of the register set for the device
- ti,davinci-ctrl-reg-offset: offset to control register
- ti,davinci-ctrl-mod-reg-offset: offset to control module register
- ti,davinci-ctrl-ram-offset: offset to control module ram
- ti,davinci-ctrl-ram-size: size of control module ram
- interrupts: interrupt mapping for the davinci emac interrupts sources:
4 sources: <Receive Threshold Interrupt
Receive Interrupt
Transmit Interrupt
Miscellaneous Interrupt>
Optional properties:
2014-02-18 02:41:59 +03:00
- phy-handle: See ethernet.txt file in the same directory.
2014-01-17 01:32:13 +03:00
If absent, davinci_emac driver defaults to 100/FULL.
2014-01-28 02:47:41 +03:00
- ti,davinci-rmii-en: 1 byte, 1 means use RMII
2014-01-28 02:49:39 +03:00
- ti,davinci-no-bd-ram: boolean, does EMAC have BD RAM?
2012-07-17 00:34:24 +00:00
2019-05-03 16:27:07 +02:00
The MAC address will be determined using the optional properties
defined in ethernet.txt.
2012-07-17 00:34:24 +00:00
Example (enbw_cmc board):
eth0: emac@1e20000 {
compatible = "ti,davinci-dm6467-emac";
reg = <0x220000 0x4000>;
ti,davinci-ctrl-reg-offset = <0x3000>;
ti,davinci-ctrl-mod-reg-offset = <0x2000>;
ti,davinci-ctrl-ram-offset = <0>;
ti,davinci-ctrl-ram-size = <0x2000>;
local-mac-address = [ 00 00 00 00 00 00 ];
interrupts = <33
34
35
36
>;
interrupt-parent = <&intc>;
};