| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Samsung S5P/Exynos4 SoC series camera interface driver header |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2010 - 2013 Samsung Electronics Co., Ltd. |
|---|
| 5 | 6 | * Sylwester Nawrocki <s.nawrocki@samsung.com> |
|---|
| 6 | | - * |
|---|
| 7 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 8 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 9 | | - * published by the Free Software Foundation. |
|---|
| 10 | 7 | */ |
|---|
| 11 | 8 | |
|---|
| 12 | 9 | #ifndef S5P_FIMC_H_ |
|---|
| .. | .. |
|---|
| 81 | 78 | * v4l2_device notification id. This is only for internal use in the kernel. |
|---|
| 82 | 79 | * Sensor subdevs should issue S5P_FIMC_TX_END_NOTIFY notification in single |
|---|
| 83 | 80 | * frame capture mode when there is only one VSYNC pulse issued by the sensor |
|---|
| 84 | | - * at begining of the frame transmission. |
|---|
| 81 | + * at beginning of the frame transmission. |
|---|
| 85 | 82 | */ |
|---|
| 86 | 83 | #define S5P_FIMC_TX_END_NOTIFY _IO('e', 0) |
|---|
| 87 | 84 | |
|---|
| .. | .. |
|---|
| 90 | 87 | /** |
|---|
| 91 | 88 | * struct fimc_fmt - color format data structure |
|---|
| 92 | 89 | * @mbus_code: media bus pixel code, -1 if not applicable |
|---|
| 93 | | - * @name: format description |
|---|
| 94 | 90 | * @fourcc: fourcc code for this format, 0 if not applicable |
|---|
| 95 | 91 | * @color: the driver's private color format id |
|---|
| 96 | 92 | * @memplanes: number of physically non-contiguous data planes |
|---|
| .. | .. |
|---|
| 102 | 98 | */ |
|---|
| 103 | 99 | struct fimc_fmt { |
|---|
| 104 | 100 | u32 mbus_code; |
|---|
| 105 | | - char *name; |
|---|
| 106 | 101 | u32 fourcc; |
|---|
| 107 | 102 | u32 color; |
|---|
| 108 | 103 | u16 memplanes; |
|---|