summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-10-26 08:10:31 -0600
committerTom Rini <[email protected]>2024-10-26 08:10:31 -0600
commit8963d433eb5d4a9f3a9def84e9c61a45c13e72bc (patch)
tree2721b8f554cfe71dfd4f857d71ec7c5cfca29c5e /include
parent47423b81c2991934152ba9034e63fd7d5c9e88f0 (diff)
parent7cec3e701940064b2cfc0cf8b80ff24c391c55ec (diff)
Merge tag 'u-boot-rockchip-20241026' of https://gitlab.denx.de/u-boot/custodians/u-boot-rockchip
CI: https://source.denx.de/u-boot/custodians/u-boot-rockchip/-/pipelines/22993 - New boards: rk3566: Hardkernel ODROID-M1S rk3588s: Hardkernel ODROID-M2 rk3588: NanoPC-T6 LTS - Migrate to use USB_DWC3_GENERIC for rk3328 - Other board level config and dts update
Diffstat (limited to 'include')
-rw-r--r--include/configs/odroid_m2.h11
-rw-r--r--include/fdt_support.h3
2 files changed, 13 insertions, 1 deletions
diff --git a/include/configs/odroid_m2.h b/include/configs/odroid_m2.h
new file mode 100644
index 00000000000..c5ed42cd2e7
--- /dev/null
+++ b/include/configs/odroid_m2.h
@@ -0,0 +1,11 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+
+#ifndef __ODROID_M2_H
+#define __ODROID_M2_H
+
+#define ROCKCHIP_DEVICE_SETTINGS \
+ "cramfsaddr=0x0c000000\0"
+
+#include <configs/rk3588_common.h>
+
+#endif
diff --git a/include/fdt_support.h b/include/fdt_support.h
index 741e2360c22..9447a64e060 100644
--- a/include/fdt_support.h
+++ b/include/fdt_support.h
@@ -202,7 +202,8 @@ int ft_board_setup(void *blob, struct bd_info *bd);
*
* This function is called if CONFIG_BOARD_RNG_SEED is set, and must
* be provided by the board. It should return, via @buf, some suitable
- * seed value to pass to the kernel.
+ * seed value to pass to the kernel. Seed size could be set in a decimal
+ * environment variable rng_seed_size and it defaults to 64 bytes.
*
* @param buf A struct abuf for returning the seed and its size.
* @return 0 if ok, negative on error.