mx25pdk.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * (C) Copyright 2011 Freescale Semiconductor, Inc.
  3. *
  4. * Author: Fabio Estevam <fabio.estevam@freescale.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. */
  19. #include <common.h>
  20. #include <asm/io.h>
  21. #include <asm/arch/imx-regs.h>
  22. #include <asm/arch/imx25-pinmux.h>
  23. #include <asm/arch/sys_proto.h>
  24. DECLARE_GLOBAL_DATA_PTR;
  25. int dram_init(void)
  26. {
  27. /* dram_init must store complete ramsize in gd->ram_size */
  28. gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
  29. PHYS_SDRAM_1_SIZE);
  30. return 0;
  31. }
  32. void dram_init_banksize(void)
  33. {
  34. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  35. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  36. }
  37. int board_early_init_f(void)
  38. {
  39. mx25_uart1_init_pins();
  40. return 0;
  41. }
  42. int board_init(void)
  43. {
  44. gd->bd->bi_arch_number = MACH_TYPE_MX25_3DS;
  45. /* address of boot parameters */
  46. gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
  47. return 0;
  48. }
  49. int checkboard(void)
  50. {
  51. puts("Board: MX25PDK\n");
  52. return 0;
  53. }