colibri_pxa270.c 2.5 KB

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