|
Revision tags: release/12.4.0, release/13.1.0 |
|
| #
fb3c236a |
| 26-Dec-2021 |
Bjoern A. Zeeb <[email protected]> |
LinuxKPI: import beginning of a new version of netdevice.h
Import a netdevice update complementing the last remaining bits of the old ifnet derived implementation. Along add a (for now) task based
LinuxKPI: import beginning of a new version of netdevice.h
Import a netdevice update complementing the last remaining bits of the old ifnet derived implementation. Along add a (for now) task based NAPI implementation.
This is the minimal set of chnages which are needed for the initial support of wireless drivers. The NAPI implementation has an option to still switch to "direct dispatch" as it had been used by these drivers before not relying on a deferred context along with some printf tracing. This has been helpful in the last weeks for debugging and will be cleaned once we have had broader testing and are sure this is fine as-is. Should we need a more time-sensitive or load-sensitive response in the future we can always switch to something more sophisticated.
Sponsored by: The FreeBSD Foundation X-Differential Revision: D33075 (abandoned without feedback a while ago)
(cherry picked from commit d105895844848ddba85d686e03e0d14c03ad4eb4)
show more ...
|
| #
508c4fb4 |
| 26-Dec-2021 |
Bjoern A. Zeeb <[email protected]> |
LinuxKPI: add a work-in-progress skbuff implementation
This is a work-in-progress implementation of sk_buff compat code used for wireless drivers only currently. Bring in this version of the code as
LinuxKPI: add a work-in-progress skbuff implementation
This is a work-in-progress implementation of sk_buff compat code used for wireless drivers only currently. Bring in this version of the code as it has proven to be good enough to have packets going for a few months.
The current implementation has several drawbacks including the need for us to copy data between sk_buffs and mbufs. Do not rely on the internals of this implementation. They are highly likely to change as we will improve the integration to FreeBSD mbufs.
Sponsored by: The FreeBSD Foundation
(cherry picked from commit 49ed6e979c3b327ae466a559884802d901aa5792)
show more ...
|
|
Revision tags: release/12.3.0 |
|
| #
83271c68 |
| 07-Nov-2021 |
Konstantin Belousov <[email protected]> |
Fix some modules to export more used symbols
(cherry picked from commit 5bb3134a8c21cb87b30e135ef168483f0333dabb)
|
| #
fd6adf78 |
| 29-Sep-2021 |
Vladimir Kondratyev <[email protected]> |
LinuxKPI: Remove FreeBSD struct resource from all LKPI headers
except linux/pci.h to avoid conflicts with Linux version. This allows to #define resource in drm-kmod globally and strip some #ifdef-s
LinuxKPI: Remove FreeBSD struct resource from all LKPI headers
except linux/pci.h to avoid conflicts with Linux version. This allows to #define resource in drm-kmod globally and strip some #ifdef-s
Reviewed by: hselasky, manu Differential revision: https://reviews.freebsd.org/D31673
(cherry picked from commit 66ea390652d2ede405b43c168157986bd2b52bb9)
show more ...
|
|
Revision tags: release/13.0.0 |
|
| #
77381150 |
| 05-Mar-2021 |
Hans Petter Selasky <[email protected]> |
MFC ebe5cf355dca: Implement basic support for allocating memory from a specific numa node in the LinuxKPI.
Differential Revision: https://reviews.freebsd.org/D29077 Reviewed by: markj@ and kib@ Spon
MFC ebe5cf355dca: Implement basic support for allocating memory from a specific numa node in the LinuxKPI.
Differential Revision: https://reviews.freebsd.org/D29077 Reviewed by: markj@ and kib@ Sponsored by: Mellanox Technologies // NVIDIA Networking
(cherry picked from commit ebe5cf355dca1d7827a70b99a9d9c4f97f78691d)
show more ...
|
| #
ff119f7c |
| 28-Jan-2021 |
Bjoern A. Zeeb <[email protected]> |
LinuxKPI: implement devres() framework parts and two examples
This code implements a version of the devres framework found working for various iwlwifi use cases and also providing functions for ttm_
LinuxKPI: implement devres() framework parts and two examples
This code implements a version of the devres framework found working for various iwlwifi use cases and also providing functions for ttm_page_alloc_dma.c from DRM.
Part of the framework replicates the consumed KPI, while others are internal helper functions.
In addition the simple devm_k*malloc() consumers were implemented and kvasprintf() was enhanced to also work for the devm_kasprintf() case. Addmittingly lkpi_devm_kmalloc_release() could be avoided but for the overall understanding of the code and possible memory tracing it may still be helpful.
Further devsres consumer are implemented for iwlwifi but will follow later as the main reason for this change is to sort out overlap with DRM.
Sponsored-by: The FreeBSD Foundation Obtained-from: bz_iwlwifi MFC After: 3 days Reviewed-by: hselasky, manu Differential Revision: https://reviews.freebsd.org/D28189
(cherry picked from commit fa765ca73e553399ffbad382e579e4c2b4d0fc12)
show more ...
|
| #
ffd05df7 |
| 28-Jan-2021 |
Bjoern A. Zeeb <[email protected]> |
LinuxKPI: add firmware loading support
Implement linux firmware KPI compat code. This includes: request_firmware() request_firmware_nowait(), request_firmware_direct(), firmware_request_nowarn(), an
LinuxKPI: add firmware loading support
Implement linux firmware KPI compat code. This includes: request_firmware() request_firmware_nowait(), request_firmware_direct(), firmware_request_nowarn(), and release_firmware().
Given we will try to map requested names from natively ported or full-linuxkpi-using drivers to a firmware(9) auto-loading name format (.ko file name and image name matching), we quieten firmware(9) and print success or failure (unless the _nowarn() version was called) in the linuxkpi implementation. At the moment we try up-to 4 different naming combinations, with path stripped, original name, and requested name with '/' or '.' replaced.
We do not currently defer loading in the "nowait" case.
Sponsored-by: The FreeBSD Foundation Sponsored-by: Rubicon Communications, LLC ("Netgate") (firmware(9) nowarn update from D27413) MFC after: 3 days Reviewed by: kib, manu (looked at older versions) Differential Revision: https://reviews.freebsd.org/D27414
(cherry picked from commit a6c2507d1baedb183268e31bc6b6f659a9529904) (cherry picked from commit 4a26380ba6dc487a7525d909ee29fbc710b558d1)
show more ...
|
| #
11d62b6f |
| 12-Jan-2021 |
Emmanuel Vadot <[email protected]> |
linuxkpi: add kernel_fpu_begin/kernel_fpu_end
With newer AMD GPUs (>=Navi,Renoir) there is FPU context usage in the amdgpu driver. The `kernel_fpu_begin/end` implementations in drm did not even allo
linuxkpi: add kernel_fpu_begin/kernel_fpu_end
With newer AMD GPUs (>=Navi,Renoir) there is FPU context usage in the amdgpu driver. The `kernel_fpu_begin/end` implementations in drm did not even allow nested begin-end blocks.
Submitted by: Greg V Reviewed By: manu, hselasky Differential Revision: https://reviews.freebsd.org/D28061
show more ...
|
| #
2c95fb75 |
| 22-Dec-2020 |
Emmanuel Vadot <[email protected]> |
linuxkpi: Add shrinker support
A driver can register a shrinker that will be called when the kernel wants to free some memory. Add support for that in linuxkpi and call the registered shrinkers when
linuxkpi: Add shrinker support
A driver can register a shrinker that will be called when the kernel wants to free some memory. Add support for that in linuxkpi and call the registered shrinkers when the lowmem event is triggered.
Reviewed by: bz Differential Revision: https://reviews.freebsd.org/D27728
show more ...
|
| #
db4df563 |
| 18-Nov-2020 |
Hans Petter Selasky <[email protected]> |
Add missing header file when building the LinuxKPI module separately.
MFC after: 1 week Sponsored by: Mellanox Technologies // NVIDIA Networking
|
| #
dab39c11 |
| 09-Nov-2020 |
Emmanuel Vadot <[email protected]> |
LinuxKPI: Implement ACPI bits required by drm-kmod in base system
It includes:
ACPI_HANDLE() implementation. AC and VIDEO ACPI events notification support. Replacement of hand-rolled GPLed _DSM met
LinuxKPI: Implement ACPI bits required by drm-kmod in base system
It includes:
ACPI_HANDLE() implementation. AC and VIDEO ACPI events notification support. Replacement of hand-rolled GPLed _DSM method evaluation helpers with in-base ones.
Submitted by: wulf Differential Revision: https://reviews.freebsd.org/D26603
show more ...
|
|
Revision tags: release/12.2.0 |
|
| #
a91b408a |
| 02-Oct-2020 |
Emmanuel Vadot <[email protected]> |
linuxkpi: Add dmi_* function
dmi function are used to get smbios values. The DRM subsystem and drivers use it to enabled (or not) quirks.
Reviewed by: hselasky Sponsored by: The FreeBSD Foundation
linuxkpi: Add dmi_* function
dmi function are used to get smbios values. The DRM subsystem and drivers use it to enabled (or not) quirks.
Reviewed by: hselasky Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D26046
show more ...
|
| #
d96e5996 |
| 27-Aug-2020 |
Hans Petter Selasky <[email protected]> |
Implement extensible arrays API using the existing radix tree implementation in the LinuxKPI.
Differential Revision: https://reviews.freebsd.org/D25101 Reviewed by: kib @ MFC after: 1 week Sponsored
Implement extensible arrays API using the existing radix tree implementation in the LinuxKPI.
Differential Revision: https://reviews.freebsd.org/D25101 Reviewed by: kib @ MFC after: 1 week Sponsored by: Mellanox Technologies
show more ...
|
|
Revision tags: release/11.4.0 |
|
| #
15fe2513 |
| 20-Mar-2020 |
Konstantin Belousov <[email protected]> |
Introduce LINUXKPI_GENSRCS.
Centralize the list of generated files required by linuxkpi consumers, into the common variable. This way, consumers that use the variable are insulated from possible ch
Introduce LINUXKPI_GENSRCS.
Centralize the list of generated files required by linuxkpi consumers, into the common variable. This way, consumers that use the variable are insulated from possible changes in the list.
Reviewed by: hselasky, imp Sponsored by: Mellanox Technologies MFC after: 1 week Differential revision: https://reviews.freebsd.org/D24137
show more ...
|
| #
84b3c454 |
| 18-Mar-2020 |
Konstantin Belousov <[email protected]> |
Add pci_iov_if.h header as a dependency for Linuxkpi consumers.
Sponsored by: Mellanox Technologies MFC after: 2 weeks
|
| #
1179b649 |
| 21-Feb-2020 |
Emmanuel Vadot <[email protected]> |
linuxkpi: Move shmem related functions in it's own file
For drmkpi (D23085) we don't want the Linux struct file as we don't emulate everything. Also the prototypes should be in shmem_fs.h to have 10
linuxkpi: Move shmem related functions in it's own file
For drmkpi (D23085) we don't want the Linux struct file as we don't emulate everything. Also the prototypes should be in shmem_fs.h to have 100% compatibility with Linux.
Reviewed by: hselasky MFC after: Maybe Differential Revision: https://reviews.freebsd.org/D23764
show more ...
|
|
Revision tags: release/12.1.0, release/11.3.0 |
|
| #
6a65ca35 |
| 16-May-2019 |
Johannes Lundberg <[email protected]> |
LinuxKPI: Finalize import of seq_file.
seq_file.h and linux_seq_file.c was imported form ports earlier but linux_seq_file.c was never compiled in with the module. With this commit base seq_file will
LinuxKPI: Finalize import of seq_file.
seq_file.h and linux_seq_file.c was imported form ports earlier but linux_seq_file.c was never compiled in with the module. With this commit base seq_file will replace ports seq_file and it required a few modifications to not break functionality and build.
Reviewed by: hps Approved by: imp (mentor), hps MFC after: 1 week
show more ...
|
|
Revision tags: release/12.0.0 |
|
| #
e35079db |
| 30-Oct-2018 |
Hans Petter Selasky <[email protected]> |
Implement the dump_stack() function in the LinuxKPI.
Submitted by: Johannes Lundberg <[email protected]> MFC after: 3 days Sponsored by: Mellanox Technologies
|
|
Revision tags: release/11.2.0, release/10.4.0, release/11.1.0 |
|
| #
a00230f6 |
| 26-Jun-2017 |
Mark Johnston <[email protected]> |
Sort SRCS.
MFC after: 1 week
|
| #
9ea3e141 |
| 26-Jun-2017 |
Mark Johnston <[email protected]> |
Implement parts of the hrtimer API in the LinuxKPI.
Reviewed by: hselasky MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D11359
|
| #
46565964 |
| 09-Jun-2017 |
Mark Johnston <[email protected]> |
Augment wait queue support in the LinuxKPI.
In particular: - Don't evaluate event conditions with a sleepqueue lock held, since such code may attempt to acquire arbitrary locks. - Fix the return v
Augment wait queue support in the LinuxKPI.
In particular: - Don't evaluate event conditions with a sleepqueue lock held, since such code may attempt to acquire arbitrary locks. - Fix the return value for wait_event_interruptible() in the case that the wait is interrupted by a signal. - Implement wait_on_bit_timeout() and wait_on_atomic_t(). - Implement some functions used to test for pending signals. - Implement a number of wait_event_*() variants and unify the existing implementations. - Unify the mechanism used by wait_event_*() and schedule() to put the calling thread to sleep.
This is required to support updated DRM drivers. Thanks to hselasky for finding and fixing a number of bugs in the original revision.
Reviewed by: hselasky MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D10986
show more ...
|
| #
9760ac0a |
| 09-Mar-2017 |
Hans Petter Selasky <[email protected]> |
Implement support for mutexes with deadlock avoidance in the LinuxKPI.
When locking a mutex and deadlock is detected the first mutex lock call that sees the deadlock will return -EDEADLK .
MFC afte
Implement support for mutexes with deadlock avoidance in the LinuxKPI.
When locking a mutex and deadlock is detected the first mutex lock call that sees the deadlock will return -EDEADLK .
MFC after: 1 week Sponsored by: Mellanox Technologies
show more ...
|
| #
14c5024d |
| 08-Mar-2017 |
Hans Petter Selasky <[email protected]> |
Cleanup the LinuxKPI slab implementation.
Put large functions into linux_slab.c instead of declaring them static inline.
Add support for more memory allocation wrappers like kmalloc_array() and __v
Cleanup the LinuxKPI slab implementation.
Put large functions into linux_slab.c instead of declaring them static inline.
Add support for more memory allocation wrappers like kmalloc_array() and __vmalloc().
Make sure either the M_WAITOK or the M_NOWAIT flag is set and mask away unused memory allocation flags before calling FreeBSD's malloc() routine.
Move kmalloc_node() definition to slab.h where it belongs.
Implement support for the SLAB_DESTROY_BY_RCU feature when creating a kmem_cache which basically means kmem_cache memory is freed using call_rcu().
MFC after: 1 week Sponsored by: Mellanox Technologies
show more ...
|
| #
ca2ad6bd |
| 07-Mar-2017 |
Hans Petter Selasky <[email protected]> |
LinuxKPI workqueue cleanup.
This change makes the workqueue implementation behave more like in Linux, both functionality wise and structure wise.
All workqueue code has been moved to linux_work.c
LinuxKPI workqueue cleanup.
This change makes the workqueue implementation behave more like in Linux, both functionality wise and structure wise.
All workqueue code has been moved to linux_work.c
Add an atomic based statemachine to the work_struct to ensure proper operation. Prior to this change struct_work was directly mapped to a FreeBSD task. When a taskqueue has multiple threads the same task may end up being executed on more than one worker thread simultaneously. This might cause problems with code coming from Linux, which expects serial behaviour, similar to Linux tasklets.
Move all global workqueue function names into the linux_xxx domain to avoid symbol name clashes in the future.
Implement a few more workqueue related functions and macros.
Create two multithreaded taskqueues for the LinuxKPI during module load, one for time-consuming callbacks and one for non-time consuming callbacks.
MFC after: 1 week Sponsored by: Mellanox Technologies
show more ...
|
| #
193d9e76 |
| 04-Mar-2017 |
Enji Cooper <[email protected]> |
sys/modules: normalize .CURDIR-relative paths to SRCTOP
This simplifies make output/logic
Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon
|