Blame view

include/media/m5mols.h 1.05 KB
bc125106f   HeungJun, Kim   [media] Add suppo...
1
2
3
4
  /*
   * Driver header for M-5MOLS 8M Pixel camera sensor with ISP
   *
   * Copyright (C) 2011 Samsung Electronics Co., Ltd.
c30701130   HeungJun, Kim   [media] m5mols: U...
5
   * Author: HeungJun Kim <riverful.kim@samsung.com>
bc125106f   HeungJun, Kim   [media] Add suppo...
6
7
   *
   * Copyright (C) 2009 Samsung Electronics Co., Ltd.
c30701130   HeungJun, Kim   [media] m5mols: U...
8
   * Author: Dongsoo Nathaniel Kim <dongsoo45.kim@samsung.com>
bc125106f   HeungJun, Kim   [media] Add suppo...
9
10
11
12
13
14
15
16
17
18
19
20
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   */
  
  #ifndef MEDIA_M5MOLS_H
  #define MEDIA_M5MOLS_H
  
  /**
   * struct m5mols_platform_data - platform data for M-5MOLS driver
bc125106f   HeungJun, Kim   [media] Add suppo...
21
   * @gpio_reset:	GPIO driving the reset pin of M-5MOLS
5b3bdfce6   Sylwester Nawrocki   [media] m5mols: R...
22
   * @reset_polarity: active state for gpio_reset pin, 0 or 1
bc125106f   HeungJun, Kim   [media] Add suppo...
23
24
25
26
27
   * @set_power:	an additional callback to the board setup code
   *		to be called after enabling and before disabling
   *		the sensor's supply regulators
   */
  struct m5mols_platform_data {
bc125106f   HeungJun, Kim   [media] Add suppo...
28
29
30
31
32
33
  	int gpio_reset;
  	u8 reset_polarity;
  	int (*set_power)(struct device *dev, int on);
  };
  
  #endif	/* MEDIA_M5MOLS_H */