colibri_pxa270.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. #include <asm/arch/regs-mmc.h>
  24. #include <asm/arch/pxa.h>
  25. #include <netdev.h>
  26. #include <asm/io.h>
  27. #include <serial.h>
  28. DECLARE_GLOBAL_DATA_PTR;
  29. int board_init(void)
  30. {
  31. /* We have RAM, disable cache */
  32. dcache_disable();
  33. icache_disable();
  34. /* arch number of vpac270 */
  35. gd->bd->bi_arch_number = MACH_TYPE_COLIBRI;
  36. /* adress of boot parameters */
  37. gd->bd->bi_boot_params = 0xa0000100;
  38. return 0;
  39. }
  40. int dram_init(void)
  41. {
  42. pxa2xx_dram_init();
  43. gd->ram_size = PHYS_SDRAM_1_SIZE;
  44. return 0;
  45. }
  46. #ifdef CONFIG_CMD_USB
  47. int usb_board_init(void)
  48. {
  49. writel((readl(UHCHR) | UHCHR_PCPL | UHCHR_PSPL) &
  50. ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
  51. UHCHR);
  52. writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
  53. while (UHCHR & UHCHR_FSBIR)
  54. ;
  55. writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
  56. writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
  57. /* Clear any OTG Pin Hold */
  58. if (readl(PSSR) & PSSR_OTGPH)
  59. writel(readl(PSSR) | PSSR_OTGPH, PSSR);
  60. writel(readl(UHCRHDA) & ~(0x200), UHCRHDA);
  61. writel(readl(UHCRHDA) | 0x100, UHCRHDA);
  62. /* Set port power control mask bits, only 3 ports. */
  63. writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
  64. /* enable port 2 */
  65. writel(readl(UP2OCR) | UP2OCR_HXOE | UP2OCR_HXS |
  66. UP2OCR_DMPDE | UP2OCR_DPPDE, UP2OCR);
  67. return 0;
  68. }
  69. void usb_board_init_fail(void)
  70. {
  71. return;
  72. }
  73. void usb_board_stop(void)
  74. {
  75. writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
  76. udelay(11);
  77. writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
  78. writel(readl(UHCCOMS) | 1, UHCCOMS);
  79. udelay(10);
  80. writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
  81. return;
  82. }
  83. #endif
  84. #ifdef CONFIG_DRIVER_DM9000
  85. int board_eth_init(bd_t *bis)
  86. {
  87. return dm9000_initialize(bis);
  88. }
  89. #endif
  90. #ifdef CONFIG_CMD_MMC
  91. int board_mmc_init(bd_t *bis)
  92. {
  93. pxa_mmc_register(0);
  94. return 0;
  95. }
  96. #endif