nand_boot.c 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. ccsr_lbc_t *lbc = (void *)CONFIG_SYS_MPC85xx_LBC_ADDR;
  35. #if defined(CONFIG_SYS_BR3_PRELIM) && defined(CONFIG_SYS_OR3_PRELIM)
  36. /* for FPGA */
  37. out_be32(&lbc->br3, CONFIG_SYS_BR3_PRELIM);
  38. out_be32(&lbc->or3, CONFIG_SYS_OR3_PRELIM);
  39. #else
  40. #error CONFIG_SYS_BR3_PRELIM, CONFIG_SYS_OR3_PRELIM must be defined
  41. #endif
  42. /* initialize selected port with appropriate baud rate */
  43. px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
  44. sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK];
  45. plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
  46. bus_clk = sys_clk * plat_ratio / 2;
  47. NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
  48. bus_clk / 16 / CONFIG_BAUDRATE);
  49. puts("\nNAND boot... ");
  50. /* copy code to RAM and jump to it - this should not return */
  51. /* NOTE - code has to be copied out of NAND buffer before
  52. * other blocks can be read.
  53. */
  54. relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, 0,
  55. CONFIG_SYS_NAND_U_BOOT_RELOC);
  56. }
  57. void board_init_r(gd_t *gd, ulong dest_addr)
  58. {
  59. nand_boot();
  60. }
  61. void putc(char c)
  62. {
  63. if (c == '\n')
  64. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r');
  65. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c);
  66. }
  67. void puts(const char *str)
  68. {
  69. while (*str)
  70. putc(*str++);
  71. }