mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 51b6c1bbc3
			
		
	
	
		51b6c1bbc3
		
	
	
	
	
		
			
			Add '-drive' support to OTP device. Allow users to assign a raw file as OTP image. test commands for 16k otp.img filled with zero: $ dd if=/dev/zero of=./otp.img bs=1k count=16 $ ./qemu-system-riscv64 -M sifive_u -m 256M -nographic -bios none \ -kernel ../opensbi/build/platform/sifive/fu540/firmware/fw_payload.elf \ -d guest_errors -drive if=none,format=raw,file=otp.img Signed-off-by: Green Wan <green.wan@sifive.com> Reviewed-by: Bin Meng <bin.meng@windriver.com> Tested-by: Bin Meng <bin.meng@windriver.com> Acked-by: Alistair Francis <alistair.francis@wdc.com> Message-id: 20201020033732.12921-3-green.wan@sifive.com Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU SiFive U OTP (One-Time Programmable) Memory interface
 | |
|  *
 | |
|  * Copyright (c) 2019 Bin Meng <bmeng.cn@gmail.com>
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or modify it
 | |
|  * under the terms and conditions of the GNU General Public License,
 | |
|  * version 2 or later, as published by the Free Software Foundation.
 | |
|  *
 | |
|  * This program is distributed in the hope it will be useful, but WITHOUT
 | |
|  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 | |
|  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 | |
|  * more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License along with
 | |
|  * this program.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #ifndef HW_SIFIVE_U_OTP_H
 | |
| #define HW_SIFIVE_U_OTP_H
 | |
| #include "qom/object.h"
 | |
| 
 | |
| #define SIFIVE_U_OTP_PA         0x00
 | |
| #define SIFIVE_U_OTP_PAIO       0x04
 | |
| #define SIFIVE_U_OTP_PAS        0x08
 | |
| #define SIFIVE_U_OTP_PCE        0x0C
 | |
| #define SIFIVE_U_OTP_PCLK       0x10
 | |
| #define SIFIVE_U_OTP_PDIN       0x14
 | |
| #define SIFIVE_U_OTP_PDOUT      0x18
 | |
| #define SIFIVE_U_OTP_PDSTB      0x1C
 | |
| #define SIFIVE_U_OTP_PPROG      0x20
 | |
| #define SIFIVE_U_OTP_PTC        0x24
 | |
| #define SIFIVE_U_OTP_PTM        0x28
 | |
| #define SIFIVE_U_OTP_PTM_REP    0x2C
 | |
| #define SIFIVE_U_OTP_PTR        0x30
 | |
| #define SIFIVE_U_OTP_PTRIM      0x34
 | |
| #define SIFIVE_U_OTP_PWE        0x38
 | |
| 
 | |
| #define SIFIVE_U_OTP_PWE_EN     (1 << 0)
 | |
| 
 | |
| #define SIFIVE_U_OTP_PCE_EN     (1 << 0)
 | |
| 
 | |
| #define SIFIVE_U_OTP_PDSTB_EN   (1 << 0)
 | |
| 
 | |
| #define SIFIVE_U_OTP_PTRIM_EN   (1 << 0)
 | |
| 
 | |
| #define SIFIVE_U_OTP_PA_MASK        0xfff
 | |
| #define SIFIVE_U_OTP_NUM_FUSES      0x1000
 | |
| #define SIFIVE_U_OTP_FUSE_WORD      4
 | |
| #define SIFIVE_U_OTP_SERIAL_ADDR    0xfc
 | |
| 
 | |
| #define SIFIVE_U_OTP_REG_SIZE       0x1000
 | |
| 
 | |
| #define TYPE_SIFIVE_U_OTP           "riscv.sifive.u.otp"
 | |
| 
 | |
| typedef struct SiFiveUOTPState SiFiveUOTPState;
 | |
| DECLARE_INSTANCE_CHECKER(SiFiveUOTPState, SIFIVE_U_OTP,
 | |
|                          TYPE_SIFIVE_U_OTP)
 | |
| 
 | |
| struct SiFiveUOTPState {
 | |
|     /*< private >*/
 | |
|     SysBusDevice parent_obj;
 | |
| 
 | |
|     /*< public >*/
 | |
|     MemoryRegion mmio;
 | |
|     uint32_t pa;
 | |
|     uint32_t paio;
 | |
|     uint32_t pas;
 | |
|     uint32_t pce;
 | |
|     uint32_t pclk;
 | |
|     uint32_t pdin;
 | |
|     uint32_t pdstb;
 | |
|     uint32_t pprog;
 | |
|     uint32_t ptc;
 | |
|     uint32_t ptm;
 | |
|     uint32_t ptm_rep;
 | |
|     uint32_t ptr;
 | |
|     uint32_t ptrim;
 | |
|     uint32_t pwe;
 | |
|     uint32_t fuse[SIFIVE_U_OTP_NUM_FUSES];
 | |
|     uint32_t fuse_wo[SIFIVE_U_OTP_NUM_FUSES];
 | |
|     /* config */
 | |
|     uint32_t serial;
 | |
|     BlockBackend *blk;
 | |
| };
 | |
| 
 | |
| #endif /* HW_SIFIVE_U_OTP_H */
 |