diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2011-02-24 04:46:51 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-02-24 16:02:33 -0500 |
commit | 8b1906f12a60d377b11d8a3dd256ce0a0ef6c614 (patch) | |
tree | 8d7d2c44dcfec87fb1c096570f54ddd94a3126a5 /arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |
parent | cb7e9ded3240d717d1d24812d33b3ef2c98c084e (diff) |
OMAP3: hwmod: add dev_attr for McBSP sidetone
Since the sidetone block is tightly coupled to the mcbsp, sidetone information
is directly added to mcbsp2 & 3 hwmod dev_attr.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Benoit Cousson <b-cousson@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_3xxx_data.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index e1d89c0607e4..25226bf063e1 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |||
@@ -1852,6 +1852,10 @@ static struct omap_hwmod_ocp_if *omap3xxx_mcbsp2_slaves[] = { | |||
1852 | &omap3xxx_l4_per__mcbsp2, | 1852 | &omap3xxx_l4_per__mcbsp2, |
1853 | }; | 1853 | }; |
1854 | 1854 | ||
1855 | static struct omap_mcbsp_dev_attr omap34xx_mcbsp2_dev_attr = { | ||
1856 | .sidetone = "mcbsp2_sidetone", | ||
1857 | }; | ||
1858 | |||
1855 | static struct omap_hwmod omap3xxx_mcbsp2_hwmod = { | 1859 | static struct omap_hwmod omap3xxx_mcbsp2_hwmod = { |
1856 | .name = "mcbsp2", | 1860 | .name = "mcbsp2", |
1857 | .class = &omap3xxx_mcbsp_hwmod_class, | 1861 | .class = &omap3xxx_mcbsp_hwmod_class, |
@@ -1871,6 +1875,7 @@ static struct omap_hwmod omap3xxx_mcbsp2_hwmod = { | |||
1871 | }, | 1875 | }, |
1872 | .slaves = omap3xxx_mcbsp2_slaves, | 1876 | .slaves = omap3xxx_mcbsp2_slaves, |
1873 | .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp2_slaves), | 1877 | .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp2_slaves), |
1878 | .dev_attr = &omap34xx_mcbsp2_dev_attr, | ||
1874 | .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP3430), | 1879 | .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP3430), |
1875 | }; | 1880 | }; |
1876 | 1881 | ||
@@ -1910,6 +1915,10 @@ static struct omap_hwmod_ocp_if *omap3xxx_mcbsp3_slaves[] = { | |||
1910 | &omap3xxx_l4_per__mcbsp3, | 1915 | &omap3xxx_l4_per__mcbsp3, |
1911 | }; | 1916 | }; |
1912 | 1917 | ||
1918 | static struct omap_mcbsp_dev_attr omap34xx_mcbsp3_dev_attr = { | ||
1919 | .sidetone = "mcbsp3_sidetone", | ||
1920 | }; | ||
1921 | |||
1913 | static struct omap_hwmod omap3xxx_mcbsp3_hwmod = { | 1922 | static struct omap_hwmod omap3xxx_mcbsp3_hwmod = { |
1914 | .name = "mcbsp3", | 1923 | .name = "mcbsp3", |
1915 | .class = &omap3xxx_mcbsp_hwmod_class, | 1924 | .class = &omap3xxx_mcbsp_hwmod_class, |
@@ -1929,6 +1938,7 @@ static struct omap_hwmod omap3xxx_mcbsp3_hwmod = { | |||
1929 | }, | 1938 | }, |
1930 | .slaves = omap3xxx_mcbsp3_slaves, | 1939 | .slaves = omap3xxx_mcbsp3_slaves, |
1931 | .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp3_slaves), | 1940 | .slaves_cnt = ARRAY_SIZE(omap3xxx_mcbsp3_slaves), |
1941 | .dev_attr = &omap34xx_mcbsp3_dev_attr, | ||
1932 | .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP3430), | 1942 | .omap_chip = OMAP_CHIP_INIT(CHIP_IS_OMAP3430), |
1933 | }; | 1943 | }; |
1934 | 1944 | ||