ppi.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Analog Devices PPI header file
  3. *
  4. * Copyright (c) 2011 Analog Devices Inc.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. */
  19. #ifndef _PPI_H_
  20. #define _PPI_H_
  21. #include <linux/interrupt.h>
  22. #include <asm/blackfin.h>
  23. #include <asm/bfin_ppi.h>
  24. /* EPPI */
  25. #ifdef EPPI_EN
  26. #define PORT_EN EPPI_EN
  27. #define PORT_DIR EPPI_DIR
  28. #define DMA32 0
  29. #define PACK_EN PACKEN
  30. #endif
  31. /* EPPI3 */
  32. #ifdef EPPI0_CTL2
  33. #define PORT_EN EPPI_CTL_EN
  34. #define PORT_DIR EPPI_CTL_DIR
  35. #define PACK_EN EPPI_CTL_PACKEN
  36. #define DMA32 0
  37. #define DLEN_8 EPPI_CTL_DLEN08
  38. #define DLEN_16 EPPI_CTL_DLEN16
  39. #endif
  40. struct ppi_if;
  41. struct ppi_params {
  42. u32 width; /* width in pixels */
  43. u32 height; /* height in lines */
  44. u32 hdelay; /* delay after the HSYNC in pixels */
  45. u32 vdelay; /* delay after the VSYNC in lines */
  46. u32 line; /* total pixels per line */
  47. u32 frame; /* total lines per frame */
  48. u32 hsync; /* HSYNC length in pixels */
  49. u32 vsync; /* VSYNC length in lines */
  50. int bpp; /* bits per pixel */
  51. int dlen; /* data length for ppi in bits */
  52. u32 ppi_control; /* ppi configuration */
  53. u32 int_mask; /* interrupt mask */
  54. };
  55. struct ppi_ops {
  56. int (*attach_irq)(struct ppi_if *ppi, irq_handler_t handler);
  57. void (*detach_irq)(struct ppi_if *ppi);
  58. int (*start)(struct ppi_if *ppi);
  59. int (*stop)(struct ppi_if *ppi);
  60. int (*set_params)(struct ppi_if *ppi, struct ppi_params *params);
  61. void (*update_addr)(struct ppi_if *ppi, unsigned long addr);
  62. };
  63. enum ppi_type {
  64. PPI_TYPE_PPI,
  65. PPI_TYPE_EPPI,
  66. PPI_TYPE_EPPI3,
  67. };
  68. struct ppi_info {
  69. enum ppi_type type;
  70. int dma_ch;
  71. int irq_err;
  72. void __iomem *base;
  73. const unsigned short *pin_req;
  74. };
  75. struct ppi_if {
  76. struct device *dev;
  77. unsigned long ppi_control;
  78. const struct ppi_ops *ops;
  79. const struct ppi_info *info;
  80. bool err_int; /* if we need request error interrupt */
  81. bool err; /* if ppi has fifo error */
  82. void *priv;
  83. };
  84. struct ppi_if *ppi_create_instance(struct platform_device *pdev,
  85. const struct ppi_info *info);
  86. void ppi_delete_instance(struct ppi_if *ppi);
  87. #endif