All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/11] sound: Add sound support for Nyan
@ 2018-12-27 20:24 Simon Glass
  2018-12-27 20:24 ` [U-Boot] [PATCH 01/11] misc: Allow child devices Simon Glass
                   ` (15 more replies)
  0 siblings, 16 replies; 22+ messages in thread
From: Simon Glass @ 2018-12-27 20:24 UTC (permalink / raw)
  To: u-boot

This series adds sound support for Nyan. It allows simple beeps to be
generated in U-Boot. This requires the addition of an I2S driver, an
audio hub driver and a sound driver to pull things together. An existing
audio codec (MAX98090) is used.


Simon Glass (11):
  misc: Allow child devices
  sound: samsung: Fix 'regiter' typo
  sound: i2s: Tidy up a few comments
  sound: Allow audio codecs to be used by other SoCs
  tegra: Correct tegra124 clock name
  tegra: Add a delay in clock_start_periph_pll()
  tegra: sound: Add an audio hub driver
  tegra: sound: Add an I2S driver
  sound: tegra: Add a sound driver
  tegra: nyan-big: Enable sound
  tegra: nyan: Add a README

 arch/arm/include/asm/arch-tegra/tegra_ahub.h | 475 +++++++++++++++++++
 arch/arm/include/asm/arch-tegra/tegra_i2s.h  | 206 ++++++++
 arch/arm/mach-tegra/clock.c                  |   1 +
 arch/arm/mach-tegra/tegra124/clock.c         |   2 +-
 board/nvidia/nyan-big/README                 |  18 +
 board/nvidia/nyan-big/nyan-big.c             |   2 +-
 configs/nyan-big_defconfig                   |   8 +-
 drivers/misc/misc-uclass.c                   |   1 +
 drivers/sound/Kconfig                        |  17 +-
 drivers/sound/Makefile                       |   1 +
 drivers/sound/max98088.c                     |   7 -
 drivers/sound/max98090.c                     |   7 -
 drivers/sound/max98095.c                     |   7 -
 drivers/sound/maxim_codec.c                  |   3 -
 drivers/sound/samsung-i2s.c                  |  16 +-
 drivers/sound/samsung_sound.c                |   4 +
 drivers/sound/tegra_ahub.c                   | 256 ++++++++++
 drivers/sound/tegra_i2s.c                    | 124 +++++
 drivers/sound/tegra_i2s_priv.h               |  29 ++
 drivers/sound/tegra_sound.c                  | 100 ++++
 include/i2s.h                                |  11 +-
 21 files changed, 1246 insertions(+), 49 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-tegra/tegra_ahub.h
 create mode 100644 arch/arm/include/asm/arch-tegra/tegra_i2s.h
 create mode 100644 board/nvidia/nyan-big/README
 create mode 100644 drivers/sound/tegra_ahub.c
 create mode 100644 drivers/sound/tegra_i2s.c
 create mode 100644 drivers/sound/tegra_i2s_priv.h
 create mode 100644 drivers/sound/tegra_sound.c

-- 
2.20.1.415.g653613c723-goog

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2019-03-31  2:01 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-27 20:24 [U-Boot] [PATCH 00/11] sound: Add sound support for Nyan Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 01/11] misc: Allow child devices Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 02/11] sound: samsung: Fix 'regiter' typo Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 03/11] sound: i2s: Tidy up a few comments Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 04/11] sound: Allow audio codecs to be used by other SoCs Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 05/11] tegra: Correct tegra124 clock name Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 06/11] tegra: Add a delay in clock_start_periph_pll() Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 07/11] tegra: sound: Add an audio hub driver Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 08/11] tegra: sound: Add an I2S driver Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 09/11] sound: tegra: Add a sound driver Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 10/11] tegra: nyan-big: Enable sound Simon Glass
2018-12-27 20:24 ` [U-Boot] [PATCH 11/11] tegra: nyan: Add a README Simon Glass
2019-01-20 20:32 ` [U-Boot] [PATCH 00/11] sound: Add sound support for Nyan Simon Glass
2019-01-20 21:46   ` Tom Warren
2019-01-21 23:43     ` Simon Glass
2019-02-08  4:14       ` Simon Glass
2019-02-08  9:50         ` Jon Hunter
2019-03-31  2:01           ` Simon Glass
2019-01-21 23:42 ` [U-Boot] [PATCH 04/11] sound: Allow audio codecs to be used by other SoCs sjg at google.com
2019-01-21 23:42 ` [U-Boot] [PATCH 03/11] sound: i2s: Tidy up a few comments sjg at google.com
2019-01-21 23:42 ` [U-Boot] [PATCH 02/11] sound: samsung: Fix 'regiter' typo sjg at google.com
2019-01-21 23:42 ` [U-Boot] [PATCH 01/11] misc: Allow child devices sjg at google.com

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.