mail.coreboot.org
Sign In
Sign Up
Sign In
Sign Up
Manage this list
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
2025
April
March
February
January
2024
December
November
October
September
August
July
June
May
April
March
February
January
2023
December
November
October
September
August
July
June
May
April
March
February
January
2022
December
November
October
September
August
July
June
May
April
March
February
January
2021
December
November
October
September
August
July
June
May
April
March
February
January
2020
December
November
October
September
August
July
June
May
April
March
February
January
2019
December
November
October
September
August
July
June
May
April
March
February
January
2018
December
November
October
September
August
July
June
May
April
March
February
January
2017
December
November
October
September
August
July
June
May
April
March
February
January
2016
December
November
October
September
August
July
June
May
April
March
February
January
2015
December
November
October
September
August
July
June
May
April
March
February
January
2014
December
November
October
September
August
July
June
May
April
March
February
January
2013
December
November
October
September
August
July
June
May
April
March
List overview
Download
coreboot-gerrit
August 2017
----- 2025 -----
April 2025
March 2025
February 2025
January 2025
----- 2024 -----
December 2024
November 2024
October 2024
September 2024
August 2024
July 2024
June 2024
May 2024
April 2024
March 2024
February 2024
January 2024
----- 2023 -----
December 2023
November 2023
October 2023
September 2023
August 2023
July 2023
June 2023
May 2023
April 2023
March 2023
February 2023
January 2023
----- 2022 -----
December 2022
November 2022
October 2022
September 2022
August 2022
July 2022
June 2022
May 2022
April 2022
March 2022
February 2022
January 2022
----- 2021 -----
December 2021
November 2021
October 2021
September 2021
August 2021
July 2021
June 2021
May 2021
April 2021
March 2021
February 2021
January 2021
----- 2020 -----
December 2020
November 2020
October 2020
September 2020
August 2020
July 2020
June 2020
May 2020
April 2020
March 2020
February 2020
January 2020
----- 2019 -----
December 2019
November 2019
October 2019
September 2019
August 2019
July 2019
June 2019
May 2019
April 2019
March 2019
February 2019
January 2019
----- 2018 -----
December 2018
November 2018
October 2018
September 2018
August 2018
July 2018
June 2018
May 2018
April 2018
March 2018
February 2018
January 2018
----- 2017 -----
December 2017
November 2017
October 2017
September 2017
August 2017
July 2017
June 2017
May 2017
April 2017
March 2017
February 2017
January 2017
----- 2016 -----
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
----- 2015 -----
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
----- 2014 -----
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
----- 2013 -----
December 2013
November 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
coreboot-gerrit@coreboot.org
1 participants
1999 discussions
Start a n
N
ew thread
Change in coreboot[master]: drivers/ics954309: conditionalize clockgen setup
by Andrey Korolyov (Code Review)
14 Aug '17
14 Aug '17
Andrey Korolyov has uploaded this change for review. (
https://review.coreboot.org/21005
Change subject: drivers/ics954309: conditionalize clockgen setup ...................................................................... drivers/ics954309: conditionalize clockgen setup The Z61m board need not to set four upper bits on the clockgen address due to platform-specific issue effectively preventing writes to this area. Change-Id: Ib17a67a31658256040d63cd45b354c1dfced952a Signed-off-by: Andrey Korolyov <andrey(a)xdel.ru> --- M src/drivers/ics/954309/ics954309.c 1 file changed, 9 insertions(+), 3 deletions(-) git pull ssh://review.coreboot.org:29418/coreboot refs/changes/05/21005/1 diff --git a/src/drivers/ics/954309/ics954309.c b/src/drivers/ics/954309/ics954309.c index a3d1d81..dc334cd 100644 --- a/src/drivers/ics/954309/ics954309.c +++ b/src/drivers/ics/954309/ics954309.c @@ -27,7 +27,12 @@ static void ics954309_init(struct device *dev) { struct drivers_ics_954309_config *config; - u8 initdata[12]; +#ifdef CONFIG_BOARD_LENOVO_Z61M + int p = 8; +#else + int p = 12; +#endif + u8 initdata[p]; if (!dev->enabled || dev->path.type != DEVICE_PATH_I2C) return; @@ -42,12 +47,13 @@ initdata[5] = config->reg5; initdata[6] = config->reg6; initdata[7] = config->reg7; +#ifndef CONFIG_BOARD_LENOVO_Z61M initdata[8] = config->reg8; initdata[9] = config->reg9; initdata[10] = config->reg10; initdata[11] = config->reg11; - - smbus_block_write(dev, 0, 12, initdata); +#endif + smbus_block_write(dev, 0, p, initdata); } static struct device_operations ics954309_operations = { -- To view, visit
https://review.coreboot.org/21005
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: newchange Gerrit-Change-Id: Ib17a67a31658256040d63cd45b354c1dfced952a Gerrit-Change-Number: 21005 Gerrit-PatchSet: 1 Gerrit-Owner: Andrey Korolyov <andrey(a)xdel.ru>
1
0
0
0
Change in coreboot[master]: lint: update signed-off-by check
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20920
) Change subject: lint: update signed-off-by check ...................................................................... Patch Set 2: Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58542/
: SUCCESS -- To view, visit
https://review.coreboot.org/20920
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I8be8aef25730d988c7cf1586ae66ecb839d5f756 Gerrit-Change-Number: 20920 Gerrit-PatchSet: 2 Gerrit-Owner: Martin Roth <martinroth(a)google.com> Gerrit-Reviewer: Chris Ching <chingcodes(a)chromium.org> Gerrit-Reviewer: Patrick Georgi <pgeorgi(a)google.com> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: Stefan Reinauer <stefan.reinauer(a)coreboot.org> Gerrit-Reviewer: Werner Zeh <werner.zeh(a)siemens.com> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 20:01:00 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: superio/winbond/w83627*: Remove deprecated code
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20988
) Change subject: superio/winbond/w83627*: Remove deprecated code ...................................................................... Patch Set 4: Verified+1 Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58544/
: SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/13941/
: SUCCESS -- To view, visit
https://review.coreboot.org/20988
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: Idad6e0281f7a272e184feff686ce1407825429c7 Gerrit-Change-Number: 20988 Gerrit-PatchSet: 4 Gerrit-Owner: Keith Hui <buurin(a)gmail.com> Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz> Gerrit-Reviewer: Keith Hui <buurin(a)gmail.com> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 19:50:59 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: superio/winbond/w83627*: Remove deprecated code
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20988
) Change subject: superio/winbond/w83627*: Remove deprecated code ...................................................................... Patch Set 3: Verified+1 Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58543/
: SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/13940/
: SUCCESS -- To view, visit
https://review.coreboot.org/20988
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: Idad6e0281f7a272e184feff686ce1407825429c7 Gerrit-Change-Number: 20988 Gerrit-PatchSet: 3 Gerrit-Owner: Keith Hui <buurin(a)gmail.com> Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz> Gerrit-Reviewer: Keith Hui <buurin(a)gmail.com> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 19:42:41 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: stoneyridge: Fix CPU ASL \_PR table
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20910
) Change subject: stoneyridge: Fix CPU ASL \_PR table ...................................................................... Patch Set 3: Verified+1 Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58541/
: SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/13939/
: SUCCESS -- To view, visit
https://review.coreboot.org/20910
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I870f810cc5d2edc0b842478cde5b3c164ed3b47f Gerrit-Change-Number: 20910 Gerrit-PatchSet: 3 Gerrit-Owner: Marc Jones <marc(a)marcjonesconsulting.com> Gerrit-Reviewer: Aaron Durbin <adurbin(a)chromium.org> Gerrit-Reviewer: Marc Jones <marc(a)marcjonesconsulting.com> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 19:24:58 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: stoneyridge: Fix CPU ASL \_PR table
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20910
) Change subject: stoneyridge: Fix CPU ASL \_PR table ...................................................................... Patch Set 2: Verified-1 Build Unstable
https://qa.coreboot.org/job/coreboot-gerrit/58539/
: UNSTABLE
https://qa.coreboot.org/job/coreboot-checkpatch/13937/
: SUCCESS -- To view, visit
https://review.coreboot.org/20910
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I870f810cc5d2edc0b842478cde5b3c164ed3b47f Gerrit-Change-Number: 20910 Gerrit-PatchSet: 2 Gerrit-Owner: Marc Jones <marc(a)marcjonesconsulting.com> Gerrit-Reviewer: Aaron Durbin <adurbin(a)chromium.org> Gerrit-Reviewer: Marc Jones <marc(a)marcjonesconsulting.com> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 17:43:32 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: ec/lenovo/h8/ssdt: Add WWAN ACPI methods
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20986
) Change subject: ec/lenovo/h8/ssdt: Add WWAN ACPI methods ...................................................................... Patch Set 2: Verified+1 Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58534/
: SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/13934/
: SUCCESS -- To view, visit
https://review.coreboot.org/20986
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I5550c78e0d36884eca7a8d8ece19b64aaee44045 Gerrit-Change-Number: 20986 Gerrit-PatchSet: 2 Gerrit-Owner: Patrick Rudolph <siro(a)das-labor.org> Gerrit-Reviewer: Aaron Durbin <adurbin(a)chromium.org> Gerrit-Reviewer: Alexander Couzens <lynxis(a)fe80.eu> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: Philipp Deppenwiese <zaolin.daisuki(a)gmail.com> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 17:39:05 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: nb/intel/x4x/raminit: Move dummy reads after JEDEC init
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20979
) Change subject: nb/intel/x4x/raminit: Move dummy reads after JEDEC init ...................................................................... Patch Set 3: Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58538/
: SUCCESS -- To view, visit
https://review.coreboot.org/20979
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I8069f9c08ad5e5268ddbe3711d58bc42522f938c Gerrit-Change-Number: 20979 Gerrit-PatchSet: 3 Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz> Gerrit-Reviewer: Arthur Heymans <arthur(a)aheymans.xyz> Gerrit-Reviewer: Damien Zammit <damien(a)zamaudio.com> Gerrit-Reviewer: Patrick Rudolph <siro(a)das-labor.org> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 17:33:46 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: ec/lenovo/h8/acpi/ec: Add registers
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/20987
) Change subject: ec/lenovo/h8/acpi/ec: Add registers ...................................................................... Patch Set 2: Verified+1 Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58535/
: SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/13933/
: SUCCESS -- To view, visit
https://review.coreboot.org/20987
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I5a125047fad0e08cd9256bc53c3f5a7db7e56e7d Gerrit-Change-Number: 20987 Gerrit-PatchSet: 2 Gerrit-Owner: Patrick Rudolph <siro(a)das-labor.org> Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 17:29:20 +0000 Gerrit-HasComments: No
1
0
0
0
Change in coreboot[master]: ec/lenovo/h8/ssdt: Add UWB ACPI interface
by build bot (Jenkins) (Code Review)
14 Aug '17
14 Aug '17
build bot (Jenkins) has posted comments on this change. (
https://review.coreboot.org/21003
) Change subject: ec/lenovo/h8/ssdt: Add UWB ACPI interface ...................................................................... Patch Set 1: Verified+1 Build Successful
https://qa.coreboot.org/job/coreboot-gerrit/58537/
: SUCCESS
https://qa.coreboot.org/job/coreboot-checkpatch/13936/
: SUCCESS -- To view, visit
https://review.coreboot.org/21003
To unsubscribe, visit
https://review.coreboot.org/settings
Gerrit-Project: coreboot Gerrit-Branch: master Gerrit-MessageType: comment Gerrit-Change-Id: I8f9a56e45c0d765b0e06b8d3600bd3575dd09491 Gerrit-Change-Number: 21003 Gerrit-PatchSet: 1 Gerrit-Owner: Patrick Rudolph <siro(a)das-labor.org> Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org> Gerrit-Comment-Date: Mon, 14 Aug 2017 17:17:08 +0000 Gerrit-HasComments: No
1
0
0
0
← Newer
1
...
134
135
136
137
138
139
140
...
200
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
Results per page:
10
25
50
100
200