summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mx5/devices.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-mx5/devices.c')
-rw-r--r--arch/arm/mach-mx5/devices.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mach-mx5/devices.c b/arch/arm/mach-mx5/devices.c
index 7685a83083c4..986314c36559 100644
--- a/arch/arm/mach-mx5/devices.c
+++ b/arch/arm/mach-mx5/devices.c
@@ -731,6 +731,26 @@ struct platform_device mxc_ssi2_device = {
.resource = ssi2_resources,
};
+static struct resource ssi3_resources[] = {
+ {
+ .start = SSI3_BASE_ADDR,
+ .end = SSI3_BASE_ADDR + 0x5C,
+ .flags = IORESOURCE_MEM,
+ },
+ {
+ .start = MXC_INT_SSI3,
+ .end = MXC_INT_SSI3,
+ .flags = IORESOURCE_IRQ,
+ },
+};
+
+struct platform_device mxc_ssi3_device = {
+ .name = "mxc_ssi",
+ .id = 2,
+ .num_resources = ARRAY_SIZE(ssi3_resources),
+ .resource = ssi3_resources,
+};
+
static struct resource esai_resources[] = {
{
.start = ESAI_BASE_ADDR,