soc.c 762 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * (C) Copyright 2015
  3. * Kamil Lulko, <kamil.lulko@gmail.com>
  4. *
  5. * Copyright 2015 ATS Advanced Telematics Systems GmbH
  6. * Copyright 2015 Konsulko Group, Matt Porter <mporter@konsulko.com>
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #include <common.h>
  11. #include <asm/io.h>
  12. #include <asm/armv7m.h>
  13. #include <asm/arch/stm32.h>
  14. u32 get_cpu_rev(void)
  15. {
  16. return 0;
  17. }
  18. int arch_cpu_init(void)
  19. {
  20. configure_clocks();
  21. /*
  22. * Configure the memory protection unit (MPU) to allow full access to
  23. * the whole 4GB address space.
  24. */
  25. writel(0, &V7M_MPU->rnr);
  26. writel(0, &V7M_MPU->rbar);
  27. writel((V7M_MPU_RASR_AP_RW_RW | V7M_MPU_RASR_SIZE_4GB
  28. | V7M_MPU_RASR_EN), &V7M_MPU->rasr);
  29. writel(V7M_MPU_CTRL_ENABLE | V7M_MPU_CTRL_HFNMIENA, &V7M_MPU->ctrl);
  30. return 0;
  31. }