Attention is currently required from: Dinesh Gehlot, Jayvik Desai, Nick Vaccaro, Rui Zhou.
Kapil Porwal has posted comments on this change by Rui Zhou. ( https://review.coreboot.org/c/coreboot/+/85850?usp=email )
The change is no longer submittable: All-Comments-Resolved is unsatisfied now.
Change subject: mb/google/nissa/var/rull: Update 6W and 15W DPTF parameters
......................................................................
Patch Set 2:
(1 comment)
File src/mainboard/google/brya/variants/rull/overridetree.cb:
https://review.coreboot.org/c/coreboot/+/85850/comment/b5a47fbc_c126e4e0?us… :
PS2, Line 309: 4100
It is greater than 100% speed!
--
To view, visit https://review.coreboot.org/c/coreboot/+/85850?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Icaee949fa8b2e990efaf6a118bd3b77784ea4340
Gerrit-Change-Number: 85850
Gerrit-PatchSet: 2
Gerrit-Owner: Rui Zhou <zhourui(a)huaqin.corp-partner.google.com>
Gerrit-Reviewer: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Reviewer: Eric Lai <ericllai(a)google.com>
Gerrit-Reviewer: Jayvik Desai <jayvik(a)google.com>
Gerrit-Reviewer: Kapil Porwal <kapilporwal(a)google.com>
Gerrit-Reviewer: Kun Liu <liukun11(a)huaqin.corp-partner.google.com>
Gerrit-Reviewer: Nick Vaccaro <nvaccaro(a)chromium.org>
Gerrit-Reviewer: Subrata Banik <subratabanik(a)google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Jayvik Desai <jayvik(a)google.com>
Gerrit-Attention: Rui Zhou <zhourui(a)huaqin.corp-partner.google.com>
Gerrit-Attention: Dinesh Gehlot <digehlot(a)google.com>
Gerrit-Attention: Nick Vaccaro <nvaccaro(a)chromium.org>
Gerrit-Comment-Date: Wed, 08 Jan 2025 03:43:08 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Elyes Haouas has submitted this change. ( https://review.coreboot.org/c/coreboot/+/85784?usp=email )
Change subject: drivers/uart: Replace 'unsigned long int' by 'unsigned long'
......................................................................
drivers/uart: Replace 'unsigned long int' by 'unsigned long'
As suggested by the linter:
Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary
Link: https://qa.coreboot.org/job/coreboot-untested-files/lastSuccessfulBuild/art…
Change-Id: I1416a2f7d75a888dcaf0775894aced981800866f
Signed-off-by: Ariel Otilibili <otilibil(a)eurecom.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85784
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Maximilian Brune <maximilian.brune(a)9elements.com>
Reviewed-by: Elyes Haouas <ehaouas(a)noos.fr>
---
M src/drivers/uart/uart8250io.c
M src/drivers/uart/uart8250mem.c
2 files changed, 6 insertions(+), 6 deletions(-)
Approvals:
Elyes Haouas: Looks good to me, approved
build bot (Jenkins): Verified
Maximilian Brune: Looks good to me, approved
diff --git a/src/drivers/uart/uart8250io.c b/src/drivers/uart/uart8250io.c
index a7fc346..89ec229 100644
--- a/src/drivers/uart/uart8250io.c
+++ b/src/drivers/uart/uart8250io.c
@@ -26,14 +26,14 @@
static void uart8250_tx_byte(unsigned int base_port, unsigned char data)
{
- unsigned long int i = SINGLE_CHAR_TIMEOUT;
+ unsigned long i = SINGLE_CHAR_TIMEOUT;
while (i-- && !uart8250_can_tx_byte(base_port));
outb(data, base_port + UART8250_TBR);
}
static void uart8250_tx_flush(unsigned int base_port)
{
- unsigned long int i = FIFO_TIMEOUT;
+ unsigned long i = FIFO_TIMEOUT;
while (i-- && !(inb(base_port + UART8250_LSR) & UART8250_LSR_TEMT));
}
@@ -44,7 +44,7 @@
static unsigned char uart8250_rx_byte(unsigned int base_port)
{
- unsigned long int i = SINGLE_CHAR_TIMEOUT;
+ unsigned long i = SINGLE_CHAR_TIMEOUT;
while (i && !uart8250_can_rx_byte(base_port))
i--;
diff --git a/src/drivers/uart/uart8250mem.c b/src/drivers/uart/uart8250mem.c
index 19677a8..fcf031e 100644
--- a/src/drivers/uart/uart8250mem.c
+++ b/src/drivers/uart/uart8250mem.c
@@ -46,7 +46,7 @@
static void uart8250_mem_tx_byte(void *base, unsigned char data)
{
- unsigned long int i = SINGLE_CHAR_TIMEOUT;
+ unsigned long i = SINGLE_CHAR_TIMEOUT;
while (i-- && !uart8250_mem_can_tx_byte(base))
udelay(1);
uart8250_write(base, UART8250_TBR, data);
@@ -54,7 +54,7 @@
static void uart8250_mem_tx_flush(void *base)
{
- unsigned long int i = FIFO_TIMEOUT;
+ unsigned long i = FIFO_TIMEOUT;
while (i-- && !(uart8250_read(base, UART8250_LSR) & UART8250_LSR_TEMT))
udelay(1);
}
@@ -66,7 +66,7 @@
static unsigned char uart8250_mem_rx_byte(void *base)
{
- unsigned long int i = SINGLE_CHAR_TIMEOUT;
+ unsigned long i = SINGLE_CHAR_TIMEOUT;
while (i && !uart8250_mem_can_rx_byte(base)) {
udelay(1);
i--;
--
To view, visit https://review.coreboot.org/c/coreboot/+/85784?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I1416a2f7d75a888dcaf0775894aced981800866f
Gerrit-Change-Number: 85784
Gerrit-PatchSet: 2
Gerrit-Owner: Ariel Otilibili
Gerrit-Reviewer: Elyes Haouas <ehaouas(a)noos.fr>
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Attention is currently required from: Ariel Otilibili.
Elyes Haouas has posted comments on this change by Ariel Otilibili. ( https://review.coreboot.org/c/coreboot/+/85783?usp=email )
The change is no longer submittable: All-Comments-Resolved is unsatisfied now.
Change subject: intel/fsp1_1: Replace 'unsigned long int' by 'unsigned long'
......................................................................
Patch Set 1:
(1 comment)
File src/drivers/intel/fsp1_1/raminit.c:
https://review.coreboot.org/c/coreboot/+/85783/comment/180d2baf_08893029?us… :
PS1, Line 131: }
Wondering if this cast is needed
--
To view, visit https://review.coreboot.org/c/coreboot/+/85783?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: I940528dc4f8cb9b2d441d0f0d181cccebd315255
Gerrit-Change-Number: 85783
Gerrit-PatchSet: 1
Gerrit-Owner: Ariel Otilibili
Gerrit-Reviewer: Elyes Haouas <ehaouas(a)noos.fr>
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Attention: Ariel Otilibili
Gerrit-Comment-Date: Wed, 08 Jan 2025 03:07:44 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Elyes Haouas has submitted this change. ( https://review.coreboot.org/c/coreboot/+/85782?usp=email )
Change subject: arch/x86: Replace 'unsigned long int' by 'unsigned long'
......................................................................
arch/x86: Replace 'unsigned long int' by 'unsigned long'
As suggested by the linter:
Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary
Link: https://qa.coreboot.org/job/coreboot-untested-files/lastSuccessfulBuild/art…
Cc: "Jérémy Compostella" <jeremy.compostella(a)intel.com>
Change-Id: Ida1de23830b0b67ab7fac635b02a4e99c65746f8
Signed-off-by: Ariel Otilibili <otilibil(a)eurecom.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85782
Reviewed-by: Maximilian Brune <maximilian.brune(a)9elements.com>
Tested-by: build bot (Jenkins) <no-reply(a)coreboot.org>
Reviewed-by: Angel Pons <th3fanbus(a)gmail.com>
Reviewed-by: Elyes Haouas <ehaouas(a)noos.fr>
---
M src/arch/x86/memset.c
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
Elyes Haouas: Looks good to me, approved
Angel Pons: Looks good to me, but someone else must approve
build bot (Jenkins): Verified
Maximilian Brune: Looks good to me, approved
diff --git a/src/arch/x86/memset.c b/src/arch/x86/memset.c
index 142dda3..4ab07ed 100644
--- a/src/arch/x86/memset.c
+++ b/src/arch/x86/memset.c
@@ -12,7 +12,7 @@
void *memset(void *dstpp, int c, size_t len)
{
int d0;
- unsigned long int dstp = (unsigned long int)dstpp;
+ unsigned long dstp = (unsigned long)dstpp;
#if (ENV_SEPARATE_ROMSTAGE && CONFIG(ASAN_IN_ROMSTAGE)) || \
(ENV_RAMSTAGE && CONFIG(ASAN_IN_RAMSTAGE))
--
To view, visit https://review.coreboot.org/c/coreboot/+/85782?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: Ida1de23830b0b67ab7fac635b02a4e99c65746f8
Gerrit-Change-Number: 85782
Gerrit-PatchSet: 3
Gerrit-Owner: Ariel Otilibili
Gerrit-Reviewer: Angel Pons <th3fanbus(a)gmail.com>
Gerrit-Reviewer: Elyes Haouas <ehaouas(a)noos.fr>
Gerrit-Reviewer: Felix Singer <service+coreboot-gerrit(a)felixsinger.de>
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: Nicholas Chin <nic.c3.14(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Jérémy Compostella <jeremy.compostella(a)intel.com>
Attention is currently required from: Ariel Otilibili.
Elyes Haouas has posted comments on this change by Ariel Otilibili. ( https://review.coreboot.org/c/coreboot/+/85786?usp=email )
The change is no longer submittable: All-Comments-Resolved is unsatisfied now.
Change subject: util/cbfstool: Replace 'unsigned long int' by 'unsigned long'
......................................................................
Patch Set 1:
(1 comment)
File util/cbfstool/flashmap/fmap.c:
https://review.coreboot.org/c/coreboot/+/85786/comment/20b406a9_219ef668?us… :
PS1, Line 99: unsigned long offset = -1;
If it is unsigned, how it is = -1 ?
--
To view, visit https://review.coreboot.org/c/coreboot/+/85786?usp=email
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings?usp=email
Gerrit-MessageType: comment
Gerrit-Project: coreboot
Gerrit-Branch: main
Gerrit-Change-Id: If94e70778d0302552f151c31d3073524162faf9e
Gerrit-Change-Number: 85786
Gerrit-PatchSet: 1
Gerrit-Owner: Ariel Otilibili
Gerrit-Reviewer: Maximilian Brune <maximilian.brune(a)9elements.com>
Gerrit-Reviewer: Shuo Liu <shuo.liu(a)intel.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-CC: Arthur Heymans <arthur(a)aheymans.xyz>
Gerrit-CC: Elyes Haouas <ehaouas(a)noos.fr>
Gerrit-CC: Julius Werner <jwerner(a)chromium.org>
Gerrit-CC: Jérémy Compostella <jeremy.compostella(a)intel.com>
Gerrit-CC: Patrick Georgi <patrick(a)coreboot.org>
Gerrit-CC: ron minnich <rminnich(a)gmail.com>
Gerrit-Attention: Ariel Otilibili
Gerrit-Comment-Date: Wed, 08 Jan 2025 02:56:29 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No