mvblm7.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /*
  2. * Copyright (C) Freescale Semiconductor, Inc. 2006.
  3. *
  4. * (C) Copyright 2008
  5. * Andre Schwarz, Matrix Vision GmbH, andre.schwarz@matrix-vision.de
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS for A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <ioports.h>
  27. #include <mpc83xx.h>
  28. #include <asm/mpc8349_pci.h>
  29. #include <pci.h>
  30. #include <spi.h>
  31. #include <asm/mmu.h>
  32. #if defined(CONFIG_OF_LIBFDT)
  33. #include <libfdt.h>
  34. #endif
  35. #include "../common/mv_common.h"
  36. #include "mvblm7.h"
  37. int fixed_sdram(void)
  38. {
  39. volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
  40. u32 msize = 0;
  41. u32 ddr_size;
  42. u32 ddr_size_log2;
  43. char *s = getenv("ddr_size");
  44. msize = CONFIG_SYS_DDR_SIZE;
  45. if (s) {
  46. u32 env_ddr_size = simple_strtoul(s, NULL, 10);
  47. if (env_ddr_size == 512)
  48. msize = 512;
  49. }
  50. for (ddr_size = msize << 20, ddr_size_log2 = 0;
  51. (ddr_size > 1);
  52. ddr_size = ddr_size >> 1, ddr_size_log2++) {
  53. if (ddr_size & 1)
  54. return -1;
  55. }
  56. im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
  57. im->sysconf.ddrlaw[0].ar = LAWAR_EN | ((ddr_size_log2 - 1) &
  58. LAWAR_SIZE);
  59. im->ddr.csbnds[0].csbnds = CONFIG_SYS_DDR_CS0_BNDS;
  60. im->ddr.cs_config[0] = CONFIG_SYS_DDR_CS0_CONFIG;
  61. im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
  62. im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
  63. im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
  64. im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
  65. im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
  66. im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
  67. im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
  68. im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
  69. im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
  70. im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_SDRAM_CLK_CNTL;
  71. asm("sync;isync");
  72. udelay(600);
  73. im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
  74. asm("sync;isync");
  75. udelay(500);
  76. return msize;
  77. }
  78. phys_size_t initdram(int board_type)
  79. {
  80. volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
  81. u32 msize = 0;
  82. if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im)
  83. return -1;
  84. im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;
  85. msize = fixed_sdram();
  86. /* return total bus RAM size(bytes) */
  87. return msize * 1024 * 1024;
  88. }
  89. int misc_init_r(void)
  90. {
  91. char *s = getenv("reset_env");
  92. if (s) {
  93. mv_reset_environment();
  94. }
  95. return 0;
  96. }
  97. int checkboard(void)
  98. {
  99. puts("Board: Matrix Vision mvBlueLYNX-M7\n");
  100. return 0;
  101. }
  102. #ifdef CONFIG_HARD_SPI
  103. int spi_cs_is_valid(unsigned int bus, unsigned int cs)
  104. {
  105. return bus == 0 && cs == 0;
  106. }
  107. void spi_cs_activate(struct spi_slave *slave)
  108. {
  109. volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0];
  110. iopd->dat &= ~MVBLM7_MMC_CS;
  111. }
  112. void spi_cs_deactivate(struct spi_slave *slave)
  113. {
  114. volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0];
  115. iopd->dat |= ~MVBLM7_MMC_CS;
  116. }
  117. #endif
  118. #if defined(CONFIG_OF_BOARD_SETUP)
  119. void ft_board_setup(void *blob, bd_t *bd)
  120. {
  121. ft_cpu_setup(blob, bd);
  122. #ifdef CONFIG_PCI
  123. ft_pci_setup(blob, bd);
  124. #endif
  125. }
  126. #endif