blob: c4e802fa2efc8e484bf075364e67871dbec4cef9 (
plain) (
blame)
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
29
30
31
32
33
34
35
36
37
38
|
/* Copyright (C) 2011 NVIDIA Corporation.
*
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
* 02111-1307, USA
*/
#ifndef __SSL3250A_H__
#define __SSL3250A_H__
#include <media/nvc_torch.h>
#define SSL3250A_MAX_TORCH_LEVEL 11
#define SSL3250A_MAX_FLASH_LEVEL 20
struct ssl3250a_platform_data {
unsigned cfg; /* use the NVC_CFG_ defines */
unsigned num; /* see implementation notes in driver */
unsigned sync; /* see implementation notes in driver */
const char *dev_name; /* see implementation notes in driver */
struct nvc_torch_pin_state (*pinstate); /* see notes in driver */
unsigned max_amp_torch; /* maximum torch value allowed */
unsigned max_amp_flash; /* maximum flash value allowed */
unsigned gpio_act; /* GPIO connected to the ACT signal */
};
#endif /* __SSL3250A_H__ */
|