upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
851 B
33 lines
851 B
/*
|
|
* Copyright (C) 2017 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <pwm.h>
|
|
#include <dm/test.h>
|
|
#include <test/ut.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
/* Basic test of the pwm uclass */
|
|
static int dm_test_pwm_base(struct unit_test_state *uts)
|
|
{
|
|
struct udevice *dev;
|
|
|
|
ut_assertok(uclass_get_device(UCLASS_PWM, 0, &dev));
|
|
ut_assertok(pwm_set_config(dev, 0, 100, 50));
|
|
ut_assertok(pwm_set_enable(dev, 0, true));
|
|
ut_assertok(pwm_set_enable(dev, 1, true));
|
|
ut_assertok(pwm_set_enable(dev, 2, true));
|
|
ut_asserteq(-ENOSPC, pwm_set_enable(dev, 3, true));
|
|
ut_assertok(pwm_set_invert(dev, 0, true));
|
|
|
|
ut_assertok(uclass_get_device(UCLASS_PWM, 1, &dev));
|
|
ut_asserteq(-ENODEV, uclass_get_device(UCLASS_PWM, 2, &dev));
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_pwm_base, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
|
|
|