Thanks Jiri.
I still have a question.
How can I config a GPIO (output) logic active high or low?
For example:
(GPIO128, output, no pull, active high)
// config GPIO 128, output, no pull -> like in processor expert -> Pin Mux settings -> Functional Properties
SIUL2->MSCR[128] = SIUL2_MSCR_OBE(1) | SIUL2_MSCR_IBE(0) | SIUL2_MSCR_PUE(0) | SIUL2_MSCR_PUS(0);
// config GPIO 128 active high
SIUL2->GPDO[128/4] = SUIL2_GPDO_PDO_4n3_MASK; // something like this?