PageRenderTime 23ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/drivers/media/platform/marvell-ccic/mcam-core.h

https://github.com/kvaneesh/linux
C Header | 378 lines | 242 code | 51 blank | 85 comment | 3 complexity | c72eddfc5ff9ce919a822ebd99e2a1ad MD5 | raw file
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Marvell camera core structures.
  4. *
  5. * Copyright 2011 Jonathan Corbet corbet@lwn.net
  6. */
  7. #ifndef _MCAM_CORE_H
  8. #define _MCAM_CORE_H
  9. #include <linux/list.h>
  10. #include <linux/clk-provider.h>
  11. #include <media/v4l2-common.h>
  12. #include <media/v4l2-ctrls.h>
  13. #include <media/v4l2-dev.h>
  14. #include <media/videobuf2-v4l2.h>
  15. /*
  16. * Create our own symbols for the supported buffer modes, but, for now,
  17. * base them entirely on which videobuf2 options have been selected.
  18. */
  19. #if IS_ENABLED(CONFIG_VIDEOBUF2_VMALLOC)
  20. #define MCAM_MODE_VMALLOC 1
  21. #endif
  22. #if IS_ENABLED(CONFIG_VIDEOBUF2_DMA_CONTIG)
  23. #define MCAM_MODE_DMA_CONTIG 1
  24. #endif
  25. #if IS_ENABLED(CONFIG_VIDEOBUF2_DMA_SG)
  26. #define MCAM_MODE_DMA_SG 1
  27. #endif
  28. #if !defined(MCAM_MODE_VMALLOC) && !defined(MCAM_MODE_DMA_CONTIG) && \
  29. !defined(MCAM_MODE_DMA_SG)
  30. #error One of the videobuf buffer modes must be selected in the config
  31. #endif
  32. enum mcam_state {
  33. S_NOTREADY, /* Not yet initialized */
  34. S_IDLE, /* Just hanging around */
  35. S_FLAKED, /* Some sort of problem */
  36. S_STREAMING, /* Streaming data */
  37. S_BUFWAIT /* streaming requested but no buffers yet */
  38. };
  39. #define MAX_DMA_BUFS 3
  40. /*
  41. * Different platforms work best with different buffer modes, so we
  42. * let the platform pick.
  43. */
  44. enum mcam_buffer_mode {
  45. B_vmalloc = 0,
  46. B_DMA_contig = 1,
  47. B_DMA_sg = 2
  48. };
  49. enum mcam_chip_id {
  50. MCAM_CAFE,
  51. MCAM_ARMADA610,
  52. };
  53. /*
  54. * Is a given buffer mode supported by the current kernel configuration?
  55. */
  56. static inline int mcam_buffer_mode_supported(enum mcam_buffer_mode mode)
  57. {
  58. switch (mode) {
  59. #ifdef MCAM_MODE_VMALLOC
  60. case B_vmalloc:
  61. #endif
  62. #ifdef MCAM_MODE_DMA_CONTIG
  63. case B_DMA_contig:
  64. #endif
  65. #ifdef MCAM_MODE_DMA_SG
  66. case B_DMA_sg:
  67. #endif
  68. return 1;
  69. default:
  70. return 0;
  71. }
  72. }
  73. /*
  74. * Basic frame states
  75. */
  76. struct mcam_frame_state {
  77. unsigned int frames;
  78. unsigned int singles;
  79. unsigned int delivered;
  80. };
  81. #define NR_MCAM_CLK 3
  82. /*
  83. * A description of one of our devices.
  84. * Locking: controlled by s_mutex. Certain fields, however, require
  85. * the dev_lock spinlock; they are marked as such by comments.
  86. * dev_lock is also required for access to device registers.
  87. */
  88. struct mcam_camera {
  89. /*
  90. * These fields should be set by the platform code prior to
  91. * calling mcam_register().
  92. */
  93. unsigned char __iomem *regs;
  94. unsigned regs_size; /* size in bytes of the register space */
  95. spinlock_t dev_lock;
  96. struct device *dev; /* For messages, dma alloc */
  97. enum mcam_chip_id chip_id;
  98. enum mcam_buffer_mode buffer_mode;
  99. int mclk_src; /* which clock source the mclk derives from */
  100. int mclk_div; /* Clock Divider Value for MCLK */
  101. enum v4l2_mbus_type bus_type;
  102. /* MIPI support */
  103. /* The dphy config value, allocated in board file
  104. * dphy[0]: DPHY3
  105. * dphy[1]: DPHY5
  106. * dphy[2]: DPHY6
  107. */
  108. int *dphy;
  109. bool mipi_enabled; /* flag whether mipi is enabled already */
  110. int lane; /* lane number */
  111. /* clock tree support */
  112. struct clk *clk[NR_MCAM_CLK];
  113. struct clk_hw mclk_hw;
  114. struct clk *mclk;
  115. /*
  116. * Callbacks from the core to the platform code.
  117. */
  118. int (*plat_power_up) (struct mcam_camera *cam);
  119. void (*plat_power_down) (struct mcam_camera *cam);
  120. void (*calc_dphy) (struct mcam_camera *cam);
  121. /*
  122. * Everything below here is private to the mcam core and
  123. * should not be touched by the platform code.
  124. */
  125. struct v4l2_device v4l2_dev;
  126. struct v4l2_ctrl_handler ctrl_handler;
  127. enum mcam_state state;
  128. unsigned long flags; /* Buffer status, mainly (dev_lock) */
  129. struct mcam_frame_state frame_state; /* Frame state counter */
  130. /*
  131. * Subsystem structures.
  132. */
  133. struct video_device vdev;
  134. struct v4l2_async_notifier notifier;
  135. struct v4l2_subdev *sensor;
  136. /* Videobuf2 stuff */
  137. struct vb2_queue vb_queue;
  138. struct list_head buffers; /* Available frames */
  139. unsigned int nbufs; /* How many are alloc'd */
  140. int next_buf; /* Next to consume (dev_lock) */
  141. char bus_info[32]; /* querycap bus_info */
  142. /* DMA buffers - vmalloc mode */
  143. #ifdef MCAM_MODE_VMALLOC
  144. unsigned int dma_buf_size; /* allocated size */
  145. void *dma_bufs[MAX_DMA_BUFS]; /* Internal buffer addresses */
  146. dma_addr_t dma_handles[MAX_DMA_BUFS]; /* Buffer bus addresses */
  147. struct tasklet_struct s_tasklet;
  148. #endif
  149. unsigned int sequence; /* Frame sequence number */
  150. unsigned int buf_seq[MAX_DMA_BUFS]; /* Sequence for individual bufs */
  151. /* DMA buffers - DMA modes */
  152. struct mcam_vb_buffer *vb_bufs[MAX_DMA_BUFS];
  153. /* Mode-specific ops, set at open time */
  154. void (*dma_setup)(struct mcam_camera *cam);
  155. void (*frame_complete)(struct mcam_camera *cam, int frame);
  156. /* Current operating parameters */
  157. struct v4l2_pix_format pix_format;
  158. u32 mbus_code;
  159. /* Locks */
  160. struct mutex s_mutex; /* Access to this structure */
  161. };
  162. /*
  163. * Register I/O functions. These are here because the platform code
  164. * may legitimately need to mess with the register space.
  165. */
  166. /*
  167. * Device register I/O
  168. */
  169. static inline void mcam_reg_write(struct mcam_camera *cam, unsigned int reg,
  170. unsigned int val)
  171. {
  172. iowrite32(val, cam->regs + reg);
  173. }
  174. static inline unsigned int mcam_reg_read(struct mcam_camera *cam,
  175. unsigned int reg)
  176. {
  177. return ioread32(cam->regs + reg);
  178. }
  179. static inline void mcam_reg_write_mask(struct mcam_camera *cam, unsigned int reg,
  180. unsigned int val, unsigned int mask)
  181. {
  182. unsigned int v = mcam_reg_read(cam, reg);
  183. v = (v & ~mask) | (val & mask);
  184. mcam_reg_write(cam, reg, v);
  185. }
  186. static inline void mcam_reg_clear_bit(struct mcam_camera *cam,
  187. unsigned int reg, unsigned int val)
  188. {
  189. mcam_reg_write_mask(cam, reg, 0, val);
  190. }
  191. static inline void mcam_reg_set_bit(struct mcam_camera *cam,
  192. unsigned int reg, unsigned int val)
  193. {
  194. mcam_reg_write_mask(cam, reg, val, val);
  195. }
  196. /*
  197. * Functions for use by platform code.
  198. */
  199. int mccic_register(struct mcam_camera *cam);
  200. int mccic_irq(struct mcam_camera *cam, unsigned int irqs);
  201. void mccic_shutdown(struct mcam_camera *cam);
  202. void mccic_suspend(struct mcam_camera *cam);
  203. int mccic_resume(struct mcam_camera *cam);
  204. /*
  205. * Register definitions for the m88alp01 camera interface. Offsets in bytes
  206. * as given in the spec.
  207. */
  208. #define REG_Y0BAR 0x00
  209. #define REG_Y1BAR 0x04
  210. #define REG_Y2BAR 0x08
  211. #define REG_U0BAR 0x0c
  212. #define REG_U1BAR 0x10
  213. #define REG_U2BAR 0x14
  214. #define REG_V0BAR 0x18
  215. #define REG_V1BAR 0x1C
  216. #define REG_V2BAR 0x20
  217. /*
  218. * register definitions for MIPI support
  219. */
  220. #define REG_CSI2_CTRL0 0x100
  221. #define CSI2_C0_MIPI_EN (0x1 << 0)
  222. #define CSI2_C0_ACT_LANE(n) ((n-1) << 1)
  223. #define REG_CSI2_DPHY3 0x12c
  224. #define REG_CSI2_DPHY5 0x134
  225. #define REG_CSI2_DPHY6 0x138
  226. /* ... */
  227. #define REG_IMGPITCH 0x24 /* Image pitch register */
  228. #define IMGP_YP_SHFT 2 /* Y pitch params */
  229. #define IMGP_YP_MASK 0x00003ffc /* Y pitch field */
  230. #define IMGP_UVP_SHFT 18 /* UV pitch (planar) */
  231. #define IMGP_UVP_MASK 0x3ffc0000
  232. #define REG_IRQSTATRAW 0x28 /* RAW IRQ Status */
  233. #define IRQ_EOF0 0x00000001 /* End of frame 0 */
  234. #define IRQ_EOF1 0x00000002 /* End of frame 1 */
  235. #define IRQ_EOF2 0x00000004 /* End of frame 2 */
  236. #define IRQ_SOF0 0x00000008 /* Start of frame 0 */
  237. #define IRQ_SOF1 0x00000010 /* Start of frame 1 */
  238. #define IRQ_SOF2 0x00000020 /* Start of frame 2 */
  239. #define IRQ_OVERFLOW 0x00000040 /* FIFO overflow */
  240. #define IRQ_TWSIW 0x00010000 /* TWSI (smbus) write */
  241. #define IRQ_TWSIR 0x00020000 /* TWSI read */
  242. #define IRQ_TWSIE 0x00040000 /* TWSI error */
  243. #define TWSIIRQS (IRQ_TWSIW|IRQ_TWSIR|IRQ_TWSIE)
  244. #define FRAMEIRQS (IRQ_EOF0|IRQ_EOF1|IRQ_EOF2|IRQ_SOF0|IRQ_SOF1|IRQ_SOF2)
  245. #define ALLIRQS (TWSIIRQS|FRAMEIRQS|IRQ_OVERFLOW)
  246. #define REG_IRQMASK 0x2c /* IRQ mask - same bits as IRQSTAT */
  247. #define REG_IRQSTAT 0x30 /* IRQ status / clear */
  248. #define REG_IMGSIZE 0x34 /* Image size */
  249. #define IMGSZ_V_MASK 0x1fff0000
  250. #define IMGSZ_V_SHIFT 16
  251. #define IMGSZ_H_MASK 0x00003fff
  252. #define REG_IMGOFFSET 0x38 /* IMage offset */
  253. #define REG_CTRL0 0x3c /* Control 0 */
  254. #define C0_ENABLE 0x00000001 /* Makes the whole thing go */
  255. /* Mask for all the format bits */
  256. #define C0_DF_MASK 0x00fffffc /* Bits 2-23 */
  257. /* RGB ordering */
  258. #define C0_RGB4_RGBX 0x00000000
  259. #define C0_RGB4_XRGB 0x00000004
  260. #define C0_RGB4_BGRX 0x00000008
  261. #define C0_RGB4_XBGR 0x0000000c
  262. #define C0_RGB5_RGGB 0x00000000
  263. #define C0_RGB5_GRBG 0x00000004
  264. #define C0_RGB5_GBRG 0x00000008
  265. #define C0_RGB5_BGGR 0x0000000c
  266. /* Spec has two fields for DIN and DOUT, but they must match, so
  267. combine them here. */
  268. #define C0_DF_YUV 0x00000000 /* Data is YUV */
  269. #define C0_DF_RGB 0x000000a0 /* ... RGB */
  270. #define C0_DF_BAYER 0x00000140 /* ... Bayer */
  271. /* 8-8-8 must be missing from the below - ask */
  272. #define C0_RGBF_565 0x00000000
  273. #define C0_RGBF_444 0x00000800
  274. #define C0_RGB_BGR 0x00001000 /* Blue comes first */
  275. #define C0_YUV_PLANAR 0x00000000 /* YUV 422 planar format */
  276. #define C0_YUV_PACKED 0x00008000 /* YUV 422 packed */
  277. #define C0_YUV_420PL 0x0000a000 /* YUV 420 planar */
  278. /* Think that 420 packed must be 111 - ask */
  279. #define C0_YUVE_YUYV 0x00000000 /* Y1CbY0Cr */
  280. #define C0_YUVE_YVYU 0x00010000 /* Y1CrY0Cb */
  281. #define C0_YUVE_VYUY 0x00020000 /* CrY1CbY0 */
  282. #define C0_YUVE_UYVY 0x00030000 /* CbY1CrY0 */
  283. #define C0_YUVE_NOSWAP 0x00000000 /* no bytes swapping */
  284. #define C0_YUVE_SWAP13 0x00010000 /* swap byte 1 and 3 */
  285. #define C0_YUVE_SWAP24 0x00020000 /* swap byte 2 and 4 */
  286. #define C0_YUVE_SWAP1324 0x00030000 /* swap bytes 1&3 and 2&4 */
  287. /* Bayer bits 18,19 if needed */
  288. #define C0_EOF_VSYNC 0x00400000 /* Generate EOF by VSYNC */
  289. #define C0_VEDGE_CTRL 0x00800000 /* Detect falling edge of VSYNC */
  290. #define C0_HPOL_LOW 0x01000000 /* HSYNC polarity active low */
  291. #define C0_VPOL_LOW 0x02000000 /* VSYNC polarity active low */
  292. #define C0_VCLK_LOW 0x04000000 /* VCLK on falling edge */
  293. #define C0_DOWNSCALE 0x08000000 /* Enable downscaler */
  294. /* SIFMODE */
  295. #define C0_SIF_HVSYNC 0x00000000 /* Use H/VSYNC */
  296. #define C0_SOF_NOSYNC 0x40000000 /* Use inband active signaling */
  297. #define C0_SIFM_MASK 0xc0000000 /* SIF mode bits */
  298. /* Bits below C1_444ALPHA are not present in Cafe */
  299. #define REG_CTRL1 0x40 /* Control 1 */
  300. #define C1_CLKGATE 0x00000001 /* Sensor clock gate */
  301. #define C1_DESC_ENA 0x00000100 /* DMA descriptor enable */
  302. #define C1_DESC_3WORD 0x00000200 /* Three-word descriptors used */
  303. #define C1_444ALPHA 0x00f00000 /* Alpha field in RGB444 */
  304. #define C1_ALPHA_SHFT 20
  305. #define C1_DMAB32 0x00000000 /* 32-byte DMA burst */
  306. #define C1_DMAB16 0x02000000 /* 16-byte DMA burst */
  307. #define C1_DMAB64 0x04000000 /* 64-byte DMA burst */
  308. #define C1_DMAB_MASK 0x06000000
  309. #define C1_TWOBUFS 0x08000000 /* Use only two DMA buffers */
  310. #define C1_PWRDWN 0x10000000 /* Power down */
  311. #define REG_CLKCTRL 0x88 /* Clock control */
  312. #define CLK_DIV_MASK 0x0000ffff /* Upper bits RW "reserved" */
  313. /* This appears to be a Cafe-only register */
  314. #define REG_UBAR 0xc4 /* Upper base address register */
  315. /* Armada 610 DMA descriptor registers */
  316. #define REG_DMA_DESC_Y 0x200
  317. #define REG_DMA_DESC_U 0x204
  318. #define REG_DMA_DESC_V 0x208
  319. #define REG_DESC_LEN_Y 0x20c /* Lengths are in bytes */
  320. #define REG_DESC_LEN_U 0x210
  321. #define REG_DESC_LEN_V 0x214
  322. /*
  323. * Useful stuff that probably belongs somewhere global.
  324. */
  325. #define VGA_WIDTH 640
  326. #define VGA_HEIGHT 480
  327. #endif /* _MCAM_CORE_H */