| #
25f7c6d4 |
| 27-Apr-2021 |
Joseph Chen <chenjh@rock-chips.com> |
configs: rockchip: add image and build configure
They are coming from make.sh
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I45ddc82241a9b0cad2633dc888566cbb407bd0b8
|
| #
1a7e8142 |
| 27-Apr-2021 |
Joseph Chen <chenjh@rock-chips.com> |
configs: rockchip: sync files
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I8fbe3392fe792d3636fe6c23b57651f3aafc02ec
|
| #
b8dc613c |
| 19-Nov-2019 |
Joseph Chen <chenjh@rock-chips.com> |
Merge branch 'next-dev' into thunder-boot
|
| #
81adf89f |
| 22-Oct-2019 |
Kever Yang <kever.yang@rock-chips.com> |
rockchip: configs: rk3368: no need to reserve IRAM in SPL
Remove CONFIG_ROCKCHIP_SPL_RESERVE_IRAM=0x50000 and it will default to 0. No need to reserve the space for we move the bl31 entry to 0x40000
rockchip: configs: rk3368: no need to reserve IRAM in SPL
Remove CONFIG_ROCKCHIP_SPL_RESERVE_IRAM=0x50000 and it will default to 0. No need to reserve the space for we move the bl31 entry to 0x40000 and limit the size of SPL at 0~0x40000.
Change-Id: I76385fcb3524eb16c19c3006c59954edc2f3531e Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
show more ...
|
| #
2d2b0663 |
| 12-Feb-2019 |
Kever Yang <kever.yang@rock-chips.com> |
rockchip: px5: update defconfig for TPL/SPL
Change-Id: I4dcb2b3712fe87eece374c93cdc22d01edbd503a Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
|
| #
f67455c9 |
| 29-Jan-2019 |
Kever Yang <kever.yang@rock-chips.com> |
rockchip: add CONFIG_ROCKCHIP_PX5 soc type variant
Add variant for evb-px5
Change-Id: Id7bfa9719f3283f2dccc674b7e194c16d7ac7f65 Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
|
| #
342662e9 |
| 31-Jan-2018 |
David Wu <david.wu@rock-chips.com> |
defconfig: rockchip: Clean the unused pinctrl config
If we used the pinctrl-rockchip driver, these config is not needed, so remove them.
Change-Id: I606b706dd7d45a947a9aeb32c0ca61d44cef0651 Signed-
defconfig: rockchip: Clean the unused pinctrl config
If we used the pinctrl-rockchip driver, these config is not needed, so remove them.
Change-Id: I606b706dd7d45a947a9aeb32c0ca61d44cef0651 Signed-off-by: David Wu <david.wu@rock-chips.com>
show more ...
|
| #
cc14d084 |
| 02-Nov-2017 |
Elaine Zhang <zhangqing@rock-chips.com> |
rockchip: configs: enable DM_RESET config by default
Change-Id: Iff8e5ff45a1acc6255ca1ca41892c837891a9ac0 Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com> Signed-off-by: Kever Yang <kever.yang
rockchip: configs: enable DM_RESET config by default
Change-Id: Iff8e5ff45a1acc6255ca1ca41892c837891a9ac0 Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com> Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
show more ...
|
| #
df35f453 |
| 08-Sep-2017 |
Tom Rini <trini@konsulko.com> |
configs: Resync with savedefconfig
Rsync all defconfig files using moveconfig.py
Signed-off-by: Tom Rini <trini@konsulko.com>
|
| #
5dc4dfd2 |
| 28-Aug-2017 |
Tom Rini <trini@konsulko.com> |
configs: Resync with savedefconfig
Rsync all defconfig files using moveconfig.py
Signed-off-by: Tom Rini <trini@konsulko.com>
|
| #
c1b62ba9 |
| 14-Aug-2017 |
Tom Rini <trini@konsulko.com> |
Merge branch 'master' of git://git.denx.de/u-boot-rockchip
|
| #
d6d26e76 |
| 02-Aug-2017 |
Andy Yan <andy.yan@rock-chips.com> |
rockchip: set Pre-reloc malloc pool size to 4kb for rk3368 based boards
The default 1kb pre-reloc malloc pool is not enough for dm core to enable the dm-pre-reloc device drivers.
Signed-off-by: And
rockchip: set Pre-reloc malloc pool size to 4kb for rk3368 based boards
The default 1kb pre-reloc malloc pool is not enough for dm core to enable the dm-pre-reloc device drivers.
Signed-off-by: Andy Yan <andy.yan@rock-chips.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
show more ...
|
| #
2be29653 |
| 24-Jul-2017 |
Simon Glass <sjg@chromium.org> |
Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig
This converts the following to Kconfig: CONFIG_ENV_IS_IN_MMC CONFIG_ENV_IS_IN_NAND CONFIG_ENV_IS_IN_UBI CONFIG_ENV_IS_NOWHERE
Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig
This converts the following to Kconfig: CONFIG_ENV_IS_IN_MMC CONFIG_ENV_IS_IN_NAND CONFIG_ENV_IS_IN_UBI CONFIG_ENV_IS_NOWHERE
In fact this already exists for sunxi as a 'choice' config. However not all the choices are available in Kconfig yet so we cannot use that. It would lead to more than one option being set.
In addition, one purpose of this series is to allow the environment to be stored in more than one place. So the existing choice is converted to a normal config allowing each option to be set independently.
There are not many opportunities for Kconfig updates to reduce the size of this patch. This was tested with
./tools/moveconfig.py -i CONFIG_ENV_IS_IN_MMC
And then manual updates. This is because for CHAIN_OF_TRUST boards they can only have ENV_IS_NOWHERE set, so we enforce that via Kconfig logic now.
Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
|
| #
fb82fe38 |
| 19-Jun-2017 |
Tom Rini <trini@konsulko.com> |
configs: Resync defconfigs
Signed-off-by: Tom Rini <trini@konsulko.com>
|
| #
156d64fa |
| 08-Jun-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-rockchip
Here is additional rk3368 and rk3399 support, rv1108 support, refactoring HDMI video (brought in from Anatolij's tree to resolve conflicts), some mkimage fixe
Merge git://git.denx.de/u-boot-rockchip
Here is additional rk3368 and rk3399 support, rv1108 support, refactoring HDMI video (brought in from Anatolij's tree to resolve conflicts), some mkimage fixes and a few other things.
show more ...
|
| #
9d7ed339 |
| 15-May-2017 |
Andy Yan <andy.yan@rock-chips.com> |
rockchip: rk3368: Add PX5 Evaluation board
PX5 EVB is designed by Rockchip for automotive field with integrated CVBS (TP2825) / MIPI DSI / CSI / LVDS HDMI video input/output interface, audio codec E
rockchip: rk3368: Add PX5 Evaluation board
PX5 EVB is designed by Rockchip for automotive field with integrated CVBS (TP2825) / MIPI DSI / CSI / LVDS HDMI video input/output interface, audio codec ES8396, WIFI / BT (on RTL8723BS), Gsensor BMA250E and light&proximity sensor STK3410.
Signed-off-by: Andy Yan <andy.yan@rock-chips.com> Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
|