2016-01-29 23:50:38 +01:00
|
|
|
/*
|
|
|
|
* Raspberry Pi emulation (c) 2012 Gregory Estrade
|
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:38 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BCM2835_PROPERTY_H
|
|
|
|
#define BCM2835_PROPERTY_H
|
|
|
|
|
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#include "net/net.h"
|
2016-03-16 18:06:01 +01:00
|
|
|
#include "hw/display/bcm2835_fb.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2016-01-29 23:50:38 +01:00
|
|
|
|
|
|
|
#define TYPE_BCM2835_PROPERTY "bcm2835-property"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(BCM2835PropertyState, BCM2835_PROPERTY)
|
2016-01-29 23:50:38 +01:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct BCM2835PropertyState {
|
2016-01-29 23:50:38 +01:00
|
|
|
/*< private >*/
|
|
|
|
SysBusDevice busdev;
|
|
|
|
/*< public >*/
|
2016-03-16 18:06:01 +01:00
|
|
|
|
2016-01-29 23:50:38 +01:00
|
|
|
MemoryRegion *dma_mr;
|
|
|
|
AddressSpace dma_as;
|
|
|
|
MemoryRegion iomem;
|
|
|
|
qemu_irq mbox_irq;
|
2016-03-16 18:06:01 +01:00
|
|
|
BCM2835FBState *fbdev;
|
|
|
|
|
2016-01-29 23:50:38 +01:00
|
|
|
MACAddr macaddr;
|
2016-02-11 12:17:32 +01:00
|
|
|
uint32_t board_rev;
|
2016-01-29 23:50:38 +01:00
|
|
|
uint32_t addr;
|
2023-04-25 12:34:31 +02:00
|
|
|
char *command_line;
|
2016-01-29 23:50:38 +01:00
|
|
|
bool pending;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2016-01-29 23:50:38 +01:00
|
|
|
|
|
|
|
#endif
|