1d2912cb1SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-only */ 2c1d82b89SHans Verkuil /* 3c1d82b89SHans Verkuil * Register definitions for the Atmel Image Sensor Interface. 4c1d82b89SHans Verkuil * 5c1d82b89SHans Verkuil * Copyright (C) 2011 Atmel Corporation 6c1d82b89SHans Verkuil * Josh Wu, <josh.wu@atmel.com> 7c1d82b89SHans Verkuil * 8c1d82b89SHans Verkuil * Based on previous work by Lars Haring, <lars.haring@atmel.com> 9c1d82b89SHans Verkuil * and Sedji Gaouaou 10c1d82b89SHans Verkuil */ 11c1d82b89SHans Verkuil #ifndef __ATMEL_ISI_H__ 12c1d82b89SHans Verkuil #define __ATMEL_ISI_H__ 13c1d82b89SHans Verkuil 14c1d82b89SHans Verkuil #include <linux/types.h> 15c1d82b89SHans Verkuil 16c1d82b89SHans Verkuil /* ISI_V2 register offsets */ 17c1d82b89SHans Verkuil #define ISI_CFG1 0x0000 18c1d82b89SHans Verkuil #define ISI_CFG2 0x0004 19c1d82b89SHans Verkuil #define ISI_PSIZE 0x0008 20c1d82b89SHans Verkuil #define ISI_PDECF 0x000c 21c1d82b89SHans Verkuil #define ISI_Y2R_SET0 0x0010 22c1d82b89SHans Verkuil #define ISI_Y2R_SET1 0x0014 23c1d82b89SHans Verkuil #define ISI_R2Y_SET0 0x0018 24c1d82b89SHans Verkuil #define ISI_R2Y_SET1 0x001C 25c1d82b89SHans Verkuil #define ISI_R2Y_SET2 0x0020 26c1d82b89SHans Verkuil #define ISI_CTRL 0x0024 27c1d82b89SHans Verkuil #define ISI_STATUS 0x0028 28c1d82b89SHans Verkuil #define ISI_INTEN 0x002C 29c1d82b89SHans Verkuil #define ISI_INTDIS 0x0030 30c1d82b89SHans Verkuil #define ISI_INTMASK 0x0034 31c1d82b89SHans Verkuil #define ISI_DMA_CHER 0x0038 32c1d82b89SHans Verkuil #define ISI_DMA_CHDR 0x003C 33c1d82b89SHans Verkuil #define ISI_DMA_CHSR 0x0040 34c1d82b89SHans Verkuil #define ISI_DMA_P_ADDR 0x0044 35c1d82b89SHans Verkuil #define ISI_DMA_P_CTRL 0x0048 36c1d82b89SHans Verkuil #define ISI_DMA_P_DSCR 0x004C 37c1d82b89SHans Verkuil #define ISI_DMA_C_ADDR 0x0050 38c1d82b89SHans Verkuil #define ISI_DMA_C_CTRL 0x0054 39c1d82b89SHans Verkuil #define ISI_DMA_C_DSCR 0x0058 40c1d82b89SHans Verkuil 41c1d82b89SHans Verkuil /* Bitfields in CFG1 */ 42c1d82b89SHans Verkuil #define ISI_CFG1_HSYNC_POL_ACTIVE_LOW (1 << 2) 43c1d82b89SHans Verkuil #define ISI_CFG1_VSYNC_POL_ACTIVE_LOW (1 << 3) 44c1d82b89SHans Verkuil #define ISI_CFG1_PIXCLK_POL_ACTIVE_FALLING (1 << 4) 45c1d82b89SHans Verkuil #define ISI_CFG1_EMB_SYNC (1 << 6) 46c1d82b89SHans Verkuil #define ISI_CFG1_CRC_SYNC (1 << 7) 47c1d82b89SHans Verkuil /* Constants for FRATE(ISI_V2) */ 48c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_CAPTURE_ALL (0 << 8) 49c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_2 (1 << 8) 50c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_3 (2 << 8) 51c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_4 (3 << 8) 52c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_5 (4 << 8) 53c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_6 (5 << 8) 54c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_7 (6 << 8) 55c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_8 (7 << 8) 56c1d82b89SHans Verkuil #define ISI_CFG1_FRATE_DIV_MASK (7 << 8) 57c1d82b89SHans Verkuil #define ISI_CFG1_DISCR (1 << 11) 58c1d82b89SHans Verkuil #define ISI_CFG1_FULL_MODE (1 << 12) 59c1d82b89SHans Verkuil /* Definition for THMASK(ISI_V2) */ 60c1d82b89SHans Verkuil #define ISI_CFG1_THMASK_BEATS_4 (0 << 13) 61c1d82b89SHans Verkuil #define ISI_CFG1_THMASK_BEATS_8 (1 << 13) 62c1d82b89SHans Verkuil #define ISI_CFG1_THMASK_BEATS_16 (2 << 13) 63c1d82b89SHans Verkuil 64c1d82b89SHans Verkuil /* Bitfields in CFG2 */ 65*b567bf86SEugen Hristev #define ISI_CFG2_GS_MODE_2_PIXEL (0 << 11) 66*b567bf86SEugen Hristev #define ISI_CFG2_GS_MODE_1_PIXEL (1 << 11) 67c1d82b89SHans Verkuil #define ISI_CFG2_GRAYSCALE (1 << 13) 68c1d82b89SHans Verkuil #define ISI_CFG2_COL_SPACE_YCbCr (0 << 15) 69c1d82b89SHans Verkuil #define ISI_CFG2_COL_SPACE_RGB (1 << 15) 70c1d82b89SHans Verkuil /* Constants for YCC_SWAP(ISI_V2) */ 71c1d82b89SHans Verkuil #define ISI_CFG2_YCC_SWAP_DEFAULT (0 << 28) 72c1d82b89SHans Verkuil #define ISI_CFG2_YCC_SWAP_MODE_1 (1 << 28) 73c1d82b89SHans Verkuil #define ISI_CFG2_YCC_SWAP_MODE_2 (2 << 28) 74c1d82b89SHans Verkuil #define ISI_CFG2_YCC_SWAP_MODE_3 (3 << 28) 75c1d82b89SHans Verkuil #define ISI_CFG2_YCC_SWAP_MODE_MASK (3 << 28) 76c1d82b89SHans Verkuil #define ISI_CFG2_IM_VSIZE_OFFSET 0 77c1d82b89SHans Verkuil #define ISI_CFG2_IM_HSIZE_OFFSET 16 78c1d82b89SHans Verkuil #define ISI_CFG2_IM_VSIZE_MASK (0x7FF << ISI_CFG2_IM_VSIZE_OFFSET) 79c1d82b89SHans Verkuil #define ISI_CFG2_IM_HSIZE_MASK (0x7FF << ISI_CFG2_IM_HSIZE_OFFSET) 80c1d82b89SHans Verkuil 81c1d82b89SHans Verkuil /* Bitfields in PSIZE */ 82c1d82b89SHans Verkuil #define ISI_PSIZE_PREV_VSIZE_OFFSET 0 83c1d82b89SHans Verkuil #define ISI_PSIZE_PREV_HSIZE_OFFSET 16 84c1d82b89SHans Verkuil #define ISI_PSIZE_PREV_VSIZE_MASK (0x3FF << ISI_PSIZE_PREV_VSIZE_OFFSET) 85c1d82b89SHans Verkuil #define ISI_PSIZE_PREV_HSIZE_MASK (0x3FF << ISI_PSIZE_PREV_HSIZE_OFFSET) 86c1d82b89SHans Verkuil 87c1d82b89SHans Verkuil /* Bitfields in PDECF */ 88c1d82b89SHans Verkuil #define ISI_PDECF_DEC_FACTOR_MASK (0xFF << 0) 89c1d82b89SHans Verkuil #define ISI_PDECF_NO_SAMPLING (16) 90c1d82b89SHans Verkuil 91c1d82b89SHans Verkuil /* Bitfields in CTRL */ 92c1d82b89SHans Verkuil /* Also using in SR(ISI_V2) */ 93c1d82b89SHans Verkuil #define ISI_CTRL_EN (1 << 0) 94c1d82b89SHans Verkuil #define ISI_CTRL_CDC (1 << 8) 95c1d82b89SHans Verkuil /* Also using in SR/IER/IDR/IMR(ISI_V2) */ 96c1d82b89SHans Verkuil #define ISI_CTRL_DIS (1 << 1) 97c1d82b89SHans Verkuil #define ISI_CTRL_SRST (1 << 2) 98c1d82b89SHans Verkuil 99c1d82b89SHans Verkuil /* Bitfields in SR */ 100c1d82b89SHans Verkuil #define ISI_SR_SIP (1 << 19) 101c1d82b89SHans Verkuil /* Also using in SR/IER/IDR/IMR */ 102c1d82b89SHans Verkuil #define ISI_SR_VSYNC (1 << 10) 103c1d82b89SHans Verkuil #define ISI_SR_PXFR_DONE (1 << 16) 104c1d82b89SHans Verkuil #define ISI_SR_CXFR_DONE (1 << 17) 105c1d82b89SHans Verkuil #define ISI_SR_P_OVR (1 << 24) 106c1d82b89SHans Verkuil #define ISI_SR_C_OVR (1 << 25) 107c1d82b89SHans Verkuil #define ISI_SR_CRC_ERR (1 << 26) 108c1d82b89SHans Verkuil #define ISI_SR_FR_OVR (1 << 27) 109c1d82b89SHans Verkuil 110c1d82b89SHans Verkuil /* Bitfields in DMA_C_CTRL & in DMA_P_CTRL */ 111c1d82b89SHans Verkuil #define ISI_DMA_CTRL_FETCH (1 << 0) 112c1d82b89SHans Verkuil #define ISI_DMA_CTRL_WB (1 << 1) 113c1d82b89SHans Verkuil #define ISI_DMA_CTRL_IEN (1 << 2) 114c1d82b89SHans Verkuil #define ISI_DMA_CTRL_DONE (1 << 3) 115c1d82b89SHans Verkuil 116c1d82b89SHans Verkuil /* Bitfields in DMA_CHSR/CHER/CHDR */ 117c1d82b89SHans Verkuil #define ISI_DMA_CHSR_P_CH (1 << 0) 118c1d82b89SHans Verkuil #define ISI_DMA_CHSR_C_CH (1 << 1) 119c1d82b89SHans Verkuil 120c1d82b89SHans Verkuil /* Definition for isi_platform_data */ 121c1d82b89SHans Verkuil #define ISI_DATAWIDTH_8 0x01 122c1d82b89SHans Verkuil #define ISI_DATAWIDTH_10 0x02 123c1d82b89SHans Verkuil 124c1d82b89SHans Verkuil struct isi_platform_data { 125c1d82b89SHans Verkuil u8 has_emb_sync; 126c1d82b89SHans Verkuil u8 hsync_act_low; 127c1d82b89SHans Verkuil u8 vsync_act_low; 128c1d82b89SHans Verkuil u8 pclk_act_falling; 129c1d82b89SHans Verkuil u8 full_mode; 130c1d82b89SHans Verkuil u32 data_width_flags; 131c1d82b89SHans Verkuil /* Using for ISI_CFG1 */ 132c1d82b89SHans Verkuil u32 frate; 133c1d82b89SHans Verkuil }; 134c1d82b89SHans Verkuil 135c1d82b89SHans Verkuil #endif /* __ATMEL_ISI_H__ */ 136