mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
fefa713b18
The PWM device provided by Chrome OS EC doesn't really support anything other than setting a relative duty cycle. To support it as a backlight, this patch makes the PWM period optional in the device tree and pretends the valid brightness range is its period_ns. Also adds a sandbox test for a PWM channel that has a fixed period, checking that the resulting duty_cycle matches on a set_config() even if the requested period_ns can't be set. Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2017 Google, Inc
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <pwm.h>
|
|
#include <asm/test.h>
|
|
#include <dm/test.h>
|
|
#include <test/test.h>
|
|
#include <test/ut.h>
|
|
|
|
/* Basic test of the pwm uclass */
|
|
static int dm_test_pwm_base(struct unit_test_state *uts)
|
|
{
|
|
struct udevice *dev;
|
|
uint period_ns;
|
|
uint duty_ns;
|
|
bool enable;
|
|
bool polarity;
|
|
|
|
ut_assertok(uclass_get_device(UCLASS_PWM, 0, &dev));
|
|
ut_assertnonnull(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(pwm_set_config(dev, 2, 100, 50));
|
|
ut_assertok(sandbox_pwm_get_config(dev, 2, &period_ns, &duty_ns,
|
|
&enable, &polarity));
|
|
ut_asserteq(period_ns, 4096);
|
|
ut_asserteq(duty_ns, 50 * 4096 / 100);
|
|
|
|
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, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT);
|