hc
2024-11-01 7e970c18f85f99acc678d90128b6e01dce1bf273
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
#ifndef __DDR_TEST_H_
#define __DDR_TEST_H_
#include "rk_pcba_test_led.h"
 
#ifdef PCBA_3308
#define DDR_CAPACITY 256
#endif
 
#ifdef PCBA_PX3SE
#define DDR_CAPACITY 1010
#endif
 
#ifdef PCBA_3229GVA
#define DDR_CAPACITY 256
#endif
 
#ifdef PCBA_1808
#define DDR_CAPACITY 928
#endif
 
#ifdef PCBA_3326
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_PX30
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_3288
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_3328
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_3399
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_3399PRO
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_1126_1109
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_356X
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 4096
#endif
 
#ifdef PCBA_3588
//TODO: According to real DDR Capacity to setting
#define   DDR_CAPACITY 8192
#endif
 
void *ddr_test(void *argv);
 
#endif