nand_boot.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright 2009 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. *
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. *
  20. */
  21. #include <common.h>
  22. #include <ns16550.h>
  23. #include <asm/io.h>
  24. #include <nand.h>
  25. u32 sysclk_tbl[] = {
  26. 33333000, 39999600, 49999500, 66666000,
  27. 83332500, 99999000, 133332000, 166665000
  28. };
  29. void board_init_f(ulong bootflag)
  30. {
  31. int px_spd;
  32. u32 plat_ratio, bus_clk, sys_clk;
  33. ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
  34. #if defined(CONFIG_SYS_BR3_PRELIM) && defined(CONFIG_SYS_OR3_PRELIM)
  35. /* for FPGA */
  36. set_lbc_br(3, CONFIG_SYS_BR3_PRELIM);
  37. set_lbc_or(3, CONFIG_SYS_OR3_PRELIM);
  38. #else
  39. #error CONFIG_SYS_BR3_PRELIM, CONFIG_SYS_OR3_PRELIM must be defined
  40. #endif
  41. /* initialize selected port with appropriate baud rate */
  42. px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
  43. sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK];
  44. plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
  45. bus_clk = sys_clk * plat_ratio / 2;
  46. NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
  47. bus_clk / 16 / CONFIG_BAUDRATE);
  48. puts("\nNAND boot... ");
  49. /* copy code to RAM and jump to it - this should not return */
  50. /* NOTE - code has to be copied out of NAND buffer before
  51. * other blocks can be read.
  52. */
  53. relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, 0,
  54. CONFIG_SYS_NAND_U_BOOT_RELOC);
  55. }
  56. void board_init_r(gd_t *gd, ulong dest_addr)
  57. {
  58. nand_boot();
  59. }
  60. void putc(char c)
  61. {
  62. if (c == '\n')
  63. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r');
  64. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c);
  65. }
  66. void puts(const char *str)
  67. {
  68. while (*str)
  69. putc(*str++);
  70. }