1 /* SPDX-License-Identifier: GPL-2.0-only */ 1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 2 /* 3 * ov772x Camera 3 * ov772x Camera 4 * 4 * 5 * Copyright (C) 2008 Renesas Solutions Corp. 5 * Copyright (C) 2008 Renesas Solutions Corp. 6 * Kuninori Morimoto <morimoto.kuninori@renesa 6 * Kuninori Morimoto <morimoto.kuninori@renesas.com> 7 */ 7 */ 8 8 9 #ifndef __OV772X_H__ 9 #ifndef __OV772X_H__ 10 #define __OV772X_H__ 10 #define __OV772X_H__ 11 11 12 /* for flags */ 12 /* for flags */ 13 #define OV772X_FLAG_VFLIP (1 << 0) /* Ve 13 #define OV772X_FLAG_VFLIP (1 << 0) /* Vertical flip image */ 14 #define OV772X_FLAG_HFLIP (1 << 1) /* Ho 14 #define OV772X_FLAG_HFLIP (1 << 1) /* Horizontal flip image */ 15 15 16 /* 16 /* 17 * for Edge ctrl 17 * for Edge ctrl 18 * 18 * 19 * strength also control Auto or Manual Edge C 19 * strength also control Auto or Manual Edge Control Mode 20 * see also OV772X_MANUAL_EDGE_CTRL 20 * see also OV772X_MANUAL_EDGE_CTRL 21 */ 21 */ 22 struct ov772x_edge_ctrl { 22 struct ov772x_edge_ctrl { 23 unsigned char strength; 23 unsigned char strength; 24 unsigned char threshold; 24 unsigned char threshold; 25 unsigned char upper; 25 unsigned char upper; 26 unsigned char lower; 26 unsigned char lower; 27 }; 27 }; 28 28 29 #define OV772X_MANUAL_EDGE_CTRL 0x80 / 29 #define OV772X_MANUAL_EDGE_CTRL 0x80 /* un-used bit of strength */ 30 #define OV772X_EDGE_STRENGTH_MASK 0x1F 30 #define OV772X_EDGE_STRENGTH_MASK 0x1F 31 #define OV772X_EDGE_THRESHOLD_MASK 0x0F 31 #define OV772X_EDGE_THRESHOLD_MASK 0x0F 32 #define OV772X_EDGE_UPPER_MASK 0xFF 32 #define OV772X_EDGE_UPPER_MASK 0xFF 33 #define OV772X_EDGE_LOWER_MASK 0xFF 33 #define OV772X_EDGE_LOWER_MASK 0xFF 34 34 35 #define OV772X_AUTO_EDGECTRL(u, l) \ 35 #define OV772X_AUTO_EDGECTRL(u, l) \ 36 { \ 36 { \ 37 .upper = (u & OV772X_EDGE_UPPER_MASK), 37 .upper = (u & OV772X_EDGE_UPPER_MASK), \ 38 .lower = (l & OV772X_EDGE_LOWER_MASK), 38 .lower = (l & OV772X_EDGE_LOWER_MASK), \ 39 } 39 } 40 40 41 #define OV772X_MANUAL_EDGECTRL(s, t) 41 #define OV772X_MANUAL_EDGECTRL(s, t) \ 42 { 42 { \ 43 .strength = (s & OV772X_EDGE_STRENGTH 43 .strength = (s & OV772X_EDGE_STRENGTH_MASK) | \ 44 OV772X_MANUAL_EDGE_CTR 44 OV772X_MANUAL_EDGE_CTRL, \ 45 .threshold = (t & OV772X_EDGE_THRESHOL 45 .threshold = (t & OV772X_EDGE_THRESHOLD_MASK), \ 46 } 46 } 47 47 48 /** 48 /** 49 * struct ov772x_camera_info - ov772x driver !! 49 * ov772x_camera_info - ov772x driver interface structure 50 * @flags: Sensor configuration f 50 * @flags: Sensor configuration flags 51 * @edgectrl: Sensor edge control 51 * @edgectrl: Sensor edge control 52 */ 52 */ 53 struct ov772x_camera_info { 53 struct ov772x_camera_info { 54 unsigned long flags; 54 unsigned long flags; 55 struct ov772x_edge_ctrl edgectrl; 55 struct ov772x_edge_ctrl edgectrl; 56 }; 56 }; 57 57 58 #endif /* __OV772X_H__ */ 58 #endif /* __OV772X_H__ */ 59 59
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.