David Hendricks has posted comments on this change. ( https://review.coreboot.org/23700 )
Change subject: flashchips: Add Winbond W25P80/16/32 support
......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/#/c/23700/2/flashchips.h
File flashchips.h:
https://review.coreboot.org/#/c/23700/2/flashchips.h@916
PS2, Line 916: #define WINBOND_NEX_W25Q128_W 0x6018 /* W25Q128FW; W25Q128FV in QPI mode */
> Should be placed above, i.e. […]
Done
--
To view, visit https://review.coreboot.org/23700
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-MessageType: comment
Gerrit-Change-Id: Ie09ba8e28fee35c42e17ca05219dc673413de93b
Gerrit-Change-Number: 23700
Gerrit-PatchSet: 3
Gerrit-Owner: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Stefan Tauner <stefan.tauner(a)gmx.at>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Tue, 20 Feb 2018 01:09:16 +0000
Gerrit-HasComments: Yes
Gerrit-HasLabels: No
Hello Stefan Tauner, Paul Menzel, build bot (Jenkins), Nico Huber,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/23700
to look at the new patch set (#3).
Change subject: flashchips: Add Winbond W25P80/16/32 support
......................................................................
flashchips: Add Winbond W25P80/16/32 support
This adds support for W25P80/16/32 chips. Most notably these chips only
have two erase commands - one for 64KiB "sectors" and one for chip
erase.
Change-Id: Ie09ba8e28fee35c42e17ca05219dc673413de93b
Signed-off-by: David Hendricks <david.hendricks(a)gmail.com>
---
M flashchips.c
M flashchips.h
2 files changed, 89 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/00/23700/3
--
To view, visit https://review.coreboot.org/23700
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Ie09ba8e28fee35c42e17ca05219dc673413de93b
Gerrit-Change-Number: 23700
Gerrit-PatchSet: 3
Gerrit-Owner: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: Nico Huber <nico.h(a)gmx.de>
Gerrit-Reviewer: Paul Menzel <paulepanter(a)users.sourceforge.net>
Gerrit-Reviewer: Stefan Tauner <stefan.tauner(a)gmx.at>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
David Hendricks has abandoned this change. ( https://review.coreboot.org/23822 )
Change subject: flashchips: Add Winbond W25P80/16/32 support
......................................................................
Abandoned
--
To view, visit https://review.coreboot.org/23822
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: staging
Gerrit-MessageType: abandon
Gerrit-Change-Id: Ie09ba8e28fee35c42e17ca05219dc673413de93b
Gerrit-Change-Number: 23822
Gerrit-PatchSet: 1
Gerrit-Owner: David Hendricks <david.hendricks(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Nico Huber has uploaded this change for review. ( https://review.coreboot.org/23806
Change subject: Be optionally seriously pedantic
......................................................................
Be optionally seriously pedantic
This allows to easily test flashrom with numerous compiler warnings enabled.
A new variable "PEDANTIC" is introduced which disables the feature by default,
but can be overriden on the CLI. Additionally a new phony target "pedantic" is
introduced which disables -Werror, enables the pedantic warnings and calls
the default target recursively. It also has 'clean' as prerequisite to create
consistent output.
---
TODO:
- make it possible to execute other targets with make pedantic(?)
(something like "make pedantic target=djgpp-dos")
- refine warnings used
Change-Id: Ie731bdd2af95fb9eb2ee12c34e7e1998a113cd93
Signed-off-by: Stefan Tauner <stefan.tauner(a)student.tuwien.ac.at>
---
M Makefile
1 file changed, 19 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/06/23806/1
diff --git a/Makefile b/Makefile
index 26f978f..143382a 100644
--- a/Makefile
+++ b/Makefile
@@ -32,11 +32,22 @@
RANLIB ?= ranlib
WARNERROR ?= yes
+PEDANTIC ?= no
ifeq ($(WARNERROR), yes)
CFLAGS += -Werror
endif
+ifeq ($(PEDANTIC), yes)
+CFLAGS += -std=c99 --pedantic -Wextra -fstrict-aliasing\
+ -Wmissing-include-dirs -Winit-self -Wswitch-enum \
+ -Wundef -Wbad-function-cast -Wcast-qual -Wcast-align -Wconversion \
+ -Wstrict-prototypes -Wmissing-declarations -Wredundant-decls\
+ \
+ -Wno-unused-parameter
+ # -Wno-missing-field-initializers -Wno-sign-conversion
+endif
+
# Determine the destination processor architecture
override ARCH := $(strip $(shell LC_ALL=C $(CC) -E arch.h|grep -v '^\#'))
@@ -248,6 +259,7 @@
PROGRAMMER_OBJS = udelay.o programmer.o
all: pciutils features $(PROGRAM)$(EXEC_SUFFIX)
+ @echo $(CFLAGS)
# Set the flashrom version string from the highest revision number
# of the checked out flashrom files.
@@ -671,8 +683,13 @@
@echo Created $(EXPORTDIR)/flashrom-$(RELEASENAME).tar.bz2
djgpp-dos: clean
- make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=no OS_ARCH=DOS
+ $(MAKE) CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip WARNERROR=no OS_ARCH=DOS
-.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable
+pedantic: export WARNERROR=no
+pedantic: export PEDANTIC=yes
+pedantic: clean
+ $(MAKE)
+
+.PHONY: all clean distclean compiler pciutils features export tarball dos featuresavailable pedantic
-include $(OBJS:.o=.d)
--
To view, visit https://review.coreboot.org/23806
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie731bdd2af95fb9eb2ee12c34e7e1998a113cd93
Gerrit-Change-Number: 23806
Gerrit-PatchSet: 1
Gerrit-Owner: Nico Huber <nico.h(a)gmx.de>