Home | History | Annotate | Download | only in oea

Lines Matching defs:l3cr

1014 cpu_enable_l3cr(register_t l3cr)
1021 * 1: Set all L3CR bits for final config except L3E, L3I, L3PE, and
1025 l3cr &= ~(L3CR_L3E|L3CR_L3I|L3CR_L3PE|L3CR_L3CLKEN|L3CR_RESERVED);
1026 mtspr(SPR_L3CR, l3cr);
1028 /* 2: Set L3CR[5] (otherwise reserved bit) to 1 */
1029 l3cr |= 0x04000000;
1030 mtspr(SPR_L3CR, l3cr);
1033 l3cr |= L3CR_L3CLKEN;
1034 mtspr(SPR_L3CR, l3cr);
1039 mtspr(SPR_L3CR, l3cr|L3CR_L3I);
1045 l3cr &= ~L3CR_L3CLKEN;
1046 mtspr(SPR_L3CR, l3cr);
1053 l3cr |= (L3CR_L3E|L3CR_L3CLKEN);
1054 mtspr(SPR_L3CR, l3cr);
1128 register_t l3cr;
1163 l3cr = mfspr(SPR_L3CR);
1168 * should use the same value for L3CR.
1170 if ((l3cr & L3CR_L3E) != 0 && l3cr_config == 0) {
1171 l3cr_config = l3cr;
1177 if ((l3cr & L3CR_L3E) == 0 && l3cr_config != 0) {
1179 l3cr = mfspr(SPR_L3CR);
1182 if (l3cr & L3CR_L3E) {
1184 cpu_fmttab_print(cpu_7450_l3cr_formats, l3cr);