V Sowmya has uploaded a new patch set (#1). ( https://review.coreboot.org/20053 )
Change subject: mb/google/poppy: Add ports and endpoints configuration for sensor and CIO2 devices
......................................................................
mb/google/poppy:[WIP] Add ports and endpoint configurations for sensor and CIO2 devices
Bind the camera sensor and CIO2 devices through the ports and endpoints
configuration available in _DSD ACPI object.
* Port represents an interface in a device.
* Endpoint represents a connection to that interface.
Change-Id: I6d822165bb9a0cd6f7d4cdcb36333887953110a3
Signed-off-by: V Sowmya <v.sowmya(a)intel.com>
---
A src/mainboard/google/poppy/acpi/ipu_mainboard.asl
M src/mainboard/google/poppy/acpi/mipi_camera.asl
M src/mainboard/google/poppy/dsdt.asl
3 files changed, 147 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/53/20053/1
--
To view, visit https://review.coreboot.org/20053
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I6d822165bb9a0cd6f7d4cdcb36333887953110a3
Gerrit-Change-Number: 20053
Gerrit-PatchSet: 1
Gerrit-Owner: V Sowmya <v.sowmya(a)intel.com>
Gerrit-Reviewer: Balaji Manigandan <balaji.manigandan(a)intel.com>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Rajmohan Mani <rajmohan.mani(a)intel.com>
Gerrit-Reviewer: Rizwan Qureshi <rizwan.qureshi(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Barnali Sarkar has uploaded this change for review. ( https://review.coreboot.org/20088
Change subject: soc/intel/apollolake: Removed duplication of find_microcode_patch() code
......................................................................
soc/intel/apollolake: Removed duplication of find_microcode_patch() code
Since get_microcode_info() is aleady searching for the microcode in cbfs,
we can just add a intel_microcode_load_unlocked() call here to update
the microcode. No need to duplicate finding microcode step during
pre_mp_init() function.
Change-Id: I525cab0ecc7826554f0a1209862e6357d1c7a9a6
Signed-off-by: Barnali Sarkar <barnali.sarkar(a)intel.com>
---
M src/soc/intel/apollolake/cpu.c
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/88/20088/1
diff --git a/src/soc/intel/apollolake/cpu.c b/src/soc/intel/apollolake/cpu.c
index ff300bc..b0e2da5 100644
--- a/src/soc/intel/apollolake/cpu.c
+++ b/src/soc/intel/apollolake/cpu.c
@@ -117,9 +117,6 @@
{
x86_setup_mtrrs_with_detect();
x86_mtrr_check();
-
- /* Make sure BSP is using the microcode from cbfs */
- intel_update_microcode_from_cbfs();
}
/* Find CPU topology */
@@ -139,6 +136,9 @@
{
*microcode = intel_microcode_find();
*parallel = 1;
+
+ /* Make sure BSP is using the microcode from cbfs */
+ intel_microcode_load_unlocked(*microcode);
}
static void get_smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
--
To view, visit https://review.coreboot.org/20088
To unsubscribe, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I525cab0ecc7826554f0a1209862e6357d1c7a9a6
Gerrit-Change-Number: 20088
Gerrit-PatchSet: 1
Gerrit-Owner: Barnali Sarkar <barnali.sarkar(a)intel.com>