diff options
author | gennyble <gen@nyble.dev> | 2023-11-23 08:46:19 -0600 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2023-11-23 08:46:19 -0600 |
commit | 16486a12be7413408c1a6ef3c7f4ba3e30378e3d (patch) | |
tree | bdfe3ece6bc7da7246ba5f094a7b54782bcbe7b8 /index.md | |
download | docs-main.tar.gz docs-main.zip |
Diffstat (limited to 'index.md')
-rw-r--r-- | index.md | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/index.md b/index.md new file mode 100644 index 0000000..c32bd79 --- /dev/null +++ b/index.md @@ -0,0 +1,56 @@ +# CPU Info + +Qualcomm Snapdragon 820. Full name APQ8096 but seems to mostly be known under the name MSM8996.[^1][^2] + +It is an ARMv8 processor which puts it in the aarch64 architecture. + +[^1]: I had little luck finding results for the APQ8096. The MSM8996 seems to be what Qualcomm prefers to call this as [the code targeting the processor][aosp-msm8996] uses that name. + +[^2]: I was first able to map these to one another from the [postmarketos page on the 820][postmarket-q820]. + +[postmarket-q820]: https://wiki.postmarketos.org/wiki/Qualcomm_Snapdragon_820/821_(MSM8996) + +[aosp-msm8996]: https://android.googlesource.com/platform/hardware/qcom/msm8996/+/refs/heads/main + +<details> + <summary>full <code>cat /proc/cpuinfo</code></summary> + +``` +root@LFC:/data/local/tmp # cat /proc/cpuinfo +Processor : AArch64 Processor rev 2 (aarch64) +processor : 0 +Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 +CPU implementer : 0x51 +CPU architecture: 8 +CPU variant : 0x1 +CPU part : 0x211 +CPU revision : 2 + +processor : 1 +Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 +CPU implementer : 0x51 +CPU architecture: 8 +CPU variant : 0x1 +CPU part : 0x211 +CPU revision : 2 + +processor : 2 +Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 +CPU implementer : 0x51 +CPU architecture: 8 +CPU variant : 0x1 +CPU part : 0x205 +CPU revision : 2 + +processor : 3 +Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 +CPU implementer : 0x51 +CPU architecture: 8 +CPU variant : 0x1 +CPU part : 0x205 +CPU revision : 2 + +Hardware : Qualcomm Technologies, Inc APQ8096 +``` + +</details> |