wepep250.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (C) 2003 ETC s.r.o.
  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. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. *
  19. * Written by Peter Figuli <peposh@etc.sk>, 2003.
  20. *
  21. */
  22. #include <common.h>
  23. #include <asm/arch/pxa-regs.h>
  24. #include <asm/io.h>
  25. DECLARE_GLOBAL_DATA_PTR;
  26. int board_init (void)
  27. {
  28. gd->bd->bi_arch_number = MACH_TYPE_WEP_EP250;
  29. gd->bd->bi_boot_params = 0xa0000000;
  30. /*
  31. * Setup GPIO stuff to get serial working
  32. */
  33. #if defined( CONFIG_FFUART )
  34. writel(0x80, GPDR1);
  35. writel(0x8010, GAFR1_L);
  36. #elif defined( CONFIG_BTUART )
  37. writel(0x800, GPDR1);
  38. writel(0x900000, GAFR1_L);
  39. #endif
  40. writel(0x20, PSSR);
  41. return 0;
  42. }
  43. int dram_init (void)
  44. {
  45. #if ( CONFIG_NR_DRAM_BANKS > 0 )
  46. gd->bd->bi_dram[0].start = WEP_SDRAM_1;
  47. gd->bd->bi_dram[0].size = WEP_SDRAM_1_SIZE;
  48. #endif
  49. #if ( CONFIG_NR_DRAM_BANKS > 1 )
  50. gd->bd->bi_dram[1].start = WEP_SDRAM_2;
  51. gd->bd->bi_dram[1].size = WEP_SDRAM_2_SIZE;
  52. #endif
  53. #if ( CONFIG_NR_DRAM_BANKS > 2 )
  54. gd->bd->bi_dram[2].start = WEP_SDRAM_3;
  55. gd->bd->bi_dram[2].size = WEP_SDRAM_3_SIZE;
  56. #endif
  57. #if ( CONFIG_NR_DRAM_BANKS > 3 )
  58. gd->bd->bi_dram[3].start = WEP_SDRAM_4;
  59. gd->bd->bi_dram[3].size = WEP_SDRAM_4_SIZE;
  60. #endif
  61. return 0;
  62. }