-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ Split from pull #43 ] Add ioctl functions #44
Conversation
@marazmista the code is complete.
I have tested all the functions on radeon driver. PS: I added NO_IOCTL to the release defines because until we use the ioctls to effectively retrieve data there's no reason to add extra dependencies. EDIT: Updated table |
Before: radeon_ioctl.h + radeon_ioctl.cpp After: ioctlHandler.h + ioctlHandler.cpp + ioctl_radeon.cpp + ioctl_amdgpu.cpp
Updated table: | Driver Kernel | Radeon 3.7<=ver<3.15 | Radeon 3.15<=ver<4.1 | Radeon >=4.1 | Amdgpu 4.2<=ver<4.10 | I tested the functions on radeon driver. |
Updated table: | Driver Kernel | Radeon >=3.7 | Radeon >=3.15 | Radeon >=4.1 | Amdgpu >=4.2 | |
Closing because this is already being merged through branch rp-dev |
See radeon_ioctl.h for all the details of the ioctl functions.
Also, fix gcc 4.6 build in radeon_profile.h and radeon_profile.cpp.