mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
bmips: bcm6348: add support for bcm6348-enet
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
This commit is contained in:
parent
ec96de3b66
commit
9dc07b9493
1 changed files with 26 additions and 0 deletions
|
@ -161,6 +161,32 @@
|
|||
u-boot,dm-pre-reloc;
|
||||
};
|
||||
|
||||
enet0: ethernet@fffe6000 {
|
||||
compatible = "brcm,bcm6348-enet";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
reg = <0xfffe6000 0x2dc>;
|
||||
dmas = <&iudma BCM6348_DMA_ENET0_RX>,
|
||||
<&iudma BCM6348_DMA_ENET0_TX>;
|
||||
dma-names = "rx",
|
||||
"tx";
|
||||
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
enet1: ethernet@fffe6800 {
|
||||
compatible = "brcm,bcm6348-enet";
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
reg = <0xfffe6800 0x2dc>;
|
||||
dmas = <&iudma BCM6348_DMA_ENET1_RX>,
|
||||
<&iudma BCM6348_DMA_ENET1_TX>;
|
||||
dma-names = "rx",
|
||||
"tx";
|
||||
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
iudma: dma-controller@fffe7000 {
|
||||
compatible = "brcm,bcm6348-iudma";
|
||||
reg = <0xfffe7000 0x1c>,
|
||||
|
|
Loading…
Reference in a new issue