Searched refs:pvr (Results 1 – 11 of 11) sorted by relevance
/u-boot/arch/powerpc/include/asm/ |
A D | processor.h | 858 #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */ argument 859 #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */ argument 866 #define PVR_FAM(pvr) (((pvr) >> 20) & 0xFFF) /* Family field */ argument 867 #define PVR_MEM(pvr) (((pvr) >> 16) & 0xF) /* Member field */ argument 868 #define PVR_CORE(pvr) (((pvr) >> 12) & 0xF) /* Core field */ argument 869 #define PVR_CFG(pvr) (((pvr) >> 8) & 0xF) /* Configuration field */ argument 870 #define PVR_MAJ(pvr) (((pvr) >> 4) & 0xF) /* Major revision field */ argument 871 #define PVR_MIN(pvr) (((pvr) >> 0) & 0xF) /* Minor revision field */ argument 875 #define PVR_E600_VER(pvr) (((pvr) >> 15) & 0xFFFF) /* Version/type */ argument 876 #define PVR_E600_TECH(pvr) (((pvr) >> 12) & 0xF) /* Technology */ argument [all …]
|
A D | immap_86xx.h | 1098 uint pvr; /* 0xe00a0 - Processor version register */ member
|
A D | immap_85xx.h | 1733 u32 pvr; /* Processor version */ member 2471 u32 pvr; /* Processor version */ member
|
/u-boot/arch/powerpc/cpu/mpc86xx/ |
A D | cpu.c | 39 uint pvr, svr; in checkcpu() local 66 pvr = get_pvr(); in checkcpu() 67 major = PVR_E600_MAJ(pvr); in checkcpu() 68 minor = PVR_E600_MIN(pvr); in checkcpu() 75 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr); in checkcpu()
|
/u-boot/arch/powerpc/cpu/mpc8xx/ |
A D | cpu.c | 117 static int check_CPU(long clock, uint pvr, uint immr) in check_CPU() argument 125 if (PVR_VER(pvr) != PVR_VER(PVR_8xx)) in check_CPU() 174 uint pvr = get_pvr(); in checkcpu() local 178 return check_CPU(clock, pvr, immr); in checkcpu()
|
/u-boot/arch/powerpc/cpu/mpc83xx/ |
A D | cpu.c | 40 u32 pvr = get_pvr(); in checkcpu() local 78 switch (pvr & 0xffff0000) { in checkcpu()
|
A D | spd_sdram.c | 159 unsigned int pvr = get_pvr(); in spd_sdram() local 438 if(PVR_MAJ(pvr) <= 1 && spd.mem_type == SPD_MEMTYPE_DDR){ in spd_sdram()
|
/u-boot/arch/powerpc/cpu/mpc85xx/ |
A D | cpu.c | 50 uint pvr, svr; in checkcpu() local 136 pvr = get_pvr(); in checkcpu() 137 ver = PVR_VER(pvr); in checkcpu() 138 major = PVR_MAJ(pvr); in checkcpu() 139 minor = PVR_MIN(pvr); in checkcpu() 161 printf(", Version: %d.%d, (0x%08x)\n", major, minor, pvr); in checkcpu()
|
/u-boot/drivers/cpu/ |
A D | mpc83xx_cpu.c | 177 u32 pvr = get_pvr(); in determine_e300_type() local 179 switch ((pvr & PCR_UPPER_MASK) >> 16) { in determine_e300_type()
|
/u-boot/arch/arm/include/asm/arch-fsl-layerscape/ |
A D | immap_lsch3.h | 371 u32 pvr; /* Processor version */ member
|
A D | immap_lsch2.h | 263 u32 pvr; /* Processor version */ member
|
Completed in 83 milliseconds