42 lines
1.1 KiB
Diff
42 lines
1.1 KiB
Diff
From 13c8c6945856e57958fdf7e4ef338c21e1199f19 Mon Sep 17 00:00:00 2001
|
|
From: Martijn Braam <martijn@brixit.nl>
|
|
Date: Sun, 13 Dec 2020 19:52:09 +0100
|
|
Subject: [PATCH 5/8] Add pinephone-pro-rk3399.h
|
|
|
|
---
|
|
include/configs/pinephone-pro-rk3399.h | 22 ++++++++++++++++++++++
|
|
1 file changed, 22 insertions(+)
|
|
create mode 100644 include/configs/pinephone-pro-rk3399.h
|
|
|
|
diff --git a/include/configs/pinephone-pro-rk3399.h b/include/configs/pinephone-pro-rk3399.h
|
|
new file mode 100644
|
|
index 0000000000..aaaa344839
|
|
--- /dev/null
|
|
+++ b/include/configs/pinephone-pro-rk3399.h
|
|
@@ -0,0 +1,22 @@
|
|
+/* SPDX-License-Identifier: GPL-2.0+ */
|
|
+/*
|
|
+ * Copyright (C) 2016 Rockchip Electronics Co., Ltd
|
|
+ * Copyright (C) 2020 Peter Robinson <pbrobinson at gmail.com>
|
|
+ */
|
|
+
|
|
+#ifndef __PINEPHONE_PRO_RK3399_H
|
|
+#define __PINEPHONE_PRO_RK3399_H
|
|
+
|
|
+#define ROCKCHIP_DEVICE_SETTINGS \
|
|
+ "stdin=serial,usbkbd\0" \
|
|
+ "stdout=serial,vidconsole\0" \
|
|
+ "stderr=serial,vidconsole\0"
|
|
+
|
|
+#include <configs/rk3399_common.h>
|
|
+
|
|
+#define SDRAM_BANK_SIZE (2UL << 30)
|
|
+
|
|
+#define CONFIG_USB_OHCI_NEW
|
|
+#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 2
|
|
+
|
|
+#endif
|
|
--
|
|
2.33.0
|
|
|