linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* sound: enable sound support on n900 on devicetree-based boot
@ 2014-11-09 12:02 Pavel Machek
  2014-11-09 12:37 ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Pavel Machek @ 2014-11-09 12:02 UTC (permalink / raw)
  To: pali.rohar, sre, sre, kernel list, linux-arm-kernel, linux-omap,
	tony, khilman, aaro.koskinen, freemangordon, peter.ujfalusi,
	broonie, perex, tiwai, alsa-devel


With device tree, it is possible (and encouraged) to build N900
kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable
the driver build in this case.

This makes sound work on my n900 under 3.18-rc1.

Signed-off-by: Pavel Machek <pavel@ucw.cz>

diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig
index d44463a..0d7b707 100644
--- a/sound/soc/omap/Kconfig
+++ b/sound/soc/omap/Kconfig
@@ -26,7 +26,7 @@ config SND_OMAP_SOC_N810
 
 config SND_OMAP_SOC_RX51
 	tristate "SoC Audio support for Nokia RX-51"
-	depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C
+	depends on SND_OMAP_SOC && ARM && I2C
 	select SND_OMAP_SOC_MCBSP
 	select SND_SOC_TLV320AIC3X
 	select SND_SOC_TPA6130A2

-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* Re: sound: enable sound support on n900 on devicetree-based boot
  2014-11-09 12:02 sound: enable sound support on n900 on devicetree-based boot Pavel Machek
@ 2014-11-09 12:37 ` Mark Brown
  2014-11-09 19:39   ` Pavel Machek
  2014-11-09 19:41   ` ASoC: omap: " Pavel Machek
  0 siblings, 2 replies; 5+ messages in thread
From: Mark Brown @ 2014-11-09 12:37 UTC (permalink / raw)
  To: Pavel Machek
  Cc: pali.rohar, sre, sre, kernel list, linux-arm-kernel, linux-omap,
	tony, khilman, aaro.koskinen, freemangordon, peter.ujfalusi,
	perex, tiwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 703 bytes --]

On Sun, Nov 09, 2014 at 01:02:22PM +0100, Pavel Machek wrote:
> 
> With device tree, it is possible (and encouraged) to build N900
> kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable
> the driver build in this case.

Please do try to use subject lines reflecting the style for the
subsystem.

>  config SND_OMAP_SOC_RX51
>  	tristate "SoC Audio support for Nokia RX-51"
> -	depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C
> +	depends on SND_OMAP_SOC && ARM && I2C

Please also update the config text so users have a chance to figure out
that this driver is the one they need for their system - I guess most
people won't know what RX-51 is.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

* Re: sound: enable sound support on n900 on devicetree-based boot
  2014-11-09 12:37 ` Mark Brown
@ 2014-11-09 19:39   ` Pavel Machek
  2014-11-09 19:41   ` ASoC: omap: " Pavel Machek
  1 sibling, 0 replies; 5+ messages in thread
From: Pavel Machek @ 2014-11-09 19:39 UTC (permalink / raw)
  To: Mark Brown
  Cc: pali.rohar, sre, sre, kernel list, linux-arm-kernel, linux-omap,
	tony, khilman, aaro.koskinen, freemangordon, peter.ujfalusi,
	perex, tiwai, alsa-devel

On Sun 2014-11-09 12:37:53, Mark Brown wrote:
> On Sun, Nov 09, 2014 at 01:02:22PM +0100, Pavel Machek wrote:
> > 
> > With device tree, it is possible (and encouraged) to build N900
> > kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable
> > the driver build in this case.
> 
> Please do try to use subject lines reflecting the style for the
> subsystem.

Ok.

> >  config SND_OMAP_SOC_RX51
> >  	tristate "SoC Audio support for Nokia RX-51"
> > -	depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C
> > +	depends on SND_OMAP_SOC && ARM && I2C
> 
> Please also update the config text so users have a chance to figure out
> that this driver is the one they need for their system - I guess most
> people won't know what RX-51 is.

Actually help text below already explains that. I'll update tristate
text, too.
									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* ASoC: omap: enable sound support on n900 on devicetree-based boot
  2014-11-09 12:37 ` Mark Brown
  2014-11-09 19:39   ` Pavel Machek
@ 2014-11-09 19:41   ` Pavel Machek
  2014-11-10 12:13     ` Mark Brown
  1 sibling, 1 reply; 5+ messages in thread
From: Pavel Machek @ 2014-11-09 19:41 UTC (permalink / raw)
  To: Mark Brown
  Cc: alsa-devel, khilman, tony, sre, aaro.koskinen, kernel list,
	freemangordon, peter.ujfalusi, sre, tiwai, pali.rohar, linux-omap,
	linux-arm-kernel

With device tree, it is possible (and encouraged) to build N900
kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable
the driver build in this case.

This makes sound work on my n900 under 3.18-rc1.

Signed-off-by: Pavel Machek <pavel@ucw.cz>

diff --git a/sound/soc/omap/Kconfig b/sound/soc/omap/Kconfig
index d44463a..2738b19 100644
--- a/sound/soc/omap/Kconfig
+++ b/sound/soc/omap/Kconfig
@@ -25,15 +25,15 @@ config SND_OMAP_SOC_N810
 	  Say Y if you want to add support for SoC audio on Nokia N810.
 
 config SND_OMAP_SOC_RX51
-	tristate "SoC Audio support for Nokia RX-51"
-	depends on SND_OMAP_SOC && ARM && (MACH_NOKIA_RX51 || COMPILE_TEST) && I2C
+	tristate "SoC Audio support for Nokia N900 (RX-51)"
+	depends on SND_OMAP_SOC && ARM && I2C
 	select SND_OMAP_SOC_MCBSP
 	select SND_SOC_TLV320AIC3X
 	select SND_SOC_TPA6130A2
 	depends on GPIOLIB
 	help
-	  Say Y if you want to add support for SoC audio on Nokia RX-51
-	  hardware. This is also known as Nokia N900 product.
+	  Say Y if you want to add support for SoC audio on Nokia N900
+	  cellphone.
 
 config SND_OMAP_SOC_AMS_DELTA
 	tristate "SoC Audio support for Amstrad E3 (Delta) videophone"



-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

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

* Re: ASoC: omap: enable sound support on n900 on devicetree-based boot
  2014-11-09 19:41   ` ASoC: omap: " Pavel Machek
@ 2014-11-10 12:13     ` Mark Brown
  0 siblings, 0 replies; 5+ messages in thread
From: Mark Brown @ 2014-11-10 12:13 UTC (permalink / raw)
  To: Pavel Machek
  Cc: pali.rohar, sre, sre, kernel list, linux-arm-kernel, linux-omap,
	tony, khilman, aaro.koskinen, freemangordon, peter.ujfalusi,
	perex, tiwai, alsa-devel

[-- Attachment #1: Type: text/plain, Size: 250 bytes --]

On Sun, Nov 09, 2014 at 08:41:51PM +0100, Pavel Machek wrote:
> With device tree, it is possible (and encouraged) to build N900
> kernels without CONFIG_MACH_NOKIA_RX51. Update config file to enable
> the driver build in this case.

Applied, thanks.

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

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

end of thread, other threads:[~2014-11-10 12:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-09 12:02 sound: enable sound support on n900 on devicetree-based boot Pavel Machek
2014-11-09 12:37 ` Mark Brown
2014-11-09 19:39   ` Pavel Machek
2014-11-09 19:41   ` ASoC: omap: " Pavel Machek
2014-11-10 12:13     ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).