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
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab 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
27537436
Commit
27537436
authored
10 years ago
by
Linux Build Service Account
Committed by
Gerrit - the friendly Code Review server
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "linux-ramdump-parser-v2: Add support for msm8976"
parents
6c53c25f
ca97d976
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
linux-ramdump-parser-v2/boards.py
+18
-0
18 additions, 0 deletions
linux-ramdump-parser-v2/boards.py
with
18 additions
and
0 deletions
linux-ramdump-parser-v2/boards.py
+
18
−
0
View file @
27537436
...
@@ -296,6 +296,19 @@ class Board8952(Board):
...
@@ -296,6 +296,19 @@ class Board8952(Board):
self
.
wdog_addr
=
0x8600658
self
.
wdog_addr
=
0x8600658
self
.
imem_file_name
=
'
OCIMEM.BIN
'
self
.
imem_file_name
=
'
OCIMEM.BIN
'
class
Board8976
(
Board
):
def
__init__
(
self
,
socid
):
super
(
Board8976
,
self
).
__init__
()
self
.
socid
=
socid
self
.
board_num
=
8976
self
.
cpu
=
'
CORTEXA53
'
self
.
ram_start
=
0x80000000
self
.
smem_addr
=
0x6300000
self
.
phys_offset
=
0x20000000
self
.
imem_start
=
0x8600000
self
.
wdog_addr
=
0x8600658
self
.
imem_file_name
=
'
OCIMEM.BIN
'
boards
=
[]
boards
=
[]
boards
.
append
(
Board9640
(
socid
=
234
))
boards
.
append
(
Board9640
(
socid
=
234
))
...
@@ -464,6 +477,11 @@ boards.append(Board8996(socid=291))
...
@@ -464,6 +477,11 @@ boards.append(Board8996(socid=291))
boards
.
append
(
Board8952
(
socid
=
264
))
boards
.
append
(
Board8952
(
socid
=
264
))
boards
.
append
(
Board8976
(
socid
=
266
))
boards
.
append
(
Board8976
(
socid
=
274
))
boards
.
append
(
Board8976
(
socid
=
277
))
boards
.
append
(
Board8976
(
socid
=
278
))
def
get_supported_boards
():
def
get_supported_boards
():
"""
Called by other part of the code to get a list of boards
"""
"""
Called by other part of the code to get a list of boards
"""
return
boards
return
boards
...
...
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