-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathraspirev.7
More file actions
333 lines (333 loc) · 4.01 KB
/
raspirev.7
File metadata and controls
333 lines (333 loc) · 4.01 KB
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
'\" t
.TH RASPIREV 7
.
.SH NAME
raspirev \- Raspberry Pi revision codes
.
.
.SH DESCRIPTION
Each distinct Raspberry Pi model revision has a unique revision code. You can
look up a Raspberry Pi's revision code by running:
.PP
.EX
$ \fBcat /proc/cpuinfo\fR
.EE
.PP
The last three lines show the hardware type, the revision code, and the Pi's
unique serial number. For example:
.PP
.EX
Hardware : BCM2835
Revision : a02082
Serial : 00000000765fc593
.EE
.PP
.B Note:
As of the 4.9 kernel, all Pis report BCM2835, even those with BCM2836, BCM2837
and BCM2711 processors. You should not use this string to detect the processor.
Decode the revision code using the information below, or read
.I /sys/firmware/devicetree/base/model
.
.
.SH OLD-STYLE REVISION CODES
The first set of Raspberry Pi models were given sequential hex revision codes
from 0002 to 0015:
.TS
tab(|);
l l l l l .
Code|Model|Revision|RAM|Manufacturer
\_|\_|\_|\_|\_
0002|B|1.0|256MB|Egoman
0003|B|1.0|256MB|Egoman
0004|B|2.0|256MB|Sony UK
0005|B|2.0|256MB|Qisda
0006|B|2.0|256MB|Egoman
0007|A|2.0|256MB|Egoman
0008|A|2.0|256MB|Sony UK
0009|A|2.0|256MB|Qisda
000d|B|2.0|512MB|Egoman
000e|B|2.0|512MB|Sony UK
000f|B|2.0|512MB|Egoman
0010|B+|1.2|512MB|Sony UK
0011|CM1|1.0|512MB|Sony UK
0012|A+|1.1|256MB|Sony UK
0013|B+|1.2|512MB|Embest
0014|CM1|1.0|512MB|Embest
0015|A+|1.1|256MB/512MB|Embest
.TE
.
.
.SH NEW-STYLE REVISION CODES
With the launch of the Raspberry Pi 2, new-style revision codes were
introduced. Rather than being sequential, each bit of the hex code represents a
piece of information about the revision:
.PP
.EX
NOQuuuWuFMMMCCCCPPPPTTTTTTTTRRRR
.EE
.
.TP
.B N
Overvoltage
.PD 0
.RS
.TP
.B 0
Overvoltage allowed
.TP
.B 1
Overvoltage disallowed
.RE
.PD
.
.TP
.B O
OTP Programming; see
.BR raspiotp (7)
.PD 0
.RS
.TP
.B 0
OTP programming allowed
.TP
.B 1
OTP programming disallowed
.RE
.PD
.
.TP
.B Q
OTP Reading; see
.BR raspiotp (7)
.PD 0
.RS
.TP
.B 0
OTP reading allowed
.TP
.B 1
OTP reading disallowed
.RE
.PD
.
.TP
.BR uuu
Unused
.
.TP
.B W
Warranty bit
.PD 0
.RS
.TP
.B 0
Warranty is intact
.TP
.B 1
Warranty has been voided by overclocking
.RE
.PD
.
.TP
.B u
Unused
.
.TP
.B F
New flag
.PD 0
.RS
.TP
.B 1
new-style revision
.TP
.B 0
old-style revision
.RE
.PD
.
.TP
.B MMM
Memory size
.PD 0
.RS
.TP
.B 0
256MB
.TP
.B 1
512MB
.TP
.B 2
1GB
.TP
.B 3
2GB
.TP
.B 4
4GB
.TP
.B 5
8GB
.RE
.PD
.
.TP
.B CCCC
Manufacturer
.PD 0
.RS
.TP
.B 0
Sony UK
.TP
.B 1
Egoman
.TP
.B 2
Embest
.TP
.B 3
Sony Japan
.TP
.B 4
Embest
.TP
.B 5
Stadium
.RE
.PD
.
.TP
.B PPPP
Processor
.PD 0
.RS
.TP
.B 0
BCM2835
.TP
.B 1
BCM2836
.TP
.B 2
BCM2837
.TP
.B 3
BCM2711
.RE
.PD
.
.TP
.B TTTTTTTT
Type
.PD 0
.RS
.TP
.B 0
A
.TP
.B 1
B
.TP
.B 2
A+
.TP
.B 3
B+
.TP
.B 4
2B
.TP
.B 5
Alpha (early prototype)
.TP
.B 6
CM1
.TP
.B 8
3B
.TP
.B 9
Zero
.TP
.B a
CM3
.TP
.B c
Zero W
.TP
.B d
3B+
.TP
.B e
3A+
.TP
.B f
Internal use only
.TP
.B 10
CM3+
.TP
.B 11
4B
.TP
.B 13
400
.TP
.B 14
CM4
.RE
.PD
.
.TP
.B RRRR
Revision (0, 1, 2, etc.)
.PP
New-style revision codes in use at the time of writing:
.TS
tab(|);
l l l l l .
Code|Model|Revision|RAM|Manufacturer
\_|\_|\_|\_|\_
900021|A+|1.1|512MB|Sony UK
900032|B+|1.2|512MB|Sony UK
900092|Zero|1.2|512MB|Sony UK
900093|Zero|1.3|512MB|Sony UK
9000c1|Zero W|1.1|512MB|Sony UK
9020e0|3A+|1.0|512MB|Sony UK
920092|Zero|1.2|512MB|Embest
920093|Zero|1.3|512MB|Embest
900061|CM|1.1|512MB|Sony UK
a01040|2B|1.0|1GB|Sony UK
a01041|2B|1.1|1GB|Sony UK
a02082|3B|1.2|1GB|Sony UK
a020a0|CM3|1.0|1GB|Sony UK
a020d3|3B+|1.3|1GB|Sony UK
a02042|2B (BCM2837)|1.2|1GB|Sony UK
a21041|2B|1.1|1GB|Embest
a22042|2B (BCM2837)|1.2|1GB|Embest
a22082|3B|1.2|1GB|Embest
a220a0|CM3|1.0|1GB|Embest
a32082|3B|1.2|1GB|Sony Japan
a52082|3B|1.2|1GB|Stadium
a22083|3B|1.3|1GB|Embest
a02100|CM3+|1.0|1GB|Sony UK
a03111|4B|1.1|1GB|Sony UK
b03111|4B|1.1|2GB|Sony UK
b03112|4B|1.2|2GB|Sony UK
c03111|4B|1.1|4GB|Sony UK
c03112|4B|1.2|4GB|Sony UK
d03114|4B|1.4|8GB|Sony UK
.TE
.
.
.SH SEE ALSO
.BR raspiotp (7),
.B [SOURCE]
.
.
.SH REFERENCES
.TP
.B [SOURCE]
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-revision-codes