the following patch was just integrated into master:
commit 61e6c4448c4d79035842434fb1eb3b4e9cd01c6d
Author: Eric Gao <eric.gao(a)rock-chips.com>
Date: Fri Jul 29 12:34:32 2016 +0800
rockchip/rk3399: Add pwm_regulator.c for pwm then ramp boot up cpu
Before, we calculate the pwm duties for cpu cores and centerlogic by
hand, adding pwm_regulator.c to handle this. The default pwm design
min/max voltage may be different between revs.
With the pwm regulator, this patch changes the little cpu frequency from
600M to 1512M, and raises CPU voltage to 1.2V correspondingly.
This also means we decide to drop the ES1 because it may fail to
bootup with 1.5G ~ 1.2v.
BRANCH=none
BUG=chrome-os-partner:54376,chrome-os-partner:54862
TEST=Bootup on kevin board
Change-Id: Id04c176bddfb9cdf3d25b65736e40249a85f6aa1
Signed-off-by: Martin Roth <martinroth(a)chromium.org>
Original-Commit-Id: ee4365c787ec523b7ee1028ea100dcfbb331b3a9
Original-Change-Id: Ide75bbd92d1cbb14f934baeec0e38862bc08402b
Original-Signed-off-by: Eric Gao <eric.gao(a)rock-chips.com>
Original-Signed-off-by: Shunqian Zheng <zhengsq(a)rock-chips.com>
Original-Reviewed-on: https://chromium-review.googlesource.com/364410
Original-Reviewed-by: Julius Werner <jwerner(a)chromium.org>
Reviewed-on: https://review.coreboot.org/16368
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin(a)chromium.org>
See https://review.coreboot.org/16368 for details.
-gerrit
Martin Roth (martinroth(a)google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/11483
-gerrit
commit 8c810c5d284ee626cf06e3c3cdf9905b82244852
Author: zbao <fishbaozi(a)gmail.com>
Date: Tue Sep 1 22:28:57 2015 -0400
buildgcc: Search the cksum command without checking OS type
The checksum command might appear to be unpredictable only by
checking the OS. Just list the candidates, sorted by possibility.
Change-Id: Ia3f4f5f0f98ff47d322a4f70689cca0bd4fa79fa
Signed-off-by: Zheng Bao <zheng.bao(a)amd.com>
Signed-off-by: Zheng Bao <fishbaozi(a)gmail.com>
---
util/crossgcc/buildgcc | 41 ++++++++++++++++++++++-------------------
1 file changed, 22 insertions(+), 19 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index 5bfd383..d858919 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -165,24 +165,26 @@ searchtool()
fi
fi
fi
- if [ "$(echo $1 | cut -b -3)" = "sha" ]; then
- if [ $UNAME = "FreeBSD" ]; then
- if [ -x "$(which sha1 2>/dev/null)" ]; then
- echo sha1
- return
- fi
- fi
- if [ $UNAME = "NetBSD" ]; then
- if [ -x "$(which cksum 2>/dev/null)" ]; then
- echo cksum -a $(echo $1 | sed -e 's,sum,,')
- return
- fi
- fi
- if [ $UNAME = "Darwin" ]; then
- if [ -x "$(which openssl 2>/dev/null)" ]; then
- echo openssl $(echo $1 | sed -e 's,sum,,')
- return
- fi
+ if echo $1 | grep -q "sum" ; then
+ algor=$(echo $1 | sed -e 's,sum,,')
+ if [ -x "$(which $1 2>/dev/null)" ]; then
+ #xxxsum [file]
+ echo $1
+ return
+ elif [ -x "$(which $algor 2>/dev/null)" ]; then
+ #xxx [file]
+ echo $algor
+ return
+ elif [ -x "$(which openssl 2>/dev/null)" ]; then
+ #openssl xxx [file]
+ echo openssl $algor
+ return
+ elif [ -x "$(which cksum 2>/dev/null)" ]; then
+ #cksum -a xxx [file]
+ #cksum has special options in NetBSD. Actually, NetBSD will use the second case above.
+ echo "buildgcc" | cksum -a $algor > /dev/null 2>/dev/null && \
+ echo cksum -a $algor
+ return
fi
fi
@@ -790,7 +792,8 @@ TAR=$(searchtool tar) || exit $?
PATCH=$(searchtool patch) || exit $?
MAKE=$(searchtool make) || exit $?
SHA1SUM=$(searchtool sha1sum)
-SHA512SUM=$(searchtool sha512sum)
+#SHA512SUM=$(searchtool sha512sum)
+#MD5SUM=$(searchtool md5sum)
CHECKSUM=$SHA1SUM
LBZIP2=$(searchtool lbzip2 "" nofail)
PIGZ=$(searchtool pigz "" nofail)
the following patch was just integrated into master:
commit 12df9505835393239d9e9589cff39a1d1dfddac1
Author: Elyes HAOUAS <ehaouas(a)noos.fr>
Date: Tue Aug 23 21:29:48 2016 +0200
northbridge/intel: Add required space before opening parenthesis '('
Change-Id: I53208ce5db06d2c65f954e6d59222924ab87722e
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
Reviewed-on: https://review.coreboot.org/16304
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/16304 for details.
-gerrit
the following patch was just integrated into master:
commit 5a7e72f1aef02b326a67d883d92fe8c0aad9f3a9
Author: Elyes HAOUAS <ehaouas(a)noos.fr>
Date: Tue Aug 23 21:36:02 2016 +0200
northbridge/amd: Add required space before opening parenthesis '('
Change-Id: Ic85f725bbdf72fbac5a4d9482c61343c5eb35e25
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
Reviewed-on: https://review.coreboot.org/16305
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/16305 for details.
-gerrit
the following patch was just integrated into master:
commit 2b010b8795de84b6753c5e49d6a73c25fee96da1
Author: Elyes HAOUAS <ehaouas(a)noos.fr>
Date: Thu Aug 25 20:57:08 2016 +0200
src/ec: Add required space before opening parenthesis '('
Change-Id: I013f71b702644ab337c3d76be1489530bad6e6cc
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
Reviewed-on: https://review.coreboot.org/16322
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth(a)google.com>
See https://review.coreboot.org/16322 for details.
-gerrit
the following patch was just integrated into master:
commit 195c26810d103e69adc629fa72b6eec33f2dd901
Author: Elyes HAOUAS <ehaouas(a)noos.fr>
Date: Sun Aug 28 19:18:38 2016 +0200
soc/broadcom/cygnus/ddr_init.c: Correct typo in POWER ON and POWER OK.
Change-Id: I5b69a8429eb2f7add08bc134d5d2366a1afe6a4f
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
Reviewed-on: https://review.coreboot.org/16343
Reviewed-by: Paul Menzel <paulepanter(a)users.sourceforge.net>
Reviewed-by: Martin Roth <martinroth(a)google.com>
Tested-by: build bot (Jenkins)
See https://review.coreboot.org/16343 for details.
-gerrit
the following patch was just integrated into master:
commit ba28e8d73b143def8dfe7c0dc7cfcbce83c601a1
Author: Elyes HAOUAS <ehaouas(a)noos.fr>
Date: Wed Aug 31 19:22:16 2016 +0200
src/southbridge: Code formating
Change-Id: Icfc35b73bacb60b1f21e71e70ad4418ec3e644f6
Signed-off-by: Elyes HAOUAS <ehaouas(a)noos.fr>
Reviewed-on: https://review.coreboot.org/16291
Reviewed-by: Martin Roth <martinroth(a)google.com>
Tested-by: build bot (Jenkins)
See https://review.coreboot.org/16291 for details.
-gerrit