diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-11 21:19:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-10-11 21:19:00 -0400 |
commit | ca321885b0511a85e2d1cd40caafedbeb18f4af6 (patch) | |
tree | 0042e8674aff7ae5785db467836d8d4101906f70 /arch/arm64 | |
parent | 052db7ec86dff26f734031c3ef5c2c03a94af0af (diff) | |
parent | 01d2d484e49e9bc0ed9b5fdaf345a0e2bf35ffed (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Pull networking fixes from David Miller:
"This set fixes a bunch of fallout from the changes that went in during
this merge window, particularly:
- Fix fsl_pq_mdio (Claudiu Manoil) and fm10k (Pranith Kumar) build
failures.
- Several networking drivers do atomic_set() on page counts where
that's not exactly legal. From Eric Dumazet.
- Make __skb_flow_get_ports() work cleanly with unaligned data, from
Alexander Duyck.
- Fix some kernel-doc buglets in rfkill and netlabel, from Fabian
Frederick.
- Unbalanced enable_irq_wake usage in bcmgenet and systemport
drivers, from Florian Fainelli.
- pxa168_eth needs to depend on HAS_DMA, from Geert Uytterhoeven.
- Multi-dequeue in the qdisc layer severely bypasses the fairness
limits the previous code used to enforce, reintroduce in a way that
at the same time doesn't compromise bulk dequeue opportunities.
From Jesper Dangaard Brouer.
- macvlan receive path unnecessarily hops through a softirq by using
netif_rx() instead of netif_receive_skb(). From Jason Baron"
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net: (51 commits)
net: systemport: avoid unbalanced enable_irq_wake calls
net: bcmgenet: avoid unbalanced enable_irq_wake calls
net: bcmgenet: fix off-by-one in incrementing read pointer
net: fix races in page->_count manipulation
mlx4: fix race accessing page->_count
ixgbe: fix race accessing page->_count
igb: fix race accessing page->_count
fm10k: fix race accessing page->_count
net/phy: micrel: Add clock support for KSZ8021/KSZ8031
flow-dissector: Fix alignment issue in __skb_flow_get_ports
net: filter: fix the comments
Documentation: replace __sk_run_filter with __bpf_prog_run
macvlan: optimize the receive path
macvlan: pass 'bool' type to macvlan_count_rx()
drivers: net: xgene: Add 10GbE ethtool support
drivers: net: xgene: Add 10GbE support
drivers: net: xgene: Preparing for adding 10GbE support
dtb: Add 10GbE node to APM X-Gene SoC device tree
Documentation: dts: Update section header for APM X-Gene
MAINTAINERS: Update APM X-Gene section
...
Diffstat (limited to 'arch/arm64')
-rw-r--r-- | arch/arm64/boot/dts/apm-mustang.dts | 4 | ||||
-rw-r--r-- | arch/arm64/boot/dts/apm-storm.dtsi | 29 |
2 files changed, 31 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/apm-mustang.dts b/arch/arm64/boot/dts/apm-mustang.dts index f64900052f4e..8eb6d94c7851 100644 --- a/arch/arm64/boot/dts/apm-mustang.dts +++ b/arch/arm64/boot/dts/apm-mustang.dts | |||
@@ -40,3 +40,7 @@ | |||
40 | &menet { | 40 | &menet { |
41 | status = "ok"; | 41 | status = "ok"; |
42 | }; | 42 | }; |
43 | |||
44 | &xgenet { | ||
45 | status = "ok"; | ||
46 | }; | ||
diff --git a/arch/arm64/boot/dts/apm-storm.dtsi b/arch/arm64/boot/dts/apm-storm.dtsi index 4f6d04d52cca..87d3205e98d5 100644 --- a/arch/arm64/boot/dts/apm-storm.dtsi +++ b/arch/arm64/boot/dts/apm-storm.dtsi | |||
@@ -176,6 +176,16 @@ | |||
176 | clock-output-names = "menetclk"; | 176 | clock-output-names = "menetclk"; |
177 | }; | 177 | }; |
178 | 178 | ||
179 | xge0clk: xge0clk@1f61c000 { | ||
180 | compatible = "apm,xgene-device-clock"; | ||
181 | #clock-cells = <1>; | ||
182 | clocks = <&socplldiv2 0>; | ||
183 | reg = <0x0 0x1f61c000 0x0 0x1000>; | ||
184 | reg-names = "csr-reg"; | ||
185 | csr-mask = <0x3>; | ||
186 | clock-output-names = "xge0clk"; | ||
187 | }; | ||
188 | |||
179 | sataphy1clk: sataphy1clk@1f21c000 { | 189 | sataphy1clk: sataphy1clk@1f21c000 { |
180 | compatible = "apm,xgene-device-clock"; | 190 | compatible = "apm,xgene-device-clock"; |
181 | #clock-cells = <1>; | 191 | #clock-cells = <1>; |
@@ -585,7 +595,8 @@ | |||
585 | interrupts = <0x0 0x3c 0x4>; | 595 | interrupts = <0x0 0x3c 0x4>; |
586 | dma-coherent; | 596 | dma-coherent; |
587 | clocks = <&menetclk 0>; | 597 | clocks = <&menetclk 0>; |
588 | local-mac-address = [00 01 73 00 00 01]; | 598 | /* mac address will be overwritten by the bootloader */ |
599 | local-mac-address = [00 00 00 00 00 00]; | ||
589 | phy-connection-type = "rgmii"; | 600 | phy-connection-type = "rgmii"; |
590 | phy-handle = <&menetphy>; | 601 | phy-handle = <&menetphy>; |
591 | mdio { | 602 | mdio { |
@@ -600,12 +611,26 @@ | |||
600 | }; | 611 | }; |
601 | }; | 612 | }; |
602 | 613 | ||
614 | xgenet: ethernet@1f610000 { | ||
615 | compatible = "apm,xgene-enet"; | ||
616 | status = "disabled"; | ||
617 | reg = <0x0 0x1f610000 0x0 0xd100>, | ||
618 | <0x0 0x1f600000 0x0 0X400>, | ||
619 | <0x0 0x18000000 0x0 0X200>; | ||
620 | reg-names = "enet_csr", "ring_csr", "ring_cmd"; | ||
621 | interrupts = <0x0 0x60 0x4>; | ||
622 | dma-coherent; | ||
623 | clocks = <&xge0clk 0>; | ||
624 | /* mac address will be overwritten by the bootloader */ | ||
625 | local-mac-address = [00 00 00 00 00 00]; | ||
626 | phy-connection-type = "xgmii"; | ||
627 | }; | ||
628 | |||
603 | rng: rng@10520000 { | 629 | rng: rng@10520000 { |
604 | compatible = "apm,xgene-rng"; | 630 | compatible = "apm,xgene-rng"; |
605 | reg = <0x0 0x10520000 0x0 0x100>; | 631 | reg = <0x0 0x10520000 0x0 0x100>; |
606 | interrupts = <0x0 0x41 0x4>; | 632 | interrupts = <0x0 0x41 0x4>; |
607 | clocks = <&rngpkaclk 0>; | 633 | clocks = <&rngpkaclk 0>; |
608 | }; | 634 | }; |
609 | |||
610 | }; | 635 | }; |
611 | }; | 636 | }; |