]> git.baikalelectronics.ru Git - kernel.git/commit
media: platform: re-structure TI drivers
authorPratyush Yadav <p.yadav@ti.com>
Fri, 21 Jan 2022 14:29:00 +0000 (19:59 +0530)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Fri, 18 Mar 2022 04:58:35 +0000 (05:58 +0100)
commitfb2c7d0151b735c8dfeee747e0b3763c8be1d3f3
treefb0af1a4704e213c6298dff4837eb230b8ebd95b
parentb2f413045a9efff1a7abc6173930ee9a5683be0b
media: platform: re-structure TI drivers

The ti-vpe/ sub-directory does not only contain the VPE-specific things.
It also contains the CAL driver, which is a completely different
subsystem. This is also not a good place to add new drivers for other TI
platforms since they will all get mixed up.

Separate the VPE and CAL parts into different sub-directories and rename
the ti-vpe/ sub-directory to ti/. This is now the place where new TI
platform drivers can be added.

[mchehab: rebased to apple on the top of media/platform/Kconfig series]
Signed-off-by: Pratyush Yadav <p.yadav@ti.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
36 files changed:
MAINTAINERS
drivers/media/platform/Makefile
drivers/media/platform/ti-vpe/Makefile [deleted file]
drivers/media/platform/ti-vpe/cal-camerarx.c [deleted file]
drivers/media/platform/ti-vpe/cal-video.c [deleted file]
drivers/media/platform/ti-vpe/cal.c [deleted file]
drivers/media/platform/ti-vpe/cal.h [deleted file]
drivers/media/platform/ti-vpe/cal_regs.h [deleted file]
drivers/media/platform/ti-vpe/csc.c [deleted file]
drivers/media/platform/ti-vpe/csc.h [deleted file]
drivers/media/platform/ti-vpe/sc.c [deleted file]
drivers/media/platform/ti-vpe/sc.h [deleted file]
drivers/media/platform/ti-vpe/sc_coeff.h [deleted file]
drivers/media/platform/ti-vpe/vpdma.c [deleted file]
drivers/media/platform/ti-vpe/vpdma.h [deleted file]
drivers/media/platform/ti-vpe/vpdma_priv.h [deleted file]
drivers/media/platform/ti-vpe/vpe.c [deleted file]
drivers/media/platform/ti-vpe/vpe_regs.h [deleted file]
drivers/media/platform/ti/Makefile [new file with mode: 0644]
drivers/media/platform/ti/cal/Makefile [new file with mode: 0644]
drivers/media/platform/ti/cal/cal-camerarx.c [new file with mode: 0644]
drivers/media/platform/ti/cal/cal-video.c [new file with mode: 0644]
drivers/media/platform/ti/cal/cal.c [new file with mode: 0644]
drivers/media/platform/ti/cal/cal.h [new file with mode: 0644]
drivers/media/platform/ti/cal/cal_regs.h [new file with mode: 0644]
drivers/media/platform/ti/vpe/Makefile [new file with mode: 0644]
drivers/media/platform/ti/vpe/csc.c [new file with mode: 0644]
drivers/media/platform/ti/vpe/csc.h [new file with mode: 0644]
drivers/media/platform/ti/vpe/sc.c [new file with mode: 0644]
drivers/media/platform/ti/vpe/sc.h [new file with mode: 0644]
drivers/media/platform/ti/vpe/sc_coeff.h [new file with mode: 0644]
drivers/media/platform/ti/vpe/vpdma.c [new file with mode: 0644]
drivers/media/platform/ti/vpe/vpdma.h [new file with mode: 0644]
drivers/media/platform/ti/vpe/vpdma_priv.h [new file with mode: 0644]
drivers/media/platform/ti/vpe/vpe.c [new file with mode: 0644]
drivers/media/platform/ti/vpe/vpe_regs.h [new file with mode: 0644]