blob: 7fc19678ea8f449d178740f2ee9be827dcfea052 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Rajeshwari Shindec0c88532012-10-25 19:49:24 +00002/*
3 * Copyright (C) 2012 Samsung Electronics
4 * Rajeshwari Shinde <rajeshwari.s@samsung.com>
Rajeshwari Shindec0c88532012-10-25 19:49:24 +00005 */
6
7#include <common.h>
8#include <command.h>
Simon Glassd4901892018-12-10 10:37:36 -07009#include <dm.h>
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000010#include <fdtdec.h>
11#include <sound.h>
12
13DECLARE_GLOBAL_DATA_PTR;
14
15/* Initilaise sound subsystem */
Simon Glass09140112020-05-10 11:40:03 -060016static int do_init(struct cmd_tbl *cmdtp, int flag, int argc,
17 char *const argv[])
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000018{
Simon Glassd4901892018-12-10 10:37:36 -070019 struct udevice *dev;
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000020 int ret;
21
Simon Glassd4901892018-12-10 10:37:36 -070022 ret = uclass_first_device_err(UCLASS_SOUND, &dev);
23 if (!ret)
24 ret = sound_setup(dev);
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000025 if (ret) {
Simon Glassd4901892018-12-10 10:37:36 -070026 printf("Initialise Audio driver failed (ret=%d)\n", ret);
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000027 return CMD_RET_FAILURE;
28 }
29
30 return 0;
31}
32
33/* play sound from buffer */
Simon Glass09140112020-05-10 11:40:03 -060034static int do_play(struct cmd_tbl *cmdtp, int flag, int argc,
35 char *const argv[])
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000036{
Simon Glassd4901892018-12-10 10:37:36 -070037 struct udevice *dev;
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000038 int ret = 0;
39 int msec = 1000;
40 int freq = 400;
41
42 if (argc > 1)
43 msec = simple_strtoul(argv[1], NULL, 10);
44 if (argc > 2)
45 freq = simple_strtoul(argv[2], NULL, 10);
46
Simon Glassd4901892018-12-10 10:37:36 -070047 ret = uclass_first_device_err(UCLASS_SOUND, &dev);
48 if (!ret)
49 ret = sound_beep(dev, msec, freq);
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000050 if (ret) {
Simon Glassd4901892018-12-10 10:37:36 -070051 printf("Sound device failed to play (err=%d)\n", ret);
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000052 return CMD_RET_FAILURE;
53 }
54
55 return 0;
56}
57
Simon Glass09140112020-05-10 11:40:03 -060058static struct cmd_tbl cmd_sound_sub[] = {
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000059 U_BOOT_CMD_MKENT(init, 0, 1, do_init, "", ""),
60 U_BOOT_CMD_MKENT(play, 2, 1, do_play, "", ""),
61};
62
63/* process sound command */
Simon Glass09140112020-05-10 11:40:03 -060064static int do_sound(struct cmd_tbl *cmdtp, int flag, int argc,
65 char *const argv[])
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000066{
Simon Glass09140112020-05-10 11:40:03 -060067 struct cmd_tbl *c;
Rajeshwari Shindec0c88532012-10-25 19:49:24 +000068
69 if (argc < 1)
70 return CMD_RET_USAGE;
71
72 /* Strip off leading 'sound' command argument */
73 argc--;
74 argv++;
75
76 c = find_cmd_tbl(argv[0], &cmd_sound_sub[0], ARRAY_SIZE(cmd_sound_sub));
77
78 if (c)
79 return c->cmd(cmdtp, flag, argc, argv);
80 else
81 return CMD_RET_USAGE;
82}
83
84U_BOOT_CMD(
85 sound, 4, 1, do_sound,
86 "sound sub-system",
87 "init - initialise the sound driver\n"
88 "sound play [len] [freq] - play a sound for len ms at freq hz\n"
89);