allwinner-h3.c (d780d056f8acdee73a1c34d95733851d58aecd60) allwinner-h3.c (f4f318b41abe76a68ec1d616744ab9d6ec839abc)
1/*
2 * Allwinner H3 System on Chip emulation
3 *
4 * Copyright (C) 2019 Niek Linnenbank <nieklinnenbank@gmail.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or

--- 17 unchanged lines hidden (view full) ---

26#include "hw/sysbus.h"
27#include "hw/char/serial.h"
28#include "hw/misc/unimp.h"
29#include "hw/usb/hcd-ehci.h"
30#include "hw/loader.h"
31#include "sysemu/sysemu.h"
32#include "hw/arm/allwinner-h3.h"
33#include "target/arm/cpu-qom.h"
1/*
2 * Allwinner H3 System on Chip emulation
3 *
4 * Copyright (C) 2019 Niek Linnenbank <nieklinnenbank@gmail.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or

--- 17 unchanged lines hidden (view full) ---

26#include "hw/sysbus.h"
27#include "hw/char/serial.h"
28#include "hw/misc/unimp.h"
29#include "hw/usb/hcd-ehci.h"
30#include "hw/loader.h"
31#include "sysemu/sysemu.h"
32#include "hw/arm/allwinner-h3.h"
33#include "target/arm/cpu-qom.h"
34#include "target/arm/gtimer.h"
34
35/* Memory map */
36const hwaddr allwinner_h3_memmap[] = {
37 [AW_H3_DEV_SRAM_A1] = 0x00000000,
38 [AW_H3_DEV_SRAM_A2] = 0x00044000,
39 [AW_H3_DEV_SRAM_C] = 0x00010000,
40 [AW_H3_DEV_SYSCTRL] = 0x01c00000,
41 [AW_H3_DEV_MMC0] = 0x01c0f000,

--- 454 unchanged lines hidden ---
35
36/* Memory map */
37const hwaddr allwinner_h3_memmap[] = {
38 [AW_H3_DEV_SRAM_A1] = 0x00000000,
39 [AW_H3_DEV_SRAM_A2] = 0x00044000,
40 [AW_H3_DEV_SRAM_C] = 0x00010000,
41 [AW_H3_DEV_SYSCTRL] = 0x01c00000,
42 [AW_H3_DEV_MMC0] = 0x01c0f000,

--- 454 unchanged lines hidden ---