/* * S5K6AAFX camera sensor driver header * * Copyright (C) 2011 Samsung Electronics Co., Ltd. * * 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 S5K6AA_H #define S5K6AA_H #include /** * struct s5k6aa_gpio - data structure describing a GPIO * @gpio: GPIO number * @level: indicates active state of the @gpio */ struct s5k6aa_gpio { int gpio; int level; }; /** * struct s5k6aa_platform_data - s5k6aa driver platform data * @set_power: an additional callback to the board code, called * after enabling the regulators and before switching * the sensor off * @mclk_frequency: sensor's master clock frequency in Hz * @gpio_reset: GPIO driving RESET pin * @gpio_stby: GPIO driving STBY pin * @nlanes: maximum number of MIPI-CSI lanes used * @horiz_flip: default horizontal image flip value, non zero to enable * @vert_flip: default vertical image flip value, non zero to enable */ struct s5k6aa_platform_data { int (*set_power)(int enable); unsigned long mclk_frequency; struct s5k6aa_gpio gpio_reset; struct s5k6aa_gpio gpio_stby; enum v4l2_mbus_type bus_type; u8 nlanes; u8 horiz_flip; u8 vert_flip; }; #endif /* S5K6AA_H */ umbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/include/dt-bindings/clock/lpc18xx-ccu.h
='this.form.submit();'>
AgeCommit message (Expand)AuthorFilesLines
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-06-11 11:24:54 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2016-06-11 11:24:54 -0700
commit5d1f7023fb2233d454ac3ac2fb7cc96fb94e9cac (patch)
treec0088a7a1126b23435cb00d8cb00d89e0119b3c8 /Documentation/arm/tcm.txt
parent90735c99edfa1968a3e8da26a0b471a59fbc0f57 (diff)
parent9f05e6219023116b59f6495e8c4d4ba352dd5fea (diff)
Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux
Pull i2c fixes from Wolfram Sang: - a bigger fix for i801 to finally be able to be loaded on some machines again - smaller driver fixes - documentation update because of a renamed file * 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux: i2c: mux: reg: Provide of_match_table i2c: mux: refer to i2c-mux.txt i2c: octeon: Avoid printk after too long SMBUS message i2c: octeon: Missing AAK flag in case of I2C_M_RECV_LEN i2c: i801: Allow ACPI SystemIO OpRegion to conflict with PCI BAR
Diffstat (limited to 'Documentation/arm/tcm.txt')