summaryrefslogtreecommitdiff
path: root/src/arch/i386/llshell/ramtest.inc
blob: c02cf451eceb06f100f109d30385b077d97275f3 (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
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
	/*
	 * This is much more of a "Is my SDRAM properly configured?"
	 * test than a "Is my SDRAM faulty?" test.  Not all bits
	 * are tested.   -Tyson
	 */

	jmp	rt_skip
#define RAMTEST 1
#if RAMTEST
	.section ".rom.data"

rt_test:	.string "Testing SDRAM : "
rt_fill:	.string "SDRAM fill:\r\n"
rt_verify:	.string "SDRAM verify:\r\n"
rt_toomany:	.string "Too many errors.\r\n"
rt_done:	.string "Done.\r\n"
	.previous
#endif

ramtest:
#if RAMTEST
	mov %eax, %esi
	mov %ebx, %edi
	mov %esp, %ebp

	CONSOLE_INFO_TX_STRING($rt_test)
	CONSOLE_INFO_TX_HEX32(%esi)
	CONSOLE_INFO_TX_CHAR($'-')
	CONSOLE_INFO_TX_HEX32(%edi)
	CONSOLE_INFO_TX_CHAR($'\r')
	CONSOLE_INFO_TX_CHAR($'\n')

	/* ============== Fill ram block ==== */

	CONSOLE_INFO_TX_STRING($rt_fill)

	mov %esi, %ebx
1:
	cmp $0, %bx
	jne 2f

	/* Display address being filled */
	/* CONSOLE_INFO_TX_HEX32(arg) will overwrite %ebx with arg */

	CONSOLE_INFO_TX_HEX32(%ebx)
	CONSOLE_INFO_TX_CHAR($'\r')
2:
#if	i786
	/* Use a non temporal store to go faster and
	 * to bypass the cache.
	 */
	movnti	%ebx, (%ebx)
#else
	mov %ebx, (%ebx)
#endif
	add $4, %ebx
	cmp %edi, %ebx
	jl 1b

	/* Display final address */

	CONSOLE_INFO_TX_HEX32(%edi)
	CONSOLE_INFO_TX_CHAR($'\r')
	CONSOLE_INFO_TX_CHAR($'\n')

	/* ========= Verify ram block ========== */

	CONSOLE_INFO_TX_STRING($rt_verify)
	mov %esi, %ebx

1:
	cmp $0, %bx
	jne 2f

	/* Display address being tested */

	CONSOLE_INFO_TX_HEX32(%ebx)
	CONSOLE_INFO_TX_CHAR($'\r')
2:
	cmp %ebx, (%ebx)
	jne 4f
3:
	add $4, %ebx
	cmp %edi, %ebx
	jl 1b

	/* Display final address */
	CONSOLE_INFO_TX_HEX32(%edi)
	CONSOLE_INFO_TX_CHAR($'\r')
	CONSOLE_INFO_TX_CHAR($'\n')
	jmp 6f

4:
	/* Display address with error */

	CONSOLE_INFO_TX_HEX32(%ebx)
	CONSOLE_INFO_TX_CHAR($':')

	/* Display data in address with error */

	/* CONSOLE_INFO_TX_HEX32(arg) will overwrite %ebx with arg */

	mov %ebx, %esi
	mov 0(%ebx), %eax
	CONSOLE_INFO_TX_HEX32(%eax)
	mov %esi, %ebx

	CONSOLE_INFO_TX_CHAR($'\r')
	CONSOLE_INFO_TX_CHAR($'\n')
	sub $1, %ecx
	jz 5f
	jmp 3b
5:
	CONSOLE_INFO_TX_STRING($rt_toomany)
	post_code(0xf1)
	jmp	.Lhlt

6:
	CONSOLE_INFO_TX_STRING($rt_done)
	mov %ebp, %esp

#endif
	RETSP

rt_skip: