mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 21bde1ecb6
			
		
	
	
		21bde1ecb6
		
	
	
	
	
		
			
			This addresses the comments from v22.
The functional changes are (the VOF ones need retesting with Pegasos2):
(VOF) setprop will start failing if the machine class callback
did not handle it;
(VOF) unit addresses are lowered in path_offset();
(SPAPR) /chosen/bootargs is initialized from kernel_cmdline if
the client did not change it.
Fixes: 5c991e5d4378 ("spapr: Implement Open Firmware client interface")
Cc: BALATON Zoltan <balaton@eik.bme.hu>
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Message-Id: <20210708065625.548396-1-aik@ozlabs.ru>
Tested-by: BALATON Zoltan <balaton@eik.bme.hu>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
		
	
			
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Virtual Open Firmware
 | |
|  *
 | |
|  * SPDX-License-Identifier: GPL-2.0-or-later
 | |
|  */
 | |
| #include <stdarg.h>
 | |
| 
 | |
| typedef unsigned char uint8_t;
 | |
| typedef unsigned short uint16_t;
 | |
| typedef unsigned long uint32_t;
 | |
| typedef unsigned long long uint64_t;
 | |
| #define NULL (0)
 | |
| typedef unsigned long ihandle;
 | |
| typedef unsigned long phandle;
 | |
| typedef int size_t;
 | |
| 
 | |
| /* globals */
 | |
| extern void _prom_entry(void); /* OF CI entry point (i.e. this firmware) */
 | |
| 
 | |
| void do_boot(unsigned long addr, unsigned long r3, unsigned long r4);
 | |
| 
 | |
| /* libc */
 | |
| int strlen(const char *s);
 | |
| int strcmp(const char *s1, const char *s2);
 | |
| void *memcpy(void *dest, const void *src, size_t n);
 | |
| int memcmp(const void *ptr1, const void *ptr2, size_t n);
 | |
| void *memmove(void *dest, const void *src, size_t n);
 | |
| void *memset(void *dest, int c, size_t size);
 | |
| 
 | |
| /* CI wrappers */
 | |
| void ci_panic(const char *str);
 | |
| phandle ci_finddevice(const char *path);
 | |
| uint32_t ci_getprop(phandle ph, const char *propname, void *prop, int len);
 | |
| 
 | |
| /* booting from -kernel */
 | |
| void boot_from_memory(uint64_t initrd, uint64_t initrdsize);
 | |
| 
 | |
| /* Entry points for CI and RTAS */
 | |
| extern uint32_t ci_entry(uint32_t params);
 | |
| extern unsigned long hv_rtas(unsigned long params);
 | |
| extern unsigned int hv_rtas_size;
 |