This is a patch series to add the OMAP Digital Microphone driver for OMAP4.
It includes the driver, a generic DMIC codec, platform devices, as well as HWMOD entries for OMAP44xx chipsets.
Note: The DMIC codec driver was removed from this series as it was accepted for and merged for the 2.6.38 kernel.
Benoit Cousson (1): OMAP4: hwmod: add entries for DMIC driver
David Lambert (3): ASoC: DMIC: Adding the OMAP DMIC driver OMAP4: DMIC: initializes the DMIC driver OMAP4: DMIC: Add DMIC codec platform devices
arch/arm/mach-omap2/board-4430sdp.c | 11 + arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 91 +++++ arch/arm/plat-omap/devices.c | 35 ++ arch/arm/plat-omap/include/plat/dmic.h | 82 +++++ sound/soc/omap/Kconfig | 3 + sound/soc/omap/Makefile | 2 + sound/soc/omap/omap-dmic.c | 534 ++++++++++++++++++++++++++++ 7 files changed, 758 insertions(+), 0 deletions(-) create mode 100644 arch/arm/plat-omap/include/plat/dmic.h create mode 100644 sound/soc/omap/omap-dmic.c