From: Johan Jonker <jbx6244@gmail.com>
To: kever.yang@rock-chips.com
Cc: sjg@chromium.org, philipp.tomsich@vrull.eu, lukma@denx.de,
seanga2@gmail.com, u-boot@lists.denx.de
Subject: [PATCH v8 12/15] rockchip: rk3066: add Rikomagic MK808 board
Date: Tue, 18 Jan 2022 01:37:00 +0100 [thread overview]
Message-ID: <20220118003703.10678-13-jbx6244@gmail.com> (raw)
In-Reply-To: <20220118003703.10678-1-jbx6244@gmail.com>
MK808 is a RK3066-based board with 1 USB host and 1 USB OTG port,
HDMI and a micro-SD card slot. It also includes on-board NAND
and 1GB of SDRAM.
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
---
arch/arm/mach-rockchip/rk3066/Kconfig | 9 +++++++++
board/rikomagic/mk808/Kconfig | 15 +++++++++++++++
board/rikomagic/mk808/MAINTAINERS | 6 ++++++
board/rikomagic/mk808/Makefile | 3 +++
board/rikomagic/mk808/mk808.c | 3 +++
5 files changed, 36 insertions(+)
create mode 100644 board/rikomagic/mk808/Kconfig
create mode 100644 board/rikomagic/mk808/MAINTAINERS
create mode 100644 board/rikomagic/mk808/Makefile
create mode 100644 board/rikomagic/mk808/mk808.c
diff --git a/arch/arm/mach-rockchip/rk3066/Kconfig b/arch/arm/mach-rockchip/rk3066/Kconfig
index 335f49bc..95d7fc8a 100644
--- a/arch/arm/mach-rockchip/rk3066/Kconfig
+++ b/arch/arm/mach-rockchip/rk3066/Kconfig
@@ -1,5 +1,12 @@
if ROCKCHIP_RK3066
+config TARGET_MK808
+ bool "MK808"
+ help
+ MK808 is a RK3066-based board with 1 USB host and 1 USB OTG port,
+ HDMI and a micro-SD card slot. It also includes on-board NAND
+ and 1GB of SDRAM.
+
config ROCKCHIP_BOOT_MODE_REG
default 0x20004040
@@ -27,4 +34,6 @@ config TPL_LIBGENERIC_SUPPORT
config TPL_SERIAL
default y
+source "board/rikomagic/mk808/Kconfig"
+
endif
diff --git a/board/rikomagic/mk808/Kconfig b/board/rikomagic/mk808/Kconfig
new file mode 100644
index 00000000..4abad7e7
--- /dev/null
+++ b/board/rikomagic/mk808/Kconfig
@@ -0,0 +1,15 @@
+if TARGET_MK808
+
+config SYS_BOARD
+ default "mk808"
+
+config SYS_VENDOR
+ default "rikomagic"
+
+config SYS_CONFIG_NAME
+ default "mk808"
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+
+endif
diff --git a/board/rikomagic/mk808/MAINTAINERS b/board/rikomagic/mk808/MAINTAINERS
new file mode 100644
index 00000000..b3ef6adb
--- /dev/null
+++ b/board/rikomagic/mk808/MAINTAINERS
@@ -0,0 +1,6 @@
+MK808
+M: Johan Jonker <jbx6244@gmail.com>
+S: Maintained
+F: board/rikomagic/mk808
+F: configs/mk808_defconfig
+F: include/configs/mk808.h
diff --git a/board/rikomagic/mk808/Makefile b/board/rikomagic/mk808/Makefile
new file mode 100644
index 00000000..a4d16884
--- /dev/null
+++ b/board/rikomagic/mk808/Makefile
@@ -0,0 +1,3 @@
+# SPDX-License-Identifier: GPL-2.0+
+
+obj-y += mk808.o
diff --git a/board/rikomagic/mk808/mk808.c b/board/rikomagic/mk808/mk808.c
new file mode 100644
index 00000000..e0bfc6f3
--- /dev/null
+++ b/board/rikomagic/mk808/mk808.c
@@ -0,0 +1,3 @@
+// SPDX-License-Identifier: GPL-2.0+
+
+#include <common.h>
--
2.20.1
next prev parent reply other threads:[~2022-01-18 0:39 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-18 0:36 [PATCH v8 00/15] Add Rikomagic MK808 board Johan Jonker
2022-01-18 0:36 ` [PATCH v8 01/15] rockchip: rk3066-power: sync power domain dt-binding header from Linux Johan Jonker
2022-01-18 0:36 ` [PATCH v8 02/15] rockchip: rk3066: add grf header file Johan Jonker
2022-01-18 0:36 ` [PATCH v8 03/15] rockchip: rk3066: add clock driver for rk3066 soc Johan Jonker
2022-01-20 0:31 ` Sean Anderson
2022-01-18 0:36 ` [PATCH v8 04/15] rockchip: rk3066: add rk3066 pinctrl driver Johan Jonker
2022-01-18 0:36 ` [PATCH v8 05/15] rockchip: rk3066: add sdram driver Johan Jonker
2022-01-18 0:36 ` [PATCH v8 06/15] arm: dts: rockchip: fix rk3xxx-u-boot.dtsi Johan Jonker
2022-01-18 0:36 ` [PATCH v8 07/15] arm: dts: rockchip: add rk3066a.dtsi Johan Jonker
2022-01-18 0:36 ` [PATCH v8 08/15] arm: dts: rockchip: add rk3066a-mk808.dts Johan Jonker
2022-01-18 0:36 ` [PATCH v8 09/15] rockchip: rk3066: add include Johan Jonker
2022-01-18 0:36 ` [PATCH v8 10/15] rockchip: rk3066: add rk3066_common.h include Johan Jonker
2022-01-18 0:36 ` [PATCH v8 11/15] rockchip: rk3066: add core support Johan Jonker
2022-01-18 0:37 ` Johan Jonker [this message]
2022-01-18 0:37 ` [PATCH v8 13/15] rockchip: rk3066: add mk808_defconfig Johan Jonker
2022-01-18 0:37 ` [PATCH v8 14/15] rockchip: tools: add rk3066 support to rkcommon.c Johan Jonker
2022-01-18 0:37 ` [PATCH v8 15/15] doc: rockchip: add rk3066 Rikomagic MK808 Johan Jonker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220118003703.10678-13-jbx6244@gmail.com \
--to=jbx6244@gmail.com \
--cc=kever.yang@rock-chips.com \
--cc=lukma@denx.de \
--cc=philipp.tomsich@vrull.eu \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox