[flashrom] [commit] r1805 - trunk
repository service
svn at flashrom.org
Thu May 29 13:51:25 CEST 2014
Author: stefanct
Date: Thu May 29 13:51:24 2014
New Revision: 1805
URL: http://flashrom.org/trac/flashrom/changeset/1805
Log:
jedec.c: constify a bit more.
Also, include chipdrivers.h to find conflicting types between exported
declarations and actual implementations.
Signed-off-by: Stefan Tauner <stefan.tauner at alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner at alumni.tuwien.ac.at>
Modified:
trunk/chipdrivers.h
trunk/jedec.c
Modified: trunk/chipdrivers.h
==============================================================================
--- trunk/chipdrivers.h Wed May 28 15:02:13 2014 (r1804)
+++ trunk/chipdrivers.h Thu May 29 13:51:24 2014 (r1805)
@@ -136,10 +136,8 @@
/* jedec.c */
uint8_t oddparity(uint8_t val);
-void toggle_ready_jedec(struct flashctx *flash, chipaddr dst);
-void data_polling_jedec(struct flashctx *flash, chipaddr dst, uint8_t data);
-int write_byte_program_jedec(struct flashctx *flash, chipaddr bios, uint8_t *src,
- chipaddr dst);
+void toggle_ready_jedec(const struct flashctx *flash, chipaddr dst);
+void data_polling_jedec(const struct flashctx *flash, chipaddr dst, uint8_t data);
int probe_jedec(struct flashctx *flash);
int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
int write_jedec_1(struct flashctx *flash, const uint8_t *buf, unsigned int start, unsigned int len);
Modified: trunk/jedec.c
==============================================================================
--- trunk/jedec.c Wed May 28 15:02:13 2014 (r1804)
+++ trunk/jedec.c Thu May 29 13:51:24 2014 (r1805)
@@ -23,6 +23,7 @@
*/
#include "flash.h"
+#include "chipdrivers.h"
#define MAX_REFLASH_TRIES 0x10
#define MASK_FULL 0xffff
@@ -111,8 +112,7 @@
}
}
-static void start_program_jedec_common(struct flashctx *flash,
- unsigned int mask)
+static void start_program_jedec_common(const struct flashctx *flash, unsigned int mask)
{
chipaddr bios = flash->virtual_memory;
chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
@@ -328,7 +328,7 @@
return 0;
}
-static int write_byte_program_jedec_common(struct flashctx *flash, uint8_t *src,
+static int write_byte_program_jedec_common(const struct flashctx *flash, const uint8_t *src,
chipaddr dst, unsigned int mask)
{
int tried = 0, failed = 0;
@@ -358,7 +358,7 @@
}
/* chunksize is 1 */
-int write_jedec_1(struct flashctx *flash, uint8_t *src, unsigned int start,
+int write_jedec_1(struct flashctx *flash, const uint8_t *src, unsigned int start,
unsigned int len)
{
int i, failed = 0;
@@ -380,11 +380,11 @@
return failed;
}
-static int write_page_write_jedec_common(struct flashctx *flash, uint8_t *src,
+static int write_page_write_jedec_common(struct flashctx *flash, const uint8_t *src,
unsigned int start, unsigned int page_size)
{
int i, tried = 0, failed;
- uint8_t *s = src;
+ const uint8_t *s = src;
chipaddr bios = flash->virtual_memory;
chipaddr dst = bios + start;
chipaddr d = dst;
@@ -428,7 +428,7 @@
* This function is a slightly modified copy of spi_write_chunked.
* Each page is written separately in chunks with a maximum size of chunksize.
*/
-int write_jedec(struct flashctx *flash, uint8_t *buf, unsigned int start,
+int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
int unsigned len)
{
unsigned int i, starthere, lenhere;
More information about the flashrom
mailing list