spl_boot.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Freescale i.MX28 Boot setup
  3. *
  4. * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
  5. * on behalf of DENX Software Engineering GmbH
  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 <config.h>
  27. #include <asm/io.h>
  28. #include <asm/arch/iomux-mx28.h>
  29. #include <asm/arch/imx-regs.h>
  30. #include <asm/arch/sys_proto.h>
  31. #include "mx28_init.h"
  32. /*
  33. * This delay function is intended to be used only in early stage of boot, where
  34. * clock are not set up yet. The timer used here is reset on every boot and
  35. * takes a few seconds to roll. The boot doesn't take that long, so to keep the
  36. * code simple, it doesn't take rolling into consideration.
  37. */
  38. #define HW_DIGCTRL_MICROSECONDS 0x8001c0c0
  39. void early_delay(int delay)
  40. {
  41. uint32_t st = readl(HW_DIGCTRL_MICROSECONDS);
  42. st += delay;
  43. while (st > readl(HW_DIGCTRL_MICROSECONDS))
  44. ;
  45. }
  46. void mx28_common_spl_init(const iomux_cfg_t *iomux_setup,
  47. const unsigned int iomux_size)
  48. {
  49. struct mx28_spl_data *data = (struct mx28_spl_data *)
  50. ((CONFIG_SYS_TEXT_BASE - sizeof(struct mx28_spl_data)) & ~0xf);
  51. mxs_iomux_setup_multiple_pads(iomux_setup, iomux_size);
  52. mx28_power_init();
  53. mx28_mem_init();
  54. data->mem_dram_size = mx28_mem_get_size();
  55. mx28_power_wait_pswitch();
  56. }
  57. /* Support aparatus */
  58. inline void board_init_f(unsigned long bootflag)
  59. {
  60. for (;;)
  61. ;
  62. }
  63. inline void board_init_r(gd_t *id, ulong dest_addr)
  64. {
  65. for (;;)
  66. ;
  67. }
  68. void serial_putc(const char c) {}
  69. void serial_puts(const char *s) {}
  70. void hang(void) __attribute__ ((noreturn));
  71. void hang(void)
  72. {
  73. for (;;)
  74. ;
  75. }