allwinner-r40.c (d780d056f8acdee73a1c34d95733851d58aecd60) allwinner-r40.c (f4f318b41abe76a68ec1d616744ab9d6ec839abc)
1/*
2 * Allwinner R40/A40i/T3 System on Chip emulation
3 *
4 * Copyright (C) 2023 qianfan Zhao <qianfanguijin@163.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

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

29#include "hw/char/serial.h"
30#include "hw/misc/unimp.h"
31#include "hw/usb/hcd-ehci.h"
32#include "hw/loader.h"
33#include "sysemu/sysemu.h"
34#include "hw/arm/allwinner-r40.h"
35#include "hw/misc/allwinner-r40-dramc.h"
36#include "target/arm/cpu-qom.h"
1/*
2 * Allwinner R40/A40i/T3 System on Chip emulation
3 *
4 * Copyright (C) 2023 qianfan Zhao <qianfanguijin@163.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

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

29#include "hw/char/serial.h"
30#include "hw/misc/unimp.h"
31#include "hw/usb/hcd-ehci.h"
32#include "hw/loader.h"
33#include "sysemu/sysemu.h"
34#include "hw/arm/allwinner-r40.h"
35#include "hw/misc/allwinner-r40-dramc.h"
36#include "target/arm/cpu-qom.h"
37#include "target/arm/gtimer.h"
37
38/* Memory map */
39const hwaddr allwinner_r40_memmap[] = {
40 [AW_R40_DEV_SRAM_A1] = 0x00000000,
41 [AW_R40_DEV_SRAM_A2] = 0x00004000,
42 [AW_R40_DEV_SRAM_A3] = 0x00008000,
43 [AW_R40_DEV_SRAM_A4] = 0x0000b400,
44 [AW_R40_DEV_SRAMC] = 0x01c00000,

--- 543 unchanged lines hidden ---
38
39/* Memory map */
40const hwaddr allwinner_r40_memmap[] = {
41 [AW_R40_DEV_SRAM_A1] = 0x00000000,
42 [AW_R40_DEV_SRAM_A2] = 0x00004000,
43 [AW_R40_DEV_SRAM_A3] = 0x00008000,
44 [AW_R40_DEV_SRAM_A4] = 0x0000b400,
45 [AW_R40_DEV_SRAMC] = 0x01c00000,

--- 543 unchanged lines hidden ---