 34602f9904
			
		
	
	
		34602f9904
		
	
	
	
	
		
			
			Reviewed-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> Signed-off-by: Andreas Konopik <andreas.konopik@efs-auto.de> Signed-off-by: David Brenken <david.brenken@efs-auto.de> Signed-off-by: Georg Hofstetter <georg.hofstetter@efs-auto.de> Signed-off-by: Robert Rasche <robert.rasche@efs-auto.de> Signed-off-by: Lars Biermanski <lars.biermanski@efs-auto.de> Message-Id: <20201109165055.10508-2-david.brenken@efs-auto.org> Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Infineon TriBoard System emulation.
 | |
|  *
 | |
|  * Copyright (c) 2020 Andreas Konopik <andreas.konopik@efs-auto.de>
 | |
|  * Copyright (c) 2020 David Brenken <david.brenken@efs-auto.de>
 | |
|  *
 | |
|  * This library is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * This library is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|  * Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public
 | |
|  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| #include "qemu/osdep.h"
 | |
| #include "qapi/error.h"
 | |
| #include "hw/boards.h"
 | |
| #include "hw/arm/boot.h"
 | |
| #include "sysemu/sysemu.h"
 | |
| #include "exec/address-spaces.h"
 | |
| #include "qom/object.h"
 | |
| 
 | |
| #include "hw/tricore/tc27x_soc.h"
 | |
| 
 | |
| #define TYPE_TRIBOARD_MACHINE MACHINE_TYPE_NAME("triboard")
 | |
| typedef struct TriBoardMachineState TriBoardMachineState;
 | |
| typedef struct TriBoardMachineClass TriBoardMachineClass;
 | |
| DECLARE_OBJ_CHECKERS(TriBoardMachineState, TriBoardMachineClass,
 | |
|                      TRIBOARD_MACHINE, TYPE_TRIBOARD_MACHINE)
 | |
| 
 | |
| 
 | |
| struct TriBoardMachineState {
 | |
|     MachineState parent;
 | |
| 
 | |
|     TC27XSoCState tc27x_soc;
 | |
| };
 | |
| 
 | |
| struct TriBoardMachineClass {
 | |
|     MachineClass parent_obj;
 | |
| 
 | |
|     const char *name;
 | |
|     const char *desc;
 | |
|     const char *soc_name;
 | |
| };
 |