mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
media: xilinx: Use SPDX-License-Identifier
SPDX-License-Identifier is used for the Xilinx Video IP and related drivers. [Added drivers/media/platform/xilinx/Kconfig] [Added drivers/media/platform/xilinx/Makefile] [Added include/dt-bindings/media/xilinx-vip.h] Signed-off-by: Dhaval Shah <dhaval23031987@gmail.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
5d331b7f4c
commit
83268fa6b4
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
config VIDEO_XILINX
|
config VIDEO_XILINX
|
||||||
tristate "Xilinx Video IP (EXPERIMENTAL)"
|
tristate "Xilinx Video IP (EXPERIMENTAL)"
|
||||||
depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && OF && HAS_DMA
|
depends on VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API && OF && HAS_DMA
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
xilinx-video-objs += xilinx-dma.o xilinx-vip.o xilinx-vipp.o
|
xilinx-video-objs += xilinx-dma.o xilinx-vip.o xilinx-vipp.o
|
||||||
|
|
||||||
obj-$(CONFIG_VIDEO_XILINX) += xilinx-video.o
|
obj-$(CONFIG_VIDEO_XILINX) += xilinx-video.o
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video DMA
|
* Xilinx Video DMA
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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/dma/xilinx_dma.h>
|
#include <linux/dma/xilinx_dma.h>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video DMA
|
* Xilinx Video DMA
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XILINX_VIP_DMA_H__
|
#ifndef __XILINX_VIP_DMA_H__
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Test Pattern Generator
|
* Xilinx Test Pattern Generator
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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/device.h>
|
#include <linux/device.h>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video IP Core
|
* Xilinx Video IP Core
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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/clk.h>
|
#include <linux/clk.h>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video IP Core
|
* Xilinx Video IP Core
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XILINX_VIP_H__
|
#ifndef __XILINX_VIP_H__
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video IP Composite Device
|
* Xilinx Video IP Composite Device
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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/list.h>
|
#include <linux/list.h>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video IP Composite Device
|
* Xilinx Video IP Composite Device
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XILINX_VIPP_H__
|
#ifndef __XILINX_VIPP_H__
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video Timing Controller
|
* Xilinx Video Timing Controller
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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/clk.h>
|
#include <linux/clk.h>
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video Timing Controller
|
* Xilinx Video Timing Controller
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __XILINX_VTC_H__
|
#ifndef __XILINX_VTC_H__
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
/*
|
/*
|
||||||
* Xilinx Video IP Core
|
* Xilinx Video IP Core
|
||||||
*
|
*
|
||||||
@ -6,10 +7,6 @@
|
|||||||
*
|
*
|
||||||
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
* Contacts: Hyun Kwon <hyun.kwon@xilinx.com>
|
||||||
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
* Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
||||||
*
|
|
||||||
* 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.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __DT_BINDINGS_MEDIA_XILINX_VIP_H__
|
#ifndef __DT_BINDINGS_MEDIA_XILINX_VIP_H__
|
||||||
|
Loading…
Reference in New Issue
Block a user