spl_boot.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (C) 2013 Stefan Roese <sr@denx.de>
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. */
  17. #include <common.h>
  18. #include <spl.h>
  19. DECLARE_GLOBAL_DATA_PTR;
  20. /*
  21. * Return selected boot device. On PPC4xx its only NOR flash right now.
  22. */
  23. u32 spl_boot_device(void)
  24. {
  25. return BOOT_DEVICE_NOR;
  26. }
  27. /*
  28. * SPL version of board_init_f()
  29. */
  30. void board_init_f(ulong bootflag)
  31. {
  32. /*
  33. * First we need to initialize the SDRAM, so that the real
  34. * U-Boot or the OS (Linux) can be loaded
  35. */
  36. initdram(0);
  37. /* Clear bss */
  38. memset(__bss_start, '\0', __bss_end - __bss_start);
  39. /*
  40. * Init global_data pointer. Has to be done before calling
  41. * get_clocks(), as it stores some clock values into gd needed
  42. * later on in the serial driver.
  43. */
  44. /* Pointer is writable since we allocated a register for it */
  45. gd = (gd_t *)(CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
  46. /* Clear initial global data */
  47. memset((void *)gd, 0, sizeof(gd_t));
  48. /*
  49. * get_clocks() needs to be called so that the serial driver
  50. * works correctly
  51. */
  52. get_clocks();
  53. /*
  54. * Do rudimental console / serial setup
  55. */
  56. preloader_console_init();
  57. /*
  58. * Call board_init_r() (SPL framework version) to load and boot
  59. * real U-Boot or OS
  60. */
  61. board_init_r(NULL, 0);
  62. /* Does not return!!! */
  63. }