]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/sound/sandbox.c
core: add ofnode_get_by_phandle() api
[people/ms/u-boot.git] / drivers / sound / sandbox.c
CommitLineData
c34c0246
SG
1/*
2 * Copyright (c) 2013 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
a8b0f9b6 8#include <asm/sound.h>
c34c0246
SG
9#include <asm/sdl.h>
10
11int sound_play(uint32_t msec, uint32_t frequency)
12{
13 sandbox_sdl_sound_start(frequency);
14 mdelay(msec);
15 sandbox_sdl_sound_stop();
16
17 return 0;
18}
19
20int sound_init(const void *blob)
21{
22 return sandbox_sdl_sound_init();
23}