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
d918daa8
Commit
d918daa8
authored
19 years ago
by
Stefan Reinauer
Browse files
Options
Download
Email Patches
Plain Diff
Support for Am29F016D
Corresponding to flashrom svn r45 and coreboot v2 svn r2203.
parent
5eaed687
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
flash.h
flash.h
+1
-0
flashchips.c
flashchips.c
+2
-0
No files found.
flash.h
View file @
d918daa8
...
...
@@ -27,6 +27,7 @@ extern struct flashchip flashchips[];
#define AMD_ID 0x01
#define AM_29F040B 0xA4
#define AM_29F016D 0xAD
#define ATMEL_ID 0x1F
/* Winbond Manufacture ID code */
#define AT_29C040A 0xA4
/* Winbond w29c020c device code */
...
...
This diff is collapsed.
Click to expand it.
flashchips.c
View file @
d918daa8
...
...
@@ -42,6 +42,8 @@
struct
flashchip
flashchips
[]
=
{
{
"Am29F040B"
,
AMD_ID
,
AM_29F040B
,
NULL
,
512
,
64
*
1024
,
probe_29f040b
,
erase_29f040b
,
write_29f040b
,
NULL
},
{
"Am29F016D"
,
AMD_ID
,
AM_29F016D
,
NULL
,
2048
,
64
*
1024
,
probe_29f040b
,
erase_29f040b
,
write_29f040b
,
NULL
},
{
"At29C040A"
,
ATMEL_ID
,
AT_29C040A
,
NULL
,
512
,
256
,
probe_jedec
,
erase_chip_jedec
,
write_jedec
,
NULL
},
{
"Mx29f002"
,
MX_ID
,
MX_29F002
,
NULL
,
256
,
64
*
1024
,
...
...
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