mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
3e7808de05
Generated from hardware using the following command and then padding with 0xff to fill out a power-of-2: xxd -p /sys/bus/spi/devices/spi0.0/spi-nor/sfdp Cc: Michael Walle <michael@walle.cc> Cc: Tudor Ambarus <tudor.ambarus@linaro.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Reviewed-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Joel Stanley <joel@jms.id.au> Message-Id: <20221221122213.1458540-1-linux@roeck-us.net> Signed-off-by: Cédric Le Goater <clg@kaod.org>
31 lines
703 B
C
31 lines
703 B
C
/*
|
|
* M25P80 SFDP
|
|
*
|
|
* Copyright (c) 2020, IBM Corporation.
|
|
*
|
|
* This code is licensed under the GPL version 2 or later. See the
|
|
* COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef HW_M25P80_SFDP_H
|
|
#define HW_M25P80_SFDP_H
|
|
|
|
/*
|
|
* SFDP area has a 3 bytes address space.
|
|
*/
|
|
#define M25P80_SFDP_MAX_SIZE (1 << 24)
|
|
|
|
uint8_t m25p80_sfdp_n25q256a(uint32_t addr);
|
|
|
|
uint8_t m25p80_sfdp_mx25l25635e(uint32_t addr);
|
|
uint8_t m25p80_sfdp_mx25l25635f(uint32_t addr);
|
|
uint8_t m25p80_sfdp_mx66l1g45g(uint32_t addr);
|
|
|
|
uint8_t m25p80_sfdp_w25q256(uint32_t addr);
|
|
uint8_t m25p80_sfdp_w25q512jv(uint32_t addr);
|
|
|
|
uint8_t m25p80_sfdp_w25q01jvq(uint32_t addr);
|
|
|
|
uint8_t m25p80_sfdp_is25wp256(uint32_t addr);
|
|
|
|
#endif
|