-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dong Aisheng
authored and
Sascha Hauer
committed
Aug 23, 2011
1 parent
660f0a9
commit 4a162cf
Showing
8 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: cf66ea8e14b753f1c4d38322d3e52f8838528091 | ||
refs/heads/master: c8ebcac823bb0246c42168c277069356432efd34 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,6 @@ config MXS_HAVE_PLATFORM_MXS_PWM | |
|
||
config MXS_HAVE_PLATFORM_MXSFB | ||
bool | ||
|
||
config MXS_HAVE_PLATFORM_MXS_SAIF | ||
bool |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License version 2 as published by the | ||
* Free Software Foundation. | ||
*/ | ||
#include <linux/compiler.h> | ||
#include <linux/err.h> | ||
#include <linux/init.h> | ||
|
||
#include <mach/mx23.h> | ||
#include <mach/mx28.h> | ||
#include <mach/devices-common.h> | ||
|
||
#define mxs_saif_data_entry_single(soc, _id) \ | ||
{ \ | ||
.id = _id, \ | ||
.iobase = soc ## _SAIF ## _id ## _BASE_ADDR, \ | ||
.irq = soc ## _INT_SAIF ## _id, \ | ||
.dma = soc ## _DMA_SAIF ## _id, \ | ||
.dmairq = soc ## _INT_SAIF ## _id ##_DMA, \ | ||
} | ||
|
||
#define mxs_saif_data_entry(soc, _id) \ | ||
[_id] = mxs_saif_data_entry_single(soc, _id) | ||
|
||
#ifdef CONFIG_SOC_IMX28 | ||
const struct mxs_saif_data mx28_saif_data[] __initconst = { | ||
mxs_saif_data_entry(MX28, 0), | ||
mxs_saif_data_entry(MX28, 1), | ||
}; | ||
#endif | ||
|
||
struct platform_device *__init mxs_add_saif(const struct mxs_saif_data *data) | ||
{ | ||
struct resource res[] = { | ||
{ | ||
.start = data->iobase, | ||
.end = data->iobase + SZ_4K - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = data->irq, | ||
.end = data->irq, | ||
.flags = IORESOURCE_IRQ, | ||
}, { | ||
.start = data->dma, | ||
.end = data->dma, | ||
.flags = IORESOURCE_DMA, | ||
}, { | ||
.start = data->dmairq, | ||
.end = data->dmairq, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
|
||
}; | ||
|
||
return mxs_add_platform_device("mxs-saif", data->id, res, | ||
ARRAY_SIZE(res), NULL, 0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters