diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2011-02-24 15:51:45 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-02-24 15:51:45 -0500 |
commit | cd5038024d6c92fbe4bf67af91eea5c6fb24a192 (patch) | |
tree | 131be5bbb10844c72165fd127d0b33edc589c1cf | |
parent | 82d2a5db5296834a4317e554f57b8883d7abb86d (diff) |
OMAP: hwmod: allow hwmod to provide address space accessible from SDMA
Adds support for resource API to get address space info other than just MPU.
The drivers can now use platform_get_resource_byname() to get resource of
type 'IORESOURCE_MEM' by name.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Benoit Cousson <b-cousson@ti.com>
Acked-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod.c | 1 | ||||
-rw-r--r-- | arch/arm/plat-omap/include/plat/omap_hwmod.h | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index 9e89a58711b7..c7762ab0dc8c 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c | |||
@@ -1883,6 +1883,7 @@ int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res) | |||
1883 | os = oh->slaves[i]; | 1883 | os = oh->slaves[i]; |
1884 | 1884 | ||
1885 | for (j = 0; j < os->addr_cnt; j++) { | 1885 | for (j = 0; j < os->addr_cnt; j++) { |
1886 | (res + r)->name = (os->addr + j)->name; | ||
1886 | (res + r)->start = (os->addr + j)->pa_start; | 1887 | (res + r)->start = (os->addr + j)->pa_start; |
1887 | (res + r)->end = (os->addr + j)->pa_end; | 1888 | (res + r)->end = (os->addr + j)->pa_end; |
1888 | (res + r)->flags = IORESOURCE_MEM; | 1889 | (res + r)->flags = IORESOURCE_MEM; |
diff --git a/arch/arm/plat-omap/include/plat/omap_hwmod.h b/arch/arm/plat-omap/include/plat/omap_hwmod.h index fedd82971c9e..04b1ea16a678 100644 --- a/arch/arm/plat-omap/include/plat/omap_hwmod.h +++ b/arch/arm/plat-omap/include/plat/omap_hwmod.h | |||
@@ -178,7 +178,8 @@ struct omap_hwmod_omap2_firewall { | |||
178 | #define ADDR_TYPE_RT (1 << 1) | 178 | #define ADDR_TYPE_RT (1 << 1) |
179 | 179 | ||
180 | /** | 180 | /** |
181 | * struct omap_hwmod_addr_space - MPU address space handled by the hwmod | 181 | * struct omap_hwmod_addr_space - address space handled by the hwmod |
182 | * @name: name of the address space | ||
182 | * @pa_start: starting physical address | 183 | * @pa_start: starting physical address |
183 | * @pa_end: ending physical address | 184 | * @pa_end: ending physical address |
184 | * @flags: (see omap_hwmod_addr_space.flags macros above) | 185 | * @flags: (see omap_hwmod_addr_space.flags macros above) |
@@ -187,6 +188,7 @@ struct omap_hwmod_omap2_firewall { | |||
187 | * structure. GPMC is one example. | 188 | * structure. GPMC is one example. |
188 | */ | 189 | */ |
189 | struct omap_hwmod_addr_space { | 190 | struct omap_hwmod_addr_space { |
191 | const char *name; | ||
190 | u32 pa_start; | 192 | u32 pa_start; |
191 | u32 pa_end; | 193 | u32 pa_end; |
192 | u8 flags; | 194 | u8 flags; |