at91sam9g20_reset.S 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * reset AT91SAM9G20 as per errata
  3. *
  4. * (C) BitBox Ltd 2010
  5. *
  6. * unless the SDRAM is cleanly shutdown before we hit the
  7. * reset register it can be left driving the data bus and
  8. * killing the chance of a subsequent boot from NAND
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. */
  15. #define CP15_CR_I (1 << 12)
  16. #define SYS_VIRT_OFS (-0x01000000)
  17. #define SDRAMC_BASE (SYS_VIRT_OFS + 0xffffea00)
  18. #define SDRAMC_TR 0x0004
  19. #define SDRAMC_LPR 0x0010
  20. #define SDRAMC_LPCB_POWER_DOWN 2
  21. #define RSTC_BASE (SYS_VIRT_OFS + 0xfffffd00)
  22. #define RSTC_CR 0x0000
  23. #define RSTC_PROCRST (1 << 0)
  24. #define RSTC_PERRST (1 << 2)
  25. #define RSTC_KEY (0xa5 << 24)
  26. .arm
  27. .globl at91sam9g20_reset
  28. at91sam9g20_reset: mov r0, #0
  29. mcr p15, 0, r0, c7, c5, 0 @ flush I-cache
  30. mrc p15, 0, r0, c1, c0, 0
  31. orr r0, r0, #CP15_CR_I
  32. mcr p15, 0, r0, c1, c0, 0 @ enable I-cache
  33. ldr r0, =SDRAMC_BASE @ preload constants
  34. ldr r1, =RSTC_BASE
  35. mov r2, #1
  36. mov r3, #SDRAMC_LPCB_POWER_DOWN
  37. ldr r4, =RSTC_KEY | RSTC_PERRST | RSTC_PROCRST
  38. .balign 32 @ align to cache line
  39. str r2, [r0, #SDRAMC_TR] @ disable SDRAM access
  40. str r3, [r0, #SDRAMC_LPR] @ power down SDRAM
  41. str r4, [r1, #RSTC_CR] @ reset processor
  42. b .