Joseph Chen 11406b8f7e dm: regulator: support regulator more state
support parse regulator standard property:
regulator-off-in-suspend;
regulator-init-microvolt;
regulator-suspend-microvolt:
 regulator_get_suspend_enable
 regulator_set_suspend_enable
 regulator_get_suspend_value
 regulator_set_suspend_value

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Signed-off-by: Elaine Zhang <zhangqing@rock-chips.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
2019-11-10 20:31:09 +08:00
..
2019-10-31 07:22:53 -04:00
2019-09-05 23:18:52 +02:00
2019-10-11 19:05:14 -04:00
2019-10-08 09:41:27 +02:00
2019-10-16 18:09:26 -04:00
2016-03-22 12:16:16 -04:00
2017-07-06 16:17:19 -04:00
2018-11-26 08:25:33 -05:00
2018-04-27 14:54:49 -04:00
2019-01-09 07:13:31 -05:00
2018-01-22 16:43:30 -05:00
2017-06-29 21:30:16 -04:00
2016-02-06 12:00:59 +01:00
2019-08-11 19:27:41 -04:00
2016-02-06 12:00:59 +01:00
2015-12-05 18:22:21 -05:00
2018-11-14 09:16:28 -08:00

This patch series adds support for ZFS listing and load to u-boot.

To Enable zfs ls and load commands, modify the board specific config file with
#define CONFIG_CMD_ZFS

Steps to test:

1. After applying the patch, zfs specific commands can be seen
   in the boot loader prompt using
	UBOOT #help

	zfsload- load binary file from a ZFS file system
	zfsls  - list files in a directory (default /)

2. To list the files in zfs pool, device or partition, execute
	zfsls <interface> <dev[:part]> [POOL/@/dir/file]
	For example:
	UBOOT #zfsls mmc 0:5 /rpool/@/usr/bin/

3. To read and load a file from an ZFS formatted partition to RAM, execute
	zfsload <interface> <dev[:part]> [addr] [filename] [bytes]
	For example:
	UBOOT #zfsload mmc 2:2 0x30007fc0 /rpool/@/boot/uImage

References :
	-- ZFS GRUB sources from Solaris GRUB-0.97
	-- GRUB Bazaar repository

Jorgen Lundman <lundman at lundman.net> 2012.