soc.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * (C) Copyright 2015
  3. * Kamil Lulko, <kamil.lulko@gmail.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <asm/io.h>
  9. #include <asm/armv7m.h>
  10. #include <asm/arch/stm32.h>
  11. u32 get_cpu_rev(void)
  12. {
  13. return 0;
  14. }
  15. int arch_cpu_init(void)
  16. {
  17. configure_clocks();
  18. /*
  19. * Configure the memory protection unit (MPU)
  20. * 0x00000000 - 0xffffffff: Strong-order, Shareable
  21. * 0xC0000000 - 0xC0800000: Normal, Outer and inner Non-cacheable
  22. */
  23. /* Disable MPU */
  24. writel(0, &V7M_MPU->ctrl);
  25. writel(
  26. 0x00000000 /* address */
  27. | 1 << 4 /* VALID */
  28. | 0 << 0 /* REGION */
  29. , &V7M_MPU->rbar
  30. );
  31. /* Strong-order, Shareable */
  32. /* TEX=000, S=1, C=0, B=0*/
  33. writel(
  34. (V7M_MPU_RASR_XN_ENABLE
  35. | V7M_MPU_RASR_AP_RW_RW
  36. | 0x01 << V7M_MPU_RASR_S_SHIFT
  37. | 0x00 << V7M_MPU_RASR_TEX_SHIFT
  38. | V7M_MPU_RASR_SIZE_4GB
  39. | V7M_MPU_RASR_EN)
  40. , &V7M_MPU->rasr
  41. );
  42. writel(
  43. 0xC0000000 /* address */
  44. | 1 << 4 /* VALID */
  45. | 1 << 0 /* REGION */
  46. , &V7M_MPU->rbar
  47. );
  48. /* Normal, Outer and inner Non-cacheable */
  49. /* TEX=001, S=0, C=0, B=0*/
  50. writel(
  51. (V7M_MPU_RASR_XN_ENABLE
  52. | V7M_MPU_RASR_AP_RW_RW
  53. | 0x01 << V7M_MPU_RASR_TEX_SHIFT
  54. | V7M_MPU_RASR_SIZE_8MB
  55. | V7M_MPU_RASR_EN)
  56. , &V7M_MPU->rasr
  57. );
  58. /* Enable MPU */
  59. writel(V7M_MPU_CTRL_ENABLE | V7M_MPU_CTRL_HFNMIENA, &V7M_MPU->ctrl);
  60. return 0;
  61. }
  62. void s_init(void)
  63. {
  64. }