summaryrefslogtreecommitdiffstats
path: root/fcp/fcp.sh
blob: 618fb3efe71fe8056cad9d9d7387d59c382d62af (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
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
#!/bin/bash
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: fcp/fcp.sh $
#
# OpenPOWER FFS Project
#
# Contributors Listed Below - COPYRIGHT 2014,2015
# [+] International Business Machines Corp.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied. See the License for the specific language governing
# permissions and limitations under the License.
#
# IBM_PROLOG_END_TAG
#
#     File: ffs cmdline test script
#   Author: Shaun wetzstein <shaun@us.ibm.com>
#     Date: 02/06/13
#
#     Todo:
#	1) function to check syntax of each command

CP=cp
RM=rm
FFS=ffs
FCP=fcp
MKDIR=mkdir
GREP=grep
HEAD=head
HEX=hexdump
CRC=crc32
DD=dd
DIFF=diff
CAT=cat
CP=cp
TRUNC=truncate

TARGET=test.nor
COPY=copy.nor
TMP=/tmp/fcp.$$
URANDOM=/dev/urandom
POFFSET="0x00000,0x10000"

FAIL=1
PASS=0

KB=$((1*1024))
MB=$(($KB*1024))

function expect()
{
	local expect=${1}
	shift
	local command=${*}
	eval $command
	local actual=${?}

	if [[ ${expect} -eq ${actual} ]]; then
		echo "[PASSED] rc: '${command}' ===> expect=${expect}, actual=${actual}" >&2
	else
		echo "[FAILED] rc: '${command}' ===> expect=${expect}, actual=${actual}" >&2
		exit 1
	fi
}

function pass()
{
	expect ${PASS} ${*}
}

function fail()
{
	expect ${FAIL} ${*}
}

function size()
{
	local size=$(stat -L -c %s ${2})
	if [[ ${1} == ${size} ]]; then
		echo "[PASSED] size: '${2}' ===> expect=${1}, actual=${size}"
	else
		echo "[FAILED] size: '${2}' ===> expect=${1}, actual=${size}"
		exit 1
	fi
}

function crc()
{
	local crc=$(${CRC} ${2})
	if [[ ${1} == ${crc} ]]; then
		echo "[PASSED] crc: '${2}' ===> expect=${1}, actual=${crc}"
	else
		echo "[FAILED] crc: '${2}' ===> expect=${1}, actual=${crc}"
		exit 1
	fi
}

function setup()
{
	local target=${TMP}/${TARGET}
	local output=${TMP}/${TARGET}.txt

	pass ${RM} -rf ${TMP}
	pass ${MKDIR} -p ${TMP}
	pass ${RM} -f ${target}

	pass ${FFS} -t ${target} -s 64M -b 64K -p 0x3F0000 -C
	pass ${FFS} -t ${target} -s 64M -b 64K -p 0x7F0000 -C

	for ((j=0; j<2; j++)); do
		local name="logical${j}"
		local base=$((${j}*$MB*4))

		pass ${FFS} -t ${target} -n ${name} -g 0 -l -A
		pass ${FFS} -t ${target} -n ${name} -L > ${output}

		pass ${GREP} ${name} ${output} > /dev/null
		pass ${GREP} "l-----" ${output} > /dev/null

		for ((i=0; i<4; i++)); do
			local full="${name}/entry${i}"
			local offset=$((${base}+${i}*$MB))

			if [[ ${i} -eq 3 ]]; then
				local size=$(($MB-64*${KB}))
			else
				local size=$MB
			fi

			pass ${FFS} -t ${target} -o ${offset} -s ${size} \
			     -g 0 -n ${full} -a ${i} -A

			pass ${FFS} -t ${target} -n ${full} -L > ${output}
			pass ${GREP} ${full} ${output} > /dev/null
			pass ${GREP} "d-----" ${output} > /dev/null

			local range=$(printf "%.8x-%.8x" ${offset} \
				    $((${offset}+${size}-1)))

			pass ${GREP} ${range} ${output} > /dev/null
			pass ${GREP} $(printf "%x" ${size}) ${output} > \
			     /dev/null
			pass ${RM} -f ${output}
		done
	done
}

function cleanup()
{
	pass ${RM} -rf ${TMP}
}

function erase()
{
	local target=${TMP}/${TARGET}
	local name="logical"

	for ((i=0; i<4; i++)); do
		local output=${TMP}/entry${i}.hex
		local full=${name}0/entry${i}

		pass ${FCP} ${target}:${full} -E ${i}
		pass ${FCP} -T ${target}:${full}
		pass ${FCP} -R ${target}:${full} - | ${HEX} -C > ${output}

		local p=$(printf "%2.2x %2.2x %2.2x %2.2x" $i $i $i $i)
		pass ${GREP} \"${p} ${p}\" ${output}

		pass ${RM} -f ${output}
	done

	pass ${FCP} ${target}:${name}0 -E 0x00
	pass ${FCP} ${target}:${name}1 -E 0x00
}

function write()
{
	local target=${TMP}/${TARGET}
	local output=${TMP}/${TARGET}.txt

	local name="logical"
	local input=${TMP}/write.in
	local output=${TMP}/write.out

	if [[ -z "${1}" ]]; then
		local block=$((64*KB))
	else
		local block=${1}
	fi

	for ((i=0; i<4; i++)); do
		if [[ ${i} -eq 3 ]]; then
			local size=$(($MB-64*${KB}))
		else
			local size=$MB
		fi

		local count=$((${size}/$block))

		for ((c=1; c<=${count}; c++)); do
			pass ${DD} if=${URANDOM} of=${input} bs=${block} \
			     count=${c} 2> /dev/null

			pass ${CRC} ${input} > ${output}
			local crc=$(${CAT} ${output})
			local full=${name}0/entry${i}

			pass ${FCP} ${target}:${full} -E 0x00
			pass ${FCP} -W ${input} ${target}:${full}
			pass ${FCP} ${target}:${full} -U 0=${crc}
			pass ${FCP} ${target}:${full} -R - -f | cat > ${output}

			size $((${c}*${block})) ${output}
			crc  ${crc} ${output}

			local crc=$(printf "%x" ${crc})
			pass "${FCP} ${target}:${full} -o 0x3F0000 -U 0 | \
			     ${GREP} ${crc}" > /dev/null
			pass "${FCP} ${target}:${full} -o 0x7F0000 -U 0 | \
			     ${GREP} ${crc}" > /dev/null

			pass ${RM} -f ${input} ${output}
		done
	done
}

function copy()
{
	local src=${TMP}/${TARGET}
	local dst=${TMP}/${TARGET}.copy

	local input=${TMP}/copy.in
	local output=${TMP}/copy.out

	if [[ -z "${1}" ]]; then
		local block=$((64*KB))
	else
		local block=${1}
	fi

	pass ${TRUNC} -s $(stat -L -c %s ${src}) ${dst}

	for ((i=0; i<4; i++)); do
		if [[ ${i} -eq 3 ]]; then
			local size=$(($MB-64*${KB}))
		else
			local size=$MB
		fi

		local count=$((${size}/$block))

		for ((c=1; c<=${count}; c++)); do
			pass ${DD} if=${URANDOM} of=${input} bs=${block} count=${c} 2> /dev/null
			local crc=$(${CRC} ${input})

			local name="logical0/entry${i}"

			pass ${FCP} ${src}:${name} -E 0x00
			pass ${FCP} ${input} ${src}:${name} -W
			pass ${FCP} ${src}:${name} ${output}.src -f -R
			pass ${FCP} ${src}:${name} -U 0 0=${crc}

			pass ${FCP} ${src}:${name} ${dst}:${name} -C -v -f
			pass ${FCP} ${src}:${name} ${dst}:${name} -M -v

			pass ${FCP} ${dst}:${name} ${output}.dst -R -f
			size $((${c}*${block})) ${output}.src
			size $((${c}*${block})) ${output}.dst
			crc  ${crc} ${output}.src
			crc  ${crc} ${output}.dst
			pass ${DIFF} ${output}.src ${output}.dst

			local crc=$(printf "%x" ${crc})
			pass "${FCP} ${dst}:${name} -o 0x3F0000 -U 0 | \
				${GREP} ${crc}" > /dev/null
			pass "${FCP} ${dst}:${name} -o 0x7F0000 -U 0 | \
				${GREP} ${crc}" > /dev/null

			pass ${RM} -f ${input}* ${output}*
		done
	done

	pass ${FCP} ${src}":logical0" ${src}":logical1" -C -v # logical mirror
	pass ${FCP} ${src}":logical1" ${dst}":logical1" -C -v # logical copy

	expect 2 ${DIFF} ${src} ${dst}
}

function main()
{
	erase
	write $((21*$KB))
	write $((64*$KB))
	copy $((21*$KB))
	copy $((64*$KB))
}

setup
if [[ -z "${1:-}" ]]; then
	main
else
	case "$1" in
		erase	) erase 				;;
		write	) write 				;;
		copy	) copy	 				;;
		*	) echo "$1 not implemented"; exit 1	;;
	esac
	exit 0;
fi
cleanup
OpenPOWER on IntegriCloud