Skip to content

Commit

Permalink
Add ethernet bits to Arty A7 board description.
Browse files Browse the repository at this point in the history
This includes a driver for Kunyan's ethernet adaptor.
  • Loading branch information
davidchisnall committed Dec 15, 2023
1 parent c125967 commit 6370b91
Show file tree
Hide file tree
Showing 4 changed files with 879 additions and 1 deletion.
2 changes: 1 addition & 1 deletion compile_flags.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ riscv32-unknown-unknown
-DCONFIG_THREADS_NUM=3
-DREVOKABLE_MEMORY_START=0x80000000
-DCLANG_TIDY
-DCHERIOT_INTERRUPT_NAMES=FakeInterrupt=4,RevokerInterrupt=5
-DCHERIOT_INTERRUPT_NAMES=FakeInterrupt=4,RevokerInterrupt=5,EthernetReceiveInterrupt=3
18 changes: 18 additions & 0 deletions sdk/boards/ibex-arty-a7-100.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@
"gpio_led0" : {
"start": 0x8f00f000,
"length": 0x800
},
"dmb_cfg": {
"start": 0x8f0f0000,
"length": 0x1000
},
"dmb": {
"start": 0x90000000,
"length": 0x100000
}
},
"instruction_memory": {
Expand All @@ -43,6 +51,16 @@
"number": 2,
"priority": 3,
"edge_triggered": true
},
{
"name": "EthernetTransmitInterrupt",
"number": 3,
"priority": 3
},
{
"name": "EthernetReceiveInterrupt",
"number": 4,
"priority": 3
}
],
"defines" : [
Expand Down
Loading

0 comments on commit 6370b91

Please sign in to comment.