2016-01-29 23:50:40 +01:00
|
|
|
/*
|
|
|
|
* Raspberry Pi emulation (c) 2012 Gregory Estrade
|
|
|
|
* Upstreaming code cleanup [including bcm2835_*] (c) 2013 Jan Petrous
|
|
|
|
*
|
|
|
|
* Rasperry Pi 2 emulation and refactoring Copyright (c) 2015, Microsoft
|
|
|
|
* Written by Andrew Baumann
|
|
|
|
*
|
2020-03-23 18:22:30 +01:00
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
2016-01-29 23:50:40 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BCM2835_PERIPHERALS_H
|
|
|
|
#define BCM2835_PERIPHERALS_H
|
|
|
|
|
|
|
|
#include "hw/sysbus.h"
|
2019-05-07 18:34:04 +02:00
|
|
|
#include "hw/char/pl011.h"
|
2016-03-16 18:06:01 +01:00
|
|
|
#include "hw/char/bcm2835_aux.h"
|
2016-03-16 18:06:01 +01:00
|
|
|
#include "hw/display/bcm2835_fb.h"
|
2016-03-16 18:06:02 +01:00
|
|
|
#include "hw/dma/bcm2835_dma.h"
|
2022-07-16 13:32:10 +02:00
|
|
|
#include "hw/or-irq.h"
|
2016-01-29 23:50:40 +01:00
|
|
|
#include "hw/intc/bcm2835_ic.h"
|
|
|
|
#include "hw/misc/bcm2835_property.h"
|
2017-02-28 13:08:13 +01:00
|
|
|
#include "hw/misc/bcm2835_rng.h"
|
2016-01-29 23:50:40 +01:00
|
|
|
#include "hw/misc/bcm2835_mbox.h"
|
2020-05-21 01:53:43 +02:00
|
|
|
#include "hw/misc/bcm2835_mphi.h"
|
2019-10-20 01:47:01 +02:00
|
|
|
#include "hw/misc/bcm2835_thermal.h"
|
2020-10-10 15:57:49 +02:00
|
|
|
#include "hw/misc/bcm2835_cprman.h"
|
2021-06-25 23:02:09 +02:00
|
|
|
#include "hw/misc/bcm2835_powermgt.h"
|
2016-01-29 23:50:40 +01:00
|
|
|
#include "hw/sd/sdhci.h"
|
2017-02-28 15:55:11 +01:00
|
|
|
#include "hw/sd/bcm2835_sdhost.h"
|
|
|
|
#include "hw/gpio/bcm2835_gpio.h"
|
2019-10-20 01:47:03 +02:00
|
|
|
#include "hw/timer/bcm2835_systmr.h"
|
2020-05-21 01:53:48 +02:00
|
|
|
#include "hw/usb/hcd-dwc2.h"
|
2019-09-26 19:34:13 +02:00
|
|
|
#include "hw/misc/unimp.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2016-01-29 23:50:40 +01:00
|
|
|
|
|
|
|
#define TYPE_BCM2835_PERIPHERALS "bcm2835-peripherals"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(BCM2835PeripheralState, BCM2835_PERIPHERALS)
|
2016-01-29 23:50:40 +01:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct BCM2835PeripheralState {
|
2016-01-29 23:50:40 +01:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
|
|
|
MemoryRegion peri_mr, peri_mr_alias, gpu_bus_mr, mbox_mr;
|
|
|
|
MemoryRegion ram_alias[4];
|
|
|
|
qemu_irq irq, fiq;
|
|
|
|
|
2019-10-20 01:47:03 +02:00
|
|
|
BCM2835SystemTimerState systmr;
|
2020-05-21 01:53:43 +02:00
|
|
|
BCM2835MphiState mphi;
|
2020-09-21 05:47:28 +02:00
|
|
|
UnimplementedDeviceState txp;
|
2019-09-26 19:34:13 +02:00
|
|
|
UnimplementedDeviceState armtmr;
|
2021-06-25 23:02:09 +02:00
|
|
|
BCM2835PowerMgtState powermgt;
|
2020-10-10 15:57:49 +02:00
|
|
|
BCM2835CprmanState cprman;
|
2019-05-07 18:34:05 +02:00
|
|
|
PL011State uart0;
|
2016-03-16 18:06:01 +01:00
|
|
|
BCM2835AuxState aux;
|
2016-03-16 18:06:01 +01:00
|
|
|
BCM2835FBState fb;
|
2016-03-16 18:06:02 +01:00
|
|
|
BCM2835DMAState dma;
|
2023-01-13 21:01:38 +01:00
|
|
|
OrIRQState orgated_dma_irq;
|
2016-01-29 23:50:40 +01:00
|
|
|
BCM2835ICState ic;
|
|
|
|
BCM2835PropertyState property;
|
2017-02-28 13:08:13 +01:00
|
|
|
BCM2835RngState rng;
|
2016-01-29 23:50:40 +01:00
|
|
|
BCM2835MboxState mboxes;
|
|
|
|
SDHCIState sdhci;
|
2017-02-28 15:55:11 +01:00
|
|
|
BCM2835SDHostState sdhost;
|
|
|
|
BCM2835GpioState gpio;
|
2019-10-20 01:47:01 +02:00
|
|
|
Bcm2835ThermalState thermal;
|
2019-09-26 19:34:13 +02:00
|
|
|
UnimplementedDeviceState i2s;
|
|
|
|
UnimplementedDeviceState spi[1];
|
|
|
|
UnimplementedDeviceState i2c[3];
|
|
|
|
UnimplementedDeviceState otp;
|
|
|
|
UnimplementedDeviceState dbus;
|
|
|
|
UnimplementedDeviceState ave0;
|
2020-09-21 05:47:28 +02:00
|
|
|
UnimplementedDeviceState v3d;
|
2019-09-26 19:34:13 +02:00
|
|
|
UnimplementedDeviceState bscsl;
|
|
|
|
UnimplementedDeviceState smi;
|
2020-05-21 01:53:48 +02:00
|
|
|
DWC2State dwc2;
|
2019-09-26 19:34:13 +02:00
|
|
|
UnimplementedDeviceState sdramc;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2016-01-29 23:50:40 +01:00
|
|
|
|
|
|
|
#endif /* BCM2835_PERIPHERALS_H */
|