Hello Richard Spiegel, build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/29352
to look at the new patch set (#5).
Change subject: amd/mtrr: Fix IORR MTRR
......................................................................
amd/mtrr: Fix IORR MTRR
IORR MTRR definitions renamed to avoid collision
between <cpu/amd/mtrr.h> and <AGESA.h>.
Change-Id: I3eeb0c69bbb76039039dc90683670cafcb00ed36
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
---
M src/cpu/amd/mtrr/amd_mtrr.c
M src/include/cpu/amd/mtrr.h
M src/northbridge/amd/amdmct/mct/mctdqs_d.c
M src/northbridge/amd/amdmct/mct_ddr3/mctdqs_d.c
4 files changed, 7 insertions(+), 17 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/52/29352/5
--
To view, visit https://review.coreboot.org/29352
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I3eeb0c69bbb76039039dc90683670cafcb00ed36
Gerrit-Change-Number: 29352
Gerrit-PatchSet: 5
Gerrit-Owner: Elyes HAOUAS <ehaouas(a)noos.fr>
Gerrit-Reviewer: Richard Spiegel <richard.spiegel(a)silverbackltd.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Richard Spiegel has posted comments on this change. ( https://review.coreboot.org/29367 )
Change subject: soc/amd/stoneyridge: Fix get_cpu_count()
......................................................................
Patch Set 1: Code-Review+2
I like Daniel's idea... but either way works for me.
--
To view, visit https://review.coreboot.org/29367
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I7b73358a074dd27639aafead7c8b39f0fad5685f
Gerrit-Change-Number: 29367
Gerrit-PatchSet: 1
Gerrit-Owner: Martin Roth <martinroth(a)google.com>
Gerrit-Reviewer: Daniel Kurtz <djkurtz(a)google.com>
Gerrit-Reviewer: Raul Rangel <rrangel(a)chromium.org>
Gerrit-Reviewer: Richard Spiegel <richard.spiegel(a)silverbackltd.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Wed, 31 Oct 2018 05:02:22 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Ren Kuo has posted comments on this change. ( https://review.coreboot.org/29365 )
Change subject: mb/google/poppy/variants/nami: Enable radium touchscreen support
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://review.coreboot.org/29365
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: I16167d5d3ce6eac9d64832b52bb1945999a63a90
Gerrit-Change-Number: 29365
Gerrit-PatchSet: 1
Gerrit-Owner: Ren Kuo <ren.kuo(a)quanta.corp-partner.google.com>
Gerrit-Reviewer: Furquan Shaikh <furquan(a)google.com>
Gerrit-Reviewer: Ren Kuo <ren.kuo(a)quanta.corp-partner.google.com>
Gerrit-Reviewer: Shelley Chen <shchen(a)google.com>
Gerrit-Reviewer: YH Lin <yueherngl(a)google.com>
Gerrit-Comment-Date: Wed, 31 Oct 2018 02:26:38 +0000
Gerrit-HasComments: No
Gerrit-HasLabels: Yes
Daisuke Nojiri has uploaded this change for review. ( https://review.coreboot.org/29364
Change subject: chromeec: Remove battery remaining capacity workaround
......................................................................
chromeec: Remove battery remaining capacity workaround
Power manager (powerd) reads the remaining capacity and full capacity
from EC through ACPI. Gas gauges typically perform charge-discharge
cycle when the charge is nearly full to avoid stressing battery packs
at high charge.
ACPI converts remaining capacity readings to the full capacity to mask
this fluctuation from the user but this can be also done by power manager.
This patch removes this compensation from ACPI so that power manager
can solely handle it.
BUG=b:109954565,chromium:899120
BRANCH=none
TEST=Verify LED changes from amber (charging) to white (full) at the
same time as the display shows battery is full.
Change-Id: I15d585229948a0be4b59a9c653d8524d05c3a90d
Signed-off-by: Daisuke Nojiri <dnojiri(a)chromium.org>
---
M src/ec/google/chromeec/acpi/battery.asl
1 file changed, 1 insertion(+), 17 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/64/29364/1
diff --git a/src/ec/google/chromeec/acpi/battery.asl b/src/ec/google/chromeec/acpi/battery.asl
index 0a0caec..3b7ef97 100644
--- a/src/ec/google/chromeec/acpi/battery.asl
+++ b/src/ec/google/chromeec/acpi/battery.asl
@@ -214,23 +214,7 @@
//
// 2: BATTERY REMAINING CAPACITY
//
- Store (BTRA, Local1)
- If (LAnd (Arg3, LAnd (ACEX, LNot (LAnd (BFDC, BFCG))))) {
- // On AC power and battery is neither charging
- // nor discharging. Linux expects a full battery
- // to report same capacity as last full charge.
- // https://bugzilla.kernel.org/show_bug.cgi?id=12632
- Store (BTDF, Local2)
-
- // See if within ~6% of full
- ShiftRight (Local2, 4, Local3)
- If (LAnd (LGreater (Local1, Subtract (Local2, Local3)),
- LLess (Local1, Add (Local2, Local3))))
- {
- Store (Local2, Local1)
- }
- }
- Store (Local1, Index (Arg1, 2))
+ Store (BTRA, Index (Arg1, 2))
//
// 3: BATTERY PRESENT VOLTAGE
--
To view, visit https://review.coreboot.org/29364
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I15d585229948a0be4b59a9c653d8524d05c3a90d
Gerrit-Change-Number: 29364
Gerrit-PatchSet: 1
Gerrit-Owner: Daisuke Nojiri <dnojiri(a)chromium.org>