bcm2836.c (d780d056f8acdee73a1c34d95733851d58aecd60) | bcm2836.c (f4f318b41abe76a68ec1d616744ab9d6ec839abc) |
---|---|
1/* 2 * Raspberry Pi emulation (c) 2012 Gregory Estrade 3 * Upstreaming code cleanup [including bcm2835_*] (c) 2013 Jan Petrous 4 * 5 * Rasperry Pi 2 emulation and refactoring Copyright (c) 2015, Microsoft 6 * Written by Andrew Baumann 7 * 8 * This work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 */ 11 12#include "qemu/osdep.h" 13#include "qapi/error.h" 14#include "qemu/module.h" 15#include "hw/arm/bcm2836.h" 16#include "hw/arm/raspi_platform.h" 17#include "hw/sysbus.h" 18#include "target/arm/cpu-qom.h" | 1/* 2 * Raspberry Pi emulation (c) 2012 Gregory Estrade 3 * Upstreaming code cleanup [including bcm2835_*] (c) 2013 Jan Petrous 4 * 5 * Rasperry Pi 2 emulation and refactoring Copyright (c) 2015, Microsoft 6 * Written by Andrew Baumann 7 * 8 * This work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 */ 11 12#include "qemu/osdep.h" 13#include "qapi/error.h" 14#include "qemu/module.h" 15#include "hw/arm/bcm2836.h" 16#include "hw/arm/raspi_platform.h" 17#include "hw/sysbus.h" 18#include "target/arm/cpu-qom.h" |
19#include "target/arm/gtimer.h" |
|
19 20struct BCM283XClass { 21 /*< private >*/ 22 DeviceClass parent_class; 23 /*< public >*/ 24 const char *name; 25 const char *cpu_type; 26 unsigned core_count; --- 211 unchanged lines hidden --- | 20 21struct BCM283XClass { 22 /*< private >*/ 23 DeviceClass parent_class; 24 /*< public >*/ 25 const char *name; 26 const char *cpu_type; 27 unsigned core_count; --- 211 unchanged lines hidden --- |