Searched +full:mipi +full:- +full:ccs (Results 1 – 19 of 19) sorted by relevance
| /Linux-v6.1/Documentation/driver-api/media/drivers/ccs/ |
| D | ccs.rst | 1 .. SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause 5 MIPI CCS camera sensor driver 8 The MIPI CCS camera sensor driver is a generic driver for `MIPI CCS 9 <https://www.mipi.org/specifications/camera-command-set>`_ compliant 10 camera sensors. It exposes three sub-devices representing the pixel array, 16 Pixel Array sub-device 17 ---------------------- 19 The pixel array sub-device represents the camera sensor's pixel matrix, as well 26 ------ 28 The binner sub-device represents the binning functionality on the sensor. For [all …]
|
| /Linux-v6.1/Documentation/devicetree/bindings/media/i2c/ |
| D | mipi-ccs.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 # Copyright (C) 2014--2020 Intel Corporation 4 --- 5 $id: http://devicetree.org/schemas/media/i2c/mipi-ccs.yaml# 6 $schema: http://devicetree.org/meta-schemas/core.yaml# 8 title: MIPI CCS, SMIA++ and SMIA compliant camera sensors 11 - Sakari Ailus <sakari.ailus@linux.intel.com> 15 CCS (Camera Command Set) is a raw Bayer camera sensor standard defined by the 16 MIPI Alliance; see 17 <URL:https://www.mipi.org/specifications/camera-command-set>. [all …]
|
| /Linux-v6.1/Documentation/userspace-api/media/drivers/ |
| D | ccs.rst | 1 .. SPDX-License-Identifier: GPL-2.0-only 5 MIPI CCS camera sensor driver 8 The MIPI CCS camera sensor driver is a generic driver for `MIPI CCS 9 <https://www.mipi.org/specifications/camera-command-set>`_ compliant 10 camera sensors. It exposes three sub-devices representing the pixel array, 16 Pixel Array sub-device 17 ---------------------- 19 The pixel array sub-device represents the camera sensor's pixel matrix, as well 26 ------ 28 The binner sub-device represents the binning functionality on the sensor. For [all …]
|
| /Linux-v6.1/drivers/media/i2c/ccs/ |
| D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 3 tristate "MIPI CCS/SMIA++/SMIA sensor support" 10 This is a generic driver for MIPI CCS, SMIA++ and SMIA compliant
|
| D | ccs-reg-access.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * include/media/ccs/ccs-reg-access.h 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2011--2012 Nokia Corporation 18 #include "ccs-regs.h"
|
| D | ccs.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * drivers/media/i2c/smiapp/ccs.h 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2010--2012 Nokia Corporation 16 #include <media/v4l2-ctrls.h> 17 #include <media/v4l2-subdev.h> 19 #include "ccs-data.h" 20 #include "ccs-limits.h" 21 #include "ccs-quirk.h" 22 #include "ccs-regs.h" [all …]
|
| D | ccs-quirk.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * drivers/media/i2c/ccs/ccs-quirk.h 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2011--2012 Nokia Corporation 18 * struct ccs_quirk - quirks for sensors that deviate from SMIA++ standard 20 * @limits: Replace sensor->limits with values which can't be read from 38 * @return: 0 on success, -ENOIOCTLCMD if no register 68 ((sensor)->minfo.quirk && \ 69 (sensor)->minfo.quirk->_quirk ? \ 70 (sensor)->minfo.quirk->_quirk(sensor, ##__VA_ARGS__) : 0) [all …]
|
| D | ccs-quirk.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * drivers/media/i2c/ccs/ccs-quirk.c 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2011--2012 Nokia Corporation 14 #include "ccs.h" 15 #include "ccs-limits.h" 20 struct i2c_client *client = v4l2_get_subdevdata(&sensor->src->sd); in ccs_write_addr_8s() 23 for (; len > 0; len--, regs++) { in ccs_write_addr_8s() 24 rval = ccs_write_addr(sensor, regs->reg, regs->val); in ccs_write_addr_8s() 26 dev_err(&client->dev, in ccs_write_addr_8s() [all …]
|
| D | ccs-reg-access.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * drivers/media/i2c/ccs/ccs-reg-access.c 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2011--2012 Nokia Corporation 17 #include "ccs.h" 18 #include "ccs-limits.h" 26 dev_err(&client->dev, "this is a negative number\n"); in float_to_u32_mul_1000000() 34 dev_err(&client->dev, "NaN or other special number\n"); in float_to_u32_mul_1000000() 49 exp = ((int32_t)phloat >> 23) - 127; in float_to_u32_mul_1000000() 55 man >>= -exp; in float_to_u32_mul_1000000() [all …]
|
| D | ccs-core.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * drivers/media/i2c/ccs/ccs-core.c 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2010--2012 Nokia Corporation 13 * Based on smia-sensor.c by Tuukka Toivonen <tuukkat76@gmail.com> 27 #include <linux/v4l2-mediabus.h> 28 #include <media/v4l2-fwnode.h> 29 #include <media/v4l2-device.h> 30 #include <uapi/linux/ccs.h> 32 #include "ccs.h" [all …]
|
| D | smiapp-reg-defs.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * drivers/media/i2c/smiapp/smiapp-reg-defs.h 5 * Generic driver for MIPI CCS/SMIA/SMIA++ compliant camera sensors 8 * Copyright (C) 2011--2012 Nokia Corporation
|
| /Linux-v6.1/drivers/media/i2c/ |
| D | ccs-pll.h | 1 /* SPDX-License-Identifier: GPL-2.0-only */ 3 * drivers/media/i2c/ccs-pll.h 5 * Generic MIPI CCS/SMIA/SMIA++ PLL calculator 17 /* CSI-2 or CCP-2 */ 25 /* CCS PLL flags */ 37 * struct ccs_pll_branch_fr - CCS PLL configuration (front) 39 * A single branch front-end of the CCS PLL tree. 41 * @pre_pll_clk_div: Pre-PLL clock divisor 54 * struct ccs_pll_branch_bk - CCS PLL configuration (back) 56 * A single branch back-end of the CCS PLL tree. [all …]
|
| D | ccs-pll.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * drivers/media/i2c/ccs-pll.c 5 * Generic MIPI CCS/SMIA/SMIA++ PLL calculator 8 * Copyright (C) 2011--2012 Nokia Corporation 17 #include "ccs-pll.h" 55 dev_dbg(dev, "%s_%s out of bounds: %d (%d--%d)\n", prefix, in bounds_check() 58 return -EINVAL; in bounds_check() 85 { &pll->vt_fr, &pll->vt_bk, PLL_VT }, in print_pll() 86 { &pll->op_fr, &pll->op_bk, PLL_OP } in print_pll() 90 dev_dbg(dev, "ext_clk_freq_hz\t\t%u\n", pll->ext_clk_freq_hz); in print_pll() [all …]
|
| D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 8 comment "IR I2C driver auto-selected by 'Autoselect ancillary drivers'" 51 tristate "Hynix Hi-556 sensor support" 58 Hi-556 camera. 64 tristate "Hynix Hi-846 sensor support" 71 Hi-846 camera. 77 tristate "Hynix Hi-847 sensor support" 84 Hi-847 camera. 457 OV5640 camera sensor with a MIPI CSI-2 interface. 782 source "drivers/media/i2c/ccs/Kconfig" [all …]
|
| /Linux-v6.1/Documentation/admin-guide/media/ |
| D | i2c-cardlist.rst | 1 .. SPDX-License-Identifier: GPL-2.0 6 The I²C (Inter-Integrated Circuit) bus is a three-wires bus used internally 23 ------------------------------------- 32 sony-btf-mpx Sony BTF's internal MPX 47 ----------------------------- 52 saa6752hs Philips SAA6752HS MPEG-2 Audio/Video Encoder 56 --------------------- 61 ccs MIPI CCS compliant camera sensors (also SMIA++ and SMIA) 63 hi556 Hynix Hi-556 sensor 64 hi846 Hynix Hi-846 sensor [all …]
|
| /Linux-v6.1/drivers/gpu/drm/i915/display/ |
| D | intel_display_types.h | 3 * Copyright (c) 2007-2008 Intel Corporation 47 #include <media/cec-notifier.h> 67 /* these are outputs from the chip - integrated only 85 HDMI_AUDIO_OFF_DVI = -2, /* no aux data for HDMI-DVI converter */ 101 * create the DMA scatter-gather list for each FB color plane. This sg 113 * in the rotated and remapped GTT view all no-CCS formats (up to 2 210 * state. This must be called _after_ display->get_pipe_config has 211 * pre-filled the pipe config. Note that intel_encoder->base.crtc must 337 /* MIPI DSI */ 407 * and the bus-specific code. What that means is that HDCP over HDMI differs [all …]
|
| D | intel_display.c | 2 * Copyright © 2006-2007 Intel Corporation 32 #include <linux/dma-resv.h> 134 * intel_update_watermarks - update FIFO watermark values based on current modes 141 * - normal (i.e. non-self-refresh) 142 * - self-refresh (SR) mode 143 * - lines are large relative to FIFO size (buffer can hold up to 2) 144 * - lines are small relative to FIFO size (buffer can hold more than 2 164 * to set the non-SR watermarks to 8. 168 if (dev_priv->display.funcs.wm->update_wm) in intel_update_watermarks() 169 dev_priv->display.funcs.wm->update_wm(dev_priv); in intel_update_watermarks() [all …]
|
| /Linux-v6.1/ |
| D | MAINTAINERS | 9 ------------------------- 30 ``diff -u`` to make the patch easy to merge. Be prepared to get your 40 See Documentation/process/coding-style.rst for guidance here. 46 See Documentation/process/submitting-patches.rst for details. 57 include a Signed-off-by: line. The current version of this 59 Documentation/process/submitting-patches.rst. 70 that the bug would present a short-term risk to other users if it 76 Documentation/admin-guide/security-bugs.rst for details. 81 --------------------------------------------------- 97 W: *Web-page* with status/info [all …]
|
| /Linux-v6.1/include/uapi/linux/ |
| D | v4l2-controls.h | 1 /* SPDX-License-Identifier: ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) */ 5 * Copyright (C) 1999-2012 the contributors 57 #define V4L2_CTRL_CLASS_USER 0x00980000 /* Old-style 'user' controls */ 62 #define V4L2_CTRL_CLASS_JPEG 0x009d0000 /* JPEG-compression controls */ 72 /* User-class control IDs */ 154 /* USER-class private control IDs */ 170 * The base for the si476x driver controls. See include/media/drv-intf/si476x.h 212 * The base for MIPI CCS driver controls. 234 /* MPEG-class control IDs */ 244 V4L2_MPEG_STREAM_TYPE_MPEG2_PS = 0, /* MPEG-2 program stream */ [all …]
|