Jump to ID:
BSPs and Drivers

Project Home

Documents

Discussions

Wiki

Project Info
Forum Topic - Enabling the FPU on a PPC460EX processor: Page 1 of 5 (5 Items)
   
 
 
Enabling the FPU on a PPC460EX processor  
I am currently working on a BSP for the PPC460EX processor.
How do I enable the hardware FPU in this processor?

I have added the CPU_FLAG_FPU to the chip description structure.
Is there anything else I have to do in order to enable the FPU?


const struct ppcv_chip ppcv_chip_460ex = {
	0x1302,	// PPC_460EX,
	36, 5, 1024, 1024,
	CPU_FLAG_FPU,
	0,
	"460ex",
	&ppcv_setup_440
};

/tak