-
-
Notifications
You must be signed in to change notification settings - Fork 312
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
Add temperature support for M1 Macs #456
Comments
I wonder if the issue with |
I'd like to add this support but I don't have a mac with M1 processor, so it'll need someone else to implement it. :-/ |
This Objective-C project seems to be able to read some temperature on the M1: https://github.com/freedomtan/sensors_cmdline/ I'll see if I can hack something... EDIT: There is also this project (still in Objective-C): https://github.com/fermion-star/apple_sensors |
Good luck! |
It's dangerous to go alone, I'll get all the luck I can! :D |
On any objective-C related source code, it's very useful indeed. :3 |
just adding my voice here in wishing sensors worked on M1. :) |
Same answer: I don't have a mac with M1 processors so I'll need someone to do it. :) |
I could help with this one if you can provide some info on how to approach it, I'm pretty new to Macs internals :/ |
You have everything you need in this message. The difficulty being to find the C equivalent of the objective-C API so you can call it from rust. |
Yeah, the issue is that the older code is using the SMC to get temperatures and M1 Macs don't have a SMC. They share the sensor layout with iOS devices for things like the CPU. This means you need to talk to IOKit to get the info. Seeing as this has been sitting like this for a long time, and I've wanted to dabble in Rust, I might take a look at it. P.S. To call Obj-C from just about anything that talks C you can use the |
It's in this file.
I removed all objective-C code from sysinfo and I'd prefer to keep it this way. :) If needed, you can simply reimplement the objective-C function (I can help with that if you don't know how to do it) by looking at its source code. |
I installed rust and read some docs last night to take a look at this in more depth. Seems like it's pretty straightforward to get the C working and then define those externals in the Work is busy, so I'm not blasting through it unfortunately. |
It's fine, take your time. And thanks for working on this! |
Going through this it seems we can get the temps without resorting to private SPI calls. As a question though, which temperature sensor are most interested in? I assume it's the closest analog to the |
You can get all of them, no need to filter. :) Currently it's not about filtering on mac but more like there isn't a generic way to get all of them (because they have IDs that change at each update for whatever reason...). |
Well, a M1 Pro (10-core CPU) has 64 HIDEvent temp sensors it seems. Since the M1 Macs are all SoC based I suppose the differences in distance are minimal. How would you like to consume the list from my code? Dictionary? Array? I assume you want the name and the temp value for each. |
The answer is here (so yes, a vector for the moment, maybe I'll switch to a hash map later on... But out of scope in here). |
Here is a list of the sensors and temps on a 10 Core M1 Pro. Some of the names are easier than others to figure out. In your code you seem to be looking at 4 in particular. Is that still the case here or do you just want all of them? It's simple enough to filter or just return them all.
|
Like I said, I didn't grow the list because these IDs change between macs and I don't have a generic way to get them all. In the list you provided, as you long as there is a "readable name" (meaning you'll need a table for this too unfortunately), you can keep all of them. |
Ok. That actually makes the ARM sensors easier to get as I’m just asking for all the HID events with the usage page for the internal temperature sensors. The only processing I’ll do is to dedupe and toss the ones without readable names. I’ll be back to my computers tomorrow and can start looking at how to get this working with the ffi. |
OK, taking a look at how to get this working in Rust now. It seems like I add my function prototypes to this ffi.rs file and then implement them in this components.rs file? |
I guess the first step is learning how to define and call non-public types and functions in C from Rust. :D In my main.c I setup the non-public types like this...
The main sticking point is the import of that specific Sorry to be such a pain on this, this is my first time touching Rust. |
No problem, don't worry. We all have to learn somewhere when we begin and your efforts are really appreciated!
Yes and yes.
It'd be much simpler to simply redeclare them in Rust. For example: extern "C" {
pub type IOHIDEventRef = c_void;
pub type __IOHIDEvent = *mut IOHIDEventRef;
pub fn IOHIDEventSystemClientCreate(allocator: CFAllocatorRef)-> IOHIDEventSystemClientRef;
} |
OK. Been reading up on Rust and finally got my debugger working. Been at horse shows the last two weekends in a row, but hopefully I have some time now to get back to this. |
Thanks! Again please remember: we're not in a hurry so take as much time as you want/need. |
Fixed in #792. |
Thanks for getting this done. I haven't had the time and have had some debates with work about allowing me to participate. |
No problem. We were lucky that someone had a mac M1, time and motivation to do it. ;) |
Would it be possible to add temperature support for M1 Macs?
On an Intel Mac, I can use the following to find information about the temperature of system components:
On M1 Macs,
sys.get_components()
appears empty.$ rustc --version rustc 1.51.0 (2fd73fabe 2021-03-23) $ tail -2 Cargo.toml [dependencies] sysinfo = "0.16.5"
The text was updated successfully, but these errors were encountered: