diff options
author | Tom Rini <trini@konsulko.com> | 2023-01-16 20:58:37 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-16 20:58:37 -0500 |
commit | 4a986156258d456237d0dda753a39afbddf9dcfd (patch) | |
tree | 40a4bf69c2591234635709de1a3d342d7557b2de /tools/rkcommon.c | |
parent | 348064ee2c8f9494b91b55729ac60c5db79ef129 (diff) | |
parent | c925be73a0a8b1d90060c4b5255a2d9e87967e23 (diff) |
Merge tag 'u-boot-rockchip-20230117' of https://source.denx.de/u-boot/custodians/u-boot-rockchip
- Add support for rv1126 soc and rv1126 neu2 io board;
- Add support for rk3399 pine64 pinephone pro board;
- dts sync from linux for rk3399 and px30;
- Add support for PX30 Ringneck SoM board;
Diffstat (limited to 'tools/rkcommon.c')
-rw-r--r-- | tools/rkcommon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/rkcommon.c b/tools/rkcommon.c index 0db45c2d41..1f1eaa1675 100644 --- a/tools/rkcommon.c +++ b/tools/rkcommon.c @@ -133,6 +133,7 @@ static struct spl_info spl_infos[] = { { "rk3368", "RK33", 0x8000 - 0x1000, false, RK_HEADER_V1 }, { "rk3399", "RK33", 0x30000 - 0x2000, false, RK_HEADER_V1 }, { "rv1108", "RK11", 0x1800, false, RK_HEADER_V1 }, + { "rv1126", "110B", 0x10000 - 0x1000, false, RK_HEADER_V1 }, { "rk3568", "RK35", 0x14000 - 0x1000, false, RK_HEADER_V2 }, }; @@ -154,7 +155,7 @@ struct spl_params { static struct spl_params spl_params = { 0 }; -static unsigned char rc4_key[16] = { +static const unsigned char rc4_key[16] = { 124, 78, 3, 4, 85, 5, 9, 7, 45, 44, 123, 56, 23, 13, 23, 17 }; |