summaryrefslogtreecommitdiff
path: root/include/configs/neural-compute-module-2.h
diff options
context:
space:
mode:
authorJagan Teki <jagan@edgeble.ai>2022-12-14 23:21:11 +0530
committerKever Yang <kever.yang@rock-chips.com>2023-01-16 18:01:11 +0800
commitb8f1ca95401301c079e0b1baf4387ddedc30d904 (patch)
tree8ea3d170715140a5440f72687404fb4d35c829df /include/configs/neural-compute-module-2.h
parent43e89241f38feff92623c7b3116869b81c1e7f66 (diff)
board: rockchip: Add Edgeble Neu2 IO Board
Neural Compute Module 2(Neu2) IO board is an industrial form factor IO board from Edgeble AI. General features: - microSD slot - MIPI DSI connector - 2x USB Host - 1x USB OTG - Ethernet - mini PCIe - Onboard PoE - RS485, RS232, CAN - Micro Phone array - Speaker - RTC battery slot - 40-pin expansion Neu2 needs to mount on top of this IO board in order to create complete Edgeble Neural Compute Module 2(Neu2) IO platform. Add support for it. Signed-off-by: Jagan Teki <jagan@edgeble.ai>
Diffstat (limited to 'include/configs/neural-compute-module-2.h')
-rw-r--r--include/configs/neural-compute-module-2.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/configs/neural-compute-module-2.h b/include/configs/neural-compute-module-2.h
new file mode 100644
index 0000000000..f0934ae00c
--- /dev/null
+++ b/include/configs/neural-compute-module-2.h
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright (c) 2022 Edgeble AI Technologies Pvt. Ltd.
+ */
+
+#ifndef __NEURAL_COMPUTE_MODULE_2_H
+#define __NEURAL_COMPUTE_MODULE_2_H
+
+#define ROCKCHIP_DEVICE_SETTINGS \
+ "stdout=serial,vidconsole\0" \
+ "stderr=serial,vidconsole\0"
+
+#include <configs/rv1126_common.h>
+
+#undef BOOT_TARGET_DEVICES
+
+#define BOOT_TARGET_DEVICES(func) \
+ func(MMC, mmc, 0) \
+ func(MMC, mmc, 1)
+
+#endif /* __NEURAL_COMPUTE_MODULE_2_H */