Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 1 | /* |
| 2 | * isp.h |
| 3 | * |
| 4 | * TI OMAP3 ISP - Core |
| 5 | * |
| 6 | * Copyright (C) 2009-2010 Nokia Corporation |
| 7 | * Copyright (C) 2009 Texas Instruments, Inc. |
| 8 | * |
| 9 | * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 10 | * Sakari Ailus <sakari.ailus@iki.fi> |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as |
| 14 | * published by the Free Software Foundation. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, but |
| 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 19 | * General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 24 | * 02110-1301 USA |
| 25 | */ |
| 26 | |
| 27 | #ifndef OMAP3_ISP_CORE_H |
| 28 | #define OMAP3_ISP_CORE_H |
| 29 | |
Laurent Pinchart | b98d32f | 2011-08-12 19:09:34 +0200 | [diff] [blame] | 30 | #include <media/omap3isp.h> |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 31 | #include <media/v4l2-device.h> |
| 32 | #include <linux/device.h> |
| 33 | #include <linux/io.h> |
Tony Lindgren | c8d35c8 | 2012-11-02 12:24:03 -0700 | [diff] [blame^] | 34 | #include <linux/iommu.h> |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 35 | #include <linux/platform_device.h> |
| 36 | #include <linux/wait.h> |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 37 | |
| 38 | #include "ispstat.h" |
| 39 | #include "ispccdc.h" |
| 40 | #include "ispreg.h" |
| 41 | #include "ispresizer.h" |
| 42 | #include "isppreview.h" |
| 43 | #include "ispcsiphy.h" |
| 44 | #include "ispcsi2.h" |
| 45 | #include "ispccp2.h" |
| 46 | |
| 47 | #define IOMMU_FLAG (IOVMF_ENDIAN_LITTLE | IOVMF_ELSZ_8) |
| 48 | |
| 49 | #define ISP_TOK_TERM 0xFFFFFFFF /* |
| 50 | * terminating token for ISP |
| 51 | * modules reg list |
| 52 | */ |
| 53 | #define to_isp_device(ptr_module) \ |
| 54 | container_of(ptr_module, struct isp_device, isp_##ptr_module) |
| 55 | #define to_device(ptr_module) \ |
| 56 | (to_isp_device(ptr_module)->dev) |
| 57 | |
| 58 | enum isp_mem_resources { |
| 59 | OMAP3_ISP_IOMEM_MAIN, |
| 60 | OMAP3_ISP_IOMEM_CCP2, |
| 61 | OMAP3_ISP_IOMEM_CCDC, |
| 62 | OMAP3_ISP_IOMEM_HIST, |
| 63 | OMAP3_ISP_IOMEM_H3A, |
| 64 | OMAP3_ISP_IOMEM_PREV, |
| 65 | OMAP3_ISP_IOMEM_RESZ, |
| 66 | OMAP3_ISP_IOMEM_SBL, |
| 67 | OMAP3_ISP_IOMEM_CSI2A_REGS1, |
| 68 | OMAP3_ISP_IOMEM_CSIPHY2, |
| 69 | OMAP3_ISP_IOMEM_CSI2A_REGS2, |
| 70 | OMAP3_ISP_IOMEM_CSI2C_REGS1, |
| 71 | OMAP3_ISP_IOMEM_CSIPHY1, |
| 72 | OMAP3_ISP_IOMEM_CSI2C_REGS2, |
| 73 | OMAP3_ISP_IOMEM_LAST |
| 74 | }; |
| 75 | |
| 76 | enum isp_sbl_resource { |
| 77 | OMAP3_ISP_SBL_CSI1_READ = 0x1, |
| 78 | OMAP3_ISP_SBL_CSI1_WRITE = 0x2, |
| 79 | OMAP3_ISP_SBL_CSI2A_WRITE = 0x4, |
| 80 | OMAP3_ISP_SBL_CSI2C_WRITE = 0x8, |
| 81 | OMAP3_ISP_SBL_CCDC_LSC_READ = 0x10, |
| 82 | OMAP3_ISP_SBL_CCDC_WRITE = 0x20, |
| 83 | OMAP3_ISP_SBL_PREVIEW_READ = 0x40, |
| 84 | OMAP3_ISP_SBL_PREVIEW_WRITE = 0x80, |
| 85 | OMAP3_ISP_SBL_RESIZER_READ = 0x100, |
| 86 | OMAP3_ISP_SBL_RESIZER_WRITE = 0x200, |
| 87 | }; |
| 88 | |
| 89 | enum isp_subclk_resource { |
| 90 | OMAP3_ISP_SUBCLK_CCDC = (1 << 0), |
Laurent Pinchart | be9a1b9 | 2012-05-25 08:35:10 -0300 | [diff] [blame] | 91 | OMAP3_ISP_SUBCLK_AEWB = (1 << 1), |
| 92 | OMAP3_ISP_SUBCLK_AF = (1 << 2), |
| 93 | OMAP3_ISP_SUBCLK_HIST = (1 << 3), |
| 94 | OMAP3_ISP_SUBCLK_PREVIEW = (1 << 4), |
| 95 | OMAP3_ISP_SUBCLK_RESIZER = (1 << 5), |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 96 | }; |
| 97 | |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 98 | /* ISP: OMAP 34xx ES 1.0 */ |
| 99 | #define ISP_REVISION_1_0 0x10 |
| 100 | /* ISP2: OMAP 34xx ES 2.0, 2.1 and 3.0 */ |
| 101 | #define ISP_REVISION_2_0 0x20 |
| 102 | /* ISP2P: OMAP 36xx */ |
| 103 | #define ISP_REVISION_15_0 0xF0 |
| 104 | |
| 105 | /* |
| 106 | * struct isp_res_mapping - Map ISP io resources to ISP revision. |
| 107 | * @isp_rev: ISP_REVISION_x_x |
| 108 | * @map: bitmap for enum isp_mem_resources |
| 109 | */ |
| 110 | struct isp_res_mapping { |
| 111 | u32 isp_rev; |
| 112 | u32 map; |
| 113 | }; |
| 114 | |
| 115 | /* |
| 116 | * struct isp_reg - Structure for ISP register values. |
| 117 | * @reg: 32-bit Register address. |
| 118 | * @val: 32-bit Register value. |
| 119 | */ |
| 120 | struct isp_reg { |
| 121 | enum isp_mem_resources mmio_range; |
| 122 | u32 reg; |
| 123 | u32 val; |
| 124 | }; |
| 125 | |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 126 | struct isp_platform_callback { |
| 127 | u32 (*set_xclk)(struct isp_device *isp, u32 xclk, u8 xclksel); |
| 128 | int (*csiphy_config)(struct isp_csiphy *phy, |
| 129 | struct isp_csiphy_dphy_cfg *dphy, |
| 130 | struct isp_csiphy_lanes_cfg *lanes); |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 131 | }; |
| 132 | |
| 133 | /* |
| 134 | * struct isp_device - ISP device structure. |
| 135 | * @dev: Device pointer specific to the OMAP3 ISP. |
| 136 | * @revision: Stores current ISP module revision. |
| 137 | * @irq_num: Currently used IRQ number. |
| 138 | * @mmio_base: Array with kernel base addresses for ioremapped ISP register |
| 139 | * regions. |
| 140 | * @mmio_base_phys: Array with physical L4 bus addresses for ISP register |
| 141 | * regions. |
| 142 | * @mmio_size: Array with ISP register regions size in bytes. |
| 143 | * @raw_dmamask: Raw DMA mask |
| 144 | * @stat_lock: Spinlock for handling statistics |
| 145 | * @isp_mutex: Mutex for serializing requests to ISP. |
Laurent Pinchart | 1567bb7 | 2011-11-18 11:28:24 -0300 | [diff] [blame] | 146 | * @crashed: Bitmask of crashed entities (indexed by entity ID) |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 147 | * @has_context: Context has been saved at least once and can be restored. |
| 148 | * @ref_count: Reference count for handling multiple ISP requests. |
| 149 | * @cam_ick: Pointer to camera interface clock structure. |
| 150 | * @cam_mclk: Pointer to camera functional clock structure. |
| 151 | * @dpll4_m5_ck: Pointer to DPLL4 M5 clock structure. |
| 152 | * @csi2_fck: Pointer to camera CSI2 complexIO clock structure. |
| 153 | * @l3_ick: Pointer to OMAP3 L3 bus interface clock. |
| 154 | * @irq: Currently attached ISP ISR callbacks information structure. |
| 155 | * @isp_af: Pointer to current settings for ISP AutoFocus SCM. |
| 156 | * @isp_hist: Pointer to current settings for ISP Histogram SCM. |
| 157 | * @isp_h3a: Pointer to current settings for ISP Auto Exposure and |
| 158 | * White Balance SCM. |
| 159 | * @isp_res: Pointer to current settings for ISP Resizer. |
| 160 | * @isp_prev: Pointer to current settings for ISP Preview. |
| 161 | * @isp_ccdc: Pointer to current settings for ISP CCDC. |
| 162 | * @iommu: Pointer to requested IOMMU instance for ISP. |
| 163 | * @platform_cb: ISP driver callback function pointers for platform code |
| 164 | * |
| 165 | * This structure is used to store the OMAP ISP Information. |
| 166 | */ |
| 167 | struct isp_device { |
| 168 | struct v4l2_device v4l2_dev; |
| 169 | struct media_device media_dev; |
| 170 | struct device *dev; |
| 171 | u32 revision; |
| 172 | |
| 173 | /* platform HW resources */ |
| 174 | struct isp_platform_data *pdata; |
| 175 | unsigned int irq_num; |
| 176 | |
| 177 | void __iomem *mmio_base[OMAP3_ISP_IOMEM_LAST]; |
| 178 | unsigned long mmio_base_phys[OMAP3_ISP_IOMEM_LAST]; |
| 179 | resource_size_t mmio_size[OMAP3_ISP_IOMEM_LAST]; |
| 180 | |
| 181 | u64 raw_dmamask; |
| 182 | |
| 183 | /* ISP Obj */ |
| 184 | spinlock_t stat_lock; /* common lock for statistic drivers */ |
| 185 | struct mutex isp_mutex; /* For handling ref_count field */ |
Laurent Pinchart | 1567bb7 | 2011-11-18 11:28:24 -0300 | [diff] [blame] | 186 | u32 crashed; |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 187 | int has_context; |
| 188 | int ref_count; |
| 189 | unsigned int autoidle; |
| 190 | u32 xclk_divisor[2]; /* Two clocks, a and b. */ |
| 191 | #define ISP_CLK_CAM_ICK 0 |
| 192 | #define ISP_CLK_CAM_MCLK 1 |
| 193 | #define ISP_CLK_DPLL4_M5_CK 2 |
| 194 | #define ISP_CLK_CSI2_FCK 3 |
| 195 | #define ISP_CLK_L3_ICK 4 |
| 196 | struct clk *clock[5]; |
| 197 | |
| 198 | /* ISP modules */ |
| 199 | struct ispstat isp_af; |
| 200 | struct ispstat isp_aewb; |
| 201 | struct ispstat isp_hist; |
| 202 | struct isp_res_device isp_res; |
| 203 | struct isp_prev_device isp_prev; |
| 204 | struct isp_ccdc_device isp_ccdc; |
| 205 | struct isp_csi2_device isp_csi2a; |
| 206 | struct isp_csi2_device isp_csi2c; |
| 207 | struct isp_ccp2_device isp_ccp2; |
| 208 | struct isp_csiphy isp_csiphy1; |
| 209 | struct isp_csiphy isp_csiphy2; |
| 210 | |
| 211 | unsigned int sbl_resources; |
| 212 | unsigned int subclk_resources; |
| 213 | |
Ohad Ben-Cohen | f626b52 | 2011-06-02 01:46:12 +0300 | [diff] [blame] | 214 | struct iommu_domain *domain; |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 215 | |
| 216 | struct isp_platform_callback platform_cb; |
| 217 | }; |
| 218 | |
| 219 | #define v4l2_dev_to_isp_device(dev) \ |
| 220 | container_of(dev, struct isp_device, v4l2_dev) |
| 221 | |
| 222 | void omap3isp_hist_dma_done(struct isp_device *isp); |
| 223 | |
| 224 | void omap3isp_flush(struct isp_device *isp); |
| 225 | |
| 226 | int omap3isp_module_sync_idle(struct media_entity *me, wait_queue_head_t *wait, |
| 227 | atomic_t *stopping); |
| 228 | |
| 229 | int omap3isp_module_sync_is_stopping(wait_queue_head_t *wait, |
| 230 | atomic_t *stopping); |
| 231 | |
| 232 | int omap3isp_pipeline_set_stream(struct isp_pipeline *pipe, |
| 233 | enum isp_pipeline_stream_state state); |
| 234 | void omap3isp_configure_bridge(struct isp_device *isp, |
| 235 | enum ccdc_input_entity input, |
Michael Jones | c09af04 | 2011-03-29 05:19:09 -0300 | [diff] [blame] | 236 | const struct isp_parallel_platform_data *pdata, |
Laurent Pinchart | c51364c | 2011-08-31 11:03:53 -0300 | [diff] [blame] | 237 | unsigned int shift, unsigned int bridge); |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 238 | |
Sakari Ailus | 448de7e | 2011-02-12 18:05:06 -0300 | [diff] [blame] | 239 | struct isp_device *omap3isp_get(struct isp_device *isp); |
| 240 | void omap3isp_put(struct isp_device *isp); |
| 241 | |
| 242 | void omap3isp_print_status(struct isp_device *isp); |
| 243 | |
| 244 | void omap3isp_sbl_enable(struct isp_device *isp, enum isp_sbl_resource res); |
| 245 | void omap3isp_sbl_disable(struct isp_device *isp, enum isp_sbl_resource res); |
| 246 | |
| 247 | void omap3isp_subclk_enable(struct isp_device *isp, |
| 248 | enum isp_subclk_resource res); |
| 249 | void omap3isp_subclk_disable(struct isp_device *isp, |
| 250 | enum isp_subclk_resource res); |
| 251 | |
| 252 | int omap3isp_pipeline_pm_use(struct media_entity *entity, int use); |
| 253 | |
| 254 | int omap3isp_register_entities(struct platform_device *pdev, |
| 255 | struct v4l2_device *v4l2_dev); |
| 256 | void omap3isp_unregister_entities(struct platform_device *pdev); |
| 257 | |
| 258 | /* |
| 259 | * isp_reg_readl - Read value of an OMAP3 ISP register |
| 260 | * @dev: Device pointer specific to the OMAP3 ISP. |
| 261 | * @isp_mmio_range: Range to which the register offset refers to. |
| 262 | * @reg_offset: Register offset to read from. |
| 263 | * |
| 264 | * Returns an unsigned 32 bit value with the required register contents. |
| 265 | */ |
| 266 | static inline |
| 267 | u32 isp_reg_readl(struct isp_device *isp, enum isp_mem_resources isp_mmio_range, |
| 268 | u32 reg_offset) |
| 269 | { |
| 270 | return __raw_readl(isp->mmio_base[isp_mmio_range] + reg_offset); |
| 271 | } |
| 272 | |
| 273 | /* |
| 274 | * isp_reg_writel - Write value to an OMAP3 ISP register |
| 275 | * @dev: Device pointer specific to the OMAP3 ISP. |
| 276 | * @reg_value: 32 bit value to write to the register. |
| 277 | * @isp_mmio_range: Range to which the register offset refers to. |
| 278 | * @reg_offset: Register offset to write into. |
| 279 | */ |
| 280 | static inline |
| 281 | void isp_reg_writel(struct isp_device *isp, u32 reg_value, |
| 282 | enum isp_mem_resources isp_mmio_range, u32 reg_offset) |
| 283 | { |
| 284 | __raw_writel(reg_value, isp->mmio_base[isp_mmio_range] + reg_offset); |
| 285 | } |
| 286 | |
| 287 | /* |
| 288 | * isp_reg_and - Clear individual bits in an OMAP3 ISP register |
| 289 | * @dev: Device pointer specific to the OMAP3 ISP. |
| 290 | * @mmio_range: Range to which the register offset refers to. |
| 291 | * @reg: Register offset to work on. |
| 292 | * @clr_bits: 32 bit value which would be cleared in the register. |
| 293 | */ |
| 294 | static inline |
| 295 | void isp_reg_clr(struct isp_device *isp, enum isp_mem_resources mmio_range, |
| 296 | u32 reg, u32 clr_bits) |
| 297 | { |
| 298 | u32 v = isp_reg_readl(isp, mmio_range, reg); |
| 299 | |
| 300 | isp_reg_writel(isp, v & ~clr_bits, mmio_range, reg); |
| 301 | } |
| 302 | |
| 303 | /* |
| 304 | * isp_reg_set - Set individual bits in an OMAP3 ISP register |
| 305 | * @dev: Device pointer specific to the OMAP3 ISP. |
| 306 | * @mmio_range: Range to which the register offset refers to. |
| 307 | * @reg: Register offset to work on. |
| 308 | * @set_bits: 32 bit value which would be set in the register. |
| 309 | */ |
| 310 | static inline |
| 311 | void isp_reg_set(struct isp_device *isp, enum isp_mem_resources mmio_range, |
| 312 | u32 reg, u32 set_bits) |
| 313 | { |
| 314 | u32 v = isp_reg_readl(isp, mmio_range, reg); |
| 315 | |
| 316 | isp_reg_writel(isp, v | set_bits, mmio_range, reg); |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * isp_reg_clr_set - Clear and set invidial bits in an OMAP3 ISP register |
| 321 | * @dev: Device pointer specific to the OMAP3 ISP. |
| 322 | * @mmio_range: Range to which the register offset refers to. |
| 323 | * @reg: Register offset to work on. |
| 324 | * @clr_bits: 32 bit value which would be cleared in the register. |
| 325 | * @set_bits: 32 bit value which would be set in the register. |
| 326 | * |
| 327 | * The clear operation is done first, and then the set operation. |
| 328 | */ |
| 329 | static inline |
| 330 | void isp_reg_clr_set(struct isp_device *isp, enum isp_mem_resources mmio_range, |
| 331 | u32 reg, u32 clr_bits, u32 set_bits) |
| 332 | { |
| 333 | u32 v = isp_reg_readl(isp, mmio_range, reg); |
| 334 | |
| 335 | isp_reg_writel(isp, (v & ~clr_bits) | set_bits, mmio_range, reg); |
| 336 | } |
| 337 | |
| 338 | static inline enum v4l2_buf_type |
| 339 | isp_pad_buffer_type(const struct v4l2_subdev *subdev, int pad) |
| 340 | { |
| 341 | if (pad >= subdev->entity.num_pads) |
| 342 | return 0; |
| 343 | |
| 344 | if (subdev->entity.pads[pad].flags & MEDIA_PAD_FL_SINK) |
| 345 | return V4L2_BUF_TYPE_VIDEO_OUTPUT; |
| 346 | else |
| 347 | return V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 348 | } |
| 349 | |
| 350 | #endif /* OMAP3_ISP_CORE_H */ |