stm32.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
  2. /*
  3. * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
  4. */
  5. #ifndef _MACH_STM32_H_
  6. #define _MACH_STM32_H_
  7. /*
  8. * Peripheral memory map
  9. * only address used before device tree parsing
  10. */
  11. #define STM32_RCC_BASE 0x50000000
  12. #define STM32_PWR_BASE 0x50001000
  13. #define STM32_DBGMCU_BASE 0x50081000
  14. #define STM32_BSEC_BASE 0x5C005000
  15. #define STM32_TZC_BASE 0x5C006000
  16. #define STM32_ETZPC_BASE 0x5C007000
  17. #define STM32_TAMP_BASE 0x5C00A000
  18. #ifdef CONFIG_DEBUG_UART_BASE
  19. /* hardcoded value can be only used for DEBUG UART */
  20. #define STM32_USART1_BASE 0x5C000000
  21. #define STM32_USART2_BASE 0x4000E000
  22. #define STM32_USART3_BASE 0x4000F000
  23. #define STM32_UART4_BASE 0x40010000
  24. #define STM32_UART5_BASE 0x40011000
  25. #define STM32_USART6_BASE 0x44003000
  26. #define STM32_UART7_BASE 0x40018000
  27. #define STM32_UART8_BASE 0x40019000
  28. #endif
  29. #define STM32_SYSRAM_BASE 0x2FFC0000
  30. #define STM32_SYSRAM_SIZE SZ_256K
  31. #define STM32_DDR_BASE 0xC0000000
  32. #define STM32_DDR_SIZE SZ_1G
  33. #ifndef __ASSEMBLY__
  34. /* enumerated used to identify the SYSCON driver instance */
  35. enum {
  36. STM32MP_SYSCON_UNKNOWN,
  37. STM32MP_SYSCON_STGEN,
  38. STM32MP_SYSCON_PWR,
  39. };
  40. /*
  41. * enumerated for boot interface from Bootrom, used in TAMP_BOOT_CONTEXT
  42. * - boot device = bit 8:4
  43. * - boot instance = bit 3:0
  44. */
  45. #define BOOT_TYPE_MASK 0xF0
  46. #define BOOT_TYPE_SHIFT 4
  47. #define BOOT_INSTANCE_MASK 0x0F
  48. #define BOOT_INSTANCE_SHIFT 0
  49. enum boot_device {
  50. BOOT_FLASH_SD = 0x10,
  51. BOOT_FLASH_SD_1 = 0x11,
  52. BOOT_FLASH_SD_2 = 0x12,
  53. BOOT_FLASH_SD_3 = 0x13,
  54. BOOT_FLASH_EMMC = 0x20,
  55. BOOT_FLASH_EMMC_1 = 0x21,
  56. BOOT_FLASH_EMMC_2 = 0x22,
  57. BOOT_FLASH_EMMC_3 = 0x23,
  58. BOOT_FLASH_NAND = 0x30,
  59. BOOT_FLASH_NAND_FMC = 0x31,
  60. BOOT_FLASH_NOR = 0x40,
  61. BOOT_FLASH_NOR_QSPI = 0x41,
  62. BOOT_SERIAL_UART = 0x50,
  63. BOOT_SERIAL_UART_1 = 0x51,
  64. BOOT_SERIAL_UART_2 = 0x52,
  65. BOOT_SERIAL_UART_3 = 0x53,
  66. BOOT_SERIAL_UART_4 = 0x54,
  67. BOOT_SERIAL_UART_5 = 0x55,
  68. BOOT_SERIAL_UART_6 = 0x56,
  69. BOOT_SERIAL_UART_7 = 0x57,
  70. BOOT_SERIAL_UART_8 = 0x58,
  71. BOOT_SERIAL_USB = 0x60,
  72. BOOT_SERIAL_USB_OTG = 0x62,
  73. };
  74. /* TAMP registers */
  75. #define TAMP_BACKUP_REGISTER(x) (STM32_TAMP_BASE + 0x100 + 4 * x)
  76. #define TAMP_BACKUP_MAGIC_NUMBER TAMP_BACKUP_REGISTER(4)
  77. #define TAMP_BACKUP_BRANCH_ADDRESS TAMP_BACKUP_REGISTER(5)
  78. #define TAMP_BOOT_CONTEXT TAMP_BACKUP_REGISTER(20)
  79. #define TAMP_BOOT_MODE_MASK GENMASK(15, 8)
  80. #define TAMP_BOOT_MODE_SHIFT 8
  81. #define TAMP_BOOT_DEVICE_MASK GENMASK(7, 4)
  82. #define TAMP_BOOT_INSTANCE_MASK GENMASK(3, 0)
  83. /* offset used for BSEC driver: misc_read and misc_write */
  84. #define STM32_BSEC_SHADOW_OFFSET 0x0
  85. #define STM32_BSEC_OTP_OFFSET 0x80000000
  86. #endif /* __ASSEMBLY__*/
  87. #endif /* _MACH_STM32_H_ */