summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2022-06-28 16:03:26 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2022-06-28 16:03:26 +0200
commit264119822b44eaf8ec2d7c959fd863a74196d412 (patch)
tree7bf3b63a9e304fd54a3d35d35f9cc00b625900e2
parent2a9250606e00c4729db79811e6c50f9ddeb29188 (diff)
add TC299 mock arch
-rw-r--r--include/arch/infineon-tc299-mock/driver/counter.h31
-rw-r--r--include/arch/infineon-tc299-mock/driver/gpio.h47
-rw-r--r--include/arch/infineon-tc299-mock/driver/stdout.h24
-rw-r--r--include/arch/infineon-tc299-mock/driver/uptime.h32
-rw-r--r--src/arch/infineon-tc299-mock/Kconfig3
-rw-r--r--src/arch/infineon-tc299-mock/Makefile.inc78
-rw-r--r--src/arch/infineon-tc299-mock/arch.cc60
-rw-r--r--src/arch/infineon-tc299-mock/driver/counter.cc10
-rw-r--r--src/arch/infineon-tc299-mock/driver/gpio.cc8
-rw-r--r--src/arch/infineon-tc299-mock/driver/stdout.cc16
-rw-r--r--src/arch/infineon-tc299-mock/prompt1
11 files changed, 310 insertions, 0 deletions
diff --git a/include/arch/infineon-tc299-mock/driver/counter.h b/include/arch/infineon-tc299-mock/driver/counter.h
new file mode 100644
index 0000000..b7330db
--- /dev/null
+++ b/include/arch/infineon-tc299-mock/driver/counter.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef COUNTER_H
+#define COUNTER_H
+
+typedef unsigned int counter_value_t;
+typedef unsigned int counter_overflow_t;
+
+class Counter {
+ private:
+ Counter(const Counter &copy);
+
+ public:
+ counter_value_t value;
+ volatile counter_overflow_t overflow;
+
+ Counter() : overflow(0) {}
+
+ inline void start() {
+ }
+
+ inline void stop() {
+ }
+};
+
+extern Counter counter;
+
+#endif
diff --git a/include/arch/infineon-tc299-mock/driver/gpio.h b/include/arch/infineon-tc299-mock/driver/gpio.h
new file mode 100644
index 0000000..83689b6
--- /dev/null
+++ b/include/arch/infineon-tc299-mock/driver/gpio.h
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef GPIO_H
+#define GPIO_H
+
+class GPIO {
+ private:
+ GPIO(const GPIO &copy);
+
+ public:
+ GPIO () {}
+
+ enum Pin : unsigned char {
+ PIN_INVALID
+ };
+
+ inline void setup() {
+ }
+ inline void led_on(unsigned char id = 0) {
+ }
+ inline void led_off(unsigned char id = 0) {
+ }
+ inline void led_toggle(unsigned char id = 0) {
+ }
+ inline void input(unsigned char const pin) {
+ }
+ inline void input(unsigned char const pin, unsigned char const pull) {
+ }
+ inline void output(unsigned char const pin) {
+ }
+ inline void output(unsigned char const pin, unsigned char const value) {
+ }
+ inline unsigned char read(unsigned char const pin) {
+ return 0;
+ }
+ inline void write(unsigned char const pin, unsigned char value) {
+ }
+ inline void write_mask(unsigned char const pin_base, unsigned char set_mask, unsigned char clear_mask) {
+ }
+};
+
+extern GPIO gpio;
+
+#endif
diff --git a/include/arch/infineon-tc299-mock/driver/stdout.h b/include/arch/infineon-tc299-mock/driver/stdout.h
new file mode 100644
index 0000000..b701dc1
--- /dev/null
+++ b/include/arch/infineon-tc299-mock/driver/stdout.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef STANDARDOUTPUT_H
+#define STANDARDOUTPUT_H
+
+#include "object/outputstream.h"
+
+class StandardOutput : public OutputStream {
+ private:
+ StandardOutput(const StandardOutput &copy);
+
+ public:
+ StandardOutput () {}
+ void setup();
+
+ virtual void put(char c) override;
+};
+
+extern StandardOutput kout;
+
+#endif
diff --git a/include/arch/infineon-tc299-mock/driver/uptime.h b/include/arch/infineon-tc299-mock/driver/uptime.h
new file mode 100644
index 0000000..6f52f8f
--- /dev/null
+++ b/include/arch/infineon-tc299-mock/driver/uptime.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#ifndef UPTIME_H
+#define UPTIME_H
+
+class Uptime {
+ private:
+ Uptime(const Uptime &copy);
+#ifdef TIMER_S
+ uint16_t seconds;
+#endif
+
+ public:
+#ifdef TIMER_S
+ Uptime () : seconds(0) {}
+#else
+ Uptime () {}
+#endif
+ inline uint16_t get_us() { return 0; }
+ inline uint16_t get_cycles() { return 0; }
+#ifdef TIMER_S
+ inline uint16_t get_s() { return seconds; }
+ inline void tick_s() { seconds++; }
+#endif
+};
+
+extern Uptime uptime;
+
+#endif
diff --git a/src/arch/infineon-tc299-mock/Kconfig b/src/arch/infineon-tc299-mock/Kconfig
new file mode 100644
index 0000000..550681f
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/Kconfig
@@ -0,0 +1,3 @@
+# Copyright 2022 Daniel Friesel
+#
+# SPDX-License-Identifier: CC0-1.0
diff --git a/src/arch/infineon-tc299-mock/Makefile.inc b/src/arch/infineon-tc299-mock/Makefile.inc
new file mode 100644
index 0000000..48a8cbc
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/Makefile.inc
@@ -0,0 +1,78 @@
+# vim:ft=make
+#
+# Copyright 2022 Daniel Friesel
+#
+# SPDX-License-Identifier: BSD-2-Clause
+
+CPU = tc29xx
+
+COMMON_FLAGS += -mcpu=${CPU} -DMULTIPASS_ARCH_tc299
+
+ARCH_SHORTNAME = tc299
+
+LICENSE = -mlicense-dir=${HOME}/var/source/aurix-infineon-hightec-tricore
+CC = wine ${HOME}/.wine/drive_c/HighTec/toolchains/tricore/v4.9.3.0-infineon-1.0/bin/tricore-gcc.exe ${LICENSE}
+CXX = wine ${HOME}/.wine/drive_c/HighTec/toolchains/tricore/v4.9.3.0-infineon-1.0/bin/tricore-g++.exe ${LICENSE}
+OBJCOPY = wine ${HOME}/.wine/drive_c/HighTec/toolchains/tricore/v4.9.3.0-infineon-1.0/bin/tricore-objcopy.exe ${LICENSE}
+OBJDUMP = wine ${HOME}/.wine/drive_c/HighTec/toolchains/tricore/v4.9.3.0-infineon-1.0/bin/tricore-objdump.exe ${LICENSE}
+SIZE = wine ${HOME}/.wine/drive_c/HighTec/toolchains/tricore/v4.9.3.0-infineon-1.0/bin/tricore-size.exe
+
+CXX_TARGETS += src/arch/infineon-tc299-mock/arch.cc
+CXX_TARGETS += src/arch/infineon-tc299-mock/driver/gpio.cc
+CXX_TARGETS += src/arch/infineon-tc299-mock/driver/stdout.cc
+
+ifneq (${cpu_freq}, )
+ COMMON_FLAGS += -DF_CPU=${cpu_freq}UL
+else
+ COMMON_FLAGS += -DF_CPU=300000000UL
+endif
+
+ifneq ($(findstring counter,${arch_drivers}), )
+ CONFIG_arch_infineon_tc299_mock_driver_counter = y
+endif
+
+ifdef CONFIG_arch_infineon_tc299_mock_driver_counter
+ CXX_TARGETS += src/arch/infineon-tc299-mock/driver/counter.cc
+endif
+
+OBJECTS = ${CXX_TARGETS:.cc=.o} ${C_TARGETS:.c=.o} ${ASM_TARGETS:.S=.o}
+
+%.o : %.cc | include/config.h
+ ${QUIET}${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} -c -o $@ ${@:.o=.cc}
+
+%.o : %.c | include/config.h
+ ${QUIET}${CC} ${INCLUDES} ${COMMON_FLAGS} ${CFLAGS} -c -o $@ ${@:.o=.c}
+
+%.o : %.S | include/config.h
+ ${QUIET}${CC} ${INCLUDES} ${COMMON_FLAGS} -Wa,-gstabs,-ggdb -x assembler-with-cpp -c -o $@ ${@:.o=.S}
+
+build/system.elf: ${OBJECTS}
+ ${QUIET}mkdir -p build
+ ${QUIET}${CXX} ${INCLUDES} ${COMMON_FLAGS} ${CXXFLAGS} \
+ -Wl,--gc-sections \
+ -o $@ ${OBJECTS}
+
+program: build/system.elf
+ @echo "Not Implemented"
+ ${QUIET}false
+
+arch_clean:
+ ${QUIET}rm -f ${OBJECTS} build/system.elf
+
+monitor:
+ @echo "Not Implemented"
+ ${QUIET}false
+
+arch_help:
+ @true
+
+arch_info:
+ @echo "CPU Freq: ${cpu_freq} Hz"
+
+attributes: build/system.elf
+ ${QUIET}script/size.py "${SIZE}" text,rodata bss
+
+nfpvalues: build/system.elf
+ ${QUIET}script/nfpvalues.py "${SIZE}" text,rodata bss
+
+.PHONY: arch_clean arch_help arch_info attributes monitor program
diff --git a/src/arch/infineon-tc299-mock/arch.cc b/src/arch/infineon-tc299-mock/arch.cc
new file mode 100644
index 0000000..e219da5
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/arch.cc
@@ -0,0 +1,60 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#include "arch.h"
+
+#ifdef __acweaving
+#define __delay_cycles(x)
+#endif
+
+void Arch::setup(void)
+{
+}
+
+#ifdef CONFIG_wakeup
+extern void wakeup();
+#endif
+
+#if defined(CONFIG_loop)
+extern void loop();
+volatile char run_loop = 0;
+#endif
+
+volatile bool sleep_done = false;
+
+void Arch::sleep_ms(unsigned int const ms)
+{
+}
+
+void Arch::delay_us(unsigned int const us)
+{
+}
+void Arch::delay_ms(unsigned int const ms)
+{
+}
+
+void Arch::idle_loop(void)
+{
+ while (1) {
+#if defined(CONFIG_loop)
+ if (run_loop) {
+ loop();
+ run_loop = 0;
+ }
+#endif
+#ifdef CONFIG_wakeup
+ wakeup();
+#endif
+ }
+}
+
+void Arch::idle(void)
+{
+#ifdef CONFIG_wakeup
+ wakeup();
+#endif
+}
+
+Arch arch;
diff --git a/src/arch/infineon-tc299-mock/driver/counter.cc b/src/arch/infineon-tc299-mock/driver/counter.cc
new file mode 100644
index 0000000..7279806
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/driver/counter.cc
@@ -0,0 +1,10 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#include "arch.h"
+#include "driver/counter.h"
+#include "driver/gpio.h"
+
+Counter counter;
diff --git a/src/arch/infineon-tc299-mock/driver/gpio.cc b/src/arch/infineon-tc299-mock/driver/gpio.cc
new file mode 100644
index 0000000..b66add2
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/driver/gpio.cc
@@ -0,0 +1,8 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#include "driver/gpio.h"
+
+GPIO gpio;
diff --git a/src/arch/infineon-tc299-mock/driver/stdout.cc b/src/arch/infineon-tc299-mock/driver/stdout.cc
new file mode 100644
index 0000000..ccdb7d5
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/driver/stdout.cc
@@ -0,0 +1,16 @@
+/*
+ * Copyright 2022 Daniel Friesel
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+#include "driver/stdout.h"
+
+void StandardOutput::setup()
+{
+}
+
+void StandardOutput::put(char c)
+{
+}
+
+StandardOutput kout;
diff --git a/src/arch/infineon-tc299-mock/prompt b/src/arch/infineon-tc299-mock/prompt
new file mode 100644
index 0000000..23f2083
--- /dev/null
+++ b/src/arch/infineon-tc299-mock/prompt
@@ -0,0 +1 @@
+Infineon TC299 Mock