2011-01-24 11:56:52 +00:00
|
|
|
/*
|
|
|
|
* QEMU GRLIB Components
|
|
|
|
*
|
2019-05-15 12:31:28 +00:00
|
|
|
* Copyright (c) 2010-2019 AdaCore
|
2011-01-24 11:56:52 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2016-06-29 11:47:03 +00:00
|
|
|
#ifndef GRLIB_H
|
|
|
|
#define GRLIB_H
|
2011-01-24 11:56:52 +00:00
|
|
|
|
2013-02-04 14:40:22 +00:00
|
|
|
#include "hw/qdev.h"
|
|
|
|
#include "hw/sysbus.h"
|
2011-01-24 11:56:52 +00:00
|
|
|
|
|
|
|
/* Emulation of GrLib device is base on the GRLIB IP Core User's Manual:
|
|
|
|
* http://www.gaisler.com/products/grlib/grip.pdf
|
|
|
|
*/
|
|
|
|
|
2011-01-24 11:56:53 +00:00
|
|
|
/* IRQMP */
|
2019-05-15 12:31:28 +00:00
|
|
|
#define TYPE_GRLIB_IRQMP "grlib,irqmp"
|
2011-01-24 11:56:53 +00:00
|
|
|
|
|
|
|
typedef void (*set_pil_in_fn) (void *opaque, uint32_t pil_in);
|
|
|
|
|
|
|
|
void grlib_irqmp_set_irq(void *opaque, int irq, int level);
|
|
|
|
|
|
|
|
void grlib_irqmp_ack(DeviceState *dev, int intno);
|
|
|
|
|
2011-01-24 11:56:52 +00:00
|
|
|
/* GPTimer */
|
2019-05-15 12:31:29 +00:00
|
|
|
#define TYPE_GRLIB_GPTIMER "grlib,gptimer"
|
2011-01-24 11:56:52 +00:00
|
|
|
|
2011-01-24 11:56:54 +00:00
|
|
|
/* APB UART */
|
|
|
|
|
|
|
|
static inline
|
2012-10-23 10:30:10 +00:00
|
|
|
DeviceState *grlib_apbuart_create(hwaddr base,
|
2016-12-07 13:20:22 +00:00
|
|
|
Chardev *serial,
|
2011-01-24 11:56:54 +00:00
|
|
|
qemu_irq irq)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
|
|
|
|
dev = qdev_create(NULL, "grlib,apbuart");
|
|
|
|
qdev_prop_set_chr(dev, "chrdev", serial);
|
|
|
|
|
2015-02-04 17:33:03 +00:00
|
|
|
qdev_init_nofail(dev);
|
2011-01-24 11:56:54 +00:00
|
|
|
|
2013-01-20 01:47:33 +00:00
|
|
|
sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, base);
|
2011-01-24 11:56:54 +00:00
|
|
|
|
2013-01-20 01:47:33 +00:00
|
|
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), 0, irq);
|
2011-01-24 11:56:54 +00:00
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2016-06-29 11:47:03 +00:00
|
|
|
#endif /* GRLIB_H */
|