1 /* 2 * QEMU PowerNV PNOR simple model 3 * 4 * Copyright (c) 2019, IBM Corporation. 5 * 6 * This code is licensed under the GPL version 2 or later. See the 7 * COPYING file in the top-level directory. 8 */ 9 10 #ifndef PPC_PNV_PNOR_H 11 #define PPC_PNV_PNOR_H 12 13 #include "hw/sysbus.h" 14 15 /* 16 * PNOR offset on the LPC FW address space 17 */ 18 #define PNOR_SPI_OFFSET 0x0c000000UL 19 20 #define TYPE_PNV_PNOR "pnv-pnor" 21 OBJECT_DECLARE_SIMPLE_TYPE(PnvPnor, PNV_PNOR) 22 23 struct PnvPnor { 24 SysBusDevice parent_obj; 25 26 BlockBackend *blk; 27 28 uint8_t *storage; 29 int64_t size; 30 MemoryRegion mmio; 31 }; 32 33 #endif /* PPC_PNV_PNOR_H */ 34