ti_ssp.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Sequencer Serial Port (SSP) driver for Texas Instruments' SoCs
  3. *
  4. * Copyright (C) 2010 Texas Instruments 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 as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #ifndef __TI_SSP_H__
  21. #define __TI_SSP_H__
  22. struct ti_ssp_dev_data {
  23. const char *dev_name;
  24. void *pdata;
  25. size_t pdata_size;
  26. };
  27. struct ti_ssp_data {
  28. unsigned long out_clock;
  29. struct ti_ssp_dev_data dev_data[2];
  30. };
  31. struct ti_ssp_spi_data {
  32. unsigned long iosel;
  33. int num_cs;
  34. void (*select)(int cs);
  35. };
  36. /*
  37. * Sequencer port IO pin configuration bits. These do not correlate 1-1 with
  38. * the hardware. The iosel field in the port data combines iosel1 and iosel2,
  39. * and is therefore not a direct map to register space. It is best to use the
  40. * macros below to construct iosel values.
  41. *
  42. * least significant 16 bits --> iosel1
  43. * most significant 16 bits --> iosel2
  44. */
  45. #define SSP_IN 0x0000
  46. #define SSP_DATA 0x0001
  47. #define SSP_CLOCK 0x0002
  48. #define SSP_CHIPSEL 0x0003
  49. #define SSP_OUT 0x0004
  50. #define SSP_PIN_SEL(pin, v) ((v) << ((pin) * 3))
  51. #define SSP_PIN_MASK(pin) SSP_PIN_SEL(pin, 0x7)
  52. #define SSP_INPUT_SEL(pin) ((pin) << 16)
  53. /* Sequencer port config bits */
  54. #define SSP_EARLY_DIN BIT(8)
  55. #define SSP_DELAY_DOUT BIT(9)
  56. /* Sequence map definitions */
  57. #define SSP_CLK_HIGH BIT(0)
  58. #define SSP_CLK_LOW 0
  59. #define SSP_DATA_HIGH BIT(1)
  60. #define SSP_DATA_LOW 0
  61. #define SSP_CS_HIGH BIT(2)
  62. #define SSP_CS_LOW 0
  63. #define SSP_OUT_MODE BIT(3)
  64. #define SSP_IN_MODE 0
  65. #define SSP_DATA_REG BIT(4)
  66. #define SSP_ADDR_REG 0
  67. #define SSP_OPCODE_DIRECT ((0x0) << 5)
  68. #define SSP_OPCODE_TOGGLE ((0x1) << 5)
  69. #define SSP_OPCODE_SHIFT ((0x2) << 5)
  70. #define SSP_OPCODE_BRANCH0 ((0x4) << 5)
  71. #define SSP_OPCODE_BRANCH1 ((0x5) << 5)
  72. #define SSP_OPCODE_BRANCH ((0x6) << 5)
  73. #define SSP_OPCODE_STOP ((0x7) << 5)
  74. #define SSP_BRANCH(addr) ((addr) << 8)
  75. #define SSP_COUNT(cycles) ((cycles) << 8)
  76. int ti_ssp_raw_read(struct device *dev);
  77. int ti_ssp_raw_write(struct device *dev, u32 val);
  78. int ti_ssp_load(struct device *dev, int offs, u32* prog, int len);
  79. int ti_ssp_run(struct device *dev, u32 pc, u32 input, u32 *output);
  80. int ti_ssp_set_mode(struct device *dev, int mode);
  81. int ti_ssp_set_iosel(struct device *dev, u32 iosel);
  82. #endif /* __TI_SSP_H__ */