mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
2850266965
Some audio codecs such as Intel HDA do not need to use digital data to play sounds, but instead have a way to emit beeps. Add this interface as an option. If the beep interface is not supported, then the sound uclass falls back to the I2S interface. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2018 Google LLC
|
|
* Written by Simon Glass <sjg@chromium.org>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
#include <sound.h>
|
|
#include <dm/test.h>
|
|
#include <test/ut.h>
|
|
#include <asm/test.h>
|
|
|
|
/* Basic test of the sound codec uclass */
|
|
static int dm_test_sound(struct unit_test_state *uts)
|
|
{
|
|
struct sound_uc_priv *uc_priv;
|
|
struct udevice *dev;
|
|
|
|
/* check probe success */
|
|
ut_assertok(uclass_first_device_err(UCLASS_SOUND, &dev));
|
|
uc_priv = dev_get_uclass_priv(dev);
|
|
ut_asserteq_str("audio-codec", uc_priv->codec->name);
|
|
ut_asserteq_str("i2s", uc_priv->i2s->name);
|
|
ut_asserteq(0, sandbox_get_setup_called(dev));
|
|
|
|
ut_assertok(sound_beep(dev, 1, 100));
|
|
ut_asserteq(4560, sandbox_get_sound_sum(dev));
|
|
ut_assertok(sound_beep(dev, 1, 100));
|
|
ut_asserteq(9120, sandbox_get_sound_sum(dev));
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_sound, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
|
|
|
|
/* Test of the 'start beep' operations */
|
|
static int dm_test_sound_beep(struct unit_test_state *uts)
|
|
{
|
|
struct udevice *dev;
|
|
|
|
/* check probe success */
|
|
ut_assertok(uclass_first_device_err(UCLASS_SOUND, &dev));
|
|
ut_asserteq(-ENOSYS, sound_start_beep(dev, 100));
|
|
ut_asserteq(0, sandbox_get_beep_frequency(dev));
|
|
|
|
sandbox_set_allow_beep(dev, true);
|
|
ut_asserteq(0, sound_start_beep(dev, 100));
|
|
ut_asserteq(100, sandbox_get_beep_frequency(dev));
|
|
|
|
ut_asserteq(0, sound_stop_beep(dev));
|
|
ut_asserteq(0, sandbox_get_beep_frequency(dev));
|
|
|
|
return 0;
|
|
}
|
|
DM_TEST(dm_test_sound_beep, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
|