diff options
| author | Tom Rini <[email protected]> | 2024-05-25 08:01:20 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-05-25 08:01:20 -0600 |
| commit | 6c012d6a2f2a24977d5903e88b8d433a720709c6 (patch) | |
| tree | be470e5b80bdc579e25d7ec6a4edcaed48ced9b7 /include/configs | |
| parent | a7f0154c412859323396111dd0c09dbafbc153cb (diff) | |
| parent | 5c7caa95982c481cc0d6a0e9997629afb0d2ce10 (diff) | |
Merge tag 'u-boot-rockchip-20240525' of https://source.denx.de/u-boot/custodians/u-boot-rockchip
CI: https://source.denx.de/u-boot/custodians/u-boot-rockchip/-/pipelines/20844
- new board: rk3566 Powkiddy X55, rk3588s Indiedroid Nova;
- rv1126 migrate to OF_UPSTREAM;
- Fix for px30 ringneck board;
- Fix for rk3588 SPLL clock init;
Diffstat (limited to 'include/configs')
| -rw-r--r-- | include/configs/nova-rk3588s.h | 15 | ||||
| -rw-r--r-- | include/configs/powkiddy-x55-rk3566.h | 12 |
2 files changed, 27 insertions, 0 deletions
diff --git a/include/configs/nova-rk3588s.h b/include/configs/nova-rk3588s.h new file mode 100644 index 00000000000..0edd1ce8882 --- /dev/null +++ b/include/configs/nova-rk3588s.h @@ -0,0 +1,15 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (c) 2022 Collabora Ltd. + */ + +#ifndef __NOVA_RK3588S_H +#define __NOVA_RK3588S_H + +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" + +#include <configs/rk3588_common.h> + +#endif /* __NOVA_RK3588S_H */ diff --git a/include/configs/powkiddy-x55-rk3566.h b/include/configs/powkiddy-x55-rk3566.h new file mode 100644 index 00000000000..4b25c6a8774 --- /dev/null +++ b/include/configs/powkiddy-x55-rk3566.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ + +#ifndef __POWKIDDY_X55_RK3566_H +#define __POWKIDDY_X55_RK3566_H + +#include <configs/rk3568_common.h> + +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" + +#endif |
