diff options
| author | Sebastian Kropatsch <[email protected]> | 2024-07-11 12:15:18 +0200 |
|---|---|---|
| committer | Kever Yang <[email protected]> | 2024-07-17 14:48:18 +0800 |
| commit | 7db9ff164813afb343024d37731ab797ed7f507e (patch) | |
| tree | c39f57dc4549768ae36f5bb49b74613ccbdf4810 /include | |
| parent | f59d40aa5598063396164b3248f0f8ed6591e3db (diff) | |
board: rockchip: Add FriendlyElec NanoPi R6S
The NanoPi R6S is a SBC by FriendlyElec based on the Rockchip RK3588s.
It comes with 4GB or 8GB of RAM, a microSD card slot, 32GB eMMC storage,
one RTL8211F 1GbE and two RTL8125 2.5GbE Ethernet ports, one USB 2.0
Type-A and one USB 3.0 Type-A port, a HDMI port, a 12-pin GPIO FPC
connector, a fan connector, IR receiver as well as some buttons and LEDs.
Add initial support for this board using the upstream devicetree sources.
Kernel commit:
f1b11f43b3e9 ("arm64: dts: rockchip: Add support for NanoPi R6S")
Reviewed-by: Kever Yang <[email protected]>
Signed-off-by: Sebastian Kropatsch <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/nanopi-r6s-rk3588s.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/configs/nanopi-r6s-rk3588s.h b/include/configs/nanopi-r6s-rk3588s.h new file mode 100644 index 00000000000..a1b19783c56 --- /dev/null +++ b/include/configs/nanopi-r6s-rk3588s.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ + +#ifndef __NANOPI_R6S_RK3588S_H +#define __NANOPI_R6S_RK3588S_H + +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" + +#include <configs/rk3588_common.h> + +#endif /* __NANOPI_R6S_RK3588S_H */ |
