Mark Brown <broonie@xxxxxxxxxxxxxxxxxxxxxxxxxxx> writes: Hi, > On Thu, Nov 11, 2010 at 08:45:54AM +0200, Robas, Teodor wrote: > >> I am writing to this list in the hope that somebody can clear me out >> if this platform is supported and I am doing something wrong, or if >> it is still work in progress. You have an OpenRD Client or Ultimate ? I'll consider you have an Ultimate. You need to patch some files (assuming the Ultimate as a cs42l51 at i2c address 4a like the Client) like I did in the patch sent with this mail. > >> The drivers that I think should work with my hardware (OpenRD ultimate) >> are located in sound/soc/kirkwood/*. > > Please remember to always CC maintainers on posts to Linux lists. I've > added a CC to Arnaud and not cut any text for his benefit. > >> Sound on this device worked (partially) with the default software >> it came but not with the latest about 10 kernels I have tried. >> >> I added bellow the output of alsa-info.sh script. If needed I can look >> for more or try to fix it (with some help). >> >> >> Best Regards, >> Teodor >> [...] >> Module >> snd_soc_kirkwood >> snd_soc_core >> snd_pcm >> snd_timer >> snd >> snd_page_alloc >> bridge >> stp >> llc >> nfsd >> lockd >> nfs_acl >> auth_rpcgss >> sunrpc >> exportfs >> loop >> xgifb >> fb >> cfbcopyarea >> mv_cesa >> cfbimgblt >> aes_generic >> cfbfillrect >> sd_mod >> crc_t10dif >> usb_storage >> sata_mv >> libata >> ehci_hcd >> scsi_mod >> usbcore >> mv643xx_eth >> libphy >> nls_base I don't see snd-soc-openrd.ko and snd-soc-kirkwood-i2s.ko loaded and you need them. Also, please give kernel boot logs if the sound is still not working with my patch and all needed modules loaded. Checking if the codec is still a cs42l51 at 0x4a would be nice too. Arnaud
Kirkwood/ASoC: Add support for OpenRD Ultimate OpenRD Ultimate & Client are similar machines so enable OpenRD client support on Ultimate too Signed-off-by: Arnaud Patard <arnaud.patard@xxxxxxxxxxx> Index: sound-2.6/arch/arm/mach-kirkwood/openrd-setup.c =================================================================== --- sound-2.6.orig/arch/arm/mach-kirkwood/openrd-setup.c 2010-11-12 17:58:41.000000000 +0100 +++ sound-2.6/arch/arm/mach-kirkwood/openrd-setup.c 2010-11-12 17:59:06.000000000 +0100 @@ -94,7 +94,7 @@ kirkwood_i2c_init(); - if (machine_is_openrd_client()) { + if (machine_is_openrd_client() || machine_is_openrd_ultimate()) { i2c_register_board_info(0, i2c_board_info, ARRAY_SIZE(i2c_board_info)); kirkwood_audio_init(); Index: sound-2.6/sound/soc/kirkwood/kirkwood-openrd.c =================================================================== --- sound-2.6.orig/sound/soc/kirkwood/kirkwood-openrd.c 2010-11-12 17:59:17.000000000 +0100 +++ sound-2.6/sound/soc/kirkwood/kirkwood-openrd.c 2010-11-12 17:59:31.000000000 +0100 @@ -86,7 +86,7 @@ { int ret; - if (!machine_is_openrd_client()) + if (!machine_is_openrd_client() && !machine_is_openrd_ultimate()) return 0; openrd_client_snd_device = platform_device_alloc("soc-audio", -1); Index: sound-2.6/sound/soc/kirkwood/Kconfig =================================================================== --- sound-2.6.orig/sound/soc/kirkwood/Kconfig 2010-11-12 17:59:51.000000000 +0100 +++ sound-2.6/sound/soc/kirkwood/Kconfig 2010-11-12 18:00:27.000000000 +0100 @@ -11,7 +11,7 @@ config SND_KIRKWOOD_SOC_OPENRD tristate "SoC Audio support for Kirkwood Openrd Client" - depends on SND_KIRKWOOD_SOC && MACH_OPENRD_CLIENT + depends on SND_KIRKWOOD_SOC && (MACH_OPENRD_CLIENT || MACH_OPENRD_ULTIMATE) select SND_KIRKWOOD_SOC_I2S select SND_SOC_CS42L51 help
_______________________________________________ Alsa-devel mailing list Alsa-devel@xxxxxxxxxxxxxxxx http://mailman.alsa-project.org/mailman/listinfo/alsa-devel