blob: e2a780fbc898a0cf92b11d6e78b99fd09821092f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
* dim2_hdm.h - MediaLB DIM2 HDM Header
*
* Copyright (C) 2015-2017, Microchip Technology Germany II GmbH & Co. KG
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* This file is licensed under GPLv2.
*/
#ifndef DIM2_HDM_H
#define DIM2_HDM_H
#include <linux/types.h>
struct device;
/* platform dependent data for dim2 interface */
struct dim2_platform_data {
int (*init)(struct dim2_platform_data *pd, void __iomem *io_base);
void (*destroy)(struct dim2_platform_data *pd);
u8 clk_speed;
};
#endif /* DIM2_HDM_H */
|