Hi Mario,
I never did post the note. I'm attaching a text file to this post with the function that I wrote to config the LPC for my needs on the MPC5125. Note that I call my functions REGIO_RegWriteByte() to write byte registers and REGIO_RegWriteWord() to write 32 bit word registers. First passed param is the write address offset from IMMRBAR_BASE, next is the data to write and last is an option to reverse the bit order of the written data (big endian, little endian thing). You should be able too lookup the registers I'm configuring (notes give page numbers in the uProc Manual) and see what I'm doing then modify as required for your use. I never did find an "MQX" way of doing this but my way seems to work well. Hope this helps.
void REGIO_RegWriteByte(uint_32 lOffset, uint_8 cByte, uint_8 cReverse)
void REGIO_RegWriteWord(uint_32 lOffset, uint_32 lData, uint_8 cReverse)
Best Regards,
Tim Hutchinson