sandbox: tests: Add tests for mc34708 PMIC device
Following tests has been added for mc34708 device: - get_test for mc34708 PMIC - Check if proper number of registers is read - Check if default (emulated via i2c device) value is properly read - Check if value write/read operation is correct - Perform tests to check if pmic_clrsetbits() is working correctly Signed-off-by: Lukasz Majewski <lukma@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
e4aab0e169
commit
3edf9ebea0
@ -19,6 +19,7 @@
|
||||
#include <power/pmic.h>
|
||||
#include <power/sandbox_pmic.h>
|
||||
#include <test/ut.h>
|
||||
#include <fsl_pmic.h>
|
||||
|
||||
/* Test PMIC get method */
|
||||
|
||||
@ -44,6 +45,16 @@ static int dm_test_power_pmic_get(struct unit_test_state *uts)
|
||||
}
|
||||
DM_TEST(dm_test_power_pmic_get, DM_TESTF_SCAN_FDT);
|
||||
|
||||
/* PMIC get method - MC34708 - for 3 bytes transmission */
|
||||
static int dm_test_power_pmic_mc34708_get(struct unit_test_state *uts)
|
||||
{
|
||||
power_pmic_get(uts, "pmic@41");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
DM_TEST(dm_test_power_pmic_mc34708_get, DM_TESTF_SCAN_FDT);
|
||||
|
||||
/* Test PMIC I/O */
|
||||
static int dm_test_power_pmic_io(struct unit_test_state *uts)
|
||||
{
|
||||
@ -72,3 +83,48 @@ static int dm_test_power_pmic_io(struct unit_test_state *uts)
|
||||
return 0;
|
||||
}
|
||||
DM_TEST(dm_test_power_pmic_io, DM_TESTF_SCAN_FDT);
|
||||
|
||||
#define MC34708_PMIC_REG_COUNT 64
|
||||
#define MC34708_PMIC_TEST_VAL 0x125534
|
||||
static int dm_test_power_pmic_mc34708_regs_check(struct unit_test_state *uts)
|
||||
{
|
||||
struct udevice *dev;
|
||||
int reg_count;
|
||||
|
||||
ut_assertok(pmic_get("pmic@41", &dev));
|
||||
|
||||
/* Check number of PMIC registers */
|
||||
reg_count = pmic_reg_count(dev);
|
||||
ut_asserteq(reg_count, MC34708_PMIC_REG_COUNT);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
DM_TEST(dm_test_power_pmic_mc34708_regs_check, DM_TESTF_SCAN_FDT);
|
||||
|
||||
static int dm_test_power_pmic_mc34708_rw_val(struct unit_test_state *uts)
|
||||
{
|
||||
struct udevice *dev;
|
||||
int val;
|
||||
|
||||
ut_assertok(pmic_get("pmic@41", &dev));
|
||||
|
||||
/* Check if single 3 byte read is successful */
|
||||
val = pmic_reg_read(dev, REG_POWER_CTL2);
|
||||
ut_asserteq(val, 0x422100);
|
||||
|
||||
/* Check if RW works */
|
||||
val = 0;
|
||||
ut_assertok(pmic_reg_write(dev, REG_RTC_TIME, val));
|
||||
ut_assertok(pmic_reg_write(dev, REG_RTC_TIME, MC34708_PMIC_TEST_VAL));
|
||||
val = pmic_reg_read(dev, REG_RTC_TIME);
|
||||
ut_asserteq(val, MC34708_PMIC_TEST_VAL);
|
||||
|
||||
pmic_clrsetbits(dev, REG_POWER_CTL2, 0x3 << 8, 1 << 9);
|
||||
val = pmic_reg_read(dev, REG_POWER_CTL2);
|
||||
ut_asserteq(val, (0x422100 & ~(0x3 << 8)) | (1 << 9));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
DM_TEST(dm_test_power_pmic_mc34708_rw_val, DM_TESTF_SCAN_FDT);
|
||||
|
Loading…
Reference in New Issue
Block a user