-
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.
yaml --- r: 226048 b: refs/heads/master c: b2997cb h: refs/heads/master v: v3
- Loading branch information
Uwe Kleine-König
committed
Nov 17, 2010
1 parent
b0d970b
commit 60114ac
Showing
9 changed files
with
77 additions
and
36 deletions.
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: 3bde75b5370bd69fd7f07a8e254bef05b1b5b219 | ||
refs/heads/master: b2997cb12b302ee6d233808e32214d00afdcf128 |
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
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright (C) 2010 Pengutronix | ||
* Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de> | ||
* | ||
* 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 <mach/hardware.h> | ||
#include <mach/devices-common.h> | ||
|
||
#define imx_mx2_camera_data_entry_single(soc) \ | ||
{ \ | ||
.iobasecsi = soc ## _CSI_BASE_ADDR, \ | ||
.iosizecsi = SZ_32, \ | ||
.irqcsi = soc ## _INT_CSI, \ | ||
.iobaseemmaprp = soc ## _EMMAPRP_BASE_ADDR, \ | ||
.iosizeemmaprp = SZ_32, \ | ||
.irqemmaprp = soc ## _INT_EMMAPRP, \ | ||
} | ||
|
||
#ifdef CONFIG_SOC_IMX27 | ||
const struct imx_mx2_camera_data imx27_mx2_camera_data __initconst = | ||
imx_mx2_camera_data_entry_single(MX27); | ||
#endif /* ifdef CONFIG_SOC_IMX27 */ | ||
|
||
struct platform_device *__init imx_add_mx2_camera( | ||
const struct imx_mx2_camera_data *data, | ||
const struct mx2_camera_platform_data *pdata) | ||
{ | ||
struct resource res[] = { | ||
{ | ||
.start = data->iobasecsi, | ||
.end = data->iobasecsi + data->iosizecsi - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = data->iobaseemmaprp, | ||
.end = data->iobaseemmaprp + data->iosizeemmaprp - 1, | ||
.flags = IORESOURCE_MEM, | ||
}, { | ||
.start = data->irqcsi, | ||
.end = data->irqcsi, | ||
.flags = IORESOURCE_IRQ, | ||
}, { | ||
.start = data->irqemmaprp, | ||
.end = data->irqemmaprp, | ||
.flags = IORESOURCE_IRQ, | ||
}, | ||
}; | ||
return imx_add_platform_device_dmamask("mx2-camera", 0, | ||
res, ARRAY_SIZE(res), | ||
pdata, sizeof(*pdata), DMA_BIT_MASK(32)); | ||
} |
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