aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/ice_ddp
Commit message (Collapse)AuthorAgeFilesLines
* ice_ddp: Update to 1.3.41.0Eric Joyner2025-07-241-1/+1
| | | | | | | | | | | | | | Primarily adds support for E830 devices, unlocking all of their functionality. As well, update the README and remove the non-FreeBSD sections from it. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Sponsored by: Intel Corporation (cherry picked from commit f68513e7a446b4b0598b7f3d1b3e13f592b85d92)
* ice_ddp: Update package to 1.3.36.0Eric Joyner2024-07-311-1/+1
| | | | | | | | | | | | This is intended to be used with the upcoming ice 1.39.13-k driver update, but is still backwards compatible with previous versions of the driver. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Sponsored by: Intel Corporation (cherry picked from commit 768329961dc0c041f7647f1c4549944a2ca168aa)
* ice_ddp: Update to 1.3.35.0Eric Joyner2024-07-311-1/+1
| | | | | | | | | | | This is intended to be used with the upcoming updated ice(4) version 1.38.16-k. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Sponsored by: Intel Corporation (cherry picked from commit e04c4b4a369df3f1dcbebbdf726193f02af60801)
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-231-1/+0
| | | | | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/ Similar commit in current: (cherry picked from commit 031beb4e239b)
* ice_ddp: Update package to 1.3.30.0Eric Joyner2023-02-171-1/+1
| | | | | | | | | | | | | | This updated DDP is intended to be used with the forthcoming ice(4) driver update to 1.37.7-k. (But it will still work with the current version.) Co-authored-by: Piotr Kubaj <pkubaj@FreeBSD.org> Signed-off-by: Eric Joyner <erj@FreeBSD.org> MFC after: 1 week Sponsored by: Intel Corporation (cherry picked from commit 2508da22cd6f0904fe55d2d5f6cab7c6011f918c)
* ice_ddp: Update to 1.3.27.0Eric Joyner2022-03-081-1/+1
| | | | | | | | | | This is intended to be used with forthcoming ice(4) driver version 1.34.2. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Sponsored by: Intel Corporation (cherry picked from commit e438f0a97538bf5cf6f3ff70a65c4d1f96b766aa)
* ice_ddp: Update to 1.3.24.0Eric Joyner2022-03-071-1/+1
| | | | | | | | | | | | | | This version is intended to be used with the 0.29.4 version of the ice(4) driver, which will be be committed afterwards. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Reviewed by: stallamr_netapp.com Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D30887 (cherry picked from commit 538ef055b7ea11326ba22197537e617587a0d677) (cherry picked from commit 070f7812da16b692d4e65fdfd418654fdb42729d)
* ice_ddp: Update package file to 1.3.19.0Eric Joyner2021-03-091-1/+1
| | | | | | | | | | This package is intended to be used with ice(4) version 0.28.1-k. That update will happen in a forthcoming commit. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Sponsored by: Intel Corporation (cherry picked from commit a7ac518bff64d48cf262c60c4dc57eef34e74a07)
* ice_ddp: Update package file to 1.3.16.0Eric Joyner2020-09-041-1/+1
| | | | | | | | | | | This package is intended to be used with ice(4) version 0.26.16. That update will happen in a forthcoming commit. MFC after: 3 days Sponsored by: Intel Corporation Notes: svn path=/head/; revision=365332
* Hard-code the ice_ddp firmware version.Mark Johnston2020-06-111-20/+2
| | | | | | | | | | | Like every other firmware image in the tree, the makefile will need to be updated to point to the newest import. Reviewed by: erj, imp (previous version) Differential Revision: https://reviews.freebsd.org/D25222 Notes: svn path=/head/; revision=362038
* ice(4): Introduce new driver for Intel E800 Ethernet controllersEric Joyner2020-05-261-0/+24
The ice(4) driver is the driver for the Intel E8xx series Ethernet controllers; currently with codenames Columbiaville and Columbia Park. These new controllers support 100G speeds, as well as introducing more queues, better virtualization support, and more offload capabilities. Future work will enable virtual functions (like in ixl(4)) and the other functionality outlined above. For full functionality, the kernel should be compiled with "device ice_ddp" like in the amd64 NOTES file, and/or ice_ddp_load="YES" should be added to /boot/loader.conf so that the DDP package file included in this commit can be downloaded to the adapter. Otherwise, the adapter will fall back to a single queue mode with limited functionality. A man page for this driver will be forthcoming. MFC after: 1 month Relnotes: yes Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D21959 Notes: svn path=/head/; revision=361541