forked from torvalds/linux
-
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.
media: atmel: move microchip_csi2dc to dedicated microchip platform
The Atmel ISC will be moved to staging thus the atmel platform will only have the ISI driver. The new media-controller converted ISC driver will be placed inside a dedicated microchip platform directory. It is then natural to have the microchip-csi2dc moved to this new platform directory. The next step is to add the Microchip ISC driver to the new platform directory and reside together with the Microchip CSI2DC driver. Signed-off-by: Eugen Hristev <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
- Loading branch information
Showing
8 changed files
with
25 additions
and
17 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 |
---|---|---|
|
@@ -13476,7 +13476,7 @@ M: Eugen Hristev <[email protected]> | |
L: [email protected] | ||
S: Supported | ||
F: Documentation/devicetree/bindings/media/microchip,csi2dc.yaml | ||
F: drivers/media/platform/atmel/microchip-csi2dc.c | ||
F: drivers/media/platform/microchip/microchip-csi2dc.c | ||
|
||
MICROCHIP ECC DRIVER | ||
M: Tudor Ambarus <[email protected]> | ||
|
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,19 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
comment "Microchip Technology, Inc. media platform drivers" | ||
|
||
config VIDEO_MICROCHIP_CSI2DC | ||
tristate "Microchip CSI2 Demux Controller" | ||
depends on V4L_PLATFORM_DRIVERS | ||
depends on VIDEO_DEV && COMMON_CLK && OF | ||
depends on ARCH_AT91 || COMPILE_TEST | ||
select MEDIA_CONTROLLER | ||
select VIDEO_V4L2_SUBDEV_API | ||
select V4L2_FWNODE | ||
help | ||
CSI2 Demux Controller driver. CSI2DC is a helper chip | ||
that converts IDI interface byte stream to a parallel pixel stream. | ||
It supports various RAW formats as input. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called microchip-csi2dc. |
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 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
obj-$(CONFIG_VIDEO_MICROCHIP_CSI2DC) += microchip-csi2dc.o |
File renamed without changes.