Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tools
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
public-release-test-restored
platform
vendor
qcom-opensource
tools
Commits
979abb2b
Commit
979abb2b
authored
8 years ago
by
Linux Build Service Account
Committed by
Gerrit - the friendly Code Review server
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "linux-ramdump-parser-v2: Add support for msm8940 and msm8920"
parents
b21f8e56
c84f8def
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
linux-ramdump-parser-v2/boards.py
+28
-0
28 additions, 0 deletions
linux-ramdump-parser-v2/boards.py
linux-ramdump-parser-v2/cachedumplib.py
+16
-0
16 additions, 0 deletions
linux-ramdump-parser-v2/cachedumplib.py
with
44 additions
and
0 deletions
linux-ramdump-parser-v2/boards.py
+
28
−
0
View file @
979abb2b
...
...
@@ -334,6 +334,18 @@ class Board8937(Board):
self
.
wdog_addr
=
0x8600658
self
.
imem_file_name
=
'
OCIMEM.BIN
'
class
Board8940
(
Board
):
def
__init__
(
self
,
socid
):
super
(
Board8940
,
self
).
__init__
()
self
.
socid
=
socid
self
.
board_num
=
"
8940
"
self
.
cpu
=
'
CORTEXA53
'
self
.
ram_start
=
0x80000000
self
.
smem_addr
=
0x6300000
self
.
phys_offset
=
0x40000000
self
.
imem_start
=
0x8600000
self
.
wdog_addr
=
0x8600658
self
.
imem_file_name
=
'
OCIMEM.BIN
'
class
Board8953
(
Board
):
def
__init__
(
self
,
socid
):
...
...
@@ -362,6 +374,18 @@ class Board8917(Board):
self
.
wdog_addr
=
0x8600658
self
.
imem_file_name
=
'
OCIMEM.BIN
'
class
Board8920
(
Board
):
def
__init__
(
self
,
socid
):
super
(
Board8920
,
self
).
__init__
()
self
.
socid
=
socid
self
.
board_num
=
"
8920
"
self
.
cpu
=
'
CORTEXA53
'
self
.
ram_start
=
0x80000000
self
.
smem_addr
=
0x6300000
self
.
phys_offset
=
0x40000000
self
.
imem_start
=
0x8600000
self
.
wdog_addr
=
0x8600658
self
.
imem_file_name
=
'
OCIMEM.BIN
'
class
BoardCalifornium
(
Board
):
def
__init__
(
self
,
socid
):
...
...
@@ -575,6 +599,8 @@ boards.append(Board9607(socid=299))
boards
.
append
(
Board8937
(
socid
=
294
))
boards
.
append
(
Board8937
(
socid
=
295
))
boards
.
append
(
Board8940
(
socid
=
313
))
boards
.
append
(
Board8953
(
socid
=
293
))
boards
.
append
(
Board8953
(
socid
=
304
))
...
...
@@ -583,6 +609,8 @@ boards.append(Board8917(socid=307))
boards
.
append
(
Board8917
(
socid
=
308
))
boards
.
append
(
Board8917
(
socid
=
309
))
boards
.
append
(
Board8920
(
socid
=
320
))
boards
.
append
(
BoardCalifornium
(
socid
=
279
))
boards
.
append
(
BoardCobalt
(
socid
=
292
))
...
...
This diff is collapsed.
Click to expand it.
linux-ramdump-parser-v2/cachedumplib.py
+
16
−
0
View file @
979abb2b
...
...
@@ -509,6 +509,12 @@ lookuptable[("8917", 0x85, 0x14)] = L1_DCache_A53()
lookuptable
[(
"
8917
"
,
0x86
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8917
"
,
0x87
,
0x14
)]
=
L1_DCache_A53
()
# 8920
lookuptable
[(
"
8920
"
,
0x84
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8920
"
,
0x85
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8920
"
,
0x86
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8920
"
,
0x87
,
0x14
)]
=
L1_DCache_A53
()
# 8937
lookuptable
[(
"
8937
"
,
0x80
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8937
"
,
0x81
,
0x14
)]
=
L1_DCache_A53
()
...
...
@@ -519,6 +525,16 @@ lookuptable[("8937", 0x85, 0x14)] = L1_DCache_A53()
lookuptable
[(
"
8937
"
,
0x86
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8937
"
,
0x87
,
0x14
)]
=
L1_DCache_A53
()
# 8940
lookuptable
[(
"
8940
"
,
0x80
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x81
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x82
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x83
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x84
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x85
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x86
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8940
"
,
0x87
,
0x14
)]
=
L1_DCache_A53
()
# 8953
lookuptable
[(
"
8953
"
,
0x80
,
0x14
)]
=
L1_DCache_A53
()
lookuptable
[(
"
8953
"
,
0x81
,
0x14
)]
=
L1_DCache_A53
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment