| #
6f6500e6 |
| 09-Feb-2021 |
Marek Behún <marek.behun@nic.cz> |
UPSTREAM: cmd: pinmux: depend on PINCTRL
The pinmux command uses functions pinctrl_get_pin_*(), which are missing if PINCTRL config option is disabled.
Change-Id: I87483509b6abb9b0cc7f677f1b5c5349a
UPSTREAM: cmd: pinmux: depend on PINCTRL
The pinmux command uses functions pinctrl_get_pin_*(), which are missing if PINCTRL config option is disabled.
Change-Id: I87483509b6abb9b0cc7f677f1b5c5349abbf85dd Signed-off-by: Marek Behún <marek.behun@nic.cz> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org> (cherry picked from commit a70abcff5edb63ee62976ddfe881a8496e540d12) Signed-off-by: Cody Xie <cody.xie@rock-chips.com>
show more ...
|
| #
0f850630 |
| 24-Oct-2018 |
Patrice Chotard <patrice.chotard@st.com> |
UPSTREAM: cmd: pinmux: Add pinmux command
pinmux command allows to : - list all pin-controllers available on platforms - select a pin-controller - display the muxing of all pins of the current pi
UPSTREAM: cmd: pinmux: Add pinmux command
pinmux command allows to : - list all pin-controllers available on platforms - select a pin-controller - display the muxing of all pins of the current pin-controller or all pin-controllers depending of given options
Signed-off-by: Patrice Chotard <patrice.chotard@st.com> cmd: pinmux: Fix pinmux command
if "pinmux status" command is used without having set dev using "pinmux dev", print pinmux usage Reviewed-by: Simon Glass <sjg@chromium.org>
(cherry picked from commit d5a8313905f54ebdf128ac428c3cf58a2ebcbda2) Change-Id: Ie23ca7b987bceb83724c3ddea42eddb579dc0ea5 Signed-off-by: Cody Xie <cody.xie@rock-chips.com>
show more ...
|
| #
f9a1c31d |
| 14-Feb-2023 |
Wesley Yao <wesley.yao@rock-chips.com> |
cmd: ddr_tool: Integrate DDR related tools into ddr_tool
Integrate ddr_test, memtester, ddr_dq_eye into ddr_tool.
Signed-off-by: Wesley Yao <wesley.yao@rock-chips.com> Change-Id: Ic0e093c733e99b5cc
cmd: ddr_tool: Integrate DDR related tools into ddr_tool
Integrate ddr_test, memtester, ddr_dq_eye into ddr_tool.
Signed-off-by: Wesley Yao <wesley.yao@rock-chips.com> Change-Id: Ic0e093c733e99b5cc31b40a09b36d3dbe478c6be
show more ...
|
| #
af20bb83 |
| 15-Oct-2019 |
Faiz Abbas <faiz_abbas@ti.com> |
cmd: Add Support for UFS commands
Add Support for commands to initialize and configure UFS devices.
Change-Id: I226281022e462d0cf49f35cd1194fd918ebfeb92 TODO: Add Support for commands to resize and
cmd: Add Support for UFS commands
Add Support for commands to initialize and configure UFS devices.
Change-Id: I226281022e462d0cf49f35cd1194fd918ebfeb92 TODO: Add Support for commands to resize and reconfigure LUNs Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
show more ...
|
| #
a951a295 |
| 08-Nov-2021 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: add sd_update/usb_update/tftp_update
Auto find sd_update/usb_update/tftp_update.txt from fat/udisk/tftp and run it.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Id3ab00c2a8110
cmd: add sd_update/usb_update/tftp_update
Auto find sd_update/usb_update/tftp_update.txt from fat/udisk/tftp and run it.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Id3ab00c2a8110c9134d99b048af5e0587fd6e16e
show more ...
|
| #
2433663c |
| 08-Mar-2022 |
Joseph Chen <chenjh@rock-chips.com> |
cmd/fs: Add 'ext4write_sparse' command
Usage: ext4write_sparse <interface> <dev> <addr> <blk#>
Example:
=> ext4write_sparse mmc 0 0x0a200000 0x00116800
==== sparse header === magic:
cmd/fs: Add 'ext4write_sparse' command
Usage: ext4write_sparse <interface> <dev> <addr> <blk#>
Example:
=> ext4write_sparse mmc 0 0x0a200000 0x00116800
==== sparse header === magic: 0xed26ff3a major_version: 0x1 minor_version: 0x0 file_hdr_sz: 28 chunk_hdr_sz: 12 blk_sz: 4096 total_blks: 19968 total_chunks: 53 image_checksum: 0
=== [chunk.1] chunk_type: RAW chunk_sz: 2 total_sz: 8204 offset: 40 buf: 0x0a200028 lba: 0x00116800 - 0x00116810 sha256sum: 5fb865e2b12d61c696e8de1c2efbd83a2da69d385e05ab0636cb3802853e2255 === [chunk.2]
......
=== [chunk.53] chunk_type: FILL chunk_sz: 1258 total_sz: 16 offset: 36020988 buf: 0x0c45a2fc lba: 0x0013b0b0 - 0x0013d800 fill: 0x00000000
Unsparsed is 78 MiB and 0x00116800 - 0x0013d800 blocks written OK.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Icefacb17da30281584f3b56b91c0ab3176726b90
show more ...
|
| #
2fb449a6 |
| 06-May-2021 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: add "tftpupdate" command
Support update a set of images organized with FIT via network using TFTP protocol.
Example: => tftpupdate // update all default images => tftpupdate recovery //
cmd: add "tftpupdate" command
Support update a set of images organized with FIT via network using TFTP protocol.
Example: => tftpupdate // update all default images => tftpupdate recovery // update recovery partition images only
Example with server directory: => tftpupdate image:* // update all default images => tftpupdate image: // update all default images => tftpupdate image:recovery // update recovery partition images only
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I4258fee63399a288333dc81a8347997bdbbe9831
show more ...
|
| #
dc582bb7 |
| 23-Aug-2021 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: Add "atags" to dump all rk atags
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I56dd137efaf4bd4adf9a734fefd1f0485a616549
|
| #
ddb7bfe2 |
| 22-Feb-2021 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: add "crypto_sum" for checksum
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Ibdc58f55580ab0230cb8751bc08fb9ea89fb26d8
|
| #
025272a2 |
| 24-Dec-2019 |
Heinrich Schuchardt <xypron.glpk@gmx.de> |
UPSTREAM: cmd: add rng command
For the RNG uclass we currently only have a test working on the sandbox.
Provide a command to test the hardware random number generator on non-sandbox systems.
Signe
UPSTREAM: cmd: add rng command
For the RNG uclass we currently only have a test working on the sandbox.
Provide a command to test the hardware random number generator on non-sandbox systems.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> (cherry picked from commit 4f24ac08afccd5f51f0b4c7023fc8cf45efe8163)
Change-Id: Icb2a9359417a8168a38e1fc009960e8c6df924e4 Signed-off-by: Lin Jinhan <troy.lin@rock-chips.com>
show more ...
|
| #
3d8049ad |
| 15-May-2020 |
Joseph Chen <chenjh@rock-chips.com> |
common: add U_BOOT_CMD_ALWAYS() support
This function is used to support some special U-Boot commands with U_BOOT_CMD_ALWAYS() declared even when CONFIG_CMDLINE is disabled.
It's used when develope
common: add U_BOOT_CMD_ALWAYS() support
This function is used to support some special U-Boot commands with U_BOOT_CMD_ALWAYS() declared even when CONFIG_CMDLINE is disabled.
It's used when developers requires a critial u-boot.bin by disabling the U_BOOT_CMD() and using a simple CLI instead.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I768637592a4d85c7fea00564e96fb80f21ab65fe
show more ...
|
| #
e1e9b173 |
| 28-Mar-2020 |
Joseph Chen <chenjh@rock-chips.com> |
Merge branch 'next-dev' into thunder-boot
|
| #
909b9728 |
| 14-Jan-2020 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: net: support tftp/tftpbootm/tftpflash commands
- tftp: download image. - tftpbootm: download and bootm the aosp/uImage/FIT Image. - tftpflash: download and flash the Image to partition.
rename
cmd: net: support tftp/tftpbootm/tftpflash commands
- tftp: download image. - tftpbootm: download and bootm the aosp/uImage/FIT Image. - tftpflash: download and flash the Image to partition.
rename "tftpboot" to "tftp" since there are so many tftpxxx commands, the "tftp" cmd can't be recoganize as "tftpboot" by CLI shell.
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I0128cd41a8fc9105016ae0417241348eb4a6f637
show more ...
|
| #
e39c2b5d |
| 07-Feb-2020 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: add "boot_uimage" command for legacy uImage
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: Ie7b55ff4f63957312895c0f57fd405d3389f2ad7
|
| #
72c88b4a |
| 15-Jan-2020 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: add "boot_fit" command for FIT image
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: I09f936cf5cefb0b9f2334a6590b5dfb4d85151a3
|
| #
2b4182c1 |
| 21-Aug-2019 |
Jason Zhu <jason.zhu@rock-chips.com> |
cmd: rk_secure_storage: dump data which is written in OTP or efuse
Change-Id: I644add22f3aaed546d727de7727d3230ae1a6c01 Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
|
| #
20614742 |
| 15-Jul-2019 |
Lin Jinhan <troy.lin@rock-chips.com> |
cmd: Kconfig: CMD_CRYPTO select SHA512
when CMD_CRYPTO is enabled, SHA512 will be selected.
Change-Id: I2a4dfa1ed024b9a6cc39417836e45ee1309fdfa1 Signed-off-by: Lin Jinhan <troy.lin@rock-chips.com>
|
| #
f87151b3 |
| 29-Sep-2018 |
Miquel Raynal <miquel.raynal@bootlin.com> |
UPSTREAM: cmd: mtd: add 'mtd' command
There should not be a 'nand' command, a 'sf' command and certainly not a new 'spi-nand' command. Write a 'mtd' command instead to manage all MTD devices/partiti
UPSTREAM: cmd: mtd: add 'mtd' command
There should not be a 'nand' command, a 'sf' command and certainly not a new 'spi-nand' command. Write a 'mtd' command instead to manage all MTD devices/partitions at once. This should be the preferred way to access any MTD device.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Acked-by: Jagan Teki <jagan@openedev.com> Reviewed-by: Stefan Roese <sr@denx.de> Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com> Change-Id: I68bcf4f0126c3a9d6ae0481dafcfcaab0506bd3f Signed-off-by: Jon Lin <jon.lin@rock-chips.com> (cherry picked from commit 5db66b3aee6f2c057706d8715f7e5c472e82f047)
show more ...
|
| #
fe85de89 |
| 02-Jul-2019 |
Jon Lin <jon.lin@rock-chips.com> |
cmd: mtd: rename mtd.c to mtd_blk.c
Change-Id: Ie35d54afdbc0580af06805eca9f0db813db2dfe5 Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
|
| #
577968e5 |
| 08-Jul-2018 |
Adam Ford <aford173@gmail.com> |
UPSTREAM: Convert CONFIG_MTD_PARTITIONS et al to Kconfig
This converts the following to Kconfig: CONFIG_MTD_PARTITIONS CONFIG_MTD_DEVICE
Signed-off-by: Adam Ford <aford173@gmail.com> Change-I
UPSTREAM: Convert CONFIG_MTD_PARTITIONS et al to Kconfig
This converts the following to Kconfig: CONFIG_MTD_PARTITIONS CONFIG_MTD_DEVICE
Signed-off-by: Adam Ford <aford173@gmail.com> Change-Id: I90c45c7716965009c00d18a19f5491f19b1ab8b3 Signed-off-by: Jon Lin <jon.lin@rock-chips.com> (cherry picked from commit 9c5b00973bceb7c0192bd6b03672d69b092700b4)
show more ...
|
| #
de8452ae |
| 15-Mar-2019 |
Jason Zhu <jason.zhu@rock-chips.com> |
cmd: mtd: support mtd command
Change-Id: I5d5548e97535c6d928d2ff84f055de259577c11a Signed-off-by: Jason Zhu <jason.zhu@rock-chips.com>
|
| #
cc6ac5d6 |
| 13-May-2019 |
Joseph Chen <chenjh@rock-chips.com> |
dm: add crypto uclass and cmd support
Change-Id: I2241c90aca9695cd28bb9ca2a220d0e1af8ca932 Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
|
| #
94cf1096 |
| 30-Apr-2019 |
Joseph Chen <chenjh@rock-chips.com> |
power: charge animation: fix cmd compile error
cmd depends on DM_CHARGE_DISPLAY and default y.
Change-Id: I5e685e0020c4aa1da80ffc27e5a576bc8969c3be Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
|
| #
6213b401 |
| 30-Apr-2019 |
Joseph Chen <chenjh@rock-chips.com> |
cmd: CMD_DTMIG: select OF_LIBFDT_OVERLAY
Change-Id: I67d7040d477712169c815273dfaf913a4cf258e7 Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
|
| #
3decc737 |
| 18-Dec-2018 |
Tang Yun ping <typ@rock-chips.com> |
cmd: ddr_tool: add ddr test tool code
RK3328/RK3326/PX30: enable CONFIG_OF_LIVE, CONFIG_ROCKCHIP_DMC and CONFIG_CMD_DDR_TEST_TOOL. RK1808/RK3399pro npu: enable CONFIG_CMD_DDR_TEST_TOOL. When enable,
cmd: ddr_tool: add ddr test tool code
RK3328/RK3326/PX30: enable CONFIG_OF_LIVE, CONFIG_ROCKCHIP_DMC and CONFIG_CMD_DDR_TEST_TOOL. RK1808/RK3399pro npu: enable CONFIG_CMD_DDR_TEST_TOOL. When enable, it will create a 'ddr_test' command for user in U-Boot shell.
Change-Id: Iaa286e461d53b1caa4bcc069d37a7aad16a3e5e3 Signed-off-by: Tang Yun ping <typ@rock-chips.com>
show more ...
|