Skip to content

Commit da377c6

Browse files
committed
Add EFM32GG11 Ethernet driver
1 parent 0018442 commit da377c6

File tree

8 files changed

+1347
-0
lines changed

8 files changed

+1347
-0
lines changed

features/lwipstack/mbed_lib.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@
124124
},
125125
"LPC546XX": {
126126
"mem-size": 36496
127+
},
128+
"EFM32GG11-STK3701": {
129+
"mem-size": 36560
127130
}
128131
}
129132
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "sl-eth",
3+
"config": {
4+
"rmii-location": {
5+
"help": "Location number to use for the RMII pins, see chip datasheet",
6+
"value": null
7+
},
8+
"mdio-location": {
9+
"help": "Location number to use for the MDIO pins, see chip datasheet",
10+
"value": null
11+
},
12+
"refclk-location": {
13+
"help": "Location number to use for the REFCLK output from CMU (CLKOUTSEL2), see chip datasheet",
14+
"value": null
15+
},
16+
"phy-enable-pin": {
17+
"help": "Pin attached to the PHY enable line",
18+
"value": null
19+
},
20+
"phy-power-pin": {
21+
"help": "Pin used to switch on power to the PHY. If not defined, we assume the PHY is always powered.",
22+
"value": null
23+
}
24+
},
25+
"target_overrides": {
26+
"EFM32GG11_STK3701": {
27+
"rmii-location": 1,
28+
"mdio-location": 1,
29+
"refclk-location": 5,
30+
"phy-enable-pin": "PH7",
31+
"phy-power-pin": "PI10"
32+
}
33+
}
34+
}

0 commit comments

Comments
 (0)