Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
openocd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
openocd
Commits
2119c0a7
Commit
2119c0a7
authored
15 years ago
by
Spencer Oliver
Browse files
Options
Downloads
Patches
Plain Diff
STM32: Add Value Line Flash Programming Support
Signed-off-by:
Spencer Oliver
<
ntfreak@users.sourceforge.net
>
parent
381ce430
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/flash/nor/stm32x.c
+36
-0
36 additions, 0 deletions
src/flash/nor/stm32x.c
with
36 additions
and
0 deletions
src/flash/nor/stm32x.c
+
36
−
0
View file @
2119c0a7
...
@@ -743,6 +743,21 @@ static int stm32x_probe(struct flash_bank *bank)
...
@@ -743,6 +743,21 @@ static int stm32x_probe(struct flash_bank *bank)
num_pages
=
256
;
num_pages
=
256
;
}
}
}
}
else
if
((
device_id
&
0x7ff
)
==
0x420
)
{
/* value line density - we have 1k pages
* 4 pages for a protection area */
page_size
=
1024
;
stm32x_info
->
ppage_size
=
4
;
/* check for early silicon */
if
(
num_pages
==
0xffff
)
{
/* number of sectors may be incorrrect on early silicon */
LOG_WARNING
(
"STM32 flash size failed, probe inaccurate - assuming 128k flash"
);
num_pages
=
128
;
}
}
else
else
{
{
LOG_WARNING
(
"Cannot identify target as a STM32 family."
);
LOG_WARNING
(
"Cannot identify target as a STM32 family."
);
...
@@ -884,6 +899,27 @@ static int stm32x_info(struct flash_bank *bank, char *buf, int buf_size)
...
@@ -884,6 +899,27 @@ static int stm32x_info(struct flash_bank *bank, char *buf, int buf_size)
break
;
break
;
}
}
}
}
else
if
((
device_id
&
0x7ff
)
==
0x420
)
{
printed
=
snprintf
(
buf
,
buf_size
,
"stm32x (Value) - Rev: "
);
buf
+=
printed
;
buf_size
-=
printed
;
switch
(
device_id
>>
16
)
{
case
0x1000
:
snprintf
(
buf
,
buf_size
,
"A"
);
break
;
case
0x1001
:
snprintf
(
buf
,
buf_size
,
"Z"
);
break
;
default:
snprintf
(
buf
,
buf_size
,
"unknown"
);
break
;
}
}
else
else
{
{
snprintf
(
buf
,
buf_size
,
"Cannot identify target as a stm32x
\n
"
);
snprintf
(
buf
,
buf_size
,
"Cannot identify target as a stm32x
\n
"
);
...
...
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