xref: /openbmc/u-boot/drivers/sound/sandbox.c (revision 78a88f79)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2013 Google, Inc
4  */
5 
6 #include <common.h>
7 #include <asm/sound.h>
8 #include <asm/sdl.h>
9 
10 int sound_play(uint32_t msec, uint32_t frequency)
11 {
12 	sandbox_sdl_sound_start(frequency);
13 	mdelay(msec);
14 	sandbox_sdl_sound_stop();
15 
16 	return 0;
17 }
18 
19 int sound_init(const void *blob)
20 {
21 	return sandbox_sdl_sound_init();
22 }
23