1
0
Fork 0
mirror of https://github.com/anrieff/libcpuid synced 2024-11-20 23:01:51 +00:00
libcpuid/drivers/arm/freebsd/README.md

13 lines
637 B
Markdown
Raw Permalink Normal View History

# CPUID FreeBSD kernel module for ARM
This kernel module allows to:
- access AArch32 registers in AArch32 state by using the [`MRC` instruction](https://developer.arm.com/documentation/dui0489/i/arm-and-thumb-instructions/mrc-and-mrc2)
- access both AArch32 and AArch64 registers in AArch64 state by using the [`MRS` instruction](https://developer.arm.com/documentation/dui0473/m/arm-and-thumb-instructions/mrs--system-coprocessor-register-to-arm-register-)
## Build
The module is built during `cmake --build build` and present in the build directory. You can load it by using:
```shell
kldload build/drivers/arm/freebsd/cpuid.ko
```