Commit 29feb66a authored by David S. Miller's avatar David S. Miller

Merge branch 'xgene-2nd-10gbe-port'

Iyappan Subramanian says:

====================
driver: net: xgene: Enable 2nd 10GbE port on APM X-Gene SoC

This patch adds support for 2nd 10GbE on APM X-Gene SoC
====================
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents 7b6ee48d e63c7a09
...@@ -207,6 +207,17 @@ xge0clk: xge0clk@1f61c000 { ...@@ -207,6 +207,17 @@ xge0clk: xge0clk@1f61c000 {
clock-output-names = "xge0clk"; clock-output-names = "xge0clk";
}; };
xge1clk: xge1clk@1f62c000 {
compatible = "apm,xgene-device-clock";
status = "disabled";
#clock-cells = <1>;
clocks = <&socplldiv2 0>;
reg = <0x0 0x1f62c000 0x0 0x1000>;
reg-names = "csr-reg";
csr-mask = <0x3>;
clock-output-names = "xge1clk";
};
sataphy1clk: sataphy1clk@1f21c000 { sataphy1clk: sataphy1clk@1f21c000 {
compatible = "apm,xgene-device-clock"; compatible = "apm,xgene-device-clock";
#clock-cells = <1>; #clock-cells = <1>;
...@@ -816,6 +827,23 @@ xgenet: ethernet@1f610000 { ...@@ -816,6 +827,23 @@ xgenet: ethernet@1f610000 {
phy-connection-type = "xgmii"; phy-connection-type = "xgmii";
}; };
xgenet1: ethernet@1f620000 {
compatible = "apm,xgene1-xgenet";
status = "disabled";
reg = <0x0 0x1f620000 0x0 0xd100>,
<0x0 0x1f600000 0x0 0Xc300>,
<0x0 0x18000000 0x0 0X8000>;
reg-names = "enet_csr", "ring_csr", "ring_cmd";
interrupts = <0x0 0x6C 0x4>,
<0x0 0x6D 0x4>;
port-id = <1>;
dma-coherent;
clocks = <&xge1clk 0>;
/* mac address will be overwritten by the bootloader */
local-mac-address = [00 00 00 00 00 00];
phy-connection-type = "xgmii";
};
rng: rng@10520000 { rng: rng@10520000 {
compatible = "apm,xgene-rng"; compatible = "apm,xgene-rng";
reg = <0x0 0x10520000 0x0 0x100>; reg = <0x0 0x10520000 0x0 0x100>;
......
...@@ -107,7 +107,8 @@ static void xgene_enet_set_ring_state(struct xgene_enet_desc_ring *ring) ...@@ -107,7 +107,8 @@ static void xgene_enet_set_ring_state(struct xgene_enet_desc_ring *ring)
{ {
xgene_enet_ring_set_type(ring); xgene_enet_ring_set_type(ring);
if (xgene_enet_ring_owner(ring->id) == RING_OWNER_ETH0) if (xgene_enet_ring_owner(ring->id) == RING_OWNER_ETH0 ||
xgene_enet_ring_owner(ring->id) == RING_OWNER_ETH1)
xgene_enet_ring_set_recombbuf(ring); xgene_enet_ring_set_recombbuf(ring);
xgene_enet_ring_init(ring); xgene_enet_ring_init(ring);
......
...@@ -1305,10 +1305,17 @@ static void xgene_enet_setup_ops(struct xgene_enet_pdata *pdata) ...@@ -1305,10 +1305,17 @@ static void xgene_enet_setup_ops(struct xgene_enet_pdata *pdata)
pdata->ring_num = START_RING_NUM_0; pdata->ring_num = START_RING_NUM_0;
break; break;
case 1: case 1:
pdata->cpu_bufnum = START_CPU_BUFNUM_1; if (pdata->phy_mode == PHY_INTERFACE_MODE_XGMII) {
pdata->eth_bufnum = START_ETH_BUFNUM_1; pdata->cpu_bufnum = XG_START_CPU_BUFNUM_1;
pdata->bp_bufnum = START_BP_BUFNUM_1; pdata->eth_bufnum = XG_START_ETH_BUFNUM_1;
pdata->ring_num = START_RING_NUM_1; pdata->bp_bufnum = XG_START_BP_BUFNUM_1;
pdata->ring_num = XG_START_RING_NUM_1;
} else {
pdata->cpu_bufnum = START_CPU_BUFNUM_1;
pdata->eth_bufnum = START_ETH_BUFNUM_1;
pdata->bp_bufnum = START_BP_BUFNUM_1;
pdata->ring_num = START_RING_NUM_1;
}
break; break;
default: default:
break; break;
...@@ -1478,6 +1485,7 @@ static const struct acpi_device_id xgene_enet_acpi_match[] = { ...@@ -1478,6 +1485,7 @@ static const struct acpi_device_id xgene_enet_acpi_match[] = {
{ "APMC0D05", XGENE_ENET1}, { "APMC0D05", XGENE_ENET1},
{ "APMC0D30", XGENE_ENET1}, { "APMC0D30", XGENE_ENET1},
{ "APMC0D31", XGENE_ENET1}, { "APMC0D31", XGENE_ENET1},
{ "APMC0D3F", XGENE_ENET1},
{ "APMC0D26", XGENE_ENET2}, { "APMC0D26", XGENE_ENET2},
{ "APMC0D25", XGENE_ENET2}, { "APMC0D25", XGENE_ENET2},
{ } { }
......
...@@ -56,6 +56,11 @@ ...@@ -56,6 +56,11 @@
#define START_BP_BUFNUM_1 0x2A #define START_BP_BUFNUM_1 0x2A
#define START_RING_NUM_1 264 #define START_RING_NUM_1 264
#define XG_START_CPU_BUFNUM_1 12
#define XG_START_ETH_BUFNUM_1 2
#define XG_START_BP_BUFNUM_1 0x22
#define XG_START_RING_NUM_1 264
#define X2_START_CPU_BUFNUM_0 0 #define X2_START_CPU_BUFNUM_0 0
#define X2_START_ETH_BUFNUM_0 0 #define X2_START_ETH_BUFNUM_0 0
#define X2_START_BP_BUFNUM_0 0x20 #define X2_START_BP_BUFNUM_0 0x20
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment