public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Przemyslaw Marczak <p.marczak@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 12/12] test: dm: add sandbox PMIC framework tests
Date: Mon, 11 May 2015 09:36:22 +0200	[thread overview]
Message-ID: <55505BF6.1010905@samsung.com> (raw)
In-Reply-To: <CAPnjgZ17yzptik7ZyqEWTFW3aZxpZGXKzidvevrbBQfY_36s7A@mail.gmail.com>

Hello Simon,

On 05/10/2015 03:57 PM, Simon Glass wrote:
> Hi Przemyslaw,
>
> On 8 May 2015 at 10:20, Przemyslaw Marczak <p.marczak@samsung.com> wrote:
>> This change adds new file to sandbox driver model test environment.
>> The file is: test/dm/power.c, and it includes tests for PMIC framework,
>> which includes PMIC uclass and REGULATOR uclass.
>>
>> All tests are based od Sandbox PMIC emulated device. Some test constants for
>> this device are defined in the header: include/power/sandbox_pmic.h
>>
>> PMIC tests includes:
>> - pmic get - tests, that pmic_get() returns the requested device
>> - pmic I/O - tests I/O by writing and reading some values to PMIC's registers
>>               and then compares, that the write/read values are equal.
>>
>> The regulator tests includes:
>> - Regulator get by devname/platname
>> - Voltage set/get
>> - Current set/get
>> - Enable set/get
>> - Mode set/get
>> - Autoset
>> - List autoset
>>
>> For the regulator 'get' test, the returned device pointers are compared,
>> and their names are also compared to the requested one.
>> Every other test, first sets the given attribute and next try to get it.
>> The test pass, when the set/get values are equal.
>>
>> Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
>> ---
>>   include/power/sandbox_pmic.h |  33 ++++
>>   test/dm/Makefile             |   2 +
>>   test/dm/power.c              | 371 +++++++++++++++++++++++++++++++++++++++++++
>>   3 files changed, 406 insertions(+)
>>   create mode 100644 test/dm/power.c
>
> This looks great. I just have some minor nits below.
>

Thanks, that's a good information.

>>
>> diff --git a/include/power/sandbox_pmic.h b/include/power/sandbox_pmic.h
>> index f9bc10e..01004a0 100644
>> --- a/include/power/sandbox_pmic.h
>> +++ b/include/power/sandbox_pmic.h
>> @@ -186,4 +186,37 @@ enum {
>>   #define LDO2_UV_REG_DEFAULT    LDO2_UV_TO_REG(OUT_LDO2_UV_DEFAULT)
>>   #define LDO2_OM_REG_DEFAULT    OUT_OM_SET(OUT_LDO2_OM_DEFAULT)
>>
>> +/* Test data for: test/dm/power.c */
>> +
>> +/* BUCK names */
>> +#define SANDBOX_BUCK1_DEVNAME  "buck1"
>> +#define SANDBOX_BUCK1_PLATNAME "SUPPLY_1.2V"
>> +#define SANDBOX_BUCK2_DEVNAME  "buck2"
>> +#define SANDBOX_BUCK2_PLATNAME "SUPPLY_3.3V"
>> +/* LDO names */
>> +#define SANDBOX_LDO1_DEVNAME   "ldo1"
>> +#define SANDBOX_LDO1_PLATNAME  "VDD_EMMC_1.8V"
>> +#define SANDBOX_LDO2_DEVNAME   "ldo2"
>> +#define SANDBOX_LDO2_PLATNAME  "VDD_LCD_3.3V"
>> +
>> +/*
>> + * Expected regulators setup after call of:
>> + * - regulator_autoset()
>> + * - regulator_list_autoset()
>> + */
>> +
>> +/* BUCK1: for testing regulator_autoset() */
>> +#define SANDBOX_BUCK1_AUTOSET_EXPECTED_UV      1200000
>> +#define SANDBOX_BUCK1_AUTOSET_EXPECTED_UA      200000
>> +#define SANDBOX_BUCK1_AUTOSET_EXPECTED_ENABLE  true
>> +
>> +/* LDO1/2 for testing regulator_list_autoset() */
>> +#define SANDBOX_LDO1_AUTOSET_EXPECTED_UV       1800000
>> +#define SANDBOX_LDO1_AUTOSET_EXPECTED_UA       100000
>> +#define SANDBOX_LDO1_AUTOSET_EXPECTED_ENABLE   true
>> +
>> +#define SANDBOX_LDO2_AUTOSET_EXPECTED_UV       OUT_LDO2_UV_DEFAULT
>> +#define SANDBOX_LDO2_AUTOSET_EXPECTED_UA       -ENOSYS
>> +#define SANDBOX_LDO2_AUTOSET_EXPECTED_ENABLE   false
>> +
>>   #endif
>> diff --git a/test/dm/Makefile b/test/dm/Makefile
>> index fd9e29f..30df53d 100644
>> --- a/test/dm/Makefile
>> +++ b/test/dm/Makefile
>> @@ -24,4 +24,6 @@ obj-$(CONFIG_DM_PCI) += pci.o
>>   obj-$(CONFIG_DM_SPI_FLASH) += sf.o
>>   obj-$(CONFIG_DM_SPI) += spi.o
>>   obj-$(CONFIG_DM_USB) += usb.o
>> +obj-$(CONFIG_DM_PMIC) += power.o
>> +obj-$(CONFIG_DM_REGULATOR) += power.o
>>   endif
>> diff --git a/test/dm/power.c b/test/dm/power.c
>> new file mode 100644
>> index 0000000..8c607c6
>> --- /dev/null
>> +++ b/test/dm/power.c
>> @@ -0,0 +1,371 @@
>> +/*
>> + * Tests for the driver model pmic and regulator code
>> + *
>> + * Copyright (c) 2015 Samsung Electronics
>> + * Przemyslaw Marczak <p.marczak@samsung.com>
>> + *
>> + * SPDX-License-Identifier:    GPL-2.0+
>> + */
>> +
>> +#include <common.h>
>> +#include <errno.h>
>> +#include <dm.h>
>> +#include <fdtdec.h>
>> +#include <malloc.h>
>> +#include <dm/device-internal.h>
>> +#include <dm/root.h>
>> +#include <dm/ut.h>
>> +#include <dm/util.h>
>> +#include <dm/test.h>
>> +#include <dm/uclass-internal.h>
>> +#include <power/pmic.h>
>> +#include <power/regulator.h>
>> +#include <power/sandbox_pmic.h>
>> +
>> +DECLARE_GLOBAL_DATA_PTR;
>> +
>> +#ifdef CONFIG_DM_PMIC
>
> How about creating pmic.c and then you can move the ifdef to the Makefile?
>

Ok, I can add this.

>> +/* Test PMIC get method */
>> +static int dm_test_power_pmic_get(struct dm_test_state *dms)
>> +{
>> +       const char *name = "sandbox_pmic";
>> +       struct udevice *dev;
>> +
>> +       ut_assertok(pmic_get(name, &dev));
>> +       ut_assertnonnull(dev);
>> +
>> +       /* Check PMIC's name */
>> +       ut_asserteq_str(name, dev->name);
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_pmic_get, DM_TESTF_SCAN_FDT);
>> +
>> +/* Test PMIC I/O */
>> +static int dm_test_power_pmic_io(struct dm_test_state *dms)
>> +{
>> +       const char *name = "sandbox_pmic";
>> +       uint8_t out_buffer, in_buffer;
>> +       struct udevice *dev;
>> +       int reg_count, i;
>> +
>> +       ut_assertok(pmic_get(name, &dev));
>> +
>> +       reg_count = pmic_reg_count(dev);
>> +       ut_asserteq(reg_count, SANDBOX_PMIC_REG_COUNT);
>> +
>> +       /*
>> +        * Test PMIC I/O - write and read a loop counter.
>> +        * usually we can't write to all PMIC's registers in the real hardware,
>> +        * but we can to the sandbox pmic.
>> +        */
>> +       for (i = 0; i < reg_count; i++) {
>> +               out_buffer = i;
>> +               ut_assertok(pmic_write(dev, i, &out_buffer, 1));
>> +               ut_assertok(pmic_read(dev, i, &in_buffer, 1));
>> +               ut_asserteq(out_buffer, in_buffer);
>> +       }
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_pmic_io, DM_TESTF_SCAN_FDT);
>> +#endif /* CONFIG_DM_PMIC */
>> +
>> +#ifdef CONFIG_DM_REGULATOR
>
> This could go in regulator.c
>

Yes.

>> +enum {
>> +       BUCK1,
>> +       BUCK2,
>> +       LDO1,
>> +       LDO2,
>> +       OUTPUT_COUNT,
>> +};
>> +
>> +enum {
>> +       DEVNAME = 0,
>> +       PLATNAME,
>> +       OUTPUT_NAME_COUNT,
>> +};
>> +
>> +static const char *regulator_names[OUTPUT_COUNT][OUTPUT_NAME_COUNT] = {
>> +       /* devname, platname */
>> +       { SANDBOX_BUCK1_DEVNAME, SANDBOX_BUCK1_PLATNAME },
>> +       { SANDBOX_BUCK2_DEVNAME, SANDBOX_BUCK2_PLATNAME },
>> +       { SANDBOX_LDO1_DEVNAME, SANDBOX_LDO1_PLATNAME},
>> +       { SANDBOX_LDO2_DEVNAME, SANDBOX_LDO2_PLATNAME},
>> +};
>> +
>> +/* Test regulator get method */
>> +static int dm_test_power_regulator_get(struct dm_test_state *dms)
>> +{
>> +       struct dm_regulator_uclass_platdata *uc_pdata;
>> +       struct udevice *dev_by_devname;
>> +       struct udevice *dev_by_platname;
>> +       const char *devname;
>> +       const char *platname;
>> +       int i;
>> +
>> +       for (i = 0; i < OUTPUT_COUNT; i++) {
>> +               /*
>> +                * Do the test for each regulator's devname and platname,
>> +                * which are related to a single device.
>> +                */
>> +               devname = regulator_names[i][DEVNAME];
>> +               platname = regulator_names[i][PLATNAME];
>> +
>> +               /*
>> +                * Check, that regulator_get_by_devname() function, returns
>> +                * a device with the name equal to the requested one.
>> +                */
>> +               ut_assertok(regulator_get_by_devname(devname, &dev_by_devname));
>> +               ut_asserteq_str(devname, dev_by_devname->name);
>> +
>> +               /*
>> +                * Check, that regulator_get_by_platname() function, returns
>> +                * a device with the name equal to the requested one.
>> +                */
>> +               ut_assertok(regulator_get_by_platname(platname, &dev_by_platname));
>> +               ut_assert(uc_pdata = dev_get_uclass_platdata(dev_by_platname));
>> +               ut_asserteq_str(platname, uc_pdata->name);
>> +
>> +               /*
>> +                * Check, that the pointers returned by both get functions,
>> +                * points to the same regulator device.
>> +                */
>> +               ut_asserteq_ptr(dev_by_devname, dev_by_platname);
>> +       }
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_get, DM_TESTF_SCAN_FDT);
>> +
>> +/* Test regulator set and get Voltage method */
>> +static int dm_test_power_regulator_set_get_voltage(struct dm_test_state *dms)
>> +{
>> +       struct dm_regulator_uclass_platdata *uc_pdata;
>> +       struct udevice *dev;
>> +       const char *platname;
>> +       int val_set, val_get;
>> +
>> +       /* Set and get Voltage of BUCK1 - set to 'min' constraint */
>> +       platname = regulator_names[BUCK1][PLATNAME];
>> +       ut_assertok(regulator_get_by_platname(platname, &dev));
>> +
>> +       ut_assert(uc_pdata = dev_get_uclass_platdata(dev));
>
> uc_pdata = dev_get_uclass_platdata(dev)
> ut_assert(uc_pdata)
>
> and below
>

Ok.

>> +
>> +       val_set = uc_pdata->min_uV;
>> +       ut_assertok(regulator_set_value(dev, val_set));
>> +
>> +       val_get = regulator_get_value(dev);
>> +       ut_assert(val_get >= 0);
>> +
>> +       ut_asserteq(val_set, val_get);
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_set_get_voltage, DM_TESTF_SCAN_FDT);
>> +
>> +/* Test regulator set and get Current method */
>> +static int dm_test_power_regulator_set_get_current(struct dm_test_state *dms)
>> +{
>> +       struct dm_regulator_uclass_platdata *uc_pdata;
>> +       struct udevice *dev;
>> +       const char *platname;
>> +       int val_set, val_get;
>> +
>> +       /* Set and get the Current of LDO1 - set to 'min' constraint */
>> +       platname = regulator_names[LDO1][PLATNAME];
>> +       ut_assertok(regulator_get_by_platname(platname, &dev));
>> +
>> +       ut_assert(uc_pdata = dev_get_uclass_platdata(dev));
>> +
>> +       val_set = uc_pdata->min_uA;
>> +       ut_assertok(regulator_set_current(dev, val_set));
>> +
>> +       val_get = regulator_get_current(dev);
>> +       ut_assert(val_get >= 0);
>> +
>> +       ut_asserteq(val_set, val_get);
>> +
>> +       /* Check LDO2 current limit constraints - should be -ENODATA */
>> +       platname = regulator_names[LDO2][PLATNAME];
>> +       ut_assertok(regulator_get_by_platname(platname, &dev));
>> +
>> +       ut_assert(uc_pdata = dev_get_uclass_platdata(dev));
>> +       ut_asserteq(uc_pdata->min_uA, -ENODATA);
>
> Expected value should come first.
>

Ok

>> +       ut_asserteq(uc_pdata->max_uA, -ENODATA);
>> +
>> +       /* Try set the Current of LDO2 - should return -ENOSYS */
>> +       ut_asserteq(regulator_set_current(dev, 0), -ENOSYS);
>
> Nice test
>
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_set_get_current, DM_TESTF_SCAN_FDT);
>> +
>> +/* Test regulator set and get Enable method */
>> +static int dm_test_power_regulator_set_get_enable(struct dm_test_state *dms)
>> +{
>> +       const char *platname;
>> +       struct udevice *dev;
>> +       bool val_set = true;
>> +
>> +       /* Set the Enable of LDO1 - default is disabled */
>> +       platname = regulator_names[LDO1][PLATNAME];
>> +       ut_assertok(regulator_get_by_platname(platname, &dev));
>> +       ut_assertok(regulator_set_enable(dev, val_set));
>> +
>> +       /* Get the Enable state of LDO1 and compare it with the requested one */
>> +       ut_asserteq(regulator_get_enable(dev), val_set);
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_set_get_enable, DM_TESTF_SCAN_FDT);
>> +
>> +/* Test regulator set and get mode method */
>> +static int dm_test_power_regulator_set_get_mode(struct dm_test_state *dms)
>> +{
>> +       const char *platname;
>> +       struct udevice *dev;
>> +       int val_set = LDO_OM_SLEEP;
>> +
>> +       /* Set the mode id to LDO_OM_SLEEP of LDO1 - default is LDO_OM_OFF */
>> +       platname = regulator_names[LDO1][PLATNAME];
>> +       ut_assertok(regulator_get_by_platname(platname, &dev));
>> +       ut_assertok(regulator_set_mode(dev, val_set));
>> +
>> +       /* Get the mode id of LDO1 and compare it with the requested one */
>> +       ut_asserteq(regulator_get_mode(dev), val_set);
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_set_get_mode, DM_TESTF_SCAN_FDT);
>> +
>> +/* Test regulator autoset method */
>> +static int dm_test_power_regulator_autoset(struct dm_test_state *dms)
>> +{
>> +       const char *platname;
>> +       struct udevice *dev, *dev_autoset;
>> +
>> +       /*
>> +        * Test the BUCK1 with fdt properties
>> +        * - min-microvolt = max-microvolt = 1200000
>> +        * - min-microamp = max-microamp = 200000
>> +        * - always-on = set
>> +        * - boot-on = not set
>> +        * Expected output state: uV=1200000; uA=200000; output enabled
>> +        */
>> +       platname = regulator_names[BUCK1][PLATNAME];
>> +       ut_assertok(regulator_autoset(platname, &dev_autoset, false));
>> +
>> +       /* Check, that the returned device is proper */
>> +       ut_assertok(regulator_get_by_platname(platname, &dev));
>> +       ut_asserteq_ptr(dev, dev_autoset);
>> +
>> +       /* Check the setup after autoset */
>> +       ut_asserteq(regulator_get_value(dev),
>> +                   SANDBOX_BUCK1_AUTOSET_EXPECTED_UV);
>
> Expected value should come first.
>
>> +       ut_asserteq(regulator_get_current(dev),
>> +                   SANDBOX_BUCK1_AUTOSET_EXPECTED_UA);
>> +       ut_asserteq(regulator_get_enable(dev),
>> +                   SANDBOX_BUCK1_AUTOSET_EXPECTED_ENABLE);
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_autoset, DM_TESTF_SCAN_FDT);
>> +
>> +/*
>> + * Struct setting: to keep the expected output settings.
>> + * @voltage: Voltage value [uV]
>> + * @current: Current value [uA]
>> + * @enable: output enable state: true/false
>> + */
>> +struct setting {
>> +       int voltage;
>> +       int current;
>> +       bool enable;
>> +};
>> +
>> +/*
>> + * platname_list: an array of regulator platform names.
>> + * For testing regulator_list_autoset() for outputs:
>> + * - LDO1
>> + * - LDO2
>> + */
>> +static const char *platname_list[] = {
>> +       SANDBOX_LDO1_PLATNAME,
>> +       SANDBOX_LDO2_PLATNAME,
>> +       NULL,
>> +};
>> +
>> +/*
>> + * expected_setting_list: an array of regulator output setting, expected after
>> + * call of the regulator_list_autoset() for the "platname_list" array.
>> + * For testing results of regulator_list_autoset() for outputs:
>> + * - LDO1
>> + * - LDO2
>> + * The settings are defined in: include/power/sandbox_pmic.h
>> + */
>> +static const struct setting expected_setting_list[] = {
>> +       [0] = { /* LDO1 */
>> +       .voltage = SANDBOX_LDO1_AUTOSET_EXPECTED_UV,
>> +       .current = SANDBOX_LDO1_AUTOSET_EXPECTED_UA,
>> +       .enable  = SANDBOX_LDO1_AUTOSET_EXPECTED_ENABLE,
>> +       },
>> +       [1] = { /* LDO2 */
>> +       .voltage = SANDBOX_LDO2_AUTOSET_EXPECTED_UV,
>> +       .current = SANDBOX_LDO2_AUTOSET_EXPECTED_UA,
>> +       .enable  = SANDBOX_LDO2_AUTOSET_EXPECTED_ENABLE,
>> +       },
>> +};
>> +
>> +static int list_count = ARRAY_SIZE(expected_setting_list);
>> +
>> +/* Test regulator list autoset method */
>> +static int dm_test_power_regulator_autoset_list(struct dm_test_state *dms)
>> +{
>> +       struct udevice *dev_list[2], *dev;
>> +       int i;
>> +
>> +       /*
>> +        * Test the settings of the regulator list:
>> +        * LDO1 with fdt properties:
>> +        * - min-microvolt = max-microvolt = 1800000
>> +        * - min-microamp = max-microamp = 100000
>> +        * - always-on = not set
>> +        * - boot-on = set
>> +        * Expected output state: uV=1800000; uA=100000; output enabled
>> +        *
>> +        * LDO2 with fdt properties:
>> +        * - min-microvolt = max-microvolt = 3300000
>> +        * - always-on = not set
>> +        * - boot-on = not set
>> +        * Expected output state: uV=300000(default); output disabled(default)
>> +        * The expected settings are defined in: include/power/sandbox_pmic.h.
>> +        */
>> +       ut_assertok(regulator_list_autoset(platname_list, dev_list, false));
>> +
>> +       for (i = 0; i < list_count; i++) {
>> +               /* Check, that the returned device is non-NULL */
>> +               ut_assert(dev_list[i]);
>> +
>> +               /* Check, that the returned device is proper */
>> +               ut_assertok(regulator_get_by_platname(platname_list[i], &dev));
>> +               ut_asserteq_ptr(dev_list[i], dev);
>> +
>> +               /* Check, that regulator output Voltage value is as expected */
>> +               ut_asserteq(regulator_get_value(dev_list[i]),
>> +                           expected_setting_list[i].voltage);
>
> Expected value should come first.
>

ok

>> +
>> +               /* Check, that regulator output Current value is as expected */
>> +               ut_asserteq(regulator_get_current(dev_list[i]),
>> +                           expected_setting_list[i].current);
>> +
>> +               /* Check, that regulator output Enable state is as expected */
>> +               ut_asserteq(regulator_get_enable(dev_list[i]),
>> +                           expected_setting_list[i].enable);
>> +       }
>> +
>> +       return 0;
>> +}
>> +DM_TEST(dm_test_power_regulator_autoset_list, DM_TESTF_SCAN_FDT);
>> +
>> +#endif /* CONFIG_DM_REGULATOR */
>> --
>> 1.9.1
>>
>
> Regards,
> Simon
>

Thank you,
-- 
Przemyslaw Marczak
Samsung R&D Institute Poland
Samsung Electronics
p.marczak at samsung.com

  reply	other threads:[~2015-05-11  7:36 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-08 16:20 [U-Boot] [PATCH 00/12] PMIC/REGULATOR cleanup and Sandbox tests Przemyslaw Marczak
2015-05-08 16:20 ` [U-Boot] [PATCH 01/12] dm: pmic: code cleanup of PMIC uclass driver Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-11  7:34     ` Przemyslaw Marczak
2015-05-08 16:20 ` [U-Boot] [PATCH 02/12] dm: pmic: max77686: update driver code Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 03/12] dm: regulator: uclass driver code cleanup Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 04/12] odroid u3: cleanup the regulator calls Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 05/12] common: cmd pmic: command cleanup Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 06/12] common: cmd regulator: " Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 07/12] doc: driver-model: pmic-framework.txt - cleanup Przemyslaw Marczak
2015-05-10 13:56   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 08/12] sandbox: i2c: search child emul dev and check its uclass id Przemyslaw Marczak
2015-05-10 13:57   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 09/12] sandbox: add: sandbox PMIC device drivers: I2C emul, pmic, regulator Przemyslaw Marczak
2015-05-10 13:57   ` Simon Glass
2015-05-11  7:33     ` Przemyslaw Marczak
2015-05-12  9:43     ` Przemyslaw Marczak
2015-05-13  1:50       ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 10/12] test: dm: dts: add sandbox pmic i2c node Przemyslaw Marczak
2015-05-10 13:57   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 11/12] sandbox: defconfig: enable support of sandbox PMIC drivers Przemyslaw Marczak
2015-05-10 13:57   ` Simon Glass
2015-05-08 16:20 ` [U-Boot] [PATCH 12/12] test: dm: add sandbox PMIC framework tests Przemyslaw Marczak
2015-05-10 13:57   ` Simon Glass
2015-05-11  7:36     ` Przemyslaw Marczak [this message]
2015-05-10 13:56 ` [U-Boot] [PATCH 00/12] PMIC/REGULATOR cleanup and Sandbox tests Simon Glass
2015-05-11  7:38   ` Przemyslaw Marczak
2015-05-13 11:38 ` [U-Boot] [PATCH V2 00/13] " Przemyslaw Marczak
2015-05-13 11:38   ` [U-Boot] [PATCH V2 01/13] odroid: dts: add 'voltage-regulators' description to max77686 node Przemyslaw Marczak
2015-05-15 13:55     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 02/13] odroid: enable driver model pmic/regulator API and MAX77686 drivers Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 03/13] dm: pmic: code cleanup of PMIC uclass driver Przemyslaw Marczak
2015-05-15 13:55     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 04/13] dm: regulator: uclass driver code cleanup Przemyslaw Marczak
2015-05-15 13:55     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 05/13] common: cmd pmic: command cleanup Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 06/13] common: cmd regulator: " Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 07/13] doc: driver-model: pmic-framework.txt - cleanup Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 08/13] sandbox: i2c: search child emul dev and check its uclass id Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 09/13] sandbox: add: sandbox PMIC device drivers: I2C emul, pmic, regulator Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 10/13] test: dm: add sandbox PMIC framework tests Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 11/13] test: dm: test.dts - move to sandbox dts directory Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-19 19:21       ` Joe Hershberger
2015-05-19 19:23         ` Joe Hershberger
2015-05-19 21:14           ` Simon Glass
2015-05-20  8:47             ` Przemyslaw Marczak
2015-05-22 23:00               ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 12/13] sandbox: dts: add sandbox_pmic.dtsi and include it to sandbox.dts and test.dts Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-13 11:38   ` [U-Boot] [PATCH V2 13/13] sandbox: defconfig: enable support of sandbox PMIC drivers Przemyslaw Marczak
2015-05-15 13:56     ` Simon Glass
2015-05-15 13:55   ` [U-Boot] [PATCH V2 00/13] PMIC/REGULATOR cleanup and Sandbox tests Simon Glass
2015-05-15 16:21     ` Przemyslaw Marczak
2015-05-18 20:43       ` Simon Glass

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55505BF6.1010905@samsung.com \
    --to=p.marczak@samsung.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox