dw_mmc-exynos.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Exynos Specific Extensions for Synopsys DW Multimedia Card Interface driver
  3. *
  4. * Copyright (C) 2012-2014 Samsung Electronics Co., Ltd.
  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. #ifndef _DW_MMC_EXYNOS_H_
  12. #define _DW_MMC_EXYNOS_H_
  13. #define SDMMC_CLKSEL 0x09C
  14. #define SDMMC_CLKSEL64 0x0A8
  15. /* Extended Register's Offset */
  16. #define SDMMC_HS400_DQS_EN 0x180
  17. #define SDMMC_HS400_ASYNC_FIFO_CTRL 0x184
  18. #define SDMMC_HS400_DLINE_CTRL 0x188
  19. /* CLKSEL register defines */
  20. #define SDMMC_CLKSEL_CCLK_SAMPLE(x) (((x) & 7) << 0)
  21. #define SDMMC_CLKSEL_CCLK_DRIVE(x) (((x) & 7) << 16)
  22. #define SDMMC_CLKSEL_CCLK_DIVIDER(x) (((x) & 7) << 24)
  23. #define SDMMC_CLKSEL_GET_DRV_WD3(x) (((x) >> 16) & 0x7)
  24. #define SDMMC_CLKSEL_GET_DIV(x) (((x) >> 24) & 0x7)
  25. #define SDMMC_CLKSEL_UP_SAMPLE(x, y) (((x) & ~SDMMC_CLKSEL_CCLK_SAMPLE(7)) |\
  26. SDMMC_CLKSEL_CCLK_SAMPLE(y))
  27. #define SDMMC_CLKSEL_TIMING(x, y, z) (SDMMC_CLKSEL_CCLK_SAMPLE(x) | \
  28. SDMMC_CLKSEL_CCLK_DRIVE(y) | \
  29. SDMMC_CLKSEL_CCLK_DIVIDER(z))
  30. #define SDMMC_CLKSEL_TIMING_MASK SDMMC_CLKSEL_TIMING(0x7, 0x7, 0x7)
  31. #define SDMMC_CLKSEL_WAKEUP_INT BIT(11)
  32. /* RCLK_EN register defines */
  33. #define DATA_STROBE_EN BIT(0)
  34. #define AXI_NON_BLOCKING_WR BIT(7)
  35. /* DLINE_CTRL register defines */
  36. #define DQS_CTRL_RD_DELAY(x, y) (((x) & ~0x3FF) | ((y) & 0x3FF))
  37. #define DQS_CTRL_GET_RD_DELAY(x) ((x) & 0x3FF)
  38. /* Protector Register */
  39. #define SDMMC_EMMCP_BASE 0x1000
  40. #define SDMMC_MPSECURITY (SDMMC_EMMCP_BASE + 0x0010)
  41. #define SDMMC_MPSBEGIN0 (SDMMC_EMMCP_BASE + 0x0200)
  42. #define SDMMC_MPSEND0 (SDMMC_EMMCP_BASE + 0x0204)
  43. #define SDMMC_MPSCTRL0 (SDMMC_EMMCP_BASE + 0x020C)
  44. /* SMU control defines */
  45. #define SDMMC_MPSCTRL_SECURE_READ_BIT BIT(7)
  46. #define SDMMC_MPSCTRL_SECURE_WRITE_BIT BIT(6)
  47. #define SDMMC_MPSCTRL_NON_SECURE_READ_BIT BIT(5)
  48. #define SDMMC_MPSCTRL_NON_SECURE_WRITE_BIT BIT(4)
  49. #define SDMMC_MPSCTRL_USE_FUSE_KEY BIT(3)
  50. #define SDMMC_MPSCTRL_ECB_MODE BIT(2)
  51. #define SDMMC_MPSCTRL_ENCRYPTION BIT(1)
  52. #define SDMMC_MPSCTRL_VALID BIT(0)
  53. /* Maximum number of Ending sector */
  54. #define SDMMC_ENDING_SEC_NR_MAX 0xFFFFFFFF
  55. /* Fixed clock divider */
  56. #define EXYNOS4210_FIXED_CIU_CLK_DIV 2
  57. #define EXYNOS4412_FIXED_CIU_CLK_DIV 4
  58. #define HS400_FIXED_CIU_CLK_DIV 1
  59. /* Minimal required clock frequency for cclkin, unit: HZ */
  60. #define EXYNOS_CCLKIN_MIN 50000000
  61. #endif /* _DW_MMC_EXYNOS_H_ */