xor.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) Marvell International Ltd. and its affiliates
  4. */
  5. #ifndef _XOR_H
  6. #define _XOR_H
  7. #define SRAM_BASE 0x40000000
  8. #include "ddr3_hws_hw_training_def.h"
  9. #define MV_XOR_MAX_UNIT 2 /* XOR unit == XOR engine */
  10. #define MV_XOR_MAX_CHAN 4 /* total channels for all units */
  11. #define MV_XOR_MAX_CHAN_PER_UNIT 2 /* channels for units */
  12. #define MV_IS_POWER_OF_2(num) (((num) != 0) && (((num) & ((num) - 1)) == 0))
  13. /*
  14. * This structure describes address space window. Window base can be
  15. * 64 bit, window size up to 4GB
  16. */
  17. struct addr_win {
  18. u32 base_low; /* 32bit base low */
  19. u32 base_high; /* 32bit base high */
  20. u32 size; /* 32bit size */
  21. };
  22. /* This structure describes SoC units address decode window */
  23. struct unit_win_info {
  24. struct addr_win addr_win; /* An address window */
  25. int enable; /* Address decode window is enabled/disabled */
  26. u8 attrib; /* chip select attributes */
  27. u8 target_id; /* Target Id of this MV_TARGET */
  28. };
  29. /*
  30. * This enumerator describes the type of functionality the XOR channel
  31. * can have while using the same data structures.
  32. */
  33. enum xor_type {
  34. MV_XOR, /* XOR channel functions as XOR accelerator */
  35. MV_DMA, /* XOR channel functions as IDMA channel */
  36. MV_CRC32 /* XOR channel functions as CRC 32 calculator */
  37. };
  38. enum mv_state {
  39. MV_IDLE,
  40. MV_ACTIVE,
  41. MV_PAUSED,
  42. MV_UNDEFINED_STATE
  43. };
  44. /*
  45. * This enumerator describes the set of commands that can be applied on
  46. * an engine (e.g. IDMA, XOR). Appling a comman depends on the current
  47. * status (see MV_STATE enumerator)
  48. *
  49. * Start can be applied only when status is IDLE
  50. * Stop can be applied only when status is IDLE, ACTIVE or PAUSED
  51. * Pause can be applied only when status is ACTIVE
  52. * Restart can be applied only when status is PAUSED
  53. */
  54. enum mv_command {
  55. MV_START, /* Start */
  56. MV_STOP, /* Stop */
  57. MV_PAUSE, /* Pause */
  58. MV_RESTART /* Restart */
  59. };
  60. enum xor_override_target {
  61. SRC_ADDR0, /* Source Address #0 Control */
  62. SRC_ADDR1, /* Source Address #1 Control */
  63. SRC_ADDR2, /* Source Address #2 Control */
  64. SRC_ADDR3, /* Source Address #3 Control */
  65. SRC_ADDR4, /* Source Address #4 Control */
  66. SRC_ADDR5, /* Source Address #5 Control */
  67. SRC_ADDR6, /* Source Address #6 Control */
  68. SRC_ADDR7, /* Source Address #7 Control */
  69. XOR_DST_ADDR, /* Destination Address Control */
  70. XOR_NEXT_DESC /* Next Descriptor Address Control */
  71. };
  72. enum mv_state mv_xor_state_get(u32 chan);
  73. void mv_xor_hal_init(u32 xor_chan_num);
  74. int mv_xor_ctrl_set(u32 chan, u32 xor_ctrl);
  75. int mv_xor_command_set(u32 chan, enum mv_command command);
  76. int mv_xor_override_set(u32 chan, enum xor_override_target target, u32 win_num,
  77. int enable);
  78. #endif