-
Notifications
You must be signed in to change notification settings - Fork 233
/
Copy pathpmecc_head.py
81 lines (70 loc) · 2.34 KB
/
pmecc_head.py
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
#!/usr/bin/env python3
# Copyright (C) 2006 Microchip Technology Inc. and its subsidiaries
#
# SPDX-License-Identifier: MIT
import struct, sys, json, os
from pprint import pprint
# our module
import bitfieldsparser
def pmecc_get_ecc_bytes(cap, sector_size):
m = 12 + sector_size // 512
return (m * cap + 7) // 8
def gen_pmecc_header(page_size, oob_size, ecc_bits, sector_size):
'''
generate a pmecc header value, which is 32bits.
'''
# print 'page_size: %d, oob_size: %d, ecc_bits: %d, sector_size: %d' \
# % (page_size, oob_size, ecc_bits, sector_size)
nbSectorPerPage = page_size // sector_size
eccOffset = oob_size - nbSectorPerPage * pmecc_get_ecc_bytes(ecc_bits, sector_size)
#print 'eccOffset = %d, nbSector = %d, nbSectorPerPage = %d' % (eccOffset, nbSectorPerPage, nbSectorPerPage)
######## name : value (the excceed field will be ignored)
#
# name should be same as .json struct[] array's name.
maps = {
"key" : 0xc,
"usePmecc" : (ecc_bits > 1),
"nbSectorPerPage" : nbSectorPerPage,
"spareSize" : oob_size,
"eccBitReq" : 2 if ecc_bits < 2 else ecc_bits,
"sectorSize" : sector_size,
"eccOffset" : eccOffset,
}
path_list = [
os.getcwd(),
os.path.join(os.getcwd(), 'scripts'),
]
for path in path_list:
fname = os.path.join(path, 'pmecc_head.json')
if os.path.isfile(fname):
json_file=open(fname)
data = json.load(json_file)
val = bitfieldsparser.convert_bitfield(data["pmecc_header"]["struct"], maps)
#print 'val = 0x%x' % val
json_file.close()
return val
sys.exit('Cannot find pmecc_head.json!')
# given
# 1. .json file name, which descripts every bit field of a structure
# 2. structure name: which is for the val.
# 3. val: values that need to be parsered by .json
#
# output
# human readable string description for each bit fields
def display_pmecc_header(file_name, val):
name = "pmecc_header"
json_file=open(file_name)
data = json.load(json_file)
#pprint(data["pmecc_header"]["usePmecc"])
if name in data:
bitfieldsparser.parse_bitfield(data[name]["struct"], val)
else:
print('Error: Cannot find the key name: %s in the json file: %s' % (name, file_name))
json_file.close()
# Test code start here...
# val = gen_pmecc_header(8192, 448, 8, 1024)
#val = gen_pmecc_header(2048, 64, 4, 512)
#print('val = 0x%x' % val)
#print('')
#val = 0xc1304805
# display_pmecc_header("pmecc_head.json", val)