Dear all,
I know this was already answered in this thread, that was very useful, but I felt the need for a straighter forward and updated approach on how to change the approach the Machine Check problem, so here is my step-by-step solution and understanding (many steps were taken from the AUT-F0403):
1 - The MPC5675K came from factory in DPM mode, it means that bit 9 (LSM) on NVUSRO is not set, as stated here:
S2 1420_3E10FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFCD

This register is located in the shadow flash sector in 21420_3E10 and has the S2 S-record format:
S2xxyyyyyyzzzzcs
- S = one character start code
- 2 = one character record type
- xx = two hex digits indicating the number of bytes (hex digit pairs) for address, data, and checksum fields
- yyyyyy = in an S2 s-record 6 hex digits specifying the memory location of the first data byte
- zzzz = 0-64 pairs of hex characters specifying the data bytes
- cs = 2 hex digits checksum character
So, if you are running the example set to LSM, the FCCU will cause the Machine Check exception, meaning you have to change to LSM.
2 - Download the P&E micro toolset 64K Power Architecture 55xx Starter C Development Kit for MPC5675k;
3 - Install and run progppcnexus.exe and ensure MCU is powered and Multilink Connected (I´m using FX), choose the right Interface and press Connect(Reset);

4 - As soon as your MCU is detected you will be prompted to specify the programming algorithm to use, choose Freescale_MPC5675K_1x32x4k_shadow0.PCP on c:\PEMicro\PKGPPCNEXUSSTARTER\Algorithms\shadow\
5 - Press the Upload button and type a file name to dump the S-Record;
6 - open the file on a text editor, and search for position S214203E10, where the S-Record shall be changed as follows:
- For DPM-> S214203E10FFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFCD
- For LSM -> S214203E10FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8D

7 - Save the file;
8 - Erase the shadow flash by pressing Erase Module Button -> BE VERY CAREFULL, DO NOT POWER CYCLE, it may damage the MPC and it will never come alive again.
9 - Specify the file by pressing the Specify Object File Button and selecting the updated s-record;
10 - Download the s-record into the Shadow flash by pressing the Program Module Button and verify by pressing the Verify Button;
11 - Power cycle the EVB to cause it to restart in the new configuration.
12 - start the P&E debugger (ICDPPCNEXUS.EXE) and connect to the MCU as before. The programmer and debugger use the same connection utility. The status window, shown below, will confirm what mode the processor is operating in. Check that it matches with your shadow flash configuration.

13 - now you can run the examples and even Motor Control toolkit without any problem, just remember to change the mode on shadow flash every time you wish to change from LSM to DPM.
Thanks and happy coding!!!