x86, microcode: Add a refresh firmware flag to ->request_microcode_fw
This is done in preparation for teaching the ucode driver to either load a new ucode patches container from userspace or use an already cached version. No functionality change in this patch. Signed-off-by: Borislav Petkov <borislav.petkov@amd.com> Link: http://lkml.kernel.org/r/1344361461-10076-10-git-send-email-bp@amd64.org Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
5f5b747282
commit
48e30685ca
4 changed files with 12 additions and 9 deletions
|
@ -282,7 +282,7 @@ static int reload_for_cpu(int cpu)
|
|||
if (!uci->valid)
|
||||
return err;
|
||||
|
||||
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev);
|
||||
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev, true);
|
||||
if (ustate == UCODE_OK)
|
||||
apply_microcode_on_target(cpu);
|
||||
else
|
||||
|
@ -377,7 +377,7 @@ static enum ucode_state microcode_resume_cpu(int cpu)
|
|||
return UCODE_OK;
|
||||
}
|
||||
|
||||
static enum ucode_state microcode_init_cpu(int cpu)
|
||||
static enum ucode_state microcode_init_cpu(int cpu, bool refresh_fw)
|
||||
{
|
||||
enum ucode_state ustate;
|
||||
|
||||
|
@ -388,7 +388,8 @@ static enum ucode_state microcode_init_cpu(int cpu)
|
|||
if (system_state != SYSTEM_RUNNING)
|
||||
return UCODE_NFOUND;
|
||||
|
||||
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev);
|
||||
ustate = microcode_ops->request_microcode_fw(cpu, µcode_pdev->dev,
|
||||
refresh_fw);
|
||||
|
||||
if (ustate == UCODE_OK) {
|
||||
pr_debug("CPU%d updated upon init\n", cpu);
|
||||
|
@ -405,7 +406,7 @@ static enum ucode_state microcode_update_cpu(int cpu)
|
|||
if (uci->valid)
|
||||
return microcode_resume_cpu(cpu);
|
||||
|
||||
return microcode_init_cpu(cpu);
|
||||
return microcode_init_cpu(cpu, false);
|
||||
}
|
||||
|
||||
static int mc_device_add(struct device *dev, struct subsys_interface *sif)
|
||||
|
@ -421,7 +422,7 @@ static int mc_device_add(struct device *dev, struct subsys_interface *sif)
|
|||
if (err)
|
||||
return err;
|
||||
|
||||
if (microcode_init_cpu(cpu) == UCODE_ERROR)
|
||||
if (microcode_init_cpu(cpu, true) == UCODE_ERROR)
|
||||
return -EINVAL;
|
||||
|
||||
return err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue