mirror of
https://review.coreboot.org/flashrom.git
synced 2025-11-14 03:30:41 +01:00
Change-Id: Ic24a54ab520053e49efcba02bd9fa5b8ce69b20a Signed-off-by: Anastasia Klimchuk <aklm@flashrom.org> Reviewed-on: https://review.coreboot.org/c/flashrom/+/89956 Reviewed-by: Antonio Vázquez Blanco <antoniovazquezblanco@gmail.com> Reviewed-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
22 lines
429 B
C
22 lines
429 B
C
/*
|
|
* This file is part of the flashrom project.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* SPDX-FileCopyrightText: 2015 Paul Kocialkowski <contact@paulk.fr>
|
|
*/
|
|
|
|
#ifndef __EDI_H__
|
|
#define __EDI_H__ 1
|
|
|
|
#define EDI_READ 0x30
|
|
#define EDI_WRITE 0x40
|
|
#define EDI_DISABLE 0xf3
|
|
|
|
#define EDI_NOT_READY 0x5f
|
|
#define EDI_READY 0x50
|
|
|
|
#define EDI_READ_BUFFER_LENGTH_DEFAULT 3
|
|
#define EDI_READ_BUFFER_LENGTH_MAX 32
|
|
|
|
#endif
|