> I tried to copy CMSIS from arm website but it haven't worked.
ARM's CMSIS only covers the generic part of the core, common to all vendors. You will not find anything specific there.
My recommendation would be to start with the user manual of the MCU (the PDF), and the SDK for your MCU (for the MCUxpresso IDE).
The user manual provides the description of all required core and peripheral registers, and the required sequence(s) to achieve certain functionalities.
The SDK provides example implementation for most of the interesting/relevant use cases.
Starting from there, you could understand and reproduce the functionality of the examples, start to strip it down, and remove code/functionality unnecessary for your application.
However, compared to other environments (e.g. a competitor's tool/IDE named after a 3D geometric object), NXP's SDKs come with very little overhead, and without questionably design framework choices forced upon the user.
In a commercial environment, such bare-metal coding is only oursued when the (often relatively small) gains in performance and size outweights the reduced portability and testability, and increased development time and costs.