vpac270.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * (C) Copyright 2004
  3. * Robert Whaley, Applied Data Systems, Inc. rwhaley@applieddata.net
  4. *
  5. * (C) Copyright 2002
  6. * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
  7. *
  8. * (C) Copyright 2002
  9. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  10. * Marius Groeger <mgroeger@sysgo.de>
  11. *
  12. * See file CREDITS for list of people who contributed to this
  13. * project.
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License as
  17. * published by the Free Software Foundation; either version 2 of
  18. * the License, or (at your option) any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with this program; if not, write to the Free Software
  27. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  28. * MA 02111-1307 USA
  29. */
  30. #include <common.h>
  31. #include <asm/arch/hardware.h>
  32. #include <netdev.h>
  33. DECLARE_GLOBAL_DATA_PTR;
  34. /* ------------------------------------------------------------------------- */
  35. /*
  36. * Miscelaneous platform dependent initialisations
  37. */
  38. extern struct serial_device serial_ffuart_device;
  39. extern struct serial_device serial_btuart_device;
  40. extern struct serial_device serial_stuart_device;
  41. struct serial_device *default_serial_console (void)
  42. {
  43. return &serial_ffuart_device;
  44. }
  45. int board_init (void)
  46. {
  47. /* memory and cpu-speed are setup before relocation */
  48. /* so we do _nothing_ here */
  49. /* arch number of vpac270 */
  50. gd->bd->bi_arch_number = MACH_TYPE_VPAC270;
  51. /* adress of boot parameters */
  52. gd->bd->bi_boot_params = 0xa0000100;
  53. return 0;
  54. }
  55. int dram_init (void)
  56. {
  57. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  58. gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
  59. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  60. gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
  61. return 0;
  62. }
  63. int usb_board_init(void)
  64. {
  65. UHCHR = (UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
  66. ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE);
  67. UHCHR |= UHCHR_FSBIR;
  68. while (UHCHR & UHCHR_FSBIR);
  69. UHCHR &= ~UHCHR_SSE;
  70. UHCHIE = (UHCHIE_UPRIE | UHCHIE_RWIE);
  71. /* Clear any OTG Pin Hold */
  72. if (PSSR & PSSR_OTGPH)
  73. PSSR |= PSSR_OTGPH;
  74. UHCRHDA &= ~(0x200);
  75. UHCRHDA |= 0x100;
  76. /* Set port power control mask bits, only 3 ports. */
  77. UHCRHDB |= (0x7<<17);
  78. /* enable port 2 */
  79. UP2OCR |= UP2OCR_HXOE | UP2OCR_HXS | UP2OCR_DMPDE | UP2OCR_DPPDE;
  80. return 0;
  81. }
  82. void usb_board_init_fail(void)
  83. {
  84. return;
  85. }
  86. void usb_board_stop(void)
  87. {
  88. UHCHR |= UHCHR_FHR;
  89. udelay(11);
  90. UHCHR &= ~UHCHR_FHR;
  91. UHCCOMS |= 1;
  92. udelay(10);
  93. CKEN &= ~CKEN10_USBHOST;
  94. return;
  95. }
  96. #ifdef CONFIG_DRIVER_DM9000
  97. int board_eth_init(bd_t *bis)
  98. {
  99. return dm9000_initialize(bis);
  100. }
  101. #endif