lp8x4x.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /*
  2. * ICP DAS LP-8x4x Support
  3. *
  4. * Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
  5. * adapted from Voipac PXA270 Support by
  6. * Copyright (C) 2013 Sergey Yanovich <ynvich@gmail.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <asm/arch/hardware.h>
  25. #include <asm/arch/regs-mmc.h>
  26. #include <asm/arch/pxa.h>
  27. #include <netdev.h>
  28. #include <serial.h>
  29. #include <asm/io.h>
  30. DECLARE_GLOBAL_DATA_PTR;
  31. /*
  32. * Miscelaneous platform dependent initialisations
  33. */
  34. int board_init(void)
  35. {
  36. /* We have RAM, disable cache */
  37. dcache_disable();
  38. icache_disable();
  39. /* memory and cpu-speed are setup before relocation */
  40. /* so we do _nothing_ here */
  41. /* adress of boot parameters */
  42. gd->bd->bi_boot_params = 0xa0000100;
  43. return 0;
  44. }
  45. int dram_init(void)
  46. {
  47. pxa2xx_dram_init();
  48. gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
  49. return 0;
  50. }
  51. void dram_init_banksize(void)
  52. {
  53. gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
  54. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  55. }
  56. #ifdef CONFIG_CMD_MMC
  57. int board_mmc_init(bd_t *bis)
  58. {
  59. pxa_mmc_register(0);
  60. return 0;
  61. }
  62. #endif
  63. #ifdef CONFIG_CMD_USB
  64. int usb_board_init(void)
  65. {
  66. writel((UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
  67. ~(UHCHR_SSEP0 | UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSE),
  68. UHCHR);
  69. writel(readl(UHCHR) | UHCHR_FSBIR, UHCHR);
  70. while (readl(UHCHR) & UHCHR_FSBIR)
  71. continue; /* required by checkpath.pl */
  72. writel(readl(UHCHR) & ~UHCHR_SSE, UHCHR);
  73. writel((UHCHIE_UPRIE | UHCHIE_RWIE), UHCHIE);
  74. /* Clear any OTG Pin Hold */
  75. if (readl(PSSR) & PSSR_OTGPH)
  76. writel(readl(PSSR) | PSSR_OTGPH, PSSR);
  77. writel(readl(UHCRHDA) & ~(0x200), UHCRHDA);
  78. writel(readl(UHCRHDA) | 0x100, UHCRHDA);
  79. /* Set port power control mask bits, only 3 ports. */
  80. writel(readl(UHCRHDB) | (0x7<<17), UHCRHDB);
  81. /* enable port 2 */
  82. writel(readl(UP2OCR) | UP2OCR_HXOE | UP2OCR_HXS |
  83. UP2OCR_DMPDE | UP2OCR_DPPDE, UP2OCR);
  84. return 0;
  85. }
  86. void usb_board_init_fail(void)
  87. {
  88. return;
  89. }
  90. void usb_board_stop(void)
  91. {
  92. writel(readl(UHCHR) | UHCHR_FHR, UHCHR);
  93. udelay(11);
  94. writel(readl(UHCHR) & ~UHCHR_FHR, UHCHR);
  95. writel(readl(UHCCOMS) | 1, UHCCOMS);
  96. udelay(10);
  97. writel(readl(CKEN) & ~CKEN10_USBHOST, CKEN);
  98. return;
  99. }
  100. #endif
  101. #ifdef CONFIG_DRIVER_DM9000
  102. void lp8x4x_eth1_mac_init(void)
  103. {
  104. u8 eth1addr[8];
  105. int i;
  106. u8 reg;
  107. eth_getenv_enetaddr_by_index("eth", 1, eth1addr);
  108. if (!is_valid_ether_addr(eth1addr))
  109. return;
  110. for (i = 0, reg = 0x10; i < 6; i++, reg++) {
  111. writeb(reg, (u8 *)(DM9000_IO_2));
  112. writeb(eth1addr[i], (u8 *)(DM9000_DATA_2));
  113. }
  114. }
  115. int board_eth_init(bd_t *bis)
  116. {
  117. lp8x4x_eth1_mac_init();
  118. return dm9000_initialize(bis);
  119. }
  120. #endif