Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
soc: xilinx: vcu: Add exported functions
Add exported fuctions to vcu driver. These functions are called by out of tree driver. Also probe childs which also requires DT binding extension which are also coverred by this patch. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Signed-off-by: Rohit Visavalia <rohit.visavalia@xilinx.com> State: not-upstreamable
- Loading branch information
Michal Simek
committed
Apr 16, 2020
1 parent
ab7a893
commit 27d1915e73e5bd983ebcc6d6ae4f89e3697956b2
Showing
3 changed files
with
85 additions
and
2 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| /* | ||
| * Xilinx VCU Init | ||
| * | ||
| * Copyright (C) 2016 - 2017 Xilinx, Inc. | ||
| * | ||
| * Contacts Dhaval Shah <dshah@xilinx.com> | ||
| * | ||
| * SPDX-License-Identifier: GPL-2.0 | ||
| */ | ||
| #ifndef _XILINX_VCU_H_ | ||
| #define _XILINX_VCU_H_ | ||
|
|
||
| struct xvcu_device; | ||
|
|
||
| u32 xvcu_get_color_depth(struct xvcu_device *xvcu); | ||
| u32 xvcu_get_memory_depth(struct xvcu_device *xvcu); | ||
|
|
||
| #endif /* _XILINX_VCU_H_ */ |