blob: c29db8b451ca9778862166ae07bcb42474a699c2 [file] [log] [blame]
Bastian Koppelmanne2d05012014-09-01 12:59:47 +01001/*
2 * TriCore Baseboard System emulation.
3 *
4 * Copyright (c) 2013-2014 Bastian Koppelmann C-Lab/University Paderborn
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
Chetan Panteb853942020-10-23 12:21:57 +00009 * version 2.1 of the License, or (at your option) any later version.
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010010 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20
Peter Maydell61d9f322016-01-26 18:17:26 +000021#include "qemu/osdep.h"
Philippe Mathieu-Daudéb0003252018-06-25 09:42:15 -030022#include "qemu/units.h"
Markus Armbrusterda34e652016-03-14 09:01:28 +010023#include "qapi/error.h"
Paolo Bonzini4771d752016-01-19 21:51:44 +010024#include "cpu.h"
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010025#include "net/net.h"
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010026#include "hw/boards.h"
27#include "hw/loader.h"
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010028#include "elf.h"
29#include "hw/tricore/tricore.h"
Bastian Koppelmann582079c2021-05-12 11:20:33 +010030#include "hw/tricore/tricore_testdevice.h"
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010031#include "qemu/error-report.h"
32
33
34/* Board init. */
35
36static struct tricore_boot_info tricoretb_binfo;
37
38static void tricore_load_kernel(CPUTriCoreState *env)
39{
40 uint64_t entry;
41 long kernel_size;
42
43 kernel_size = load_elf(tricoretb_binfo.kernel_filename, NULL,
Liam Merwick4366e1d2019-01-15 12:18:03 +000044 NULL, NULL, &entry, NULL,
Aleksandar Markovic6cdda0f2020-01-26 23:55:04 +010045 NULL, NULL, 0,
Peter Crosthwaite7ef295e2016-03-04 11:30:21 +000046 EM_TRICORE, 1, 0);
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010047 if (kernel_size <= 0) {
Ishani Chughd0e31a12017-04-13 21:44:39 +053048 error_report("no kernel file '%s'",
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010049 tricoretb_binfo.kernel_filename);
50 exit(1);
51 }
52 env->PC = entry;
53
54}
55
56static void tricore_testboard_init(MachineState *machine, int board_id)
57{
58 TriCoreCPU *cpu;
59 CPUTriCoreState *env;
Bastian Koppelmann582079c2021-05-12 11:20:33 +010060 TriCoreTestDeviceState *test_dev;
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010061
62 MemoryRegion *sysmem = get_system_memory();
63 MemoryRegion *ext_cram = g_new(MemoryRegion, 1);
64 MemoryRegion *ext_dram = g_new(MemoryRegion, 1);
65 MemoryRegion *int_cram = g_new(MemoryRegion, 1);
66 MemoryRegion *int_dram = g_new(MemoryRegion, 1);
67 MemoryRegion *pcp_data = g_new(MemoryRegion, 1);
68 MemoryRegion *pcp_text = g_new(MemoryRegion, 1);
69
Igor Mammedov0f550c52017-10-05 15:51:04 +020070 cpu = TRICORE_CPU(cpu_create(machine->cpu_type));
zhanghailiang8ef2b252014-10-30 10:03:28 +080071 env = &cpu->env;
Peter Maydell98a99ce2017-07-07 15:42:53 +010072 memory_region_init_ram(ext_cram, NULL, "powerlink_ext_c.ram",
Philippe Mathieu-Daudéb0003252018-06-25 09:42:15 -030073 2 * MiB, &error_fatal);
Peter Maydell98a99ce2017-07-07 15:42:53 +010074 memory_region_init_ram(ext_dram, NULL, "powerlink_ext_d.ram",
Philippe Mathieu-Daudéb0003252018-06-25 09:42:15 -030075 4 * MiB, &error_fatal);
76 memory_region_init_ram(int_cram, NULL, "powerlink_int_c.ram", 48 * KiB,
Markus Armbrusterf8ed85a2015-09-11 16:51:43 +020077 &error_fatal);
Philippe Mathieu-Daudéb0003252018-06-25 09:42:15 -030078 memory_region_init_ram(int_dram, NULL, "powerlink_int_d.ram", 48 * KiB,
Markus Armbrusterf8ed85a2015-09-11 16:51:43 +020079 &error_fatal);
Peter Maydell98a99ce2017-07-07 15:42:53 +010080 memory_region_init_ram(pcp_data, NULL, "powerlink_pcp_data.ram",
Philippe Mathieu-Daudéb0003252018-06-25 09:42:15 -030081 16 * KiB, &error_fatal);
Peter Maydell98a99ce2017-07-07 15:42:53 +010082 memory_region_init_ram(pcp_text, NULL, "powerlink_pcp_text.ram",
Philippe Mathieu-Daudéb0003252018-06-25 09:42:15 -030083 32 * KiB, &error_fatal);
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010084
85 memory_region_add_subregion(sysmem, 0x80000000, ext_cram);
86 memory_region_add_subregion(sysmem, 0xa1000000, ext_dram);
87 memory_region_add_subregion(sysmem, 0xd4000000, int_cram);
88 memory_region_add_subregion(sysmem, 0xd0000000, int_dram);
89 memory_region_add_subregion(sysmem, 0xf0050000, pcp_data);
90 memory_region_add_subregion(sysmem, 0xf0060000, pcp_text);
91
Philippe Mathieu-Daudé61f406f2024-02-14 17:44:28 +010092 test_dev = TRICORE_TESTDEVICE(qdev_new(TYPE_TRICORE_TESTDEVICE));
Bastian Koppelmann582079c2021-05-12 11:20:33 +010093 memory_region_add_subregion(sysmem, 0xf0000000, &test_dev->iomem);
94
95
Bastian Koppelmanne2d05012014-09-01 12:59:47 +010096 tricoretb_binfo.ram_size = machine->ram_size;
97 tricoretb_binfo.kernel_filename = machine->kernel_filename;
98
99 if (machine->kernel_filename) {
100 tricore_load_kernel(env);
101 }
102}
103
104static void tricoreboard_init(MachineState *machine)
105{
106 tricore_testboard_init(machine, 0x183);
107}
108
Eduardo Habkoste264d292015-09-04 15:37:08 -0300109static void ttb_machine_init(MachineClass *mc)
Bastian Koppelmanne2d05012014-09-01 12:59:47 +0100110{
Eduardo Habkoste264d292015-09-04 15:37:08 -0300111 mc->desc = "a minimal TriCore board";
112 mc->init = tricoreboard_init;
Igor Mammedov0f550c52017-10-05 15:51:04 +0200113 mc->default_cpu_type = TRICORE_CPU_TYPE_NAME("tc1796");
Bastian Koppelmanne2d05012014-09-01 12:59:47 +0100114}
115
Eduardo Habkoste264d292015-09-04 15:37:08 -0300116DEFINE_MACHINE("tricore_testboard", ttb_machine_init)