netstar.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * (C) Copyright 2005 2N TELEKOMUNIKACE, Ladislav Michl
  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. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. DECLARE_GLOBAL_DATA_PTR;
  24. int board_init(void)
  25. {
  26. /* arch number of NetStar board */
  27. gd->bd->bi_arch_number = 692;
  28. /* adress of boot parameters */
  29. gd->bd->bi_boot_params = 0x10000100;
  30. return 0;
  31. }
  32. int dram_init(void)
  33. {
  34. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  35. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  36. /* Take the Ethernet controller out of reset and wait
  37. * for the EEPROM load to complete. */
  38. *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) |= 0x80;
  39. udelay(10); /* doesn't work before interrupt_init call */
  40. *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) &= ~0x80;
  41. udelay(500);
  42. return 0;
  43. }
  44. int misc_init_r(void)
  45. {
  46. return 0;
  47. }
  48. int board_late_init(void)
  49. {
  50. return 0;
  51. }