6b5bc77c9b
Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
23 lines
1 KiB
C
23 lines
1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* Winbond specific function */
|
|
/* M25Pxx-specific commands */
|
|
#define CMD_W25_WREN 0x06 /* Write Enable */
|
|
#define CMD_W25_WRDI 0x04 /* Write Disable */
|
|
#define CMD_W25_RDSR 0x05 /* Read Status Register */
|
|
#define CMD_W25_WRSR 0x01 /* Write Status Register */
|
|
#define CMD_W25_RDSR2 0x35 /* Read Status2 Register */
|
|
#define CMD_W25_WRSR2 0x31 /* Write Status2 Register */
|
|
#define CMD_W25_READ 0x03 /* Read Data Bytes */
|
|
#define CMD_W25_FAST_READ 0x0b /* Read Data Bytes at Higher Speed */
|
|
#define CMD_W25_PP 0x02 /* Page Program */
|
|
#define CMD_W25_SE 0x20 /* Sector (4K) Erase */
|
|
#define CMD_W25_RDID 0x9f /* Read ID */
|
|
#define CMD_W25_BE 0xd8 /* Block (64K) Erase */
|
|
#define CMD_W25_CE 0xc7 /* Chip Erase */
|
|
#define CMD_W25_DP 0xb9 /* Deep Power-down */
|
|
#define CMD_W25_RES 0xab /* Release from DP and Read Signature */
|
|
#define CMD_VOLATILE_SREG_WREN 0x50 /* Write Enable for Volatile SREG */
|
|
|
|
/* tw: Maximum time to write a flash cell in milliseconds */
|
|
#define WINBOND_FLASH_TIMEOUT 30
|