2016-01-29 23:50:42 +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:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BCM2836_H
|
|
|
|
#define BCM2836_H
|
|
|
|
|
|
|
|
#include "hw/arm/bcm2835_peripherals.h"
|
|
|
|
#include "hw/intc/bcm2836_control.h"
|
2019-08-12 07:23:31 +02:00
|
|
|
#include "target/arm/cpu.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2016-01-29 23:50:42 +01:00
|
|
|
|
2018-03-13 16:34:54 +01:00
|
|
|
#define TYPE_BCM283X "bcm283x"
|
2020-09-16 20:25:18 +02:00
|
|
|
OBJECT_DECLARE_TYPE(BCM283XState, BCM283XClass, BCM283X)
|
2016-01-29 23:50:42 +01:00
|
|
|
|
2018-03-13 16:34:54 +01:00
|
|
|
#define BCM283X_NCPUS 4
|
2016-01-29 23:50:42 +01:00
|
|
|
|
2018-03-13 16:34:55 +01:00
|
|
|
/* These type names are for specific SoCs; other than instantiating
|
|
|
|
* them, code using these devices should always handle them via the
|
|
|
|
* BCM283x base class, so they have no BCM2836(obj) etc macros.
|
|
|
|
*/
|
2020-10-24 19:01:24 +02:00
|
|
|
#define TYPE_BCM2835 "bcm2835"
|
2018-03-13 16:34:55 +01:00
|
|
|
#define TYPE_BCM2836 "bcm2836"
|
|
|
|
#define TYPE_BCM2837 "bcm2837"
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct BCM283XState {
|
2016-01-29 23:50:42 +01:00
|
|
|
/*< private >*/
|
|
|
|
DeviceState parent_obj;
|
|
|
|
/*< public >*/
|
|
|
|
|
|
|
|
uint32_t enabled_cpus;
|
|
|
|
|
2019-10-20 01:47:05 +02:00
|
|
|
struct {
|
|
|
|
ARMCPU core;
|
|
|
|
} cpu[BCM283X_NCPUS];
|
2016-01-29 23:50:42 +01:00
|
|
|
BCM2836ControlState control;
|
|
|
|
BCM2835PeripheralState peripherals;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2016-01-29 23:50:42 +01:00
|
|
|
|
|
|
|
#endif /* BCM2836_H */
|