matrix.c 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (C) 2015 Atmel Corporation
  3. * Wenyou Yang <wenyou.yang@atmel.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <common.h>
  8. #include <asm/hardware.h>
  9. #include <asm/io.h>
  10. #include <asm/arch/sama5_matrix.h>
  11. void matrix_init(void)
  12. {
  13. struct atmel_matrix *h64mx = (struct atmel_matrix *)ATMEL_BASE_MATRIX0;
  14. struct atmel_matrix *h32mx = (struct atmel_matrix *)ATMEL_BASE_MATRIX1;
  15. int i;
  16. /* DDR port 1 ~ port 7 */
  17. for (i = H64MX_SLAVE_DDRC_PORT1; i <= H64MX_SLAVE_DDRC_PORT7; i++) {
  18. writel(0x000f0f0f, &h64mx->ssr[i]);
  19. writel(0x0000ffff, &h64mx->sassr[i]);
  20. writel(0x0000000f, &h64mx->srtsr[i]);
  21. }
  22. /* EBI CS3 (NANDFlash 128M) and NFC Command Registers(128M) */
  23. writel(0x00c0c0c0, &h32mx->ssr[H32MX_SLAVE_EBI]);
  24. writel(0xff000000, &h32mx->sassr[H32MX_SLAVE_EBI]);
  25. writel(0xff000000, &h32mx->srtsr[H32MX_SLAVE_EBI]);
  26. /* NFC SRAM */
  27. writel(0x00010101, &h32mx->ssr[H32MX_SLAVE_NFC_SRAM]);
  28. writel(0x00000001, &h32mx->sassr[H32MX_SLAVE_NFC_SRAM]);
  29. writel(0x00000001, &h32mx->srtsr[H32MX_SLAVE_NFC_SRAM]);
  30. }