Releases: cronologic-de/cronologic_linux_kernel
Releases · cronologic-de/cronologic_linux_kernel
Release 1.4.0
Updates:
- Support
.zstmodule, and.dinit system. - Test on Ubuntu 24.04
Release 1.3.1
Fix all references to crono_device_types_info (#4)
Release 1.3.0
Support kernel version 6.5 and later (#13)
Release 1.2.0
Work Done
- We currently support
open()a device only once, opening a device twice is not supported, and returns error to caller. - Adjust rest of code accordingly.
- Updated the version.
- Tuning.
Release 1.1.0
Support of allocating contiguous memory by the driver
- Memory is allocated by the kernel module (and not by the user space like SG model), using
dma_alloc_coherent. mmapis provided to map memory:- Uses
virt_to_physto return the corresponding physical address. - Calls
remap_pfn_rangeof the physical memory.
- Uses
- Set mask to
DMA_BIT_MASK(32)supported by cards. - Added
IOCTL_CRONO_LOCK_CONTIG_BUFFERandIOCTL_CRONO_UNLOCK_CONTIG_BUFFER. - Renamed
CRONO_BUFFER_INFOto beCRONO_SG_BUFFER_INFO.
Release 0.0.2
- Fix
list_delusage with lists. - Consider reopened driver as opened successfully.
- Additional debug messages.