Add driver for Broadcom "GENET" version 5, as found in BCM-2711 on
Raspberry Pi 4B. The driver is derived in part from the bcmgenet.c
driver in NetBSD, along with bcmgenetreg.h.
Details
- Reviewers
imp kevans cem manu - Commits
- rS360181: Add genet driver for Raspberry Pi 4B Ethernet
Tested by several alpha testers
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 30523 Build 28270: arc lint + arc unit
Event Timeline
I see what you mean now about gen_setup_extres() having been useless for your purposes -- the problem is that our RPi stuff doesn't use the extres clk framework like it should, so these clk/hwreset may be found in the FDT but they aren't locally registered like the framework's expecting. This scared me at first, and it still kinda sucks, but that's baggage that predates your work on this.
would be nice to split the FDT attachment into a separate if_genet_fdt file already, since we know if_genet_acpi will eventually come (here's the acpi table)
sys/arm64/broadcom/genet/if_genet.c | ||
---|---|---|
1180–1183 | Weird indentation. Is this leftover debug code? |
sys/arm64/broadcom/genet/if_genet.c | ||
---|---|---|
333 | Why not make this function a complete detach ? | |
376 | It always returns 0 even if we cannot parse the phy mode, please return 1 here in case of an error. | |
518 | This function return void but can fail, if bus_dma* calls fails we will still attach but the interface wouldn't be usable. Better return the error code and handle that in attach(). | |
582 | bus_dmamap_destroy can fails, I think that there is nothing that we can do if it fails but a warning printf would be nice. | |
586 | Same for bus_dma_tag_destroy | |
1655 | that doesn't seem right |
About doing a full detach: then code is needed to undo the init routine, and there are far more failure modes. I'll look at it though.
If you want, you could take a look at the following . Thank you :
https://marc.info/?l=openbsd-tech&m=158670721506367&w=2
https://marc.info/?l=openbsd-tech&m=158653301620637&w=2
https://marc.info/?l=openbsd-tech&m=158653487221337&w=2
Address more review comments; fix bug with bpf and txcsum.
Notes:
I started a version with full detach; it is not working correctly yet.
I looked at the FDT/ACPI versions of the generic ehci; is there any
documentation of how inheritance works? I think moving to that framework
would take me a while, so I'm favoring lazy evaluation at the moment.
What is the problem exactly ?
I looked at the FDT/ACPI versions of the generic ehci; is there any
documentation of how inheritance works?
I'm not sure ...
I think moving to that framework would take me a while, so I'm favoring lazy evaluation at the moment.
I'm not even sure that we could boot RPI4 with ACPI right now so I guess it's ok to leave this for now.
This looks good for me now, I've not tested the driver as I don't have the hardware but all my comments are now resolved.
Thanks for doing this port.
I started with code to "stop" on ifconfig down, then re-init on "up". The plan was to use "stop" to undo all the running state, like flushing rings, when doing detach. It was no longer crashing, but not working after re-init.
I looked at the FDT/ACPI versions of the generic ehci; is there any
documentation of how inheritance works?I'm not sure ...
I think moving to that framework would take me a while, so I'm favoring lazy evaluation at the moment.
I'm not even sure that we could boot RPI4 with ACPI right now so I guess it's ok to leave this for now.
Thanks, that seems best to me too.
I will wait until tomorrow for any other comments, then commit if there is nothing significant/unfixed.