mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 7da2fb240f
			
		
	
	
		7da2fb240f
		
			
		
	
	
	
	
		
			
			Add basic ACPI infrastructure for RISC-V with below tables.
        1) DSDT with below basic objects
                - CPUs
                - fw_cfg
        2) FADT revision 6 with HW_REDUCED flag
        3) XSDT
        4) RSDP
Add this functionality in a new file virt-acpi-build.c and enable
building this infrastructure.
Signed-off-by: Sunil V L <sunilvl@ventanamicro.com>
Reviewed-by: Andrew Jones <ajones@ventanamicro.com>
Message-ID: <20230302091212.999767-5-sunilvl@ventanamicro.com>
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
		
	
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			751 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			751 B
		
	
	
	
		
			Meson
		
	
	
	
	
	
| riscv_ss = ss.source_set()
 | |
| riscv_ss.add(files('boot.c'), fdt)
 | |
| riscv_ss.add(when: 'CONFIG_RISCV_NUMA', if_true: files('numa.c'))
 | |
| riscv_ss.add(files('riscv_hart.c'))
 | |
| riscv_ss.add(when: 'CONFIG_OPENTITAN', if_true: files('opentitan.c'))
 | |
| riscv_ss.add(when: 'CONFIG_RISCV_VIRT', if_true: files('virt.c'))
 | |
| riscv_ss.add(when: 'CONFIG_SHAKTI_C', if_true: files('shakti_c.c'))
 | |
| riscv_ss.add(when: 'CONFIG_SIFIVE_E', if_true: files('sifive_e.c'))
 | |
| riscv_ss.add(when: 'CONFIG_SIFIVE_U', if_true: files('sifive_u.c'))
 | |
| riscv_ss.add(when: 'CONFIG_SPIKE', if_true: files('spike.c'))
 | |
| riscv_ss.add(when: 'CONFIG_MICROCHIP_PFSOC', if_true: files('microchip_pfsoc.c'))
 | |
| riscv_ss.add(when: 'CONFIG_ACPI', if_true: files('virt-acpi-build.c'))
 | |
| 
 | |
| hw_arch += {'riscv': riscv_ss}
 |