blob: b9b5de4f6d7da582ffd709f496c72ab7db02606d (
plain)
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
|
## SPDX-License-Identifier: GPL-2.0-only
config USE_DDR5
bool
default n
help
system supports DDR5 memory
config USE_LPDDR4
bool
default n
help
system supports LPDDR4 memory
config USE_DDR4
bool
default n
help
system supports DDR4 memory
config USE_DDR3
bool
default n
help
system supports DDR3 memory
config USE_DDR2
bool
default n
help
system supports DDR2 memory
|