bcm2835_mbox.c (69b81893bc28feb678188fbcdce52eff1609bdad) bcm2835_mbox.c (6111a0c0eddf320a0702c3fde17c61bb3dd02963)
1/*
2 * Raspberry Pi emulation (c) 2012 Gregory Estrade
1/*
2 * Raspberry Pi emulation (c) 2012 Gregory Estrade
3 * This code is licensed under the GNU GPLv2 and later.
4 *
5 * This file models the system mailboxes, which are used for
6 * communication with low-bandwidth GPU peripherals. Refs:
7 * https://github.com/raspberrypi/firmware/wiki/Mailboxes
8 * https://github.com/raspberrypi/firmware/wiki/Accessing-mailboxes
3 *
4 * This file models the system mailboxes, which are used for
5 * communication with low-bandwidth GPU peripherals. Refs:
6 * https://github.com/raspberrypi/firmware/wiki/Mailboxes
7 * https://github.com/raspberrypi/firmware/wiki/Accessing-mailboxes
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
9 */
10
11#include "qemu/osdep.h"
12#include "qapi/error.h"
13#include "hw/irq.h"
14#include "hw/misc/bcm2835_mbox.h"
15#include "migration/vmstate.h"
16#include "qemu/log.h"

--- 329 unchanged lines hidden ---
11 */
12
13#include "qemu/osdep.h"
14#include "qapi/error.h"
15#include "hw/irq.h"
16#include "hw/misc/bcm2835_mbox.h"
17#include "migration/vmstate.h"
18#include "qemu/log.h"

--- 329 unchanged lines hidden ---