src/cpu: Capitalize CPU, APIC and IOAPIC typo fix

Change-Id: I82e0736dc6b44cfcc57cdfdc786c85c4b6882260
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16276
Tested-by: build bot (Jenkins)
Reviewed-by: Omar Pakker
This commit is contained in:
Elyes HAOUAS
2016-08-21 10:12:15 +02:00
committed by Martin Roth
parent 38424987c6
commit d6e96864c9
54 changed files with 73 additions and 73 deletions

View File

@@ -87,7 +87,7 @@ addrsize_no_MSR:
movl $0x0f, %edx
/* Preload high word of address mask (in %edx) for Variable
* MTRRs 0 and 1 and enable local apic at default base.
* MTRRs 0 and 1 and enable local APIC at default base.
*/
addrsize_set_high:
xorl %eax, %eax

View File

@@ -34,7 +34,7 @@ static void ep80579_init(struct device *dev)
/* Update the microcode */
intel_update_microcode_from_cbfs();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -386,7 +386,7 @@ static void model_206ax_init(struct device *cpu)
/* Setup Page Attribute Tables (PAT) */
// TODO set up PAT
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
enable_lapic_tpr();
setup_lapic();

View File

@@ -182,7 +182,7 @@ static void model_406dx_init(struct device *cpu)
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Enable virtualization */

View File

@@ -720,7 +720,7 @@ static void haswell_init(struct device *cpu)
/* Clear out pending MCEs */
configure_mca();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
enable_lapic_tpr();
setup_lapic();

View File

@@ -32,7 +32,7 @@
static void init_timer(void)
{
/* Set the apic timer to no interrupts and periodic mode */
/* Set the APIC timer to no interrupts and periodic mode */
lapic_write(LAPIC_LVTT, (1 << 17)|(1<< 16)|(0 << 12)|(0 << 0));
/* Set the divider to 1, no divider */
@@ -322,7 +322,7 @@ static void model_1067x_init(struct device *cpu)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Initialize the APIC timer */

View File

@@ -124,7 +124,7 @@ static void model_106cx_init(struct device *cpu)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Enable virtualization */

View File

@@ -379,7 +379,7 @@ static void model_2065x_init(struct device *cpu)
/* Setup Page Attribute Tables (PAT) */
// TODO set up PAT
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
enable_lapic_tpr();
setup_lapic();

View File

@@ -572,7 +572,7 @@ static void model_206ax_init(struct device *cpu)
/* Setup Page Attribute Tables (PAT) */
// TODO set up PAT
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
enable_lapic_tpr();
setup_lapic();

View File

@@ -36,7 +36,7 @@ static void model_65x_init(struct device *dev)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -40,7 +40,7 @@ static void model_67x_init(struct device *cpu)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
}

View File

@@ -44,7 +44,7 @@ static void model_68x_init(struct device *cpu)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
}

View File

@@ -18,7 +18,7 @@ static void model_69x_init(struct device *dev)
/* Update the microcode */
intel_update_microcode_from_cbfs();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -44,7 +44,7 @@ static void model_6bx_init(struct device *cpu)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
}

View File

@@ -31,7 +31,7 @@ static void model_6dx_init(struct device *dev)
/* Update the microcode */
intel_update_microcode_from_cbfs();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -154,7 +154,7 @@ static void model_6ex_init(struct device *cpu)
x86_setup_mtrrs();
x86_mtrr_check();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Enable virtualization */

View File

@@ -177,7 +177,7 @@ static void model_6fx_init(struct device *cpu)
/* Setup Page Attribute Tables (PAT) */
// TODO set up PAT
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Enable virtualization */

View File

@@ -31,7 +31,7 @@ static void model_6xx_init(struct device *dev)
/* Update the microcode */
intel_update_microcode_from_cbfs();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -31,7 +31,7 @@ static void model_f0x_init(struct device *dev)
/* Update the microcode */
intel_update_microcode_from_cbfs();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -31,7 +31,7 @@ static void model_f1x_init(struct device *dev)
/* Update the microcode */
intel_update_microcode_from_cbfs();
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
};

View File

@@ -36,7 +36,7 @@ static void model_f2x_init(struct device *cpu)
intel_update_microcode_from_cbfs();
}
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Start up my CPU siblings */

View File

@@ -36,7 +36,7 @@ static void model_f3x_init(struct device *cpu)
intel_update_microcode_from_cbfs();
}
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Start up my CPU siblings */

View File

@@ -36,7 +36,7 @@ static void model_f4x_init(struct device *cpu)
intel_update_microcode_from_cbfs();
}
/* Enable the local CPU apics */
/* Enable the local CPU APICs */
setup_lapic();
/* Start up my CPU siblings */

View File

@@ -110,7 +110,7 @@ static void speedstep_get_limits(sst_params_t *const params)
* @brief Generate full p-states table from processor parameters
*
* This is generic code and should work at least for Merom and Penryn
* processors. It is used to generate acpi tables and configure EMTTM.
* processors. It is used to generate ACPI tables and configure EMTTM.
*/
void speedstep_gen_pstates(sst_table_t *const table)
{