Hi,
The busclk can be measured at ECLK pin (PS3) you clear bit NECLK in ECLKCTL register.
Back to original issue:....
80Mhz mentioned in 9.7.3 Application Information for PLL and Oscillator Startup looks to be a copy/paste typo from a datasheet with the same peripheral but higher frequency possibilities.
You wrote you have CPMUSYNR = 0x66. It is not correct value. The data sheet says to use max fvco=64MHz. If the setup is made by any tool then it must be a bug if it uses fvco= 78MHz for this type of MCU. However, it is possible that this setup will provide you "correct" busclk (I mean the MCU will work) but you will use the MCU out of operating specifications (>32 MHz). I suggest you to change it to defined range.
Your original values:
fref = 1
fvco= 2 * fref * (syndiv+1) ; 0x66=0B01100110 => SYNDIV=0B100110=38
fvco= 78MHz => out of el. specification range
Busclk = fpll/2 = (fvco / (POSTDIV +1)) / 2 = 39MHz => out of el. specification range
Required values for fbus=32MHz:
SYNR = 0x5F
REFDIV =0
POSTDIV=0
Best regards,
Ladislav