Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Evan Lojewski
ast2050-flashrom
Commits
180850e2
Commit
180850e2
authored
21 years ago
by
David Hendricks
Browse files
Options
Download
Email Patches
Plain Diff
Add support for SST49LF0xxA parts
Corresponding to flashrom svn r13 and coreboot v2 svn r1439.
parent
1f12810d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
flash_rom.c
flash_rom.c
+12
-1
No files found.
flash_rom.c
View file @
180850e2
...
...
@@ -62,8 +62,19 @@ struct flashchip flashchips[] = {
probe_39sf020
,
erase_39sf020
,
write_39sf020
,
NULL
},
{
"SST39VF020"
,
SST_ID
,
SST_39VF020
,
NULL
,
256
,
4096
,
probe_39sf020
,
erase_39sf020
,
write_39sf020
,
NULL
},
{
"SST49LF040"
,
SST_ID
,
SST_49LF040
,
NULL
,
512
,
4096
,
{
"SST49LF040"
,
SST_ID
,
SST_49LF040
,
NULL
,
512
,
4096
,
probe_49lf040
,
erase_49lf040
,
write_49lf040
,
NULL
},
{
"SST49LF080A"
,
SST_ID
,
SST_49LF080A
,
NULL
,
1024
,
4096
,
probe_49lf040
,
erase_49lf040
,
write_49lf040
,
NULL
},
{
"SST49LF002A"
,
SST_ID
,
SST_49LF002A
,
NULL
,
256
,
4096
,
probe_49lf040
,
erase_49lf040
,
write_49lf040
,
NULL
},
{
"SST49LF003A"
,
SST_ID
,
SST_49LF003A
,
NULL
,
384
,
4096
,
probe_49lf040
,
erase_49lf040
,
write_49lf040
,
NULL
},
{
"SST49LF004A"
,
SST_ID
,
SST_49LF004A
,
NULL
,
512
,
4096
,
probe_49lf040
,
erase_49lf040
,
write_49lf040
,
NULL
},
{
"SST49LF008A"
,
SST_ID
,
SST_49LF008A
,
NULL
,
1024
,
4096
,
probe_49lf040
,
erase_49lf040
,
write_49lf040
,
NULL
},
//By LYH begin
{
"Pm49FL004"
,
PMC_ID
,
PMC_49FL004
,
NULL
,
512
,
64
*
1024
,
probe_49fl004
,
erase_49fl004
,
write_49fl004
,
NULL
},
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment