-
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.
Add driver for SMIA++/SMIA image sensors. The driver exposes the sensor as three subdevs, pixel array, binner and scaler --- in case the device has a scaler. Currently it relies on the board code for external clock handling. There is no fast way out of this dependency before the ISP drivers (omap3isp) among others will be able to export that clock through the clock framework instead. Signed-off-by: Sakari Ailus <sakari.ailus@maxwell.research.nokia.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
- Loading branch information
Sakari Ailus
authored and
Mauro Carvalho Chehab
committed
May 14, 2012
1 parent
cf1c5fa
commit ccfc97b
Showing
17 changed files
with
4,699 additions
and
0 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
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,13 @@ | ||
config VIDEO_SMIAPP | ||
tristate "SMIA++/SMIA sensor support" | ||
depends on I2C && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API | ||
select VIDEO_SMIAPP_PLL | ||
---help--- | ||
This is a generic driver for SMIA++/SMIA camera modules. | ||
|
||
config VIDEO_SMIAPP_DEBUG | ||
bool "Enable debugging for the generic SMIA++/SMIA driver" | ||
depends on VIDEO_SMIAPP | ||
---help--- | ||
Enable debugging output in the generic SMIA++/SMIA driver. If you | ||
are developing the driver you might want to enable this. |
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,3 @@ | ||
smiapp-objs += smiapp-core.o smiapp-regs.o \ | ||
smiapp-quirk.o smiapp-limits.o | ||
obj-$(CONFIG_VIDEO_SMIAPP) += smiapp.o |
Oops, something went wrong.